@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;
  padding-left: 20px;
  color: #2E59A7;
}
.main_wrap h1::before, .midashi01::before, .main_wrap h2::before, .midashi02::before {
  content: "";
  width: 8px;
  height: 100%;
  background-color: #2E59A7;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
}
.main_wrap h3, .midashi03 {
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 138%;
  font-weight: 700;
  position: relative;
  border-bottom: 3px solid #2E59A7;
  padding-bottom: 10px;
}
.main_wrap h4, .midashi04 {
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 113%;
  color: #2E59A7;
  font-weight: 700;
  position: relative;
}
.main_wrap h5, .midashi05 {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 100%;
  font-weight: 700;
  position: relative;
}
.main_wrap h6, .midashi06 {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 88%;
  font-weight: 700;
  position: relative;
}
.main_wrap h3, .main_wrap h4, .main_wrap h5, .main_wrap h6 {
  margin-top: 50px;
}
.main_wrap p {
  margin-bottom: 20px;
}
.main_wrap p, .main_wrap table, .main_wrap ul, .list, .main_wrap ol, ol.num_list {
  line-height: 40px;
  font-size: 113%;
}
@media(max-width: 768px) {
  .main_wrap h1, .midashi01, .main_wrap h2, .midashi02 {
    font-size: 113%;
    padding-left: 15px;
  }
  .main_wrap h1::before, .midashi01::before, .main_wrap h2::before, .midashi02::before {
  width: 4px;
}
  .main_wrap h3, .midashi03 {
    font-size: 100%;
  }
  .main_wrap h4, .midashi04 {
    font-size: 100%;
  }
  .main_wrap h5, .midashi05 {
    font-size: 100%;
  }
  .main_wrap h6, .midashi06 {
    font-size: 88%;
  }
  .main_wrap p, .main_wrap table, .main_wrap ul, .list, .main_wrap ol, ol.num_list {
    line-height: 32px;
    font-size: 100%;
  }
}
/*----------------------------------------
	リンク関連
-----------------------------------------*/
.main_wrap p a, .main_wrap ul a, .main_wrap ol a, .main_wrap table a {
  color:#2E59A7;
  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;
}
.main_wrap p a:visited {
  color: #2E59A7;
  text-decoration: underline;
}
/*リンクテキスト*/
a.link_txt {
  position: relative;
  padding: 0.5em 0.5em 0.5em 0;
  vertical-align: middle;
  /*color: #45BFB9 !important;
	text-decoration: underline;*/
  font-weight: 500;
}
.main_wrap p a[target="_blank"]:after {
  content: url("../images/ico_link.svg");
  margin-left: 5px;
}
.main_wrap a[href$=".ppt"]:after {
  content: url("../images/ico_ppt.svg") !important;
}
.main_wrap a[href$=".doc"]:after, .main_wrap a[href$=".docx"]:after {
  content: url("../images/ico_doc.svg") !important;
}
.main_wrap a[href$=".xlsx"]:after, .main_wrap a[href$=".xls"]:after {
  content: url("../images/ico_xls.svg") !important;
}
/*-------------------------------------*/
/*	ボタン	*/
/*-------------------------------------*/
a.bt_orange {
  position: relative;
  display: inline-block;
  outline: none;
  transition: ease .2s;
  padding: 1em 55px 1em 55px;
  width: 100%;
  max-width: 400px;
  line-height: 1;
  text-decoration: none !important;
  color: #FFFFFF !important;
  font-size: 138%;
  background-color: #EF8448;
  border: 2px solid #EF8448;
  border-radius: 50px;
  transition: ease .2s;
  font-weight: 700;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
a.bt_orange::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../images/ico_circle_white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
a.bt_orange[target="_blank"]::after {
  background-image: url("../images/ico_circle_link.svg");
}
a.bt_orange:hover {
  background-color: #FFFFFF;
  color: #EF8448 !important;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.16);
}
a.bt_orange:hover::after {
  background-image: url("../images/ico_circle_orange.svg");
  top: 50%;
  right: 0.5em;
}
a.bt_orange[target="_blank"]:hover::after {
  background-image: url("../images/ico_circle_link02.svg");
}
@media screen and (max-width: 768px) {
  a.bt_orange {
    font-size: 100%;
    width: 85%;
    padding: 1em 35px 1em 35px;
  }
  a.bt_orange::after {
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0.5em;
}
}
@media screen and (max-width: 550px) {}
/*-------------------------------------*/
/*	ボタン　白	*/
/*-------------------------------------*/
a.bt_white {
  position: relative;
  display: inline-block;
  outline: none;
  transition: ease .2s;
  padding: 1em 55px 1em 55px;
  width: 100%;
  max-width: 400px;
  line-height: 1;
  text-decoration: none !important;
  color: #EF8448 !important;
  font-size: 138%;
  background-color: #FFFFFF;
  border: 2px solid #EF8448;
  border-radius: 50px;
  transition: ease .2s;
  font-weight: 700;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
a.bt_white::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../images/ico_circle_orange.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
a.bt_white:hover {
  background-color: #EF8448;
  color: #FFFFFF !important;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.16);
}
a.bt_white:hover::after {
  background-image: url("../images/ico_circle_white.svg");
  top: 50%;
  right: 0.5em;
}
@media screen and (max-width: 768px) {
  a.bt_white {
    font-size: 100%;
    width: 85%;
    padding: 1em 35px 1em 35px;
  }
}
@media screen and (max-width: 550px) {}
/*-------------------------------------*/
/*	ボタン（赤）	*/
/*-------------------------------------*/
a.bt_red {
  position: relative;
  display: inline-block;
  outline: none;
  transition: ease .2s;
  padding: 1em 1.5em;
  width: 100%;
  max-width: 400px;
  line-height: 1;
  text-decoration: none !important;
  color: #FFFFFF !important;
  font-size: 138%;
  background-color: #FF0000;
  border: 2px solid #FFFFFF;
  border-radius: 50px;
  transition: ease .2s;
  font-weight: 700;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
a.bt_red:hover {
  background-color: #FFFFFF;
  color: #FF0000 !important;
   border: 2px solid #FF0000;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  a.bt_red {
    font-size: 100%;
    width: 85%;
    padding: 1em 1em;
  }
  a.bt_red::after {
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0.5em;
}
}
/*-------------------------------------*/
/*	ボタン　戻る	*/
/*-------------------------------------*/
a.bt_back {
  position: relative;
  display: inline-block;
  outline: none;
  transition: ease .2s;
  padding: 1em 55px 1em 55px;
  width: 100%;
  max-width: 400px;
  line-height: 1;
  text-decoration: none !important;
  color: #EF8448 !important;
  font-size: 138%;
  background-color: #FFFFFF;
  border: 2px solid #EF8448;
  border-radius: 50px;
  transition: ease .2s;
  font-weight: 700;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
a.bt_back::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../images/ico_circle_back.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
a.bt_back:hover {
  background-color: #EF8448;
  color: #FFFFFF !important;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.16);
}
a.bt_back:hover::after {
  background-image: url("../images/ico_circle_back02.svg");
  top: 50%;
  left: 0.5em;
}
@media screen and (max-width: 768px) {
  a.bt_back {
    font-size: 100%;
    width: 80%;
  }
}
@media screen and (max-width: 550px) {}
/*-------------------------------------*/
/*	ボタン　お問い合わせ	*/
/*-------------------------------------*/
a.bt_contact {
  top: 0;
  background-color: #FED848;
  display: inline-block;
  font-weight: 700;
  font-size: 32px;
  padding: 1em 2em;
  border-radius: 80px;
  position: relative;
  transition: .2s ease-in-out;
  box-shadow: 0 9px #ECC42E;
  max-width: 760px;
    width: 100%;
    line-height: 1.5;
}
a.bt_contact:hover {
  background-color: #2E59A7;
  color: #FFFFFF;
  box-shadow: 0 0 #ECC42E;
  top: 9px;
}
a.bt_contact::before {
  content: "";
  width: 17px;
  height: 38px;
  background-image: url("../images/ico_arrow_blue.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s;
}
a.bt_contact:hover::before {
  top: 50%;
  right: 25px;
  background-image: url("../images/ico_arrow_white.svg");
}
a.bt_contact::after {
  content: "";
  width: 120px;
  height: 120px;
  background-image: url("../images/free_label.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -60px;
  left: -10px;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  a.bt_contact {
    font-size: 28px;
  }
  a.bt_contact::after {
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -10px;
  }
}
@media screen and (max-width: 768px) {
  a.bt_contact {
    top: 0;
    background-color: #FED848;
    display: inline-block;
    font-weight: 700;
    font-size: 24px;
    padding: 1em 3em;
    border-radius: 50px;
    position: relative;
    transition: .2s ease-in-out;
    box-shadow: 0 9px #ECC42E;
    width: 85%;
  }
  a.bt_contact::before {
    content: "";
    width: 10px;
    height: 30px;
    right: 20px;
  }
  a.bt_contact:hover::before {
    top: 50%;
    right: 15px;
  }
  a.bt_contact::after {
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -20px;
  }
}
@media screen and (max-width: 550px) {
  a.bt_contact {
    top: 0;
    background-color: #FED848;
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    padding: 1em 2em;
    border-radius: 50px;
    position: relative;
    transition: .2s ease-in-out;
    box-shadow: 0 9px #ECC42E;
  }
    a.bt_contact::after {
    content: "";
    width: 60px;
    height: 60px;
    top: -20px;
    left: -20px;
  }
}
/*----------------------------------------
	レイアウト関連
-----------------------------------------*/
.main_wrap hr {
  margin-bottom: 40px;
  margin-top: 40px;
  border-top: 1px solid #aaaaaa;
  padding: 0;
}
.gallery-item {
  padding: 5px;
}
.main_wrap img {
  margin-bottom: 10px;
  border: none !important;
  border-radius: 20px;
}
.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: 75% !important;
}
p.wp-caption-text {
  margin-bottom: 40px;
  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;
  max-width: 630px;
  width: calc(100% / 2 - 20px);
}
.col-2_list .col_box {
  max-width: 630px;
  width: calc(100% / 2 - 20px);
  margin-bottom: 30px;
}
/*3列*/
.col-3_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  justify-content: space-between;
}
.col-3_list::after {
  content: "";
  display: block;
  max-width: 500px;
  width: calc(100% / 3 - 20px);
}
.col-3_list .col_box {
  max-width: 500px;
  width: calc(100% / 3 - 20px);
  margin-bottom: 30px;
}
.col_box {
  position: relative;
}
.main_wrap .col_box {
  margin-bottom: 40px;
}
.col_box .box {
  margin-top: -10px;
}
.col_box p, .col_box .box {
  margin-bottom: 0;
}
/*3列→2列*/
.col-3-2_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  justify-content: space-between;
}
.col-3-2_list::after {
  content: "";
  display: block;
  max-width: 500px;
  width: calc(100% / 3 - 20px);
}
.col-3-2_list .col_box {
  max-width: 500px;
  width: calc(100% / 3 - 20px);
  margin-bottom: 60px;
}
@media(max-width: 991px) {
  .col-3_list {
    gap: 20px 20px;
  }
  .col-3_list::after {
    width: calc(100% / 2 - 20px);
  }
  .col-3_list .col_box {
    width: calc(100% / 2 - 20px);
    margin: 0 auto 20px auto;
  }
  /*3列→2列*/
  .col-3-2_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 10px;
    justify-content: space-between;
  }
  .col-3-2_list::after {
    content: "";
    display: block;
    max-width: 500px;
    width: calc(100% / 2 - 10px);
  }
  .col-3-2_list .col_box {
    max-width: 500px;
    width: calc(100% / 2 - 10px);
    margin-bottom: 20px;
  }
}
@media(max-width: 768px) {
  .gallery-item {
    padding: 5px;
    float: none !important;
    margin: 10px auto 20px auto !important;
    text-align: center;
    width: 100% !important;
    max-width: 500px;
  }
  .main_wrap hr {
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .main_wrap .alignright, .main_wrap .alignleft {
    float: none;
    display: block;
    margin: 0 auto 30px;
    text-align: center;
  }
/*2列レイアウト 縦並び*/
  .main_wrap .col-2_list .col_box {
    margin: 0 auto 40px auto;
  }
  .col-2_list {
    flex-direction: column;
  }
  .col-2_list .col_box {
    width: 100%;
    margin: 0 auto 30px auto;
  }
  .col-2_list::after {
    content: "";
    display: block;
    max-width: 330px;
    width: 100%;
  }
  .col-2_list .col_box {
    max-width: 330px;
    width: 100%;
  }
  /*3列　縦並び*/
  .main_wrap .col-3_list .col_box {
    margin: 0 auto 40px auto;
  }
}
@media(max-width: 550px) {

  .col-3_list {
    flex-direction: column;
  }
  .col-3_list .col_box {
    width: 100%;
    max-width: 330px;
    margin: 0 auto 20px auto;
  }
}
/*----------------------------------------
	リスト関連
-----------------------------------------*/
.main_wrap ul, .list {
  margin-bottom: 40px;
  padding: 0;
}
.main_wrap ul li, .list li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
  list-style: none;
}
.main_wrap ul li:before, .list li::before {
  content: "";
  background-color: #EF8448;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  display: block;
  left: 0;
  top: 1em;
  position: absolute;
}
.main_wrap ul.page_link {
  padding: 0;
  font-weight: 500;
}
.main_wrap ul.page_link li {
  position: relative;
  padding-left: 0;
  list-style: none;
}
.main_wrap ul.page_link li a {
  color: #FFFFFF;
  text-decoration: none;
}
.main_wrap ul.page_link li:before {
  content: none;
}
.main_wrap ol, ol.num_list {
  margin-bottom: 40px;
  counter-reset: number; /*数字をリセット*/
  list-style-type: none; /*数字を一旦消す*/
  padding: 0;
}
.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-weight: bold;
  color: #2E59A7;
  text-align: right;
}
@media(max-width: 768px) {
  .main_wrap ul, .list {
    margin-bottom: 40px;
  }
  .main_wrap ul li:before, .list li::before {
  top: 0.8em;
}
  .main_wrap ol, ol.num_list {
    margin-bottom: 40px;
  }
}
/*----------------------------------------
	囲みボックス
-----------------------------------------*/
.box {
  padding: 2em;
  margin-bottom: 60px;
  position: relative;
  background: #FFFFFF;
  border: 2px solid #2E59A7;
}
.box p {
  margin-bottom: 0 !important;
}
.box h2, .box h3, .box h4, .box h5, .box h6 {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  color: #000000 !important;
  font-size: 115%;
  font-weight: 500;
  padding: 0;
  border: none;
}
.box h3::before {
  content: none;
}
.changeBlue .main_wrap .box {
  color: #fe0;
}
.changeBlack .box p, .changeBlack .box table td, .changeBlack .box table td, .changeBlack .box li, .changeBlue .box p, .changeBlue .box table td, .changeBlue .box table td, .changeBlue .box li {
  color: #000000 !important;
}
@media screen and (max-width: 768px) {
  .box {
    padding: 1em;
    margin-bottom: 40px;
  }
  .box h2, .box h3, .box h4, .box h5, .box h6 {
    font-size: 115%;
  }
}
/*----------------------------------------
	引用文
-----------------------------------------*/
.main_wrap blockquote {
  position: relative;
  padding: 10px 15px 10px 60px;
  box-sizing: border-box;
  background: #FFFFFF;
  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: 20px;
  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;
    color: #555;
    margin-bottom: 40px;
  }
}
/*----------------------------------------
	テーブル関連
-----------------------------------------*/
.main_wrap table, .gaiyo {
  width: 100%;
  margin-bottom: 30px;
}
.main_wrap table, .main_wrap table td, .main_wrap table th, .gaiyo, .gaiyo td, .gaiyo th {
  border-collapse: collapse;
  vertical-align: middle;
}
.main_wrap table td, .main_wrap table th, .gaiyo td, .gaiyo th {
  padding: 0.5em;
  line-height: 1.5;
}
.main_wrap table tr:nth-of-type(odd), .gaiyo tr:nth-of-type(odd) {
  background-color: #DCEFFF;
}
.main_wrap table th, .gaiyo th {
  font-weight: 700;
  font-size: 100%;
  width: 25%;
  text-align: center;
}
.main_wrap table td, .gaiyo td {
  font-size: 100%;
}
@media screen and (max-width: 768px) {
  .main_wrap table, .gaiyo {
    margin-bottom: 30px;
  }
  .main_wrap table th, .gaiyo th {
    font-size: 100%;
    width: 30%;
  }
}