@charset "utf-8";
/*------------------------------------------------------------
news-detail
------------------------------------------------------------*/
.fontM{
	font-family: 'Montserrat', sans-serif;
}
.news-detail .pageTitle {
  padding-bottom: 80px;
  margin-bottom: 80px;
}
.news-detail .news-detailCnt {
  padding-bottom: 120px;
  border-bottom: 1px solid #e6e6e6;
  position: relative;
}
.news-detail .news-detailCnt::after {
  content: "";
  display: inline-block;
  width: 200%;
  height: 1px;
  border-bottom: 1px solid #e6e6e6;
  position: absolute;
  bottom: -1px;
}
.news-detail .news-detailCnt::before {
  content: "";
  display: inline-block;
  width: 200%;
  height: 1px;
  border-bottom: 1px solid #e6e6e6;
  position: absolute;
  bottom: -1px;
  right: 10px;
}
.news-detail .sub-ttl {
  margin-bottom: 20px;
}
.news-detail .date {
  font-size: 1.4rem;
  display: inline-block;
  margin-right: 20px;
}
.news-detail .type {
  font-size: 1.1rem;
  padding: 6px 20px;
  border: 1px solid #1a2543;
  color: #1a2543;
  display: inline-block;
}
.news-detail .news-detail_h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-bottom: 40px;
}

.news-detail .news-detail_content{
	width: 100%;
	margin-bottom: 40px;
}
.news-detail .news-detail_content figure{
	margin: 0 auto 40px;
}
.news-detail .news-detail_content figure img{
	width: 100%;
	height: 100%;
}
.news-detail .news-detail-img {
  margin-bottom: 40px;
}
.news-detail .news-detailTxt {
  margin-bottom: 40px;
  text-align: justify;
}
.news-detail .news-detailTxt span {
  margin-top: 40px;
  display: inline-block;
}
.news-detail .news-detailArea {
  padding-bottom: 80px;
}
.news-detail .pager {
  padding: 60px 0 0 0;
  border-top: solid #e6e6e6 1px;
	position: relative;
}
.news-detail .prev ,
.news-detail .next ,
.news-detail .back {
	display: inline-block;
	width: 33%;
}
.news-detail .prev{
	text-align: left;
	margin-right: auto;
	position: absolute;
	left: 0
}
.news-detail .next{
	text-align: right;
	margin-left: auto;
	position: absolute;
	right: 0;
}
.back {
	text-align: center;
	margin: 0 auto;
	position: absolute;
	bottom: -50%;
	left: 50%;
	-webkit-transform: translate(-50%,50%);
	transform: translate(-50%,50%);
}

.news-detail .prev a,
.news-detail .next a,
.news-detail .back a {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}
.news-detail .prev a:hover,
.news-detail .next a:hover,
.news-detail .back a:hover {
  color: #1a2543;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}
.news-detail .prev a {
  display: inline-block;
  margin-left: 20px;
}
.news-detail .next a {
  display: inline-block;
   margin-right: 20px;
}
.news-detail .back a {
  display: inline-block;
  top: 10px;
}
.news-detail .back a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("../img/news-detail/white-btn.svg") no-repeat;
  background-position: center;
  top: -40px;
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}
.news-detail .back a:hover:before {
  background: url("../img/news-detail/blue-btn.svg") no-repeat;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
}
.news-detail .prev a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -17px;
  margin: auto;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid #1a2543;
  border-right: 1px solid #1a2543;
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(-135deg);
}
.news-detail .next a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -17px;
  margin: auto;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid #1a2543;
  border-right: 1px solid #1a2543;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.news-detail .recent {
  padding: 80px 0 160px;
}
.news-detail .recent h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a2543;
  margin-bottom: 40px;
}
.news-detail .recent ul li {
  padding: 0 15px;
  border-bottom: #e6e6e6 solid 1px;
}
.news-detail .recent ul li a {
  padding: 30px 0;
  height: 100%;
}
.news-detail .recent ul li:first-child {
  border-top: #e6e6e6 solid 1px;
}
.news-detail .recent-ttl {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.news-detail .recent-ttl::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid #1a2543;
  border-right: 1px solid #1a2543;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.news-detail .recent ul li a {
  width: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.news-detail .recent ul li a:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.news-detail .recentCnt {
  width: 28%;
}
.news-detail .recentTxt {
  width: 65%;
  padding: 0 15px;
}
.news-detail .recentDay {
  font-size: 1.4rem;
  display: inline-block;
  margin-right: 10px;
}
.news-detail .recentType {
  font-size: 1.1rem;
  padding: 6px 15px;
  border: 1px solid #1a2543;
  color: #1a2543;
  display: inline-block;
}
@media all and (max-width: 960px) {
  .news-detail .news-detailCnt {
    padding-bottom: 60px;
  }
 .news-detail .pageTitle {
    padding-bottom: 37px;
  }
  .news-detail .pageTitle {
    margin-bottom: 40px;
  }
  .news-detail .sub-ttl {
    margin-bottom: 15px;
  }
  .news-detail .date {
    font-size: 1.2rem;
    display: inline-block;
    margin-right: 10px;
  }
  .news-detail .type {
    font-size: 1rem;
    padding: 3px 10px;
    border: 1px solid #1a2543;
    color: #1a2543;
    display: inline-block;
  }
  .news-detail .news-detailArea {
    padding-bottom: 20px;
  }
  .news-detail .news-detail_h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    margin-bottom: 30px;
    text-align: justify;
  }
  .news-detail .news-detail_content{
	width: 100%;
	margin-bottom: 40px;
	}
  .news-detail .news-detail_content figure{
	margin: 0 auto 25px;
	}
  .news-detail .news-detail_content figure img{
	width: 100%;
	height: 100%;
	}
  .news-detail .news-detail-img {
    margin-bottom: 30px;
  }
  .news-detail .news-detail .pnews-detailCnt p {
    font-size: 1.4rem;
  }
  .news-detail .news-detailTxt span {
    margin: 0;
    display: inline;
  }
  .news-detail .pager {
    padding: 40px 0 0 0;
    border-top: solid #e6e6e6 1px;
  }
  .news-detail .prev a,
  .news-detail .next a,
  .news-detail .back a {
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .news-detail .back a {
    display: inline-block;
    top: 20px;
  }
  .news-detail .back a::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url("../img/news-detail/white-btn.svg") no-repeat;
    background-position: center;
    top: -35px;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .news-detail .recent {
    padding: 40px 0 60px;
  }
  .news-detail .recent h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2543;
    margin-bottom: 20px;
  }
  .news-detail .recentCnt {
    width: 100%;
    margin-bottom: 20px;
  }
  .news-detail .recent-ttl::after {
    right: 15px;
  }
  .news-detail .recent ul li {
    padding: 0;
    border-bottom: #e6e6e6 solid 1px;
  }
  .news-detail .recentTxt {
    width: 88%;
    text-align: justify;
    padding: 0;
    font-size: 1.6rem;
  }
  .news-detail .recent-ttl {
    display: flex;
    flex-direction: column;
  }
  .news-detail .recentDay {
    margin-right: 15px;
  }
  .news-detail .recentType {
    padding: 3px 25px;
  }
}
@media all and (max-width: 374px) {
	#main .topBox p {
    font-size: 1.3rem;
  }
}