@charset "utf-8";
/*----------------------------------------
	タイトル関連
-----------------------------------------*/
/*固定ページ見出しH"*/
.main_wrap h1, .midashi01 ,.main_wrap h2, .midashi02{
    margin-bottom: 30px;
    line-height: 1.5;
    font-size: 175%;
    font-weight: 700;
    position: relative;
    margin-top: 0;
	padding: 15px 5px;
	border-bottom: 2px solid #006837;
	border-top: 2px solid #006837;
	text-align: center;
}
.main_wrap h3 {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 125%;
  font-weight: 600;
  position: relative;
	padding-bottom: 10px;
	border-bottom: 2px solid #006837;
}

.main_wrap h4 {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 113%;
  font-weight: 600;
  position: relative;
  margin-top: 0;
padding: 0.7em;
	background:#F4F3F6;
}
.main_wrap h5 {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 107%;
  font-weight: 600;
  position: relative;
	padding-left: 10px;
	border-left: 5px solid #006837;

}
.main_wrap h6{
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 107%;
  font-weight: 600;
  position: relative;
  margin-top: 0;
padding: 0 0 10px 20px;

}
.main_wrap h6::before {
	content: "";
	width: 10px;
	height: 10px;
	background:#006837;
	position: absolute;
	border-radius: 50px;
	left: 0;
	top: 0.4em;
}

.main_wrap p {
  margin-bottom: 40px;
}
.main_wrap p, .main_wrap table, .main_wrap ul, .main_wrap ol {
  line-height: 2;
}
@media(max-width: 768px) {
.main_wrap h1, .midashi01 ,.main_wrap h2, .midashi02 {
    font-size: 138%;
  }
  .main_wrap h3 {
    font-size: 119%;
  }
  .main_wrap h4 {
    font-size: 113%;
  }
  .main_wrap h5 {
    font-size: 100%;
  }
  .main_wrap h6 {
    font-size: 88%;
  }
  .main_wrap p {
    margin-bottom: 40px;
  }
  .main_wrap p, .main_wrap table, .main_wrap ul, .main_wrap ol {
	  font-size: 88%;
	}
}
/*----------------------------------------
	リンク関連
-----------------------------------------*/
.main_wrap p a,.main_wrap ul a,.main_wrap ol a,.main_wrap table a{
	color: #0071bc;
	text-decoration: underline;
}
.main_wrap p a:hover,.main_wrap ul a:hover,.main_wrap ol a:hover,.main_wrap table a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.main_wrap p a:visited {
  color: #006AB7;
  text-decoration: underline;
}
/*リンクテキスト*/
a.link_txt {
  position: relative;
  padding: 0.5em 0.5em 0.5em 0;
  vertical-align: middle;
  color:  #0071bc !important;
  padding-left: 20px;
}
a.link_txt::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #006837;
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 0;
}
.main_wrap a[target="_blank"]:after {
  content: "";
  width: 15px;
  height: 20px;
  background: url("../images/ico_link.svg") no-repeat center;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
	  margin-right: 5px;
}
.main_wrap a[href$=".pdf"]:after {
  content:"\f1c1"!important;
	background:none!important;
  display: inline-block;
  margin-left: 5px;
	font-family: FontAwesome;
	vertical-align: middle;
	  width: auto;
  height: auto;
	color: #006837;
}
a.link_txt:hover {
  opacity: 0.7;
}
/*-------------------------------------*/
/*	ボタン	*/
/*-------------------------------------*/
.bt_base {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #FFFFFF; /* ボーダーの色と太さ */
  outline: none;
  transition: ease .2s;
  padding: 1em 25px 1em 25px;
  line-height: 1;
   background :#006837;
	text-align: center;
}
.bt_base span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #FFFFFF!important;
  font-weight: 500;
	text-decoration: none;
}
.bt_base:hover {
  border: 1px solid #006837; /* ボーダーの色と太さ */
}
.bt_base:hover span {
	 position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #006837!important;
}
.bt_base span::after {
  content: ">>";
	color: #FFFFFF;
	margin-left: 10px;
}
.bt_base:hover span::after {
  color: #006837!important;
}
.bt_base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #FFFFFF; /*背景色*/
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.bt_base:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
/*白ボタン*/
.bt_base02 {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #006837; /* ボーダーの色と太さ */
  outline: none;
  transition: ease .2s;
  padding: 1em 25px 1em 25px;
  line-height: 1;
  background:  #FFFFFF;
	text-align: center;
}
.bt_base02 span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #006837;
}
.bt_base02:hover span {
  color: #FFFFFF;
}
.bt_base02 span::after {
  content: ">>";
	color: #006837;
	margin-left: 10px;
}
.bt_base02:hover span::after {
  color: #FFFFFF!important;
}
.bt_base02::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    background :#006837;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.bt_base02:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
 /* エディタ用ボタン */
.bt_base03 {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #FFFFFF; /* ボーダーの色と太さ */
  outline: none;
  transition: ease .2s;
  padding: 1em 35px 1em 35px;
  line-height: 1;
   background :#006837;
	text-align: center;
		color: #FFFFFF!important;
	text-decoration: none!important;
}
.bt_base03::before {
  content: ">>";
	position:absolute;
    top:50%;
    right:8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index:1;
}
.bt_base03:hover {
  border: 1px solid #006837;
	background: #FFFFFF;
	color: #006837!important;
	text-decoration: none!important;
}
.main_wrap .bt_base03[target="_blank"]:after {
	background-size: contain!important;
  background: url("../images/ico_link-w.svg") no-repeat center;
}
.main_wrap .bt_base03:hover[target="_blank"]:after {
  background: url("../images/ico_link.svg") no-repeat center;
}
.main_wrap .bt_base03[href$=".pdf"]:after {
	color: #FFFFFF;
}
.main_wrap .bt_base03:hover[href$=".pdf"]:after {
	color: #006837;
}
/*----------------------------------------
	レイアウト関連
-----------------------------------------*/
.main_wrap img {
  margin-bottom: 10px;
  border: none !important;
}
.main_wrap p.parent {
  margin-bottom: 0 !important;
}
.main_wrap .aligncenter {
  display: block;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}
.main_wrap .alignleft {
  float: left;
  margin-right: 20px;
  max-width: 100%;
}
.main_wrap .alignright {
  float: right;
  margin-left: 20px;
  max-width: 100%;
}
.wp-caption {
  margin-bottom: 20px;
}
.wp-caption img {
  margin-bottom: 10px;
  padding: 0;
  border: 0 none;
  display: block;
}
.wp-caption .wp-caption-text {
  /*margin-right: 20px;  右側の余白調整 */
  font-size: 88% !important;
}
p.wp-caption-text {
  margin-bottom: 40px;
	font-size: 88%;
	margin-top: 0px;
    line-height: 1.5;
}

/*2列レイアウト*/
.col-2_list {
	display: flex;
	flex-wrap: wrap;
	 gap: 20px 20px;
	justify-content: space-between;
}
.col-2_list::after{
  content:"";
  display: block;
   width: calc(100% / 2 - 20px);
}
.col-2_list .col_box{
	max-width: 540px;
	 width: calc(100% / 2 - 20px);
}
/*3列*/
.col-3_list {
	display: flex;
	flex-wrap: wrap;
	 gap: 20px 20px;
	justify-content: space-between;
	
}
.col-3_list::after{
  content:"";
  display: block;
   width: calc(100% / 3 - 20px);
}
.col-3_list .col_box{
	max-width: 330px;
	 width: calc(100% / 3 - 20px);
}
.col_box {
	margin-bottom: 40px;
}
.col_box .box{
	margin-top: -10px;
}
.col_box p,.col_box .box{
	margin-bottom: 0!important;
}	
@media(max-width: 768px) {
  .main_wrap .alignright, .main_wrap .alignleft {
    float: none;
    display: block;
    margin: 0 auto 30px;
    text-align: center;
  }
/*2列レイアウト*/
.col-2_list {
	 gap: 10px 10px;
}
.col-2_list .col_box{
	 width: calc(100% / 2 - 10px);
}
/*3列*/
.col-3_list {
	 gap: 10px 10px;
}
.col-3_list .col_box{
	 width: calc(100% / 2 - 10px);
}
}
@media(max-width: 550px) {
.col_box {
	margin: 0 auto 40px auto;
}	
/*2列レイアウト*/
.col-2_list .col_box{
	 width: calc(100% / 1 - 10px);
}
/*3列*/
.col-3_list {
	 gap: 10px 10px;
}
.col-3_list .col_box{
	 width: calc(100% / 1 - 10px);
}
}
/*----------------------------------------
	リスト関連
-----------------------------------------*/
.main_wrap ul {
  margin-bottom: 40px;
	padding: 0;
}
.main_wrap ul li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
	list-style: none;
}
.main_wrap ul li:before {
  content: "";
  background-color: #006837;
  width: 7px;
  height: 7px;
  vertical-align: middle;
  display: block;
  left: 0;
  top: 0.8em;
  position: absolute;
}
.main_wrap ol,ol.num_list {
  margin-bottom: 40px;
  counter-reset: number; /*数字をリセット*/
  list-style-type: none; /*数字を一旦消す*/
}
.main_wrap ol,ol.num_list {
  counter-reset: item;
}
.main_wrap ol li,ol.num_list li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 30px;
}
.main_wrap ol li:before ,ol.num_list li:before {
  counter-increment: item;
  content: counter(item)".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 113%;
  font-weight: bold;
  color:#006837;
  font-style: italic;
	text-align: right;
}
@media(max-width: 768px) {}
/*----------------------------------------
	囲みボックス
-----------------------------------------*/
.main_wrap .box {
  background: #EEF3F8;
  padding: 1em;
  margin-bottom: 40px;
  position: relative;
}
.main_wrap .box p {
  margin-bottom: 0 !important;
	font-size: 88%;
}
@media screen and (max-width: 768px) {}
/*----------------------------------------
	引用文
-----------------------------------------*/
.main_wrap blockquote {
    position: relative;
    padding: 10px 15px 10px 60px;
    box-sizing: border-box;
    background: #fafafa;
    color: #555;
	margin-bottom: 40px;
}

.main_wrap blockquote:before{
    display: inline-block;
    position: absolute;
    top: 18px;
    left: 15px;
      content: "\f10e";
  font-family: FontAwesome;
    color: #cfcfcf;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.main_wrap blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
}

.main_wrap blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}
@media screen and (max-width: 768px) {
	.main_wrap blockquote:before{
    font-size: 20px;
}
.main_wrap blockquote {
    position: relative;
    padding: 10px 15px 10px 40px;
    box-sizing: border-box;
    background: #efefef;
    color: #555;
}
}
/*----------------------------------------
	テーブル関連
-----------------------------------------*/
.main_wrap table{
	width: 100%;
	margin-bottom: 40px;
    }
.main_wrap table,.main_wrap table td,.main_wrap table th {
    border-collapse: collapse;
    }
.main_wrap table td,.main_wrap table th {
   padding: 1.5em 0.5em;
    }
.main_wrap table th {
	border-bottom: 1px solid #1D2087;
	width: 25%;
    }
.main_wrap table td {
	border-bottom:1px solid #b3b3b3;
    }

@media screen and (max-width: 550px){
.main_wrap table th {
	border-bottom: 1px solid #1D2087;
	width: 30%;
    }
}