@charset "UTF-8";

/******************************
  news
******************************/
.newssec{
  padding: 50px 0 18px;
}
.news_inner{
  max-width: 960px;
  padding: 0 25px;
  margin: 0 auto;
}
.news_box{
  background: #fff;
  border-radius: 20px;
  border: 2px solid #ab0a3d;
  padding: 14px 34px 30px 36px;
}
.news_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}
.news_header .news_ttl{
  background: none;
  border: none;
  color: #ab0a3d;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 3px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
.news_header .news_archivelink{
  color: #ab0a3d;
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding-right: 45px;
  position: relative;
}
.news_header .news_archivelink::before{
  content: "";
  aspect-ratio: 1/1;
  background: url(../img/news_arrow.svg) no-repeat center / cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 28px;
}
.news_list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news_list .news_list_item > a{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px 0;
}
.news_list_info .cat{
  border-radius: 100px;
  border: 1px solid #ab0a3d;
  color: #ab0a3d;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
  min-width: 150px;
  text-align: center;
}
.news_list_info time{
  font-size: 15px;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .newssec{
    padding: 30px 0 12px;
  }
  .news_inner{
    padding: 0 13px;
  }
  .news_box{
    padding: 20px 17px 26px ;
  }
  .news_header .news_ttl{
    font-size: 24px;
  }
  .news_header .news_archivelink{
    font-size: 18px;
    padding-right: 35px;
  }
  .news_header .news_archivelink::before {
    width: 24px;
  }
  .news_list .news_list_item > a {
    gap: 5px;
  }
  .news_list_info .cat{
    min-width: 130px;
  }
  .news_list_ttl{
    width: 100%;
  }
}

/******************************
  flex
******************************/
.flexbox1{
  display: flex;
  flex-wrap: wrap;
}
.flexbox2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flexbox3{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex{
  display: flex;
}
.frr{
  flex-direction: row-reverse;
}
.fac{
  align-items: center;
}
.fast{
  align-items: stretch;
}
.fafe{
  align-items: flex-end;
}
.fafs{
  align-items: flex-start;
}
.fabl{
  align-items: baseline;
}

.fbox,
.ftxtbox,
.fimgbox{
  width: 48%;
}
.fimgbox{
  text-align: center;
}

/******************************
  ttl
******************************/

/******************************
  btn
******************************/

/******************************
  tbl
******************************/

/******************************
  header
******************************/
.cmnhead{
  height:190px;
  width:100%;
  padding:40px 0 0;
  border-bottom:10px solid #ab0a3d;
  background:#fff;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.cmnhead .logo{
  width:460px;
  margin:0 auto 40px;
  line-height:1;
  font-size:0;
}
.cmnhead #navi{
  margin:0 auto;
  text-align:center;
  line-height:1;
}
.cmnhead #navi li{
  display:inline-block;
  margin:0 17px;
}
.cmnhead #naviBtn{
  display:none;
}
@media only screen and (max-width: 980px) {
  .cmnhead{
    display:flex;
    justify-content:space-between;
    position:fixed;
    top: 0;
    left: 0;
    height:70px;
    padding:0 9%;
    z-index:100;
  }
  .cmnhead .logo{
    width:69%;
    margin:16px 0 0;
  }
  .cmnhead #navi{
    display:block;
    position:fixed;
    height:calc(100vh - 70px);
    width:100%;
    top:70px;
    left:100%;
    padding:20px 0 0;
    background:#ab0a3d;
    backdrop-filter: blur(2px);
    z-index:100;
    transition:0.4s ease-in-out;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
  }
  .cmnhead #navi.open{
    left:0;
    transition:0.4s ease-in-out;
  }
  .cmnhead #navi li{
    display:block;
    width:82%;
    margin:0 auto 15px;
    padding:0 0 20px;
    border-bottom:1px solid #fff;
    text-align:center;
  }
  .cmnhead #navi li a{
    color:#fff;
  }
  .cmnhead #naviBtn{
    display:block;
    position:fixed;
    justify-content:center;
    top:16px;
    right:9%;
    width:8%;
    height:30px;
    background:url(../images/common/navi.svg) no-repeat;
    background-position:center;
    background-size:100% auto;
  }
  .cmnhead #naviBtn.open{
    background:url(../images/common/navi_close.svg) no-repeat center;
  }
}

/******************************
  footer
******************************/
.cmnfot{
  position:relative;
  border-top:solid 7px #ab0a3d;
  padding:0 0 100px;
}
.cmnfot #totop{
  position: absolute;
  width: 50px;
  height: 50px;
  top: -52px;
  right: 5%;
  background:#eeefef url(../images/common/totop.svg) no-repeat;
  background-size:100%;
  cursor: pointer;
}
.cmnfot .logo{
  width:460px;
  margin:0 auto 40px;
  line-height:1;
  font-size:0;
}
.cmnfot #footnavi{
  margin:50px auto 60px;
  text-align:center;
}
.cmnfot #footnavi li{
  display:inline-block;
  margin:0 17px;
  line-height:1;
}
.cmnfot .copyright{
  margin:10px auto 50px;
  font-size:10px;
  text-align:center;
}
@media only screen and (max-width: 980px) {
  .cmnfot #footnavi{
    display:none;
  }
  .cmnfot  .logo{
    width:80%;
    margin:32px auto;
  }
  .cmnfot .copyright{
    margin:10px auto 32px;
  }
}