@charset "UTF-8";

.mv-inner {
  background-image: url("../img/03-mv.jpg");
}

/* パンくずリスト */
.breadcrumb {
  font-size: var(--font-14);
  margin: 1.5rem auto;
  max-width: 1000px;
  padding: 0 1rem;
  color: var(--color-gray1);
  display: flex;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--color-link);
}

.breadcrumb a::after{
  content:">";
  padding: 0 .3rem;
  color: var(--color-gray1);
  pointer-events: none !important; /* ← 矢印部分はリンク無効 */
}

.breadcrumb > *:last-child::after {
  content: none;
}

.breadcrumb span {
  color: var(--color-gray3);
}

/* ------------------------------
  section
--------------------------------*/

/* コンテナ */
.news-detail-section{
  width:100%;
  margin:0 auto;
}

.news-detail-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
  border: solid var(--color-gray2) 3px;
}

/* 内側ラッパー（将来2カラム化しやすい構造） */
.news-detail-inner {
  display: flex;
  flex-direction: column;
  }

/* タイトル */
.news-title {
  margin: 2rem 0;
}

.news-image{
width:70%;
align-self: center;
}

/* 画像 */
.news-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  justify-self: center;
}

/* 投稿日 */
.news-date {
  font-size: var(--font-14);
  color: var(--color-gray3);
  margin-bottom: 1rem;
}

/* 本文 */
.news-content {
  line-height: 1.7;
  color: var(--color-black);
  margin-bottom:clamp(20px, calc(20px + (50 * (100vw - 375px) / 650)), 70px);
}

.news-content p{
  margin:1rem 0;
}

/*2カラム*/
/*.news-detail-inner {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.news-main {
  flex: 3;
}

.news-sidebar {
  flex: 1;
}
*/

@media screen and (max-width:1200px){
  
  .news-detail-section{
  width:94%;
  }
  }

@media screen and (max-width: 768px) {

.news-image{
  width: 100%;
}
}

@media screen and (max-width: 600px) {

  .news-detail-container{
  padding: 0 1.5rem;
  }

  .news-title{
    margin:1rem 0;
  }

.news-image img{
  padding:0;
  margin:0;
}

.news-date{
margin-bottom:0;
}
}