@charset "utf-8";
/* ====================================================================================================

	news.css

==================================================================================================== */

/*--------------------------------------------------------------------------------
  共通
--------------------------------------------------------------------------------*/
/* page-title */
.page-title {
  background-image: url("../image/content/news/page-title.jpg");
  background-repeat: no-repeat;
  background-position: left bottom;
}

.container {
	display: flex;
	justify-content: space-between;
  flex-wrap: wrap;
	gap: 30px;
  padding: 50px;
  background-color: rgba(255,255,255,0.6);
  box-sizing: border-box;
  border-radius: 12px;
  margin: 50px 0;
}
.left_column {
	width:calc(100% - 300px);
}
.right_column {
	width:270px;
}
.right_column h3 {
  position:relative;
  display:block;
  color:#ffffff;
  font-size:20px;
  font-weight:bold;
  text-align:left;
  line-height:30px;
  background:var(--secondary-color);
  padding:10px;
}
.right_column .category_list {
  display:flex;
  flex-direction:column;
  text-align:left;
  margin-top:20px;
  list-style:none;
}
.right_column .category_list li a {
  text-decoration:underline;
}
.right_column .category_list li a:hover {
  text-decoration:none;
}
@media (max-width:1000px) {
  .left_column {
    width:100%;
  }
  .right_column {
    width:100%;
  }
}
@media (max-width:900px) {
  .container {
    padding: 30px;
  }
}
@media (max-width:640px) {
  .container {
    padding: 20px;
  }
}



/*--------------------------------------------------------------------------------
  一覧
--------------------------------------------------------------------------------*/
.news_list {
  list-style:none;
}
.news_list li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.news_list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.news_list li a,
.news_list li .nolink {
  display: flex;
  gap: 20px;
  text-decoration: none;
}
.news_list li a:hover {
  color: var(--primary-color);
}
.news_list .thumnail {
  width: 120px;
}
.news_list .thumnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.news_list .entry-head {
  width: calc(100% - 140px);
}
.news_list .entry-time {
  display: flex;
  flex-wrap: wrap;
  gap:10px;
  margin-bottom: 0.5em;
}
.news_list .entry-time .category {
  display:inline-block;
  color:#ffffff;
  font-size: 14px;
  text-align:center;
  padding: 0.25em 1em;
}
.news_list .entry-time time {
  display: inline-block;
  color:#5d5d5d;
}
.news_list .entry-head .title {
  display: block;
  font-size: 20px;
}
@media (max-width:500px) {
  .news_list li a,
  .news_list li .nolink {
    gap: 12px;
  }
  .news_list .thumnail {
    width: 80px;
  }
  .news_list .entry-head {
    width: calc(100% - 92px);
  }
}


/*--------------------------------------------------------------------------------
  詳細
--------------------------------------------------------------------------------*/
.news_detail {
  margin: 0 auto;;
  text-align: left;
  box-sizing: border-box;
}
.news_detail .news_header {
  display:flex;
  align-items: center;
  gap:10px;
  margin-bottom: 10px;
}  
.news_detail .news_header .category {
  display:inline-block;
  color:#ffffff;
  font-size: 14px;
  text-align:center;
  padding: 0.25em 1em;
}
.news_detail .news_header time {
  color:#5d5d5d;
}
.news_detail .news_header .p-hdLine03 {
	margin:0 0 30px 0;
}

.news_detail .p-glog {
  margin-bottom: 48px;
  overflow: hidden;
  box-sizing: border-box;
}

.news_detail .p-glog .p-glog__img--left {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.news_detail .p-glog .p-glog__img--right {
  float: right;
  margin-bottom: 20px;
}

.news_detail .p-glog .p-glog__img--center {
  display: block;
  margin: 0 auto 20px;
  text-align: center;
}
.news_detail .p-glog .p-glog__img--left small,
.news_detail .p-glog .p-glog__img--right small,
.news_detail .p-glog .p-glog__img--center small {
	display:block;
	margin-top:10px;
}
.back-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

@media screen and (max-width:750px) {
  .news_detail .p-glog .p-glog__img--left,
  .news_detail .p-glog .p-glog__img--right {
    float: none;
    width: 100% !important;
    display: block;
    margin: 0 auto 24px;
  }

  .news_detail .p-glog .p-glog__img--center {
    width: 100% !important;
  }
}


/*--------------------------------------------------------------------------------
  エラー
--------------------------------------------------------------------------------*/
.news_err {
  line-height: 2;
  padding-top: 40px;
  padding-bottom: 20px;
  font-size: 1.1em;
}

