@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* 見出しリセット */
/* 見出し2 */
.article h2{
background:none;
padding: 0;
}

/* 見出し3 */
.article h3{
border-top:none;
border-bottom:none;
border-left:none;
border-right:none;
padding: 0;
}

/* 見出しのデザイン設定 */
/* H2 */
.entry-content h2{
color: #000000; /* 文字色 */
font-size: 1.0em; /* 文字サイズ */
padding-top:10px; /* 文字と上部の間隔 */
padding-left:10px;/* 文字と左線の間隔 */
padding-bottom:10px;/* 文字と下部の間隔 */
border-left: solid 10px #454537; /* 左側に実線・色*/
}
/* H3 */
.entry-content h3{
color: #000; /* 文字色 */
font-size: 1.0em; /* 文字サイズ */
padding: 10px;
border-bottom: dotted 3px #000000;/* 下側に点線・色*/
}

/*記事タイトルフォントサイズ変更*/
h1.entry-title {
  color: #444;/*文字色*/
  font-size: 1.2rem;
  padding: 0.5em 0;/*上下の余白*/
  border-top: solid 4px #454537; /*上線*/
  border-bottom: solid 4px #454537;/*下線*/
}

.sidebar h3 {
  border-bottom:2px dotted #191970;/*下線の太さ、種類、色*/
  background:transparent;/*背景を透明に*/
  padding:10px 0 5px 3px;
}


/*トップカテゴリラベル*/
.category_right .cat-label {
	position: static !important;
	display:inline-block;
	margin-top: 3px;
	padding: 2px 10px;
	font-size: 11px;
	border: none;
} 
/*関連記事カテゴリラベル*/
.related-entry-card .cat-label {
	position: static !important;
	display: inline-block;
	margin-top: 3px;
	padding: 2px 10px;
	border: none;
}



/*リキャプチャロゴ消す*/
.grecaptcha-badge { visibility: hidden; }
/*キャッチフレーズ余白*/
.logo-text {
	padding: 0px 0 0;
}
.tagline {
	margin: 0 0 .0em
}
/*ブログカードURL消す*/
.internal-blogcard-footer{
	display: none
}


/* モバイルトップメニュー 横スクロール*/
@media screen and (max-width: 480px){
	ul.menu-mobile{
		overflow-x: auto;
		overflow-y: hidden;
		display: flex !important;
		flex-wrap: nowrap;
		font-size: 14px;
		justify-content: flex-start;
		padding: 0 1em;
		-webkit-overflow-scrolling: touch;
		position: relative;
	}

	ul.menu-mobile > li{
		padding-right: 1em;
		white-space: nowrap;
	}
	ul.menu-mobile　.item-label{
		white-space: nowrap;
		font-size: 14px;
	}
}

/*記事一覧に区切り線*/
div#list .post {

 border-bottom: 1px solid #696969;
padding-bottom: 1px;
} 

/*fanza価格自動更新*/
.fanza-price-box {
    background: #fdf8f9;
    border: 1px solid #f3c6ce;
    padding: 12px;
    border-radius: 8px;
    margin: 10px 0;
}

.fanza-sale-label {
    background-color: #ff4f68;
    color: white;
    padding: 2px 6px;
    font-size: 0.8em;
    margin-bottom: 6px;
    display: inline-block;
    border-radius: 4px;
}

/* fanza素人6作品 */
.fanza-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px;
}

.fanza-video-item {
    text-align: center;
}

.fanza-video-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.fanza-video-item img:hover {
    transform: scale(1.05);
}

.fanza-video-item p {
    font-size: 12px;
    color: #333;
    margin-top: 5px;
}
/* セール中判定ラベル横幅いっぱいに */
.fanza-sale-label {
  display: block;
  width: 100%;
  color: #fff;
  background: #e60033;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.95em;
  box-sizing: border-box;
  text-align: center;
}

/* モバイル向け2列表示 */
@media (max-width: 768px) {
    .fanza-videos {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* 横並び */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

/* モバイル用のスタイル */
@media screen and (max-width: 768px) {
    .responsive-table tr {
        display: flex;
        flex-wrap: wrap;
    }
    .responsive-table td {
        width: 50%; /* 2列にする */
        box-sizing: border-box;
    }
}

/*******************************
* 新着記事を横並びに
********************************/
.widget-entry-cards.card-large-image .a-wrap {
width:32.5%;
height:auto;
display: inline-flex;
}

@media screen and (max-width: 800px) {
.widget-entry-cards.card-large-image .a-wrap {
width:auto;
display: inline-flex;
}
}

.widget-entry-cards.not-default figure img {
padding: .5em;
}

.widget-entry-cards.card-large-image .a-wrap {
font-size: 95%;
text-align: left;
padding:.5em;
}



/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
	
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
