@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.pc-box{
	display: none;
}

.wrapper{
	width: 100%;
	margin: 0 auto;
	background-color: #F7F6F2;
	padding-bottom: 10%;
}

.wrapper img{
	display: block;
	line-height: 0;
}

.mv{
	margin: 0 auto 10%;
}

.mv-title{
	position: relative;
	padding-bottom: 14%;
	margin-bottom: 10%;
}

.font-noto{
	font-family: "Noto Serif Display", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.mv-title__move{
	display: flex;
	align-items: center;
	overflow: hidden;
	margin: 0;
	position: relative;
}

.move-wrap{
	display: flex;
    animation: loop-slide 40s infinite linear;
}

.move-wrap__content{
	width: 500px;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.mv-title h1{
	font-family: "Noto Serif Display", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 40px;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	line-height: 1.0;
	margin: 0;
	color: #877366;
}

.mv-title h1 span{
	font-size: 28px;
}

.mv h2{
	text-align: center;
	font-size: 18px;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	margin: 3% auto;
	font-weight: normal;
}

.mv p{
	text-align: center;
	font-size: 15px;
	line-height: 2;
	margin: 8% auto;
}

/* ベースのフォント設定（明朝体・セリフ体で雰囲気を出す） */
.trend-ranking {
  color: #333;
  max-width: 400px; /* 横幅はお好みで調整してください */
  padding: 20px;
	margin: 10% auto 5%;
	font-weight: 600;
}

/* 見出し：TREND KEYWORD */
.trend-ranking__header {
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* リスト全体：左側の縦線を引く */
.trend-ranking__list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 30px; /* 縦線と文字の間の余白 */
  border-left: 1px solid #333; /* これが左の縦線 */
}

/* リストの各行 */
.trend-ranking__item {
  display: flex; /* 横並びにする */
  align-items: center; /* 垂直方向の中央揃え */
  padding-bottom: 10px; /* 文字下の余白 */
  margin-bottom: 25px; /* 次の行までの余白 */
  border-bottom: 1px dashed #999; /* 下の点線 */
}

/* 最後の行だけ下の余白を消す調整（お好みで） */
.trend-ranking__item:last-child {
  margin-bottom: 0;
}

/* 番号部分 */
.trend-ranking__num {
  font-size: 20px;
  margin-right: 15px; /* 番号とテキストの間の最低限の余白 */
}

/* テキスト部分 */
.trend-ranking__text {
  font-size: 20px;
  flex-grow: 1; /* 余ったスペースを埋める */
  text-align: center; /* 中央寄せ */
}

.trend-ranking__text a{
	display: block;
	text-decoration: none;
	color: #000;
}

.item-content{
	margin: 0 auto;
}

.item-content__box{
	margin: 0 auto;
	padding-top: 14%;
}

/* 全体のコンテナ設定 */
.item-content__title {
	text-align: center;
	color: #333; /* 文字色：濃いグレー */
	padding: 50px 20px;
	background-color: #fff;
}

/* TREND KEYWORD のスタイル */
.top-label {
	font-size: 18px;
	letter-spacing: 0.01em; /* 文字間隔を少し広げる */
	text-transform: uppercase; /* 大文字に変換 */
	margin-bottom: 15px;
	font-weight: normal;
}

/* 縦線のスタイル */
.vertical-line {
	width: 1px;
	height: 25px;
	background-color: #666;
	margin: 0 auto 15px auto; /* 中央寄せと下の余白 */
}

/* SET UP のスタイル */
.main-title {
	font-size: 55px; /* 大きめのフォントサイズ */
	letter-spacing: 0.02em;
	margin: 0 0 15px 0;
	font-weight: 400; /* 細すぎず太すぎないウェイト */
	line-height: 1;
}

/* 点線のスタイル */
.dashed-line {
	border: none;
	border-top: 1px dashed #666; /* 点線の色と太さ */
	width: 200px; /* 線の長さ */
	margin: 0 auto 10px auto; /* 中央寄せ */
}

/* 2026 SPRING のスタイル */
.bottom-label {
	font-size: 15px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.item-content__main{
	margin-bottom: 10%;
}

.item-content__left{
	width: 80%;
	margin-bottom: 10%;
}

.item-content__right{
	width: 80%;
	margin-left: 20%;
}

.item-content__slide{
	position: relative;
	width: 100%;
	overflow: inherit;
}

.item-content__slide img{
	animation-duration: 9s;
    animation-iteration-count: infinite;
    animation-name: slideshow; 
    animation-timing-function: ease; 
    opacity: 0;
}

.item-content__slide img:nth-child(2), .item-content__slide img:nth-child(3){
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}

.item-content__slide img:nth-child(1){
	animation-delay: 0s;
	opacity: 1;
}

.item-content__slide img:nth-child(2){
	animation-delay: 3s;
}

.item-content__slide img:nth-child(3){
	animation-delay: 6s;
}


@keyframes slideshow{
	0%{opacity: 0;}
	20%{opacity: 1;}
	33%{opacity: 1;}
	63%{opacity: 0;}
	100%{opacity: 0;}
}

.item-content__lead{
	width: 90%;
	margin: 10% auto;
	font-size: 13px;
	line-height: 1.6;
}

.item-content__credit{
	width: 90%;
	margin: 10% auto;
}

.item-content__credit h2 {
	position: relative;
	line-height: 1.4;
	padding:0.25em 1em;
	display: inline-block;
	top:0;
	font-style: italic;
	margin-bottom: 2%;
}

.item-content__credit h2:before, .item-content__credit h2:after { 
	position: absolute;
	top: 0;
	content:'';
	width: 8px;
	height: 100%;
	display: inline-block;
}
.item-content__credit h2:before {
	border-left: solid 1px black;
	border-top: solid 1px black;
	border-bottom: solid 1px black;
	left: 0;
}
.item-content__credit h2:after {
	content: '';
	border-top: solid 1px black;
	border-right: solid 1px black;
	border-bottom: solid 1px black;
	right: 0;
}

.item-content__credit__box{
	margin: 3% auto;
}

.item-content__credit__pickup{
	margin-bottom: 10%;
}

.item-content__credit__main{
	position: relative;
    border-bottom: solid 1px #808080;
    margin-bottom: 3%;
    letter-spacing: .3px;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	display: flex;
	align-items: center;
	column-gap: 10px;
	padding-bottom: 2%;
}

.item-content__credit__main a{
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 12px;
	line-height: 1.5;
}

.item-content__credit__img{
	width: 15%;
}

.item-content__credit__main a::after {
	content: "BUY";
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 14px;
}

.item-content__credit__main .cms::after {
	content: "COMING SOON";
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 10px;
	color: #656565;
}

.item-content__credit__inner{
	position: relative;
    border-bottom: solid 1px #808080;
    margin-bottom: 3%;
    letter-spacing: .8px;
    font-family: aktiv-grotesk, sans-serif;
}

.item-content__credit__inner a{
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 14px;
	line-height: 1.5;
}

.item-content__credit__inner a::after {
	content: "BUY";
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 14px;
}

.item-content__credit__inner .cms::after {
	content: "COMING SOON";
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 10px;
	color: #656565;
}

.item-content__credit__inner span{
	font-size: 11px;
    display: block;
    line-height: 1.8;
    margin-bottom: 1%;
}

.all{
	display: block;
	width: 80%;
	margin: 20% auto 10%;
	text-align: center;
	color: #fff;
	background-color: #000;
	text-decoration: none;
	line-height: 2.7;
	position: relative;
	font-size: 22px;
	font-weight: 600;
}

.all:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

@media(min-width:750px){
	.sticky-contner{
		display: flex;
		background-color: #f6f6f6;
	}
	
	.pc-box{
		width: 33%;
		height: 100vh;
		position: sticky;
		left: 0;
		top: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.pc-box__left h1{
		font-family: "Noto Serif Display", serif;
		font-optical-sizing: auto;
		font-weight: 400;
		font-style: normal;
		font-size: 60px;
		text-align: left;
		white-space: nowrap;
		line-height: 1.0;
		margin: 0;
		color: #877366;
	}
	
	.pc-box__left h1 span{
		font-size: 25px;
	}
	
	.wrapper{
		width: 35%;
		box-sizing: border-box;
		margin: 0 auto;
		background-color: #fff;
		padding-bottom: 3%;
	}
	
	.mv-title{
		padding-bottom: 12%;
	}
	
	.mv-title h1{
		font-size: 50px;
}


	.move-wrap__content{
		width: 500px;
	}
	
	.item-content__lead, .item-content__credit{
		width: 80%;
	}
	
	.pc-box__right{
		width: 80%;
	}
	
	.mv{
	margin-bottom: 0;
}

	.mv p{
	margin: 8% auto 0;
}

	
	/*.snsBOX{
		font-family: 'Arial',sans-serif;
	}
	
	.snsBOX__inner{
		border-radius: 15px;
		text-align: center;
	}
	
	.snsBOX__list01{
		display: flex;
		padding: 0;
		list-style: none;
		justify-content: center;
		margin: 0;
	}
	
	.snsBOX__list01 li{
		margin: 0 7px;
		line-height: 0;
	}
	
	.snsBOX__list01 li img{
		width: 50px;
		height: auto;
	}
	
	.header_logo_bayflow{
		width: 65%;
		margin: 2% auto 4%;
	}*/
	
	.display-sp__none{
		display: none;
	}
	
}

