@charset "UTF-8";

*{
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
#loveandpeace ul,li{
  list-style: none;
}
#loveandpeace img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
#loveandpeace .sp-only{
  display: none;
}
@media (max-width:768px) {
  #loveandpeace .sp-only{
    display: block;
  }
}

/* ===== ベース ===== */
#loveandpeace{
  background: #fff;
  color: #333;
}
#loveandpeace section{
  margin:0 auto;
  padding:45px 15px;
}
#loveandpeace section .section-inner{
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
#loveandpeace section,
#loveandpeace div {
  scroll-margin-top: 80px;
}
@media (max-width:768px){
  #loveandpeace section,
  #loveandpeace div {
    scroll-margin-top: 60px;
  }
  #loveandpeace section{
  padding:30px 15px;
}
}

/* ===== 見出し ===== */
#loveandpeace #about .h1-heart-logo{
  max-width: 150px;
  width: 70%;
  margin: auto;
}
#loveandpeace h1{
  font-size: 1.6em;
  line-height: 1.4;
  text-align: center;
  margin: 10px auto 100px;
  background: linear-gradient(90deg, #652eaf, #ff78d7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
  font-weight: 400;
  letter-spacing: 0.15em;
}
#loveandpeace h2{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  text-align:center;
  letter-spacing:0.1em;
  color: #333;
  margin-bottom: 2em;
  font-weight: bold;
}
#loveandpeace h2::after{
  content:"";
  display:block;
  height: 1px;
  background: #ebebeb;
  width: auto;
  margin:8px auto 0;
}
@media (max-width:768px) {
  #loveandpeace h1{
  font-size: 1.2em;
  margin: 10px auto 40px;
}
}

/* ===== テキスト ===== */
#loveandpeace p{
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.875rem, 0.831rem + 0.188vw, 1rem);
  line-height:1.6;
}
#loveandpeace a{
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
#loveandpeace a:hover{
  opacity: 0.7;
}

/* =========================
   header
========================= */
#loveandpeace header {
  position:fixed;
  top:0;
  width:100%;
  height: 80px;
  background: linear-gradient(90deg,#ff4da6,#a938d6);
  backdrop-filter: none;
  z-index:1000;
}
#loveandpeace .header-inner{
  max-width:1000px;
  margin:auto;
  height:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 15px;
}
#loveandpeace .logo{
  height: 60px;
  display:flex;
  align-items:center;
}
#loveandpeace .logo img{
  height:100%;
  width:auto;
}
@media (max-width:768px){
  #loveandpeace header{
    height: 60px;
  }

  #loveandpeace .logo{
    height: 45px;
  }
}

/* ===== ハンバーガー ===== */
#loveandpeace header .menu-btn{
  width:28px;
  height:20px;
  position:relative;
  cursor:pointer;
  z-index:1100;
}
#loveandpeace header .menu-btn span{
  position:absolute;
  width:100%;
  height:2px;
  background:#fff;
  left:0;
  transition:0.3s;
}
#loveandpeace header .menu-btn span:nth-child(1){ top:0; }
#loveandpeace header .menu-btn span:nth-child(2){ top:9px; }
#loveandpeace header .menu-btn span:nth-child(3){ bottom:0; }

/* 開いたとき */
#loveandpeace header .menu-btn.active span:nth-child(1){
  transform:rotate(45deg);
  top:9px;
}
#loveandpeace header .menu-btn.active span:nth-child(2){
  opacity:0;
}
#loveandpeace header .menu-btn.active span:nth-child(3){
  transform:rotate(-45deg);
  bottom:9px;
}

/* ===== メニュー本体 ===== */
#loveandpeace header .menu{
  position:fixed;
  top:0;
  right:-100%;
  width:75%;
  height:100vh;
  backdrop-filter:blur(10px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:28px;
  transition:0.4s;
  z-index:1000;
}

/* 開いた状態 */
#loveandpeace header .menu.active{
  right:0;
}

/* メニューリンク */
#loveandpeace header .menu a{
  font-size:16px;
  letter-spacing:0.12em;
  color:#fff;
  font-weight: 500;
  position:relative;
}
#loveandpeace header .menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:1px;
  background:#fff;
  transition:0.3s;
}
#loveandpeace header .menu a:hover::after{
  width:100%;
}
#loveandpeace header .menu::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: #794293cc;
  opacity:0;
  pointer-events:none;
  transition:0.3s;
}
#loveandpeace header .menu.active::before{
  opacity:1;
  pointer-events:auto;
}
#loveandpeace .overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.3);
  opacity:0;
  pointer-events:none;
  transition:0.3s;
  z-index:900;
}
#loveandpeace .overlay.active{
  opacity:1;
  pointer-events:auto;
}

/* ===== メインビジュアル ===== */
#loveandpeace .key{
  width: 100%;
  padding-top:80px;
  filter:contrast(1.05) brightness(1.05);
}

@media (max-width:768px){
  #loveandpeace .key{
    padding-top:60px;
  }
}

/* ===== LINE UP ===== */

#loveandpeace #lineup ul{
  max-width:600px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px;
}
#loveandpeace #lineup ul li{
  width:100%;
  margin:0;
}
#loveandpeace #lineup ul li a{
  display:flex;
  align-items:center;
  justify-content:center;
  height:44px;
  width:100%;
  font-size:13px;
  letter-spacing:0.05em;
  background: linear-gradient(#fff, #f5ebef);
  border:1px solid #eddce6;
  box-shadow:0 2px 5px rgba(0,0,0,0.08);
}
#loveandpeace #lineup ul li a:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 12px rgba(0,0,0,0.1);
}

@media (max-width:768px) {
  #loveandpeace #lineup ul{
    grid-template-columns:1fr;
  }
  #loveandpeace #lineup ul li{
  width: 100%;
  }
  #loveandpeace #lineup ul li a{
  padding: 8px 0px;
  height: auto;
  }
}

/* ===== PRODUCTS ===== */
#loveandpeace #products .products-inner{
  display:flex;
  flex-direction:column;
  gap:40px;
  max-width: 850px;
  margin: auto;
}

#loveandpeace #products .item-container{
  display:flex;
  align-items: center;
  gap:50px;
  padding:40px 20px;
  border-radius:8px;
  background: linear-gradient(#fff,#fff7fb);
  border:1px solid #ffd6e8;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
}
#loveandpeace #products .product-image{
  flex:0 0 220px;
}

#loveandpeace #products .product-image img{
  width:100%;
  height:260px;
  object-fit:contain;
}

#loveandpeace #products .product-info{
  flex:1;
  min-width:0;
}
#loveandpeace #products .product-info h3{
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  margin-bottom:10px;
  font-weight: bold;
}
#loveandpeace #products .product-info p{
  margin-bottom:10px;
}
#loveandpeace #products .product-info .fragrance{
  background: #e4cded;
  font-size: 14px;
  display: inline-block;
  padding: 4px 8px;
}
#loveandpeace #products .product-info .fragrance.PFF{
  background: #ffe7ed;
}
#loveandpeace #products .notes{
  margin:20px 0;
}
#loveandpeace .note-row{
  border-bottom:1px dotted #ddd;
}
#loveandpeace .note-row p{
  margin-bottom: 0;
}
#loveandpeace .label{
  font-size:12px;
  color:#ff5fa2;
  font-weight:bold;
}

#loveandpeace .fragrance-block.purple .label{
  color: #a938d6;
}

#loveandpeace #products .scene{
  display:flex;
  flex-direction:column;
  gap:6px;
}

#loveandpeace #products .scene-title{
  font-weight:bold;
  font-size:14px;
}

#loveandpeace #products .scene-list{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

#loveandpeace #products .scene-list span{
  display:inline-block;
  padding:4px 10px;
  font-size:12px;
  background:#f5f5f5;
  border-radius:20px;
  line-height:1.4;
}

/* ===== パラメーター ===== */
#loveandpeace #products .parameter{
  margin-top:15px;
}

#loveandpeace #products .param-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:6px;
}

#loveandpeace #products .param-label{
  width:70px;
  font-size:14px;
  color:#666;
  font-weight: 900;
}

#loveandpeace #products .param-bar{
  position:relative;
  flex:1;
  height:14px;
  background: #f5f5f5;
  border-radius:10px;
  overflow:hidden;
  border: 3px double #ffd861;
  max-width: 500px;
}

/* メモリ線 */
#loveandpeace #products .param-bar::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
  /* 10%ごとの強い線 */
  repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.4) 0%,
    rgba(255,255,255,0.4) 1px,
    transparent 1px,
    transparent 1%
  );
  background-image:
    repeating-linear-gradient(
      to right,
      rgba(169,116,230,0.4) 0%,
      rgba(169,116,230,0.4) 1px,
      transparent 1px,
      transparent 10%
    ),
    /* 1%ごとの細い線 */
    repeating-linear-gradient(
      to right,
      rgba(255,255,255,0.4) 0%,
      rgba(255,255,255,0.4) 1px,
      transparent 1px,
      transparent 1%
    );
}

#loveandpeace #products .param-bar span{
  display:block;
  height:100%;
  background:linear-gradient(90deg,#ff8fd1,#a974e6);
  position:relative;
  z-index:1;
  opacity: 0.85;
}


@media (max-width:768px){
  #loveandpeace #products .item-container{
    flex-direction:column;
  }
  #loveandpeace #products .product-info{
    max-width: 500px;
    width: 100%;
  }
  #loveandpeace #products .product-image{
    flex:none;
    width:200px;
  }
  #loveandpeace #products .product-image img{
    height:auto;
  }
}

/* =========================
   BUTTON
========================= */

#loveandpeace #products .btn{
  position: relative;
  display:inline-block;
  margin-top:20px;
  padding:10px 20px;
  font-size:14px;
  letter-spacing:0.05em;
  width:auto;
  min-width:160px;
  text-align:center;
  background: linear-gradient(180deg,#ffd1ec,#ffb3d9);
  overflow:hidden;
  z-index:1;
  text-align:center;
  border:1px solid #ff9ccc;
  box-shadow:0 3px 0 rgba(0,0,0,0.2);
  transition:0.2s;
}
/* 伸びるレイヤー（濃色） */
#loveandpeace #products .btn::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:100%;
  background: linear-gradient(90deg,#ff8fd1,#ff4da6);
  transition:0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index:-1;
}
/* ホバーで色が伸びる */
#loveandpeace #products .btn:hover::before{
  width:100%;
}
/* ホバー時ちょい浮く */
#loveandpeace #products .btn:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 14px rgba(255,77,166,0.4);
  color:#fff;
}
/* クリック時 */
#loveandpeace #products .btn:active{
  transform:translateY(2px);
  box-shadow:0 1px 0 rgba(0,0,0,0.2);
  color:#fff;
}

#loveandpeace #products .btn::after{
  content:"";
  position:absolute;
  top:0;
  left:-75%;
  width:50%;
  height:100%;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform:skewX(-25deg);
}
#loveandpeace #products .btn:hover::after{
  left:130%;
  transition:0.6s;
}
@media (max-width:768px){
  #loveandpeace #products .btn{
    display:block;
    /* width:100%; */
    text-align:center;
  }
}
@media (max-width:768px){
  #loveandpeace #products .item-container{
    flex-direction:column;
    gap:25px;
  }
}

/* =========================
   FRAGRANCE
========================= */
#loveandpeace #fragrance .fragrance-block{
  display: flex;
  flex-direction: column;
  margin: 0px auto 60px;
  max-width: 800px;
  padding:25px;
  border-radius:15px;
  background:#fffbfc;
  background: linear-gradient(#fff, #fff7fb);
  border:1px solid #f3d6df;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
}
#loveandpeace #fragrance .fragrance-block.pink{
  margin-bottom: 0px;
}
#loveandpeace #fragrance .fragrance-block h3{
  font-size:1.2em;
  margin-bottom:16px;
  text-align:center;
  position:relative;
  display:inline-block;
  color: #333;
  font-weight: 400;
}
#loveandpeace #fragrance .fragrance-block.pink h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:10%;
  background:rgba(255, 160, 190, 0.3);
  border-radius:4px;
}
#loveandpeace #fragrance .fragrance-block.purple h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:10%;
  background:rgba(180, 140, 220, 0.3);
  border-radius:4px;
}

#loveandpeace #fragrance .fragrance-desc{
  font-size:12px;
  margin-bottom:15px;
  line-height:1.6;
}

#loveandpeace #fragrance .fragrance-items ul{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

#loveandpeace #fragrance .fragrance-items li a{
  display:inline-block;
  padding:6px 12px;
  font-size:14px;
  background: linear-gradient(rgb(255, 255, 255), rgb(245, 235, 239));
  border: 1px solid #eddce6;
  box-shadow:0 2px 5px rgba(0, 0, 0, 0.08);
  transition:0.2s;
}
#loveandpeace #fragrance .fragrance-items li a:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 12px rgba(0,0,0,0.1);
  background:#ff58ad;
  color: #fff;
}
#loveandpeace #fragrance .notes{
  margin:0px 0px 20px;;
}
#loveandpeace #fragrance .fragrance-block .note-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#loveandpeace #fragrance .fragrance-block .note-box img{
  max-width: 250px;
}
@media (max-width:768px) {
  #loveandpeace #fragrance .fragrance-block h3{
    font-size: 1em;
  }
  #loveandpeace #fragrance .fragrance-block .note-box{
    flex-direction: column-reverse;
    justify-content: center;
  }
  #loveandpeace #fragrance .fragrance-block .note-box img{
  max-width: 180px;
  }
  #loveandpeace #fragrance .fragrance-items ul{
  justify-content: center;
}
}
/* ===== フッター ===== */
#loveandpeace footer{
  background: #3a2e55;
  color: #fff;
  padding: 2em 0;
}

#loveandpeace .footer-inner{
  max-width: 880px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6em;
  flex-wrap:row;
}

#loveandpeace .footer-inner ul{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#loveandpeace .footer-inner ul li{
  padding: 0.4em;
}

#loveandpeace .footer-inner ul li::after{
  content: "/";
  margin: 0 0.5em;
  color: #aaa;
}

#loveandpeace .footer-inner ul li:last-child::after{
  content: "";
}
#loveandpeace .footer-inner ul li a{
  font-size: 12px
}
#loveandpeace .footer-inner p{
  font-size: 12px;
}
@media (max-width:768px) {
  #loveandpeace footer{
    padding-bottom: 80px;
  }
  #loveandpeace .footer-inner{
    flex-direction: column;
    gap: 0;
  }
}

/* ===== 固定バー ===== */
#loveandpeace .fixed-bar{
  display:none;
}

@media (max-width:768px){
  #loveandpeace .fixed-bar{
    position:fixed;
    bottom:0;
    width:100%;
    display:flex;
    z-index:999;
  }

  #loveandpeace .fixed-bar a{
    flex:1;
    padding:12px;
    text-align:center;
    font-size:14px;
  }

  #loveandpeace .fixed-bar a.store{
    background:linear-gradient(90deg,#ff4da6,#ff8fd1);
    color:#fff;
  }
  #loveandpeace .fixed-bar a.store:hover{
    background:#ff4da6;
    opacity: 1;
  }
  #loveandpeace .fixed-bar a.contact{
    background:#c0a3ff;
    color:#fff;
  }
  #loveandpeace .fixed-bar a.contact:hover{
    background:#ab39d5;
    opacity: 1;
  }
}



