@charset "utf-8";
/* CSS Document */
.pc_none {
display: block;
}
.sp_none {
display: none;
}

/* ----- #section_products ----- */
#section_news_detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 2px #ccc solid;
  border-bottom: 2px #ccc solid;
  margin-bottom: 3em;
}
h1 {
  display: block;
  width: 100%;
  padding: 1em 0;
  margin-bottom: 1.33em;
  border-bottom: 2px #ccc solid;
  font-weight: 600;
}
h1 span:nth-child(1) {
  font-size: 1.33em;
  line-height: 1.5;
}
h1 span:nth-child(2), span:nth-child(3) {
  display: block;
  color: #ccc;
  font-size: 0.73em;
}
#section_news_detail img {
  display: block;
  width: 100%;
  height: 15em;
  object-fit: cover;
  border: 0.33em #ededed solid;
}
.news_detail_inner {
  padding: 2em 0 4em;
}
.news_detail_inner p {
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 2.3;
}
.news_detail_inner a {
  display: block;
  text-align: center;
  text-decoration: underline;
  margin: 1.5em auto;
}

/* ---- 360px ---- */ 

@media screen and (max-width:374px) {
  body {
    font-size: 4vw;
  }
}

/* ---- TAB ---- */ 

@media screen and (min-width:768px) {
  .pc_none {
	display: none;
  }
  .sp_none {
	display: block;
  }
  #section_news_detail {
    display: flex;
    flex-direction: row;
	align-items: flex-start;
	padding: 2em;
    border-top: 1px #ccc solid;
	justify-content: space-between;
  }
  h1 {
    border: none;
	padding: 0;
  }
  #section_news_detail img {
    width: 55%;
	height: 20em;
  }
  .news_detail_inner {
    width: 40%;
	padding: 0;
  }
  .news_detail_inner p {
	text-align: left;
  }
}

/* ---- PC ---- */ 

@media screen and (min-width:1024px) {
  #section_news_detail {
    max-width: 1200px;
	padding: 100px 50px;
	margin-right: auto;
	margin-left: auto;
  }
}