@charset "UTF-8";


.size40 {
  font-size: clamp(1.75rem, calc(1.45rem + 1.2vw), 2.5rem);
  font-weight: 600;
}

/* レイアウト
--------------------------------------------- */
.topi_deta_blog {
  width: 90%;
}
.sec_info {
  padding-top: 50px;
  padding-bottom: 40px;
}
/* 記事
--------------------------------------------- */
.p_topi_deta {
  text-align: left;
}

/*. アーカイブ
--------------------------------------------- */
.sec_topics {
  padding-top: 20px;
  padding-bottom: 80px;
}
.wrap_topics {
  background-color: #fff;
  border-radius: 14px;
  padding: 25px 3%;
  width: 95%;
}
/* カード全体 */
.acv_post_card{
	display:flex;
	gap:24px;
  text-align: left;
  margin-bottom: 50px;
}
/* 画像エリア */
.acv_post_thumb{
	flex:0 0 28%;
}
.link_acv_post {
  display: block;
  width: 100%;
	overflow:hidden;
	border-radius:10px;
}
.nothum .acv_post_pic{
  border: solid 1px #efefef;
  border-radius:10px;
  overflow:hidden;
}
.acv_post_pic {
  display: block;
  width: 100%;
}
.acv_post_thumb img{
  min-width: 100%;
  border-radius:10px;
	object-fit:cover;
  object-position: center;
	display:block;
	transition:transform .3s;
  vertical-align: bottom;
}
.acv_post_thumb a:hover img{
	transform:scale(1.05);
}
/* 本文エリア */
.acv_post_body{
  padding-top: 5px;
	flex:1;
	display:flex;
	flex-direction:column;
	gap:12px;
}
/* タイトル */
.acv_post_card_ttl{
	font-size:1.3rem;
	line-height:1.4;
  font-weight: bold;
	margin:0;
}
.acv_post_card_ttl a{
	text-decoration:none;
	color:#222;
}
.acv_post_card_ttl a:hover{
	color: #d8677e;
  transition: 0.25s;
}
/* 説明文 */
.acv_post_desc{
	font-size:0.95rem;
	line-height:1.7;
	color:#555;
	margin:0;
}
/* 日付 */
.acv_post_date{
	display:flex;
  flex-wrap: wrap;
	gap:0px 16px;
	font-size:0.85rem;
	color:#777;
	margin-top:4px;
}
@media (max-width:640px){
  .sec_topics {
    padding-top: 0px;
  }
  .wrap_topics {
    background-color: inherit;
    padding: 0;
    width: 90%;
  }
  .acv_post_card{
    margin-bottom: 20px;
    gap: 18px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 7% 20px 5%;
  }
  .acv_post_thumb{
    flex:0 0 30%;
    border-radius:5px;
  }
  .acv_post_thumb img{ 
    border-radius:5px;
  }
  .acv_post_card_ttl{
    font-size:1rem;
  }
  .acv_post_desc{
    font-size:0.85rem;
    line-height:1.5;
    color: #999;
  }
  .link_acv_post {
    border-radius:5px;
  }
  .nothum .acv_post_pic{
    border-radius:5px;
  }
}


/*. 投稿
--------------------------------------------- */
.pagettl_post_date {
	display:flex;
  flex-wrap: wrap;
	gap:0px 16px;
	font-size:0.9rem;
	color:#777;
  margin-bottom: 1em;
}
.sgl_post_cats {
  margin-right: 6px;
  margin-bottom: 10px;
}
.sgl_post_tags {
  margin-bottom: 10px;
}
.topics_deta.entry-content {
  margin-top: 0;
}
.box_categ {
  margin-bottom: 20px;
}

/*. 目次
--------------------------------------------- */
.topics_index{
  margin-bottom: 50px;
}
.p_topi_deta .topics_index ul li::before {
  content: none;
}
.p_topi_deta .topics_index ul li {
  margin-left: 0;
  padding-left: 0;
}
.p_topi_deta .topics_index a {
  text-decoration: none;
  padding-left: 1em;
  color: #333;
}
.p_topi_deta .data_ttl {
    background: #333;
    color: #fff;
    text-align: center;
    padding: min(3vw,0.5em) 5px min(2vw,0.3em);
    border-radius: min(1.5vw,10px) min(1.5vw,10px) 0 0;
    font-weight: normal;
    margin: 0;
    font-size: 1rem;  
    border: 0;
}
.p_topi_deta .data_ttl::after,.p_topi_deta .data_ttl::before{
  content: none;
}
.data_table {
    border: 2px solid #333;
    position: relative;
    border-top: none;
    border-radius: 0 0 min(1.5vw,10px) min(1.5vw,10px);
}
.data_table_list:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
}
.data_table_link {
    position: relative;
    color: inherit;
    padding: min(2vw,15px) min(2vw,20px);
    padding-right: calc(4% + 11px + 4%);
    transition: all ease 200ms;
    text-decoration: none;
    padding-left: 1rem;
    display: block;
    width: 100%;
}
.p_topi_deta .topics_index ul li {
    text-indent: 0;
    margin-bottom: 0;
}
.data_table_link:hover{
  background-color: #e6e6e6;
} 
.data_table_list:last-child .data_table_link:hover{
    border-radius: 0 0 min(1.5vw,15px) min(1.5vw,15px);
}
.data_table_link::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #808080;
    transform: rotate(45deg);
    border-top: none;
    border-left: none;
    position: absolute;
    right: 4%;
    top: 0;
    bottom: 0;
    margin: auto;
}
