@charset "UTF-8";
/* CSS Document */

/*------
          共通レイアウト
                          ------*/


body{
	font-size: 16px;
  font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: normal;
	color: #000;
  line-height: 1.75em;
}
img{
  max-width: 100%;
}
.wp-block-image img{
	height: auto;
}
header,section{
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
a{
  color: #e84658;
  text-decoration: underline;
  transition: 0.4s;
}
a:hover{
  opacity: 0.6;
  text-decoration: none;
}
a img{
  transition: 0.4s;
}
a:hover img{
  opacity: 0.6;
}
.roboto{
  font-family: 'Roboto Condensed', sans-serif;
}
/*------ボタン------*/
a.btn{
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #e4263c;
  padding: 10px 40px;
  font-weight: bold;
  position: relative;
}
a.btn.arrowLeft:before{
  font-family: "Font Awesome 5 Free";
  content:"\f053";
  font-size: 10px;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -14px;
}
a.btn.arrowRight:after{
  font-family: "Font Awesome 5 Free";
  content:"\f054";
  font-size: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -14px;
}
a.btn.exLink:after{
  font-family: "Font Awesome 5 Free";
  content:"\f35d";
  font-size: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -14px;
}
a.btn.pdf:after{
  font-family: "Font Awesome 5 Free";
  content:"\f1c1";
  font-size: 14px;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -14px;
}
a.btn.white{
  box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #fff;
  border: 2px solid #e4263c;
  color: #e4263c;
  padding: 8px 38px;
  font-weight: bold;
  position: relative;
}
/*------ヘッダー------*/
header{
  margin-bottom: -98px;
}
header .inner{
  z-index: 9999;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
header .inner h1{
  background: #e4263c;
  padding: 35px 43px 25px;
}
header .inner h1 img{
  width: 134px;
  height: auto;
}
header .inner nav{
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  height: 58px;
  align-items: center;
}
header .inner nav ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  background: #fff;
}
header .inner nav .parent{
  position: relative;
  padding: 10px;
  width: auto;
}
header .inner nav .parent > a,
header .inner nav .parent > span{
  font-weight: bold;
  color: #252525;
  text-decoration: none;
}
header .inner nav .child{
  display: none;
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 205px;
  padding: 10px;
  border: 2px solid #e4263c;
  border-radius: 10px;
  background: #fff;
}
header .inner nav .child a{
  display: block;
  padding: 5px 0;
  font-size: 14px;
  text-align: center;
  color: #252525;
  line-height: 1.8em;
  text-decoration: none;
}
header .inner .contact{
  text-decoration: none;
  background: #e4263c;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 15px 30px;
  display: inline-block;
  margin-left: 10px;
}
/*------セクション------*/
section{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 70px;
}
.boxInner{
  background: #f8f8f8;
  padding: 0 20px 20px;
}
@media(max-width:1050px){
  section{
    width: 100%;
    max-width: none;
    margin: 0 auto 40px;
  }
  .boxInner{
    background: #f8f8f8;
    padding: 0 20px 20px;
  }
}
/*------見出し------*/
section h2{
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
  text-align: center;
}
section h2 strong{
  /* background: #e4263c; */
  /* padding: 5px 10px; */
  /* color: #fff; */
}
section h2 strong:after{
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  margin: 9px auto 0;
  background: #e4263c;
}
@media(max-width:768px){
  section h2 strong:after{
    width: 86%;
  }
}

section ul + h2,
section ol + h2,
section p + h2,
section table + h2,
section figure + h2{
  margin-top: 60px;
}
section h3{
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #e4263c;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 24px;
}
section h3.border{
  margin-top: 50px;
}
section h3.border:after{
  content:"";
  display: block;
  width: calc( 30% + 100px);
  height: 2px;
  margin: 10px auto 20px;
  background: #e4263c;
}
@media(max-width:768px){
  section h3{
    letter-spacing: 0;
  }
  section h3.border:after{
    width: 80%;
  }
}
section ul + h3,
section ol + h3,
section p + h3{
  margin-top: 30px;
}
section p{
  margin-bottom: 15px;
}
.sp{
  display: none;
}
@media(max-width:768px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}

.pagenav{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 50px;
}
@media(max-width:768px){
  .pagenav{
    align-items: flex-start;
  }
}
.pagenav li{
  width: calc(100% / 4 - 10px)
}
@media(max-width:768px){
  .pagenav li{
    width: calc(100% / 2 - 10px);
    margin-bottom: 10px
  }
}
.pagenav li a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5px 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  background: #fff;
  border: 2px solid #e4263c;
  color: #e4263c;
  font-weight: bold;
  position: relative;
  box-sizing: border-box;
}
.pagenav li .current{
  color: #fff;
  background: #e4263c;
}
@media(max-width:768px){
  .pagenav li a{
    height: 50px;
    font-size: 11px;
    line-height: 1.2;
  }
}

/*------フッター------*/
footer .inner{
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
footer .inner nav ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
footer .inner nav ul li{
  width: calc(100% / 4 - 10px)
}
footer .inner nav ul li a{
  display: block;
  text-align: center;
  padding: 5px 0;
  width: 100%;
  color: #fff;
  background: #e4263c;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 3px solid #a5202f;
}
footer .inner ol{
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
footer .inner ol li{
  width: auto;
  display: inline-block;
  margin: 0 10px;
}
footer .companyinfo{
  color: #e4263c;
  border-top: 2px solid #e4263c;
  padding: 0px 0 5px;
  position: relative;
}
footer .companyinfo .inner h2{
  width: 134px;
  height: auto;
  position: absolute;
}
footer .companyinfo .inner ul{
  padding: 50px 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
footer .companyinfo .inner ul li a{
  color: #e4263c;
  display: inline-block;
  text-decoration: none;
  margin-right: 10px;
}
footer .companyinfo .inner ul li a:after{
  content:"|";
  margin-left: 10px;
  display: inline-block;
  color: #e4263c;
}
footer .companyinfo .inner ul li:last-of-type a{
  margin-right: 0;
}
footer .companyinfo .inner ul li:last-of-type a:after{
  content: none;
  margin-left: 0;
}
footer .companyinfo .inner p.copyright{
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  padding-top: 25px;
  letter-spacing: 0.1em;
  color: #000;
}
@media(max-width:768px){
  footer .inner{
    max-width: none;
    width: 94%;
  }
  footer .inner nav ul{
    margin-bottom: 30px;
  }
  footer .inner nav ul li{
    width: calc(100% / 2 - 5px);
    margin-bottom: 5px;
  }
  footer .inner nav ul li a{
    font-size: 12px;
    border-bottom: 2px solid #a5202f;
  }
  footer .inner ol{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
  }
  footer .inner ol li{
    width: auto;
    display: inline-block;
    margin: 0 4px;
    flex-wrap: wrap;
    width: auto;
    max-width: 20%;
  }
  footer .companyinfo .inner h2{
    width: 124px;
  position: relative;
  margin: 0 auto 30px;
  }
}
@media(max-width:420px){
  footer .inner ol{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
  }
  footer .inner ol li{
    width: auto;
    display: inline-block;
    margin: 0 4px;
    flex-wrap: wrap;
    width: auto;
    max-width: 40%;
  }
  footer .companyinfo .inner h2{
    width: 100px;
  }
  footer .companyinfo .inner ul {
      padding: 0px 0;
      font-size: 12px;
  }
}
/*------NAVIGATION------*/
/*--1050pxで切り替え--*/
#spMenu{
  display: none;
}
@media(max-width:1050px){
  header{
    margin-bottom:-136px;
  }
  header .inner h1{
    background: #e4263c;
    padding: 25px 20px 15px;
  }
  header .inner h1 img{
    width: 100px;
    height: auto;
  }
  header .inner nav{
    display: none;
    height: auto;
    position: absolute;
    top: 58px;
    right: 0;
  }
  header .inner nav ul {
      display: block;
      background-color: #fff;
  }
  header .inner nav .parent {
      margin: 0 ;
      padding: 0;
      text-align: center;
      border-top: 1px solid #eee;
  }
  header .inner nav .parent > a,
  header .inner nav .parent > span{
    padding: 10px 30px;
    display: block;
  }
  header .inner nav .parent > a:hover,
  header .inner nav .parent > span:hover{
    background: #e4263c;
    color: #fff;
  }
  header .inner nav .child{
    position: static;
    transform: none;
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0;
  }
  header .inner nav .child li{
  }
  header .inner nav .child a{
    padding: 10px 30px;
    background: #FCEAEC;
    font-weight: bold;
    border-top: 1px solid #fff
  }
  header .inner nav i{
    transition: all .2s ease;
  }
  header .inner nav .is-active i {
    transform: rotate(180deg);
  }

  header .inner .contact{
    width: 100%;
    margin-left: 0;
    padding: 15px 0;
  }
  #spMenu{
    display: block;
    padding: 10px 20px;
    background: #fff;
    height: 58px;
    z-index: 99999;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  #spMenu i{
    font-size: 38px;
    color: #e4263c;
  }
}
@media(max-width:420px){
  header .inner nav{
    width: 100%;
  }
}

/*------下層ヘッダ調整------*/
.second header {
  margin-bottom: 0;
}
.second header .inner p{
  padding: 15px 20px;
  background: #e4263c;
}
.second header .inner p img{
  width: 190px;
  vertical-align: bottom;
  height: auto;
}
@media(max-width:1050px){
  .second header .inner p img{
    width: 120px;
    vertical-align: bottom;
    height: auto;
  }
}

/*------下層レイアウト調整------*/
.breadcrumb{
  padding: 10px 20px;
  font-size: 12px;
}
.breadcrumb span{
  font-weight: bold;
}
/* .breadcrumb a:after{
  content:">";
  display: inline-block;
  padding: 0 10px;
  color: #000;
} */
.second section{
  margin: 30px auto;
}
.second section .boxInner{
  background: none;
  width: 94%;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
}

.second section h1{
  font-size: 26px;
  margin-bottom: 20px;
  border-left: 3px solid #e4263c;
  padding-left: 15px;
}
.second section h4{
  margin-bottom: 15px;
}
.second section .categoryList dl{
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}
.second section .categoryList dl:last-child{
  border: 0;
}
.second section .categoryList dl dt{
  font-weight: bold;
}
.second section .categoryList dl dt span{
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-right: 10px;
}
.second .wp-pagenavi{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.second .wp-pagenavi a:hover,
.second .wp-pagenavi span.current{
  border: 1px solid #e4263c;
  background: #e4263c;
  color: #fff;
  display: inline-block;
  padding: 2px 10px 1px;
  margin: 0 5px;
}
.second .wp-pagenavi a{
  text-decoration: none;
  border: 1px solid #e4263c;
  color: #e4263c;
  display: inline-block;
  padding: 2px 10px 1px;
  margin: 0 5px;
}
.second .post p{
    margin-bottom: 20px;
}
.second .post p:last-of-type{
    margin-bottom: 0;
}
@media(max-width:768px){
  .second section h1{
    font-size: 22px;
  }
  .second section .boxInner {
    width: 100%;
    padding: 20px;
  }
  .second .post img{
    width: 100%;
    height: auto;
  }
}

/*Flex*/
.flex-2,
.flex-3{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-2.reverse{
  flex-direction: row-reverse;
}
.flex-2 > div{
  width: calc(100% / 2 - 5px)
}
.flex-3 > div{
  width: calc(100% / 3 - 5px)
}
@media(max-width:768px){
  .flex-2,
  .flex-3{
    display: block;
  }
  .flex-2.reverse{
    flex-direction: row-reverse;
  }
  .flex-2 > div,
  .flex-3 > div{
    margin-bottom: 20px;
    width: 100%;
  }
  .flex-2 > div:last-of-type,
  .flex-3 > div:last-of-type{
    margin-bottom: 0;
  }
}

/* 余白 */
.mt10{
  margin-top: 10px;
}
.mt20{
  margin-top: 20px;
}
.mt30{
  margin-top: 10px;
}
.mt40{
  margin-top: 30px;
}
.mt50{
  margin-top: 40px;
}
.mt60{
  margin-top: 50px;
}
.mt70{
  margin-top: 60px;
}
.mt80{
  margin-top: 70px;
}
.mb10{
  margin-bottom: 10px;
}
.mb20{
  margin-bottom: 20px;
}
.mb30{
  margin-bottom: 10px;
}
.mb40{
  margin-bottom: 30px;
}
.mb50{
  margin-bottom: 40px;
}
.mb60{
  margin-bottom: 50px;
}
.mb70{
  margin-bottom: 60px;
}
.mb80{
  margin-bottom: 70px;
}
/* テキスト揃え */
.ta_c{
  text-align: center;
}
.ta_r{
  text-align: right;
}
.ta_j{
  text-align: justify;
}
/*背景色*/
.bg{
  padding: 20px;
}
.bg.gray{
  background:#f4f4f4;
}
.bg.pink{
  background:#fff1f1;
}

table{
  border-collapse: collapse;
}
th,td{
  padding: 10px 15px;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  font-size: 14px;
}
td:first-child{
  width: 26%;
  background:#f4f4f4;
  font-weight: bold;
}
.wp-block-table figcaption{
  text-align: right;
  font-size: 12px;
}
.pl15{
  margin-left: 15px;
}
.pl20{
  margin-left: 20px;
}
.pl30{
  margin-left: 30px;
}
.pl45{
  margin-left: 45px;
}
.tipl{
  text-indent: -1em;
  padding-left: 1em;
}
.tipl3{
  text-indent: -3em;
  padding-left: 3em;
}
.ul{
  padding-left: 20px;
  list-style-type: disc;
}

.prevnext{
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.wp-block-image figcaption{
}