@charset "utf-8";

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  color: #111;
  padding-top: 170px;
}

/* 共通 */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

section {
  margin-bottom: 80px;
}

h1, h2 {
  margin-bottom: 16px;
}

p {
  margin-bottom: 10px;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo img {
  width: 200px;
  height: 150px;
}

/* ハンバーガー */
.hamburger {
   display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2000; /* 最前面 */
    
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    background: white;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #111;
  display: block;
  transition: 0.3s;
}

/* ナビ（スライド） */
.nav {
  position: fixed;
  top: 0;
  right: -100%; 
  width: 70%;
  height: 100vh;
  background: white;
  padding: 80px 20px;
  transition: 0.3s ease;
  z-index: 1000;
}

/* スライドイン */
.nav.active {
  right: 0; 
}

.nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* pc */
@media (min-width: 769px) {

  .hamburger {
  display: none;
  }


  .nav {
   position: static;
    width: auto;
    height: auto;
    padding: 0;
    right: auto;
    display: block;
  }

  .nav ul {
    flex-direction: row;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* ボタン共通 */
.contact-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #111;   
  color: #fff;              
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 14px;
}

/* ホバー効果 */
.contact-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* スマホ */
@media (max-width: 768px) {
  .contact-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* /////////////////////////main/////////////////////// */
.section {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: black;
  color: white;
  text-decoration: none;
}

/* /////////////////パリジャンについて /////////////////////////////////*/
/* ヒーロー/////////////////////////// */

.about-hero {
 background-image: url("../images/店頭写真　レタッチ.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 60vh; /* 画面の高さ */
  display: flex;
  align-items: center;
  text-align: center;

  position: relative;
  color: #fff;
}

/* 黒のオーバーレイ*/
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

/* 文字を前面に */
.about-hero .container {
  position: relative;
  z-index: 2;
}

/* タイトル */
.about-hero .section-title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* サブタイトル */
.about-hero .section-subtitle {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

/* セクションの間隔 /////////////////////////*/
.about-concept,
.about-story {
  padding: 0px 0;
}

/* コンテナ幅を読みやすく制限 */
.about-concept .container,
.about-story .container {
  max-width: 800px;
}

/* 見出し */
.about-concept h2,
.about-story h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: #111;
}

/* 本文 */
.about-text {
  font-size: 16px;
  line-height: 2.1;  
  color: #333;
  margin-top: 15px;
  letter-spacing: 0.3px;
}

/* 引用 */
.about-sign {
  margin-top: 25px;
  font-style: italic;
  color: #666;
  text-align: right;
  font-size: 15px;
}

/* スマホ */
@media (max-width: 768px) {

  .about-concept,
  .about-story {
    padding: 50px 0;
  }

  .about-concept h2,
  .about-story h2 {
    font-size: 20px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.9;
  }
}
/*/////////////////////// 商品 //////////////////////////*/
.products {
  padding: 60px 20px;
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* グリッド */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 商品アイテム */
.product-item a {
  text-decoration: none;
  color: #111;
  display: block;
}

.image-wrapper {
 width: 100%;
  height: 220px;           
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;     
  border-radius: 8px;
  overflow: hidden;
}

.image-wrapper img {
   width: 100%;
  height: 100%;
  object-fit: contain;    
  padding: 10px;
  transition: transform 0.3s ease;
}

/* 画像ホバーエフェクト */
.product-item a:hover .image-wrapper img {
  transform: scale(1.05);
}

.info {
  margin-top: 10px;
}

.name {
  font-weight: bold;
  font-size: 16px;
}

.price {
  font-size: 14px;
  color: #555;
  margin-top: 4px;
}

/* スマホ */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* //////////////////////////// */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
}

.card img {
  width: 100%;
}
/* ///////////////トピックス///////////// */
.topics-card {
  list-style: none;
  margin-bottom: 20px;
}

.topics-card a {
  display: block;
  padding: 20px;
  border: 1px solid #eee;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
  border-radius: 8px;
}

.topics-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.topics-card-title {
  font-size: 16px;
  margin: 8px 0;
}

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

time {
  color: #777;
  font-size: 14px;
}

/* 店舗///////////////////////////////////////// */
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;

  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;

  list-style: none;

}

/* カード */
.store-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* 画像 */
.store-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
  display: block;
}

/* 黒オーバーレイ */
.store-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* テキスト */
.store-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  z-index: 2;
  letter-spacing: 1px;
}



/* ホバー */
.store-item:hover img {
  transform: scale(1.05);
}

/* スマホ */
@media (max-width: 768px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
}

/* About */
.about {
  padding: 60px 0;
  text-align: center;
}

/*////////////// Q＆A//////////// */

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 15px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 15px;
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 15px 15px;
  line-height: 1.8;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}
/*///////////////// footerr //////////////////*/
.footer {
  padding: 40px 20px;
  background-color: #f8f8f8;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

/* 内部コンテナ */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ナビリンク */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-nav a {
  text-decoration: none;
  /* color: #111; */
  font-size: 14px;
}

/* コピーライト */
.footer p {
  font-size: 12px;
  color: #777;
  margin: 0;
}

/* 右下に固定 */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: block;           
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 24px;
  cursor: pointer;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background-color 0.3s, transform 0.3s;
}

/* ホバー効果 */
#back-to-top:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* スマホ */
@media (max-width: 768px) {
  #back-to-top {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
/* スマホ対応 */
@media (max-width: 768px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 12px;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {

  .header .container {
    flex-direction: column;
    gap: 10px;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

/* 初期状態 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

/* 表示状態 */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}