* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .body{
            max-width: 90%;
            margin: 0 auto ;
        }

        .blur-header {
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 64px;
        z-index: 100;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        display: flex; 
        align-items: center;
        }
        .header-inner {
        width: 100%;
        max-width: 1200px;
        height: 100%;
        margin: 0 auto; 
        display: flex; 
        align-items: center; 
        padding: 0 32px;
        }
        .logo {
        font-family: 'Homenaje', sans-serif;
        font-size: 2rem; 
        margin-right: 52rem;
        font-weight: bold;
        color: #222;
        letter-spacing: 1px; 
        white-space: nowrap;
        }

        .nav-menu {
        display: flex; 
        gap: 15px; 
        align-items: center;
        }

        .nav-menu .nav2{
            margin-right: 1rem;
        }

        .nav-menu a {
        color: #222; 
        text-decoration: none;
        font-size: 1rem; 
        padding: 8px 0;
        transition: color 0.2s;
        }

        .nav-menu a:hover {
        color: #838383; 
        }

        .hamburger {
        flex-direction: column; 
        justify-content: center;
        align-items: center; 
        width: 40px; 
        height: 40px;
        background: none; 
        border: none; 
        cursor: pointer; 
        margin-left: 16px;
        z-index: 101;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(12px);
        }
        .hamburger span {
        display: block; 
        width: 28px; 
        height: 3px; 
        margin: 5px 0;
        background: #222; 
        border-radius: 2px; 
        transition: 0.4s;
        }
        /* アニメーション: ハンバーガー開閉 */
        .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
        opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        }

        /* ドロワーメニュー（アニメーション付き） */
        .drawer-menu {
        position: fixed; 
        top: 64px; 
        right: 0;
        width: 70vw; 
        max-width: 320px;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        display: flex; 
        flex-direction: column;
        padding: 32px 24px;
        z-index: 200;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(.65,.05,.36,1), opacity 0.3s;
        }
        .drawer-menu.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
        }
        .drawer-menu a {
        color: #222; 
        font-size: 1.2rem; 
        margin-bottom: 24px;
        text-decoration: none; 
        font-weight: bold;
        }
        .drawer-menu a:last-child { margin-bottom: 0; }

        /* ドロワーメニュー */
        .drawer-menu {
        position: fixed;
        top: 64px;
        right: 0;
        width: 70vw;
        max-width: 320px;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        flex-direction: column;
        padding: 32px 24px;
        z-index: 200;
        }

        .drawer-menu a {
        color: #222;
        font-size: 1.2rem;
        margin-bottom: 24px;
        text-decoration: none;
        font-weight: bold;
        }

        .drawer-menu a:last-child {
        margin-bottom: 0;
        }
        
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        .hero-bg {
            align-content: center;
            width: 90%;
            height: 60%;
            object-fit: cover;  
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); /* 中央配置のための変換 */
            border-radius: 40px;
        }
        
        .hero-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .hero-content p {
            font-size: 1rem;
            max-width: 600px;
            margin-bottom: 0.5rem;
        }
        
        .hero-btn {
            border: 1px solid #838383;
            margin-top: 30px;
            padding: 8px 24px;
            background-color: #e0e0e0;
            color: #838383;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .button-container {
            display: flex;
            justify-content: center;
            gap: 0px; /* ボタン間の間隔 */
            flex-wrap: wrap; /* 画面が小さいときは折り返す */
        }
        
        .hero-btn1{
            border-radius: 15px 0px 0px 15px;
        }

        .hero-btn3{
            border-radius: 0px 15px 15px 0px;
        }

        .hero-btn4{
            margin-top: 10px;
            padding: 8px 50px;
            background-color: #e0e0e0;
            color: #838383;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
            border: 1px solid #838383;
        }

        /* 検索バー用の追加・改良スタイル */
        .search-bar {
            min-width: 240px;
            margin-top: 10px;
        }

        .search-input-wrapper {
            position: relative;
            width: 100%;
        }

        .smart-search {
            width: 100%;
            padding: 9.5px 36px 9.5px 14px;
            border: 1px solid #838383;
            border-radius: 15px 0px 0px 15px;
            background: #e0e0e0;
            color: white;
            font-size: 1.1rem;
            transition: border-color 0.25s, box-shadow 0.25s;
            outline: none;
        }

        .smart-search:focus {
            border-color: #838383;
            box-shadow: 0 0 0 2px rgba(131,131,131,0.2);
            background: rgb(88, 88, 88);
        }

        .smart-search::placeholder {
            color: #838383;
            opacity: 1;
            font-size: 1rem;
        }

        .search-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #838383;
            pointer-events: none;
        }

        .hero-btn4:focus {
            border-color: #838383;
            box-shadow: 0 0 0 2px rgba(131,131,131,0.2);
            background: rgb(88, 88, 88);
        }

        .hero-btn:hover {
            border-color: #838383;
            box-shadow: 0 0 0 2px rgba(131,131,131,0.2);
            background: rgb(88, 88, 88);
        }

        .body-text{

        }

        .body-section{
            text-align: center;
            font-family: 'Homenaje', sans-serif;  
        }

        .body-section p {
            font-size: 18px;
            margin: 48px auto;
            line-height: 1.7rem;
            letter-spacing: 2px;
            color: #696969; 
        }

        .section-bar {
            border: none;
            height: 1px;
            background: #b2b2b2;
            margin: 72px auto;
            width: 950px;
        }

        .section-bar1 {
            border: none;
            height: 1px;
            background: #b2b2b2;
            margin: 0px auto;
            width: 950px;
        }

    .saport-text{
        text-align: center;
    }

    .box-container {
      display: flex;
      gap: 56px; /* ボックス間の隙間 */
      justify-content: center; /* 中央寄せ */
      margin: 20px 56px;
    }
    .box {
      width: 350px;
      height: 210px;
      background: #D9D9D9;
      border-radius: 30px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.10);
      justify-content: center;
      text-align: center;
      color: #fff;
      font-weight: bold;
      transition: background 0.3s;
    }

    .box-phot{
        margin-top: 20px;
        margin-bottom: 15px;
        width: 100px;
        height: auto;
    }

    .box-phot1{
        margin-top: 10px;
        width: 100px;
        height: auto;
    }

    .box h1 {
        font-size: 22px;
    }

    .box p {
        margin: auto 24px;
    }

    .box-text{
        font-size: 14px;
    }

    .saport-text1{
        margin-top: 170px;
        text-align: center;
    }

    .box-container1 {
      display: flex;
      gap: 56px; /* ボックス間の隙間 */
      justify-content: center; /* 中央寄せ */
      margin: 20px 56px;
    }

    .box1 {
      width: 350px;
      height: 210px;
      background: #ffffff;
      border-radius: 30px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.10);
      justify-content: center;
      text-align: center;
      color: #8f8f8f;
      font-weight: bold;
      transition: background 0.3s;
    }

    .box-container1 h1{
        font-size: 22px;
    }

    .box1 p {
        margin: auto 24px;
    }

    /*横並びコード*/

    .slider-container {
      position: relative;
      width: 93%;
      height: auto;
      margin: 10px auto;
      padding-top: 50px;
      overflow: hidden;
    }
    .slider-container h1{
        margin-bottom: 5px;
    }
    .slider-container1 {
      position: relative;
      width: 84%;
      height: auto;
      margin: 10px auto;
      padding-top: 50px;
      overflow: hidden;
      margin-top: 120px;
    }
    .slider-container1 h1{
        margin-bottom: 5px;
    }
    .slider-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(.65,.05,.36,1);
      gap: 17px;
      /* スライドの動きに必要 */
    }
    .slide-box {
      min-width: 250px;
      min-height: 150px;
      background: #D9D9D9;
      border-radius: 30px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.10);
      display: flex;
      overflow: hidden;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.5rem;
      font-weight: bold;
      transition: background 0.3s;
    }
    .slide-box:hover {
      background: #a5a5a5;
      color: #222;
    }
    .slider-btn {
      position: absolute;
      top: 78px;
      transform: translateY(-50%);
      width: 35px; height: 35px;
      background: #D9D9D9;
      border: none; border-radius: 12%;
      box-shadow: 0 2px 8px rgba(0,0,0,0.10);
      font-size: 1.7rem;
      cursor: pointer;
      z-index: 1;
      transition: background 0.2s;
    }
    .slider-track a {
        text-decoration: none;
    }
    .slider-header{
        display: flex;
        align-items: center;
        gap: 5px;
        margin-left: 20px;
    }
    .slider-header img{
        width: 25px;
        height: auto;
    }
    .slider-header a{
        text-decoration: none;
        color: #000000;
        text-decoration-line: none;
    }
    .slider-header a:hover{
        text-decoration: underline;
    }
    .slider-btn .slider-icon{
        margin-top: 5px;
        width: 20px;
        justify-content: center;
        align-items: center;
    }
    .slider-btn .slider-icon1{
        transform: scaleX(-1);
        margin-top: 5px;
        width: 20px;
        justify-content: center;
        align-items: center;
    }
    .slider-btn img{
        margin-top: 5px;
        width: 20px;
        justify-content: center;
        align-items: center;
    }
    .slider-btn:hover {
      background: #a5a5a5;
      color: #222;
    }
    .slider-btn.prev { right: 65px; }
    .slider-btn.next { right: 20px; }
        

    /* フッタータブ機能用CSS */
.footer-tabs {
  width: 100%;
  background: #ededed;
  padding: 40px 0 0 0;
  margin-bottom: 0;
}
.footer-tab-list {
  display: flex;
  margin-left: 120px;
  gap: 0px;
  margin-bottom: 10px;
}
.footer-tab {
  background: #ededed;
  margin-left: 40px;
  cursor: pointer;
  transition: background 0.2s;
  color: #8f8f8f;
  font-size: 14px;
}
.footer-tab:hover, .footer-tab.active {
  text-decoration-line: underline;
  color: #222;
}
.footer-tab-content {
  margin-left: 60px;
  padding: 20px;
  background: #ededed;
  border-radius: 0 0 8px 8px;
  min-height: 60px;
  margin-bottom: 10px;
  display: none; /* 初期状態は非表示 */
  gap: 20px;
}
.footer-tab-content p:hover {
  font-size: 14px;
  color: #222;
}
.footer-tab-content .footer-left {
  flex: 0.8;
}
.footer-tab-content .footer-center {
  flex: 0.6;
}
.footer-tab-content .footer-right {
  flex: 2.2;
}

footer {
  margin-top: 90px;
  width: 100%;
  min-height: 180px;
  background: #ededed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 20px;
}
footer p {
    color: #8f8f8f;
    font-size: 0.9rem;
    margin-top: 10px;
}
footer .copy {
    color: #8f8f8f;
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
}
/* SNSアイコン用スタイル */
.footer-sns {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin: 18px 0 0 0;
}
.sns-icon img {
  width: 34px;
  height: 34px;
  border-radius: 40%;
  background: #ededed;
  transition: background 0.2s;
}
.sns-icon:hover img {
  background: #bdbdbd;
}
.footer-tab-content[style*="opacity: 1;"] {
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .footer-tab-list {
    gap: 10px;
  }
  .footer-tab {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  .footer-tab-content {
    padding: 12px;
    font-size: 0.95rem;
  }
  footer {
    min-height: 220px;
  }
}

.product-title {
    margin-top: 80px;
  font-size: 1rem;
  font-weight: bold;
  color: #222;
  margin-left: 120px;
  margin-bottom: 1px;
}

/* 写真ギャラリー用レイアウト */
.photo-gallery {
  display: flex;
  gap: 20px;
  max-width: 900px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.photo-main {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-main img {
  width: 100%;
  max-width: 600px;
  height: 440px;
  object-fit: cover;
  border-radius: 8px 0px 0px 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.photo-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
}
.photo-side img {
  width: 100%;
  max-width: 300px;
  height: 210px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.photo-side img.photo-side1 {
  border-radius: 0px 8px 0px 0px;
}
.photo-side img.photo-side2 {
  border-radius: 0px 0px 8px 0px;
}

.product-info {
  display: flex;
  gap: 18px;
  max-width: 900px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  margin-left: 120px;
}
.product-subtitle p {
  margin-top: 10px;
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 1px;
}
.product-info-left {
  flex: 2;
}
.product-info .rating {
  font-size: 1.7rem;
  color: #222;
  margin-bottom: 8px;
}
.product-section-bar {
    border: none;
    height: 1.2px;
    background: #b2b2b2;
    width: 520px;
    margin-left: 20px;
}
.product-info .owner {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 10px;
}
.product-info .owner-name {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: bold;
}
.product-info .owner-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}
.product-info .features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 11px;
}
.product-info .features p {
  font-size: 1.2rem;
  color: #666;
}
.product-info .feature-text {
  display:inline-block;
  background-color: #e0e0e0;
  border-radius: 6px;
  padding: 2px 18px;
  border: #838383 1px solid;
}
.feature-bar {
  font-size: 0.8rem;
  text-decoration: none;
}
.product-info-right {
  flex: 1;
  margin-top: 4px;
}
.product-section-rightbar {
    border: none;
    height: 1.2px;
    background: #b2b2b2;
    width: 250px;
    margin-left: 10px;
}
.price-box {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 12px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 8px;
  border: #838383 1px solid;
}
.price {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 15px;
  margin-left: 8px;
  color: #626262;
}
.price-detail {
  margin-bottom: 8px;
}
.price-label {
  font-size: 1rem;
  color: #888;
}
.price-label1 {
    font-size: 1rem;
    color: #626262;
}
.price-detail p {
  font-size: 1.3rem;
  color: #626262;
  margin-left: 6px;
  margin-bottom: 12px;
}
.price-bar {
  background: #e0e0e0;
  border-radius: 6px;
  height: 12px;
  width: 90%;
  margin-bottom: 6px;
}
.reserve-btn {
  width: 100%;
  padding: 8px 0;
  background: #e0e0e0;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  color: #626262;
  cursor: pointer;
  margin-bottom: 9px;
    border: 1px solid #838383;
}
.reserve-btn1 {
    padding: 8px 50px;
    background-color: #e0e0e0;
    color: #626262;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 1px solid #838383;
    border-radius: 12px;
    margin-bottom: 12px;
}
.caution {
  font-size: 0.8rem;
  color: #888;
  margin-top: 5px;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .photo-gallery {
    flex-direction: column;
    gap: 10px;
    max-width: 98vw;
  }
  .photo-main img, .photo-side img {
    max-width: 98vw;
    height: auto;
  }
  .photo-side img {
    height: 120px;
  }
}

/* レビューセクション */
.review-section {
  margin: 0px auto 0 auto;
  max-width: 900px;
}
.review-title {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 12px;
}
.review-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.review-item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.review-icon {
  width: 60px;
  height: 60px;
  background: #dadada;
  border-radius: 50%;
}
.review-line {
  flex: 1;
  height: 1.3px;
  background: #b2b2b2;
  margin-top: 110px;
  max-width: 540px;
}
/* 類似商品セクション */
.similar-section {
  margin: 40px auto 0 auto;
  max-width: 800px;
}
.similar-title {
  font-size: 1rem;
  color: #222;
  margin-bottom: 12px;
}
.similar-list {
  display: flex;
  gap: 28px;
}
.similar-item {
  width: 140px;
  height: 110px;
  background: #dadada;
  border-radius: 18px;
}
@media (max-width: 768px) {
  .review-section, .similar-section {
    max-width: 98vw;
    margin-left: 10px;
    margin-right: 10px;
  }
  .similar-list {
    gap: 10px;
  }
  .similar-item {
    width: 80px;
    height: 60px;
  }
  .review-icon {
    width: 28px;
    height: 28px;
  }
}