@charset "UTF-8";
/* CSS Document */

/* スポンサー　*/
.sponsors {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.sponsor-item {
	width:100%;
	height: auto;
	float: left;
    text-align: center;
}

.sponsor-item img {
    height: auto;
    width: 90%;
    display: block;
    margin: 0 auto 5px; /* 画像下の余白 */
}

.sponsor-text {
    font-size: 14px;
    color: #333;
    line-height: 1.2;
}

/*   archive */
div.post{
	width:100%;
	height: 100px;
	float: left;
	padding:0;
	margin:0;
	border-bottom:10px solid green;
		box-sizing: border-box;

}
.vol-photo{
	width:80%;
}

.vol-thumb-list {
	width: 40%;
	height:100px;
	border-bottom: 3px solid orange;
	float: left;
}

.vol-thumb-photo {
    width: 80%;
    object-fit: cover;
    border-radius: 4px;
	background: red;
		box-sizing: border-box;

}

.archive-right{
	width:60%;
	height: 100px;
	float: left;
	border-bottom: 3px solid yellow;
	box-sizing: border-box;
}

.archive-right h2{
	width: 100%;
	height:auto;
	float: left;
	font-size:14px;
}
.datetxt{
	
}

div.archive-entry {
    width: 80%;        /* 好きな横幅に調整 */

    float: left;       /* float を解除 */
    text-align: center; /* テキストも中央揃えにしたい場合 */
	background: black;
}

div.archive-entry p{
	width:100%;
	height: auto;
	float: left;
	text-align: center;
}



/* single_vol.php*/
/* ===== 基本レイアウト ===== */
.original_submain{
	width:100%;
	height:auto;
	background: none;
	line-height:3em;
	box-sizing: border-box;
	text-align: left;
	font-size: 110%;
}

.h1wrap {
	width:95%;
	height: auto;
	margin: 0 auto;
	display: block;
	background: none;
}


/* 左右カラム共通 */
.content-left {
  box-sizing: border-box;
}

.content-left article{
	width:100%;
	height:auto;
	background: none;
	float: left;
}


.detail {
	width:90%;
	height:auto;
	display: block;
	margin: 0 auto;
	background: none;
	
}

.listcomment {
	width:100%;
	height:auto;
	background: none;

}


.content-right {
  box-sizing: border-box;
}


/* random タグ　*/
.random-posts h3 {
    text-indent: 1em;
    font-weight: bold;
    margin-bottom: 10px;
}

.random-posts {
	width:100%;
	height:auto;
    margin: 20px 0;
	float:  left;
}
.random-card {
	display: flex;
	align-items: center; /* 画像とテキストを縦中央揃え */
	height: 100px;
	border: 1px solid #ddd;
	overflow: hidden;
	background: #fff;
	transition: transform 0.2s, box-shadow 0.2s;
}

.random-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 左：画像 */
.card-thumb {
	width: 30%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
}

.card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 右：タイトルとカテゴリー */
.card-info {
	width: 70%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center; /* 縦中央 */
	padding: 6px 12px;
	box-sizing: border-box;
}

.card-title {
	font-weight: 600;
	font-size: 16px;
	color: #000000;
	margin-bottom: 4px;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-cat {
	font-size: 14px;
	color: #666;
}




/* ===== PC版（2カラム） ===== */
@media screen and (min-width: 1001px) {
  .original_content {
	  width:900px;
	  display:block;
	  margin:  0 auto;
	  box-sizing: border-box;
	  border-bottom:3px solid #02F8BF;
	  background: whitesmoke;
  }

  .content-left {
    width: 600px;
    margin-bottom: 20px;
	 float: left;
	  background: none;
	  padding:0 10px;
	  box-sizing: border-box;
  }
	
	
	article.vidaland{
	width:100%;
	height:auto;
	float:left;
}
	
	/* メイン画像 */
#vidaImage {
	width:100%;
  text-align: center; /* 中央寄せ */
  margin: 20px 0;
}
#vidaImage .vida-photo {
  width: 100%;       /* デフォルトはスマホ用に100% */
  height: auto;
  border: 10px solid black;
}

/* サムネイルリスト */
#vida_imageList .vida-thumb-list {
	width:100%;
	height:auto;
  list-style: none;
}
#vida_imageList .vida-thumb-photo {
  width: 100%;
  height: auto;
}



.detail {
	width:100%;
	height:auto;
	background: none;
	font-size: 15px;
	box-sizing: border-box;
	
}

.listcomment {
	width:100%;
	height:auto;
	
	font-size:16px!important;

	color: black;
	background: none;


}

  .content-right {
    width: 300px; /* 広告固定幅（例：300px） */
	  float:left;
	  padding:0 10px;
	  box-sizing: border-box;
	  background: none;
	  border-bottom: 3px solid blue;
  }
	
	
}

/* ===== タブレット中間サイズ ===== */
@media screen and (min-width: 761px) and (max-width: 1000px) {
  .original_content {
    display: flex;
    flex-direction: row;
    gap: 15px;
  }

	
  .content-left {
    max-width: 750px;
    margin-bottom: 20px;
  }
	
	
	article.vidaland{
	width:100%;
	height:auto;
	border-bottom: none;
	margin-bottom:100px;
	float:left;
}
	
	/* メイン画像 */
#vidaImage {
	width:100%;
  text-align: center; /* 中央寄せ */
  margin: 20px 0;
}
#vidaImage .vida-photo {
  width: 100%;       /* デフォルトはスマホ用に100% */
  height: auto;
  border: 10px solid black;
}

/* サムネイルリスト */
#vida_imageList .vida-thumb-list {
	width:100%;
	height:auto;
  list-style: none;
}
#vida_imageList .vida-thumb-photo {
  width: 100%;
  height: auto;
}



.detail {
	width:90%;
	height:auto;
	display: block;
	margin: 0 auto;
	background: none;
	font-size: 15px;
	box-sizing: 
	
}

.listcomment {
	width:100%;
	height:auto;
	fotn-size: 18px;
	color: black;
	background: none;
	font-size: 16px!important;


}

	
	
  .content-right {
    width: 250px; /* 少し縮める */
    flex-shrink: 0;
	  background:#D0CECE;
  }
	
	
}

/* ===== スマホ版（1カラム） =====iphpne15 */
@media screen and (max-width: 760px) {
  .original_content {
	  
    width: 100%;
	  background: none;
  }

  .content-left {
    width: 100%;
    margin-bottom: 20px;
  }
	
	
	article.vidaland{
	width:100%;
	height:auto;
	border-bottom: none;
	margin-bottom:100px;
	float:left;
}
	
	/* メイン画像 */
#vidaImage {
	width:100%;
  text-align: center; /* 中央寄せ */
  margin: 20px 0;
}
#vidaImage .vida-photo {
  width: 100%;       /* デフォルトはスマホ用に100% */
  height: auto;
  border: 10px solid black;
}

/* サムネイルリスト */
#vida_imageList .vida-thumb-list {
	width:100%;
	height:auto;
  list-style: none;
}
#vida_imageList .vida-thumb-photo {
  width: 100%;
  height: auto;
}



.detail {
	width:90%;
	height:auto;
	display: block;
	margin: 0 auto;
	background: none;
	font-size: 15px;
	box-sizing: 
	
}

.listcomment {
	width:100%;
	height:auto;
	fotn-size: 18px;
	color: black;
	background: none;
	font-size: 14px!important;


}

	
  .content-right {
    margin-top: 10px;
	background:#E5BFC0;
	  float: left;
  }
	
}

/* ===== さらに小さいスマホ*/
@media screen and (max-width: 599px) {
	
  .original_content {
    padding: 5px;
	  box-sizing: border-box;
  }
	
	.content-left{
		width:100%;
		height:auto;
		float:left;
		margin-bottom: 30px;
	}
	
	article.vidaland{
	width:100%;
	height:auto;
	border-bottom: none;
	margin-bottom:100px;
	float:left;
}
	
	/* メイン画像 */
#vidaImage {
	width:100%;
  text-align: center; /* 中央寄せ */
  margin: 20px 0;
}
#vidaImage .vida-photo {
  width: 100%;       /* デフォルトはスマホ用に100% */
  height: auto;
  border: 10px solid black;
}

/* サムネイルリスト */
#vida_imageList .vida-thumb-list {
	width:100%;
	height:auto;
  list-style: none;
}
#vida_imageList .vida-thumb-photo {
  width: 100%;
  height: auto;
}


.detail {
	width:90%;
	height:auto;
	display: block;
	margin: 0 auto;
	background: none;
	font-size: 15px;
	box-sizing: 
	
}

.listcomment {
	width:100%;
	height:auto;
	fotn-size: 18px;
	color: black;
	background: none;
	font-size: 14px!important;

}

	
  .content-right {
    margin-top: 10px;
	background:#FDCECF;
	  float: left;
  }
}



/* 基本 4列 */
.list-output_.original ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-output_.original ul li {
    width: calc(25% - 15px); /* 4列 */
    box-sizing: border-box;
    border: 1px solid #eee;
    padding: 10px;
    background: #fff;
    transition: transform 0.2s ease;
}

/* CTA 依頼　*/
.contact_vida_bg1 {
    background: #111; /* 背景は暗め */
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.contact_vida_bg1 .ttl {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

/* ボタン */
.contact_vida_bg1 .btn-vida_round1 {
    display: inline-block;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;

    /* 黒→グレーのグラデーションを左上から右下に */
    background: linear-gradient(45deg, #000000, #222222, #444444, #666666);
    background-size: 400% 400%;
    transition: all 0.3s ease;
    animation: gradientMove 6s ease infinite;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* ホバーで少し拡大&光沢 */
.contact_vida_bg1 .btn-vida_round1:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

/* グラデーションのアニメーション */
@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}



/* hover 効果 */
.list-output_.original ul li:hover {
    transform: translateY(-5px);
}

.list-output_.original ul li img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.list-output_.original ul li .ttl-list {
    font-size: 14px;
    font-weight: bold;
    margin: 10px 0 5px;
}

.list-output_.original ul li .price_area {
    font-size: 14px;
    color: #e60012;
    margin-bottom: 5px;
}

.list-output_.original ul li .listcomment {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.list-output_.original ul li .sub-image {
    margin-top: 10px;
}

.list-output_.original ul li .sub-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== レスポンシブ ===== */

/* 最大1200px未満: 4列維持 */
@media screen and (max-width: 1200px) {
    .list-output_.original ul li {
        width: calc(25% - 15px);
    }
}

/* 最大1000px: 3列 */
@media screen and (max-width: 1000px) {
    .list-output_.original ul li {
        width: calc(33.3333% - 13.33px);
    }
}

/* 最大760px: 2列 */
@media screen and (max-width: 760px) {
    .list-output_.original ul li {
        width: calc(50% - 10px);
    }
}

/* 最大600px: 1列 */
@media screen and (max-width: 600px) {
    .list-output_.original ul li {
        width: 100%;
    }
}

/* 追加: スマホ微調整 599px以下 */
@media screen and (max-width: 599px) {
    .list-output_.original ul li {
        width: 100%;
        padding: 8px;
    }
}

/* 最小601px: 2列以上用 */
@media screen and (min-width: 601px) {
    /* 必要に応じて調整 */
}

/* 最小1001px: 4列用 */
@media screen and (min-width: 1001px) {
    .list-output_.original ul li {
        width: calc(25% - 15px);
    }
}

/* 最小1201px: デスクトップ大画面 */
@media screen and (min-width: 1201px) {
    .list-output_.original ul li {
        width: calc(25% - 15px);
    }
}

/* 最大700px: 2列調整 */
@media screen and (max-width: 700px) {
    .list-output_.original ul li {
        width: calc(50% - 10px);
    }
}

