@charset "UTF-8";

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* 共通設定 */

#tokushu {
  overflow-x: hidden;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  background-color: #fff;
}

.sp-name-number, .name-number{
  margin-top: 5px;
  margin-left: 0;
  margin-right: auto;
}

.sp-name-number a, .name-number a{
  display: inline-block;
  color: #655d51;
  font-family: "Shippori Mincho", serif;
  font-size: 0.78rem;
  text-decoration: none;
  border-bottom: 1px solid #A29C94;
  padding-bottom: 1px;
  transition: opacity 0.3s ease;
}

.sp-name-number a:hover, .name-number a:hover {
  opacity: 0.7;
}

.img-link{
  position: relative;
  overflow: hidden;
}

.img-link::after{
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,0); 
  transition: background-color 0.3s ease;
  z-index: 7; 
}

.img-link:hover::after {
  background-color: rgba(255,255,255,0.3); /* ←ふわっと白くする */
}

#tokushu img{
  display: block;
}

/* スクロールアニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


/* ヒーローエリア */
.hero {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.hero picture {
  max-width: 1090px;
  padding: 0 20px;
  width: 100%;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* リード文 */
.lead p {
  padding: 125px 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 0.88rem;
  line-height: 2.2;
  color: #655D51;
}

/* メインエリア */
.main{
  width: 100% ;
}

/*セクション*/
.sec-2, .sec-3{
  margin-top: 10%;
}

/*  セクションタイトル  */
.scene-box h3, .sec-ttl h3 {
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #655D51;
  text-align: center;
}


/*　セクション説明文　*/
.scene-box span,.sec-ttl p {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 10px;
}

/*スマホのみでの改行*/
.sp-only {
  display: none;
}

/*タイトルボックス */
.bgcolor01{
  background-color: rgba(247,242,242,0.8);
}
.bgcolor02{
  background-color: rgba(235,225,225,0.75);
}
.bgcolor03{
  background-color: rgba(233,219,219,0.80);
}

.scene-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: visible;
  position: relative;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  z-index: 2;
}

.scene-frame {
  position: relative;
  background-color: #fff;
  border: 2px solid #BFB8AC;
  padding: 15px;
  width: 80%;
  margin: 0 auto;
  white-spacing: nowrap;
  flex-shrink: 0;
}

.scene-box {
  position: relative;
  width: 100%;
  padding: 30px 0 45px;
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.index{
  position: relative;
}

.line {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 50%;
  height: 2px;
  background-color: #BFB8AC;
  flex-grow: 1;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 0;
}

.line-right{
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 50%;
  height: 2px;
  background-color: #BFB8AC;
  flex-grow: 1;
  transform: scaleX(0);
  transform-origin: right;
  z-index: 0; 
}

/* アニメーション適用後 */
.line.animate{
  animation: expandLine 1.5s ease-out 0.4s forwards;
}

.line-right.animate {
  animation: expandLineRight 1.5s ease-out 0.4s forwards;
}


@keyframes expandLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes expandLineRight {
  to {
    transform: scaleX(1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}



.kirakira.left {
  position: absolute;
  bottom: 0;
  left: -3em;
}

.kirakira.right {
  position: absolute;
  top: 0;
  right: -3em;
}

.kirakira.left2 {
  position: absolute;
  top: 0;
  left: -3em;
}

.kirakira.right2 {
  position: absolute;
  bottom: 0;
  right: -3em;
}

/*main商品*/
.mainitem-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 5rem;
  position: relative;
  min-height: 32em;
  margin-top: 8%;
}

.margin-top{
  margin-top: 5%;
}

.padding-bottom{
  padding-bottom: 8%;
}

/*縦書き*/
.vertical-text {
  position: absolute;
  writing-mode: vertical-rl;
  text-align: left;
  font-family: "Shippori Mincho", serif;
  font-size: 1.2rem;
  color: #9F8791;
  line-height: 1.8;
  letter-spacing: 0.2em;
  pointer-events: none;
}

.name-number{
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: 100%;
  gap: 3px;
  padding: 0 10px;
}

.name-number a, .align-left a{
  font-family: "Shippori Mincho", serif;
  text-align: left;
}

.align-right{
  margin-right: 5px;
  margin-left: auto;
}

.align-right a{
  text-align: right;
}


.sp-name-number{
  display: none;
  width: fit-content;
  max-width: 100%;
  padding: 0 10px;
}


/*item01*/
/* gridの列構造維持（透明） */
.item01-spacer {
  grid-column: 10 / span 2;
  height: 1px; 
  visibility: hidden;
}
/* テキスト */
.item01-text {
  top: 20px;
  right: 21%;
  z-index: 5;
}
/* 中央の画像 */
.item01-img-main {
  grid-column: 6 / span 3;
  grid-row: 1;
  min-width: 10rem;
  max-width: 24rem;
  margin-top: 20px;
  margin-left: -10px;
  z-index: 3;
  position: relative;
}
.item01-img-main::before {
  position: absolute;
  content: "";
  top: -7%;
  left: 40%;
  width: 85%;
  height: 100%;
  background-image: url("https://ruirue-co-jp.prm-ssl.jp/img/hichigosan/2025hichigosan/images/items/su1461-0.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.item01-img-main img {
  position: relative; 
  z-index: 1; 
}
/* 左下 */
.item01-img-side {
  grid-column: 3 / span 3;
  grid-row: 2;
  min-width: 10rem;
  max-width: 23rem;
  margin-top: -460px; 
  margin-left: 20px ;
  z-index: 2;
}
/* ディテール */
.item01-img-detail {
  grid-column: 6 / span 2;
  grid-row: 3;
  max-width: 15rem;
  margin-top: -220px;
  margin-left: -150px;
  z-index: 1;
}
.item01-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*item02*/
/* テキスト */
.item02-text {
  top: 52px;
  left: 19%;
  z-index: 5;
}
/* 親子 */
.item02-img-main {
  grid-column: 6 / span 3;
  grid-row: 1;
  min-width: 16rem;
  max-width: 26rem;
  margin-top: 80%;
  margin-left: 25px;
  z-index: 3;
}
/* アップ */
.item02-img-side {
  grid-column: 3 / span 4;
  grid-row: 1;
  min-width: 16rem;
  max-width: 26rem;
  margin-left: 140px ;
  z-index: 2;
}
.item02-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*item03*/
/* テキスト */
.item03-text {
  bottom: 10%;
  right: 27%;
  z-index: 5;
}
/* アップ */
.item03-img-main {
  grid-column: 6 / span 3;
  grid-row: 1;
  min-width: 15rem;
  max-width: 22rem;
  width: 100%;
  margin-top: 3rem;
  margin-left: -11.25rem;
  z-index: 3;
}
/* 親子 */
.item03-img-side {
  grid-column: 2 / span 4;
  grid-row: 1;
  min-width: 15rem;
  max-width: 22rem;
  margin-top: 3rem;
  margin-left: 13.6rem;
  z-index: 2;
}

/* ディテール */
.item03-img-detail {
  grid-column: 8 / span 2;
  grid-row: 1;
  max-width: 9.5rem;
  margin-top: -5%;
  margin-left: -10%;
  z-index: 1;
}

.item03-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*item04*/
/* テキスト */
.item04-text {
  left: 22%;
  z-index: 5;
}
/* アップ */
.item04-img-main {
  grid-column: 3 / span 4;
  grid-row: 1;
  min-width: 10rem;
  max-width: 19rem;
  margin-left: 180px ;
  z-index: 2;
}
/* 親子 */
.item04-img-side {
  grid-column: 6 / span 3;
  grid-row: 2;
  min-width: 10rem;
  max-width: 23rem;
  margin-top: -80%;
  margin-left: 40px;
  z-index: 3;
}

/* 子どもアップ */
.item04-img-detail {
  grid-column: 5 / span 2;
  grid-row: 2;
  max-width: 18rem;
  margin-top: -3%;
  margin-left: -40%;
  z-index: 1;
}

.item04-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*item05*/
/* テキスト */
.item05-text {
  top: -3rem;
  right: 33%;
  z-index: 5;
}
/* 親子 */
.item05-img-main {
  grid-column: 4 / span 4;
  grid-row: 1;
  margin-left: 5.8rem;
  margin-top: -3rem;
  min-width: 8rem;
  max-width: 27rem;
  width: 100%;
  z-index: 2;
}
/* 子どもアップ */
.item05-img-side {
  grid-column: 7 / span 3;
  grid-row: 1;
  min-width: 5rem;
  max-width: 11.5rem;
  margin-top: 11.5rem;
  margin-left: 8.8rem;
  z-index: 1;
}

/* ディテール */
.item05-img-detail {
  grid-column: 6 / span 3;
  grid-row: 2;
  min-width: 10rem;
  max-width: 18.5rem;
  margin-top: -7rem;
  margin-left: 6rem;
  z-index: 3;
}

.item05-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*item06*/
/* テキスト */
.item06-text {
  top: -15rem;
  left: 42%;
  z-index: 5;
}
/* アップ */
.item06-img-main {
  grid-column: 3 / span 3;
  grid-row: 1;
  min-width: 10rem;
  max-width: 22rem;
  margin-top: -15rem;
  width: 100%;
  z-index: 3;
}
/* 親子 */
.item06-img-side {
  grid-column: 3 / span 4;
  grid-row: 2;
  min-width: 16rem;
  max-width: 27rem;
  margin-top: -3rem;
  margin-left: 11rem ;
  z-index: 2;
  position: relative;
}

.item06-img-side::before {
  position: absolute;
  content: "";
  top: -8%;
  left: 92%;
  width: 88%;
  height: 100%;
  background-image: url("https://ruirue-co-jp.prm-ssl.jp/img/hichigosan/2025hichigosan/images/items/pa1463-0.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.item06-img-side img {
  position: relative;
  z-index: 1;
}

.item06-img img {
  width: 100%;
  height: auto;
  display: block;
}

.item06-img-detail{
  display: none;
}


/*item07*/
/* テキスト */
.item07-text {
  top: 5%;
  left: 20%;
  z-index: 5;
}
/* アップ */
.item07-img-main {
  grid-column: 8 / span 3;
  grid-row: 1;
  min-width: 10rem;
  max-width: 19rem;
  width: 100%;
  margin-top: 3rem;
  margin-left: -11rem;
  z-index: 3;
  position: relative;
}
.item07-img-main::before {
  position: absolute;
  content: "";
  bottom: -55%;
  right: 89%;
  width: 77%;
  height: 100%;
  background-image: url("https://ruirue-co-jp.prm-ssl.jp/img/hichigosan/2025hichigosan/images/items/su1358-0.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.item07-img-main img {
  position: relative;
  z-index: 1;
}

/* 親子 */
.item07-img-side {
  grid-column: 3 / span 4;
  grid-row: 1;
  min-width: 10rem;
  max-width: 26rem;
  margin-top: 5rem;
  margin-left: 8rem;
  z-index: 4;
}

.item07-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*item08*/
/* テキスト */
.item08-text {
  bottom: 24%;
  left: 45%;
  z-index: 5;
}
/* アップ */
.item08-img-main {
  grid-column: 4 / span 3;
  grid-row: 1;
  min-width: 15rem;
  max-width: 24rem;
  width: 100%;
  margin-top: 8rem;
  margin-left: -10rem;
  z-index: 3;
}
/* 置き撮り */
.item08-img-side {
  grid-column: 6 / span 4;
  grid-row: 1;
  min-width: 15rem;
  max-width: 19rem;
  margin-top: 26rem;
  margin-left: 6.4rem;
  z-index: 2;
}

.item08-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*item09*/
/* テキスト */
.item09-text {
  bottom: 26%;
  left: 55%;
  z-index: 5;
}
/* 親子 */
.item09-img-main {
  grid-column: 5 / span 3;
  grid-row: 1;
  min-width: 15rem;
  max-width: 25rem;
  margin-top: 1rem;
  margin-left: -6.3rem;
  width: 100%;
  z-index: 3;
}
/* 子どもアップ */
.item09-img-detail {
  grid-column: 7 / span 3;
  grid-row: 1;
  min-width: 5rem;
  max-width: 10rem;
  margin-top: 19rem;
  margin-left: 2.8rem;
  z-index: 2;
}
/* アップ */
.item09-img-side {
  grid-column: 4 / span 2;
  grid-row: 2;
  min-width: 10rem;
  max-width: 22rem;
  margin-top: -6rem;
  margin-left: -4rem;
  z-index: 1;
  position: relative;
}
.item09-img-side::before {
  position: absolute;
  content: "";
  top: -5.7%;
  right: -26%;
  width: 95%;
  height: 100%;
  background-image: url("https://ruirue-co-jp.prm-ssl.jp/img/hichigosan/2025hichigosan/images/items/su1469-0-2.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.item09-img-side img {
  position: relative;
  z-index: 1;
}

.item09-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*item10*/
/* テキスト */
.item10-text {
  top: 30%;
  left: 55%;
  z-index: 5;
}
/* 親子 */
.item10-img-main {
  grid-column: 3 / span 4;
  grid-row: 1;
  min-width: 15rem;
  max-width: 26rem;
  margin-left: 5.2rem ;
  z-index: 3;
}

/* アップ */
.item10-img-side {
  grid-column: 6 / span 3;
  grid-row: 1;
  min-width: 15rem;
  max-width: 25.3rem;
  margin-top: 19rem;
  margin-left: 8rem;
  z-index: 2;
}
.item10-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*item11*/
/* テキスト */
.item11-text {
  right: 26.5%;
  top: -1.5rem;
  z-index: 5;
}
/* アップ */
.item11-img-main {
  grid-column: 6 / span 3;
  grid-row: 1;
  min-width: 10rem;
  max-width: 18rem;
  margin-top: -2rem;
  margin-left: -1.7rem;
  z-index: 2;
}
/* 親子 */
.item11-img-side {
  grid-column: 3 / span 4;
  grid-row: 1;
  min-width: 10rem;
  max-width: 27rem;
  margin-top: 16rem;
  margin-left: 6rem;
  z-index: 3;
}

/* 子どもアップ */
.item11-img-detail {
  grid-column: 6 / span 4;
  grid-row: 1;
  max-width: 17rem;
  margin-top: auto;
  margin-bottom: 1.5rem;
  margin-left: 8rem;
  z-index: 1;
}

.item11-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*item12*/
/* テキスト */
.item12-text {
  top: 12%;
  left: 24%;
  z-index: 5;
}
/* アップ */
.item12-img-main {
  grid-column: 4 / span 3;
  grid-row: 1;
  min-width: 14rem;
  max-width: 27rem;
  margin-left: 1rem;
  z-index: 3;
}
/* 親子 */
.item12-img-side {
  grid-column: 6 / span 3;
  grid-row: 2;
  min-width: 18rem;
  max-width: 27rem;
  margin-top: -13.5rem;
  margin-left: -0.3rem;
  z-index: 2;
}

/* 首元 */
.item12-img-detail {
  grid-column: 7 / span 2;
  grid-row: 1;
  min-width: 10rem;
  max-width: 14rem;
  margin-top: 22.5rem;
  margin-left: 3rem;
  z-index: 1;
}

.item12-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*item13*/
/* テキスト */
.item13-text {
  top: -1rem;
  right: 40%;
  z-index: 5;
}
/* 親子1 */
.item13-img-main {
  grid-column: 4 / span 2;
  grid-row: 1;
  min-width: 10rem;
  max-width: 24rem;
  margin-top: -1rem;
  margin-left: -5.5rem;
  z-index: 2;
}
/* 親子2 */
.item13-img-side {
  grid-column: 5 / span 4;
  grid-row: 2;
  max-width: 27rem;
  margin-top: -7rem;
  margin-left: 2.7rem;
  z-index: 1;
  position: relative;
}
.item13-img-side::before {
  position: absolute;
  content: "";
  top: 72%;
  left: -43%;
  width: 50%;
  height: 100%;
  background-image: url("https://ruirue-co-jp.prm-ssl.jp/img/hichigosan/2025hichigosan/images/items/ckn1504-0.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.item13-img-side img {
  position: relative;
  z-index: 1;
}

/* 首元 */
.item13-img-detail {
  grid-column: 6 / span 3;
  grid-row: 1;
  min-width: 10rem;
  max-width: 19.5rem;
  margin-top: 13.6rem;
  margin-left: 8.7rem;
  z-index: 3;
}

.item13-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*item14*/
/* テキスト */
.item14-text {
  top: 26rem;
  left: 45.5%;
  z-index: 5;
}

/* 親子 */
.item14-img-main {
  grid-column: 3 / span 4;
  grid-row: 1;
  min-width: 10rem;
  max-width: 22.5rem;
  margin-top: 26rem;
  margin-left: 5rem;
  z-index: 2;
}
/* アップ */
.item14-img-side {  
  grid-column: 6 / span 4;
  grid-row: 1;
  min-width: 10rem;
  max-width: 30rem;
  margin-top: 7rem;
  margin-left: 4rem;
  z-index: 3;

}
.item14-img img {
  width: 100%;
  height: auto;
  display: block;
}

/*アクセ＆バッグセクション*/
.sec-4{
  padding: 7% 0;
  background-color: #EDE9E9;
}

.sec-ttl {
  position: relative;
  text-align: center;
}

.sec-ttl h3{
  width: fit-content;
  position: relative;
  margin: 0 auto;
}

.sec-ttl h3::after {
  content: "Accessory & Bag";
  position: absolute;
  top: 32%;
  left: 31%;
  font-size: 80px;
  font-family: "snell-roundhand-lt-std", sans-serif;
  color: #A67891;
  opacity: 0.3;
  pointer-events: none;
  white-space: nowrap;
}

.sec-ttl p{
  margin: 78px 0 58px;
  font-size: 1.1rem;
  color: #655D51;
}

/* プラスワンタイトル装飾 */
.pink {
  color: #A67891;
}

.photo-frame {
  display: inline-block;
  max-width: 649px;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}


/* 商品グリッド */
.item-grid,
.item-grid2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  /* 各行を中央に揃える */
  gap: 50px;                /* カード同士の隙間 */
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* 各カード */
.card {
  flex: 0 1 calc((100% - 100px) / 3);
  max-width: 400px;
  width: 100%;
  display: grid;
  gap: 20px;
  text-align: center;
}

.card img {
  width: 100%;
  height: auto;
}

.card a {
  display: inline-block;
  color: #655D51;
  font-family: "Shippori Mincho", serif;
  font-size: 0.88rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.card a:hover {
  opacity: 0.7;
}

.card-name{
  text-decoration: none;
  border-bottom: 1px solid #A29C94;
  padding-bottom: 1px;
}

.card-name:hover {
  opacity: 0.7;
}


.brooch, .necklace, .bag{
  margin-top: 13.1rem;
}

.brooch h4, .necklace h4, .bag h4{
  font-family: "Cormorant Infant", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  color: #655D51;
}

.brooch h5, .necklace h5, .bag h5{
  font-family: "Shippori Mincho", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  color: #655D51;
  margin-bottom: 83px;
}

/***カテゴリーページへ***/
.cate {
  width: fit-content;
  margin: 100px auto 100px;
  text-align: center;
}

.cate a{
  display: block;
  width: fit-content;
  text-decoration: none;
  margin: 0 30px 50px;
  transition: opacity 0.3s ease;
}

.cate img {
  max-width: 100%;
  width: 750px;
  height: auto;
  display: block;
}

.link{
  font-family: "Shippori Mincho", serif;
  font-size: 1.2rem;  
  color: #4B4B4B;
  font-weight: 400;
}

.cate a:hover{
  opacity: 0.6;
}

.t-footer{
  padding: 20px 0;
  background-color: #DBD2C7;
}

.t-footer img {
  width: 300px;
  margin: 0 auto;
}

/*  レスポンシブ  */
@media (max-width: 1674px) {
  /* アップ */
  .item03-img-main {
    margin-left: -10%;
  }
  .item03-text{
    margin-right: -10%;
  }
  
  .margin-space{
    margin-top: 15%;
  }
  
  .item05-text{
    right: 20%;
  }
  
  .item11-text{
    right: 70%;
  }
  
  .item14-text{
    top: 20%;
    left: 15%;
  }
}

@media (max-width: 1432px) {
  .item03-text {
    margin-right: -100px;
  }
}

@media (max-width: 1350px) {
  .kirakira.left {
    max-width: 7%;
    bottom: 0;
    left: 0.5em;
  }

  .kirakira.right {
    max-width: 7%;
    top: 0;
    right: 0.5em;
  }

  .kirakira.left2 {
    max-width: 7%;
    bottom: 0;
    left: 0.5em;
  }

  .kirakira.right2 {
    max-width: 7%;
    bottom: 0;
    right: 0.5em;
  }

  .item01-text{
    right: 10%;
  }
  
  .item03-text {
    margin-bottom: 100px;
    margin-left: 200px;
    height: 30em;
  }
  
  .item03-img-side{
    grid-column: 1 / span 4;
  }
  
  .item12-img-side {
    position: relative;
  }
  .item12-img-side::before {
    position: absolute;
    content: "";
    top: -17.6%;
    left: 70%;
    width: 50%;
    height: 100%;
    background-image: url("https://ruirue-co-jp.prm-ssl.jp/img/hichigosan/2025hichigosan/images/items/pa1468-0.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
  }
  .item12-img-side img {
    position: relative;
    z-index: 1;
  }
  
  .item12-img-detail{
    display: none;
  }
  
  .item13-text{
    right: 10%;
  }

  
  .sec-ttl h3::after {
    top: 50%;
    left: 20%;
    font-size: 50px;
  }
}

  @media (max-width: 1050px) {
    .margin-top2{
      margin-top: 25%;
    }
    
    .item06-text{
      top: 0;
    }
    
    .item06-img-main{
      margin-top: 0;
    }
    
    .item09-img-side{
      margin-top: -150%;
    }
}

@media (max-width: 990px) {

  .sec-2{
    margin-top: -10%;
  }

  .vertical-text{
    font-size: 1rem;
  }
  .item01-text {
    margin-right: -5%;
    }
     /* シャツディテール */
  .item01-img-detail {
    max-width: 10rem;
  }
  .item04-img-detail{
    margin-bottom: 200%;
  }
}

/* タブレット */
@media (max-width: 768px) {
  .hero picture {
    padding: 0;
  }
  
  .heroimage img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .lead p {
    padding: 40px 20px;
    font-size: 0.88rem;
  }
  
  .sec-2{
    margin-top: -100px;
  }
  
  /*タイトルボックス*/
  .sp-only {
    display: inline;
  } 
  
  .scene-heading {
    width: 61%;
    max-width: 1022px;
    margin: 0 auto;
  }
  .scene-box h3 {
    font-size: 2.3rem;
  }
  .scene-box h3 span {
    font-size: 0.8rem;
    padding: 0 0.5em;
    margin: 0;
  }
  .scene-frame {
    width: 100%;
  }
  .scene-box {
    padding: 20px 0 20px;
  }
  
  .kirakira.left {
    min-width: 13%;
    bottom: 15%;
    left: -3.2em;
  }

  .kirakira.right {
    min-width: 13%;
    top: 15%;
    right: -3em;
  }

  .kirakira.left2 {
    min-width: 13%;
    top: 15%;
    left: -3.2em;
  }

  .kirakira.right2 {
    min-width: 13%;
    bottom: 15%;
    right: -3em;
  }
  
  .mainitem-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 150px;
    padding-right: 100px;
    padding-left: 100px;
  }
  
  .margin-top2{
    margin-top: -100px;
  }
  
  .sp-name-number{
    display: inherit;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .sp-name-number a{
    display: block;
    text-align: left;
  }
  
  .sp-only-left a{
    text-align: left;
  }
    
  .align-right a{
    text-align: right;
  }
  
  .name-number{
    display: none;
  }
  
  /* item01 */
  /* 縦書き */
  .item01-text {
    right: 20%;
    margin-top: 8rem;
    margin-right: -3.2rem;
  }

  /* 親子 */
  .item01-img-main {
    margin: 0 auto 0 0;
    max-width: 22rem;
  }
  .item01-img-main::before {
    top: -5%;
    left: 32%;
    width: 75%;
    height: 100%;
  }

  /* アップ */
  .item01-img-side {
    margin: -4rem 0 0 auto;
    max-width: 20.5rem;
    z-index: 2;
    position: relative;
  }
  .item01-img-side::before {
    position: absolute;
    content: "";
    top: 70%;
    left: -20%;
    width: 50%;
    height: 100%;
    background-image: url("https://ruirue-co-jp.prm-ssl.jp/img/hichigosan/2025hichigosan/images/items/su1461_t1490-1.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
  }
  .item01-img-side img {
    position: relative;
    z-index: 1;
  }
  
   /* ディテール */
  .item01-img-detail {
    display: none; 
  }
  
  /*item02*/
  /* 縦書き */
  .item02-text {
    margin-top: -4.5rem;
    margin-left: -4rem;
  }
  
    /* アップ */
  .item02-img-side {
    margin: 2rem 0 0 auto;
    max-width: 20rem;
    z-index: 2;
    position: relative;
    order: 1;
  }
  
  /* 親子 */
  .item02-img-main {
    margin: -4rem auto 0;
    max-width: 28rem;
    order: 2;
  }

  
    /*item03*/
  /* 縦書き */
  .item03-text {
    margin-bottom: -30%;
    margin-right: -20%;
  }
  
    /* 親子 */
  .item03-img-side {
    margin: 2rem auto 0 0;
    max-width: 22rem;
    min-width: 18rem;
    z-index: 2;
    position: relative;
    order: 1;
  }
  
    /* アップ */
  .item03-img-main {
    margin: -4rem auto 0;
    max-width: 28rem;
    order: 2;
  }

  .item03-img-side::before{
    position: absolute;
    content: "";
    top: -20%;
    right: -18%;
    width: 32%;
    height: 100%;
    background-image: url("https://ruirue-co-jp.prm-ssl.jp/img/hichigosan/2025hichigosan/images/items/su1402-0.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
  }
  .item03-img-side img {
    position: relative;
    z-index: 1;
  }

  /* ディテール */
  .item03-img-detail {
    display: none; 
  }

  /* item04 */
  /* 縦書き */
  .item04-text {
    bottom: 20.5rem;
    margin-left: -4.2rem;
  }
  
    /* アップ */
  .item04-img-main {
    margin: -6rem auto 0 0;
    max-width: 23rem;
    z-index: 2;
    position: relative;
}
  .item04-img-main::before {
    position: absolute;
    content: "";
    bottom: -105%;
    right: -10%;
    width: 75%;
    height: 100%;
    background-image: url("https://ruirue-co-jp.prm-ssl.jp/img/hichigosan/2025hichigosan/images/items/su1489-0.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}
  .item04-img-main img {
    position: relative;
    z-index: 1;
  }

  /* 親子 */
  .item04-img-side {
    margin: 8.8rem 0 0 auto;
    max-width: 18rem;
    min-width: 16rem;
    z-index: 2;
  }
  
  /*子どもアップ*/
  .item04-img-detail{
    display: none;
  }
  
  
  /*item05*/
  /* テキスト */
  .item05-text {
    top: 41rem;
    right: 75%;
  }
  /* 親子 */
  .item05-img-main {
    margin-left: 0;
    margin-right: auto;
    margin-top: 2rem;
    max-width: 23rem;
  }
  /* 子どもアップ */
  .item05-img-side {
    max-width: 9rem;
    margin-top: 10rem;
    margin-left: -4rem;
    z-index: 1;
  }
  /* ディテール */
  .item05-img-detail {
    max-width: 15rem;
    margin-top: -32rem;
    margin-left: auto;
    margin-right: 0;
  }

  .item05-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  
    /*item06*/
  /* テキスト */
  .item06-text {
    top: 8.5rem;
    right: 10%;
  }
  /* アップ */
  .item06-img-main {
    margin-left: 0;
    margin-right: auto;
    margin-top: 2.5rem;
    max-width: 15.6rem;
    z-index: 1;
    order: 2;
    position: relative;
  }
  
  /* 親子 */
  .item06-img-side {
    max-width: 23.5rem;
    margin-top: -4rem;
    margin-right: 0;
    margin-left: auto;
    z-index: 1;
    order: 3;
  }
  .item06-img-side::before{
    display: none;
  }
  
  .item06-img-detail{
    display: inherit;
    max-width: 14rem;
    margin-top: 5%;
    margin-bottom: -35%;
    margin-right: 0;
    margin-left: auto;
    width: 100%;
    z-index: 0;
    order: 1;
  }
  
  .item06-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .margin-bottom{
    margin-bottom: 60px;
  }

  /*item07*/
  /* テキスト */
  .item07-text {
    top: -1rem;
    left: 12%;
  }
  
  /* アップ */
  .item07-img-main {
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
    max-width: 15rem;
    z-index: 1;
    position: relative;
  }
  
  .item07-img-main::before{
    top: 90%;
    width: 60%;
  }
  
  /* 親子 */
  .item07-img-side {
    max-width: 27rem;
    margin: 7rem auto;
    z-index: 1;
  }

  /*item08*/
  /* テキスト */
  .item08-text {
    top: -12rem;
    right: 10%;
  }
  
  /* 親子 */
  .item08-img-main {
    margin-left: 0;
    margin-right: auto;
    margin-top: -8rem;
    max-width: 23.5rem;
    z-index: 1;
    position: relative;
  }

  /* アップ */
  .item08-img-side {
    max-width: 16.5rem;
    margin: -3.6rem 0 0 auto;
    z-index: 1;
  }

  /*item09*/
  /* テキスト */
  .item09-text {
    bottom: 22%;
    right: 7%;
  }
  
  /* 親子 */
  .item09-img-main {
    margin-left: auto;
    margin-right: 0;
    margin-top: -2rem;
    max-width: 23rem;
    z-index: 1;
    position: relative;
  }
  
  .item09-img-side::before{
    top: -10%;
    right: -12%;

  }
  
  /* アップ */
  .item09-img-side {
    max-width: 15rem;
    margin: 0 auto 0 0;
    z-index: 1;
  }
  
  /* 子ども */
  .item09-img-detail{
    display: none;
  }
  
  /*item10*/
  /* テキスト */
  .item10-text {
    top: 54%;
    left: 18%;
  }
  
  /* 親子 */
  .item10-img-main {
    margin: 2.5rem auto 0;
    max-width: 25rem;
    z-index: 1;
    position: relative;
  }

  /* アップ */
  .item10-img-side {
    max-width: 20rem;
    margin: -3.2rem 0 0 auto;
    z-index: 1;
  }
  
  /* item11 */
  /* テキスト */
  .item11-text {
    top: 12rem;
    right: 6%;
  }
  
    /* アップ */
  .item11-img-main {
    margin: 10rem auto 0 0;
    max-width: 17rem;
    z-index: 2;
    position: relative;
}
  .item11-img-main::before {
    position: absolute;
    content: "";
    top: -30%;
    right: -50%;
    width: 75%;
    height: 100%;
    background-image: url("https://ruirue-co-jp.prm-ssl.jp/img/hichigosan/2025hichigosan/images/items/pa1445-0.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}
  .item11-img-main img {
    position: relative;
    z-index: 1;
  }

  /* 親子 */
  .item11-img-side {
    margin: -3rem 0 0 auto;
    max-width: 23.5rem;
    min-width: 16rem;
    z-index: 2;
  }
  
  /*子どもアップ*/
  .item11-img-detail{
    display: none;
  }

  /* item12 */
  /* テキスト */
  .item12-text {
    top: -6rem;
    left: 12%;
  }

  /* 親子 */
  .item12-img-main {
    margin: -4rem auto 0;
    max-width: 25rem;
    z-index: 2;
    position: relative;
}
  .item12-img-side::before {
    top: -17.8%;
    left: 55%;
    z-index: 0;
}
  .item12-img-main img {
    position: relative;
    z-index: 1;
  }

  /* アップ */
  .item12-img-side {
    margin: 3rem auto 0 0;
    max-width: 23.5rem;
    min-width: 16rem;
    z-index: 2;
  }

  /* item13 */
  /* テキスト */
  .item13-text {
    top: -6rem;
    right: 72%;
  }

  /* 親子 */
  .item13-img-main {
    margin: -4rem 0 0 auto;
    max-width: 17.5rem;
    z-index: 2;
    position: relative;
}
  .item13-img-side::before {
    top: -55%;
    left: 60%;
    z-index: 0;
}
  .item13-img-main img {
    position: relative;
    z-index: 1;
  }
  
  .item13-img-detail{
    margin: -4rem auto 0 0;
    max-width: 15rem;
  }

  /* 親子2 */
  .item13-img-side {
    margin: 5rem auto 0 0;
    max-width: 23.5rem;
    min-width: 16rem;
    z-index: 2;
  }

  /*item14*/
  /* テキスト */
  .item14-text {
    top: -10%;
    right: 11%;
    z-index: 5;
  }
  
  /* アップ */
  .item14-img-main {
    margin: -2rem auto 0 0;
    max-width: 16rem;
    z-index: 1;
    position: relative;
  }

  /* 親子 */
  .item14-img-side {
    max-width: 22.5rem;
    margin: -10rem 0 0 auto;
    z-index: 0;
  }
  
  .margin-bottom2{
    margin-bottom: 20px;
  }


  
  /* アクセ＆バッグ */
  .sec-4{
    padding-top: 50px;
  }
  
  .photo-frame{
    max-width: 500px;
  }
  
  .item-grid, .item-grid2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 1rem;
  }

  .card {
    flex: 0 1 250px;
    max-width: calc(50% - 10px);
    gap: 10px;
  }  
  
  .card a {
    font-size: 13px;
  }  
  .sec-ttl h3{
    font-size: 32px;
  }

  .sec-ttl h3::after {
    font-size: 36px;
  }
  
  .sec-ttl p{
    font-size: 0.85rem;
    margin: 45px 0;
  }
  
  .brooch, .necklace, .bag{
    margin: 80px 0 0;
  }
  
  .brooch h4, .necklace h4, .bag h4{
    font-size: 1.125rem;
  }

  .brooch h5, .necklace h5, .bag h5{
    margin: 0 0 30px;
    font-size: 1.125rem;
  }
  
  .cate {
    margin: 50px auto 50px;
  }

  .link{
    font-size: 16px;
  }

  .t-footer{
    padding: 10px 0;
  }
  
  .t-footer img {
      width: 100px;
      padding: 15px 0;
  }
}

@media (max-width: 551px) {
  .item03-text {
    color: #FFFFFF;
  }
}

/* スマホサイズ */
@media (max-width: 480px) {
  .mainitem-grid{
    padding-right: 0;
    padding-left: 0;
  }  
  
  .sec-4{
    padding-right: 20px;
    padding-left: 20px;
  }
  
  .photo-frame{
    max-width: 320px;
  }
  .card {
    flex: 0 1 140px;
    max-width: calc(50% - 10px);
  }  
}