@charset "utf-8";

.news-mv {
  position: relative;
  height: 50vh;            /* お好みで */
  min-height: 360px;
  overflow: hidden;
}
.news-mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l_inner{
  max-width: min(1200px, 90vw);
  margin: 0 auto;
  width: 100%;
}
.l_flex{
  display:flex;
  gap:100px;
}
.single-contents{
  flex:1;
  width: 100%;
  margin: 0 auto;
}
.single-contents h2{
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 5px solid #44CFCF;
  border-bottom: 5px solid #44CFCF;
}
.single-contents h3{
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 600;
  padding-left: 10px;
  border-left: 8px solid #44CFCF;
}
.single-contents p{
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 500;
}

.single-sidebar{
  width:270px;
  flex-shrink:0;
}

.single-thumb{
  position:relative;
  margin-bottom:24px;
}
.single-thumb img{
  width:100%;
  height:auto;
}
.single-label{
  position:absolute;
  top:8px;
  left:8px;
  background:#f60;
  color:#fff;
  font-size:11px;
  padding:2px 6px;
  text-transform:uppercase;
}

.entry-title{
  font-size:28px;
  font-weight:700;
  margin:0 0 12px;
}
.single-date{
  font-size:13px;
  color:#666;
  display:block;
  margin-bottom:24px;
}
.single-nav{
  display:flex;
  ustify-content:space-between;
  margin-top:48px;
  font-size:14px;
}
/* ▸ パンくず  */
.breadcrumb {
  font-size: 14px;
  margin: 24px 0 32px;
  line-height: 1.4;
}
.breadcrumb a { color:#008080; text-decoration:none; }
.breadcrumb a:hover { text-decoration:underline; }
.breadcrumb span { color:#222; }

/* MV 内のタイトル */
.news-mv .mv-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.news-mv_title {
  font-size: clamp(16px, 3vw, 24px);
  margin-top: 60px;
  color: #382A25;
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: bold;
      padding: 0 10%;
}

/* アイキャッチを隠したい場合（念のため） */
.single-contents .single-thumb {
  display: none;
}

/* サイドバーのカテゴリーリスト調整 */
.widget-title {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: #333;
  padding-bottom: 20px;
}
.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cat-list li {
  margin-bottom: 0.75em;
}
.cat-list li a {
  text-decoration: none;
  color: #382A25;
}
/* カテゴリ */
.cat-list{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.cat-item{
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
  width: 100%;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
}
.cat-list li::before{
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #44CFCF;
}
.cat-item a{
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  font-weight: normal;
}
.widget_img{
  width: 100%;
  padding-top: 30px;
  max-width: 250px;
}
.widget_container{
  width: 100%;
}
.widget_info_container address,
.widget_info_container .open_info{
  font-size: 14px;
  line-height: 1.7;
}
.widget_info_btn{
  width: 100%;
  display: block;
  background: #382A25;
  text-align: center;
  margin: 26px auto 0;

}
.widget_info_btn a{
  color: #fff;
  display: block;
  width: 100%;
  max-width: 270px;
  padding: 7px 30px 12px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 2;
  transition: opacity .3s ease-in-out;
}
.widget_info_btn a:hover{
  opacity: 0.8;
}
@media(max-width:1280px){
  .l_flex{
    gap: 50px;
  }
  .single-sidebar{
    width: 180px;
  }
}
@media(max-width:1024px){
  .single-sidebar{
    width: 100%;
  }
  .l_flex{
    flex-direction: column;
  }
  .widget_container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 50px;
  }
}
@media(max-width:600px){
  .l_inner{
    padding-bottom: 35px;
    gap: 0;
  }
  .widget_container{
    flex-direction: column;
    align-items: center;
  }
}

/* news用hight */
@media (max-width: 600px) {
    .page_mv {
        height: 40vh;
    }
}