@charset "UTF-8";
/*
	Filename: news
	Version: 1.0.1
*/
/*-----------------------------------------------------
	#news 共通
------------------------------------------------------*/
#news {
  padding: 40px 0 80px;
}
@media screen and (max-width: 900px) {
  #news {
    padding: 114px 0 80px;
  }
}
@media screen and (max-width: 750px) {
  #news {
    padding: 104px 0 60px;
  }
}
/*-----------------------------------------------------
	#news　詳細
------------------------------------------------------*/
.news_side {
  width: 25.4%;
}
.news_side .link_btn {
  padding: 10px 12px 10px 36px;
}
.news_side .link_btn::after {
	right: auto;
  left: 12px;
	transform: translateY(-50%) scale(-1, 1);
	-webkit-transform: translateY(-50%) scale(-1, 1);
}
article.news_single {
  width: 74.6%;
  padding-right: 90px;
}
article.news_single .flex {
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
article.news_single .flex .category span {
  display: inline-block;
  margin-right: 12px;
  padding: 4px 8px;
  background: #EBF4F5;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 400;
}
article.news_single .flex .date {
  margin-right: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}
article.news_single .flex .post_type {
  font-size: 1.2rem;
  font-weight: 700;
}

article.news_single h1 {
  margin-bottom: 40px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
}
article.news_single h2 {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
article.news_single h3 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}
article.news_single h4 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
article.news_single h5 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
article.news_single h6 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
article.news_single p {
  margin-bottom: 40px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
article.news_single a {
  color: #0EA4B3;
  text-decoration: underline;
}
article.news_single ul {
  margin-bottom: 40px;
  margin-left: 20px;
}
article.news_single ol {
  margin-bottom: 40px;
  margin-left: 15px;
}
article.news_single ul li, article.news_single ol li {
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
}
article.news_single ul li {
  list-style-type: disc;
}
article.news_single img {
  max-width: 100%;
  margin-bottom: 20px;
}

@media screen and (max-width: 900px) {
  .news_side {
    width: 100%;
    order: 2;
    text-align: center;
  }
  article.news_single {
    width: 100%;
    padding-right: 0;
    order: 1;
  }
}

@media screen and (max-width: 750px) {
  article.news_single .flex {
    margin-top: 12px;
  }
  article.news_single .flex .category {
    width: 100%;
    margin-bottom: 8px;
  }
  article.news_single .flex .category span {
    margin-right: 0;
    padding: 4px 8px;
    font-size: 11px;
  }
  article.news_single .flex .date {
    margin-right: 12px;
    font-size: 11px;
  }
  article.news_single .flex .post_type {
    font-size: 11px;
  }
}


/*-----------------------------------------------------
	#news ナビ
------------------------------------------------------*/
.tabs ul.flex {
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.tabs ul.flex li.tab_item {
  display: block;
  position: relative;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}
.tabs ul.flex li.tab_item a {
  display: inline-block;
  padding: 0 24px 20px;
  color: #767676;
}
.tabs ul.flex li.tab_item::after {
  content: "";
  display: block;
  position: absolute;
	bottom: 0;
	left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}
.tabs ul.flex li.tab_item.tab_current a {
  color: #1A1A1A;
}
.tabs ul.flex li.tab_item.tab_current::after, .tabs ul.flex li.tab_item:hover::after {
  background: #0EA4B3;
}
@media screen and (max-width: 750px) {
  .tabs ul.flex {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .tabs ul.flex li.tab_item {
    margin-bottom: 10px;
    padding: 0;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }
  .tabs ul.flex li.tab_item a {
    padding: 0 10px 10px;
  }
}
/*-----------------------------------------------------
	ページネーション
------------------------------------------------------*/
.pagination {
  text-align: center;
}
.page-numbers.dots {
  padding-right: 10px;
}
a.page-numbers,
.pagination .current {
  display: inline-block;
  margin-top: 50px ;
  margin-right: 10px;
	padding: 5px 10px 8px;
	background: #fff;
	border: 1px solid #ccc;
  font-size: 1.6rem;
  font-weight: 700;
	text-decoration: none;
}
.pagination .current, a.page-numbers:hover {
	background: #0EA4B3;
	border: 1px solid #0EA4B3;
	color: #fff;
}
a.page-numbers.next, a.page-numbers.next:hover, a.page-numbers.prev, a.page-numbers.prev:hover {
	background: none;
	border: none;
}
a.page-numbers.next:hover, a.page-numbers.prev:hover {
  color: #1a1a1a;
	opacity: .6;
}
@media screen and (max-width: 750px) {
  a.page-numbers,
  .pagination .current {
    margin-top: 20px ;
    margin-right: 10px;
    padding: 5px 10px 8px;
    font-size: 14px;
  }
}