/* Pierre Zero - Home Page Specific Styles */
/* Hero Section */
    body {
        overflow-x: hidden;
        /* heightはJSで制御されるため削除 */
    }

    /* ヘッダーの基本スタイル */
    .main-header {
    position: fixed; /* 常に画面上部に固定 */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255,255,255,.8);
    transition: background-color 0.3s ease-out;
    }

    /* ヒーローセクションの基本スタイル */
    .hero-section {
        position: relative;
        height: 100vh; /* 画面いっぱいの高さに設定 780*/
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
    }

    /* 背景画像コンテナ */
    .hero-background {
        position: absolute; 
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    /* 画像要素 */
    .hero-wine-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* コンテンツコンテナ */
    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    /* タイトル */
    .hero-title h1 {
        font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.5;
  color: white;
		text-align: center;
  margin: 0;
        opacity: 0; /* GSAPで表示するため、初期状態は非表示 */
		position: absolute;
		top:50%;
		left:50%;
		padding: 0 20px;
		transform: translate(-50%, -50%);
		width: 100%;
     opacity: 0; /* 初期状態で非表示 */
		z-index: 2;
    }
    
    /* サブタイトル */
    .hero-subtitle p {
        font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: white;
        text-align: center;
        margin: 0;
        opacity: 0; /* GSAPで表示するため、初期状態は非表示 */
		position: absolute;
		top:50%;
		left:50%;
		padding: 0 20px;
		transform: translate(-50%, -50%);
		width: 100%;
		z-index: 3;
    }
.scroll {
  display: inline-block;
  padding-top: 70px;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(0%);
  color: #fff;
  cursor: pointer;
}
.scroll::before {
  animation: scroll 3.5s infinite;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  content: "";
  display: inline-block;
  margin: auto;
  position: absolute;
  top: 90%;
  right: 0;
  left: 0;
  transform: rotate(-45deg);
  width: 20px;
  height: 20px;
}
.scroll-lock {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
  top: 0;
  left: 0;
}

@keyframes scroll {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  80% {
    transform: rotate(-45deg) translate(-30px, 30px);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
    /* スクロールインジケーター */
    .scroll-indicator {
        position: absolute;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        cursor: pointer;
        z-index: 10;
        opacity: 1; /* GSAPで制御 */
    }
    .scroll-indicator .txt {
        display: block;
        text-align: center;
    }
    .scroll-indicator::before {
        animation: scroll-arrow 3.5s infinite;
        border: solid #fff;
        border-width: 0 0 2px 2px;
        content: "";
        display: block;
        margin: 10px auto 0;
        transform: rotate(-45deg);
        width: 20px;
        height: 20px;
    }
    @keyframes scroll-arrow {
        0%, 100% {
            transform: rotate(-45deg) translate(0, 0);
        }
        50% {
            transform: rotate(-45deg) translate(-10px, 10px);
        }
    }
/*.hero-section {
  position: relative;
  height: 780px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 173px;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.hero-wine-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 1s ease-out;
}
.hero-wine-image.blurred {
  filter: blur(10px);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: auto;
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%) translateY(0%);
	z-index: 1000;
}

.scroll-indicator:hover {
    color: #D6C677;
}

.scroll-indicator p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: white;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.scroll-indicator:hover p {
    color: #D6C677;
}

.scroll-indicator svg {
    width: 5px;
    height: 53px;
}

.scroll-line,
.scroll-arrow {
    transition: stroke 0.3s ease, fill 0.3s ease;
}

.scroll-indicator:hover .scroll-line {
    stroke: #D6C677;
}

.scroll-indicator:hover .scroll-arrow {
    fill: #D6C677;
}
.scroll {
  display: inline-block;
  padding-top: 70px;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(0%);
  color: #fff;
  cursor: pointer;
}
.scroll::before {
  animation: scroll 3.5s infinite;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  content: "";
  display: inline-block;
  margin: auto;
  position: absolute;
  top: 90%;
  right: 0;
  left: 0;
  transform: rotate(-45deg);
  width: 20px;
  height: 20px;
}
@keyframes scroll {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  80% {
    transform: rotate(-45deg) translate(-30px, 30px);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  max-width: 1300px;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-out;
  z-index: 3;
}
.hero-title.visible {
  opacity: 1;
}
.hero-title h1 {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.5;
  color: white;
  margin: 0;
}
.hero-subtitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(200%);
  width: 100%;
  max-width: 1000px;
  text-align: center;
  opacity: 0;
  transition: all 1s ease-out;
  z-index: 3;
}
.hero-subtitle.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%);
}
.hero-subtitle p {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: white;
  margin: 0;
}*/
/* About Section */
.about-section {
  padding: 150px 0;
}
.about-content {
  margin-bottom: 70px;
}
.about-text {
  max-width: 670px;
  padding-right: 30px;
}
.about-description {
  margin-top: 50px;
}
.about-description p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #3f3d3c;
  margin: 0;
}
.about-details {
  display: flex;
  gap: 30px;
}
.about-image {
  flex: 1;
  max-width: 50%;
}
.about-image figure {
  /*max-width: 410px;*/
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative
}
.about-image figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 1080px) {
.about-image figure img {
  
  width: auto;
  height: 100%;
}}
.about-features {
  flex: 1;
  max-width: 580px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feature-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-number {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1;
  color: #d6c677;
  white-space: nowrap;
	padding-top: .4em
}
.feature-header h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: #3f3d3c;
  margin: 0;
}
.feature-item p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #3f3d3c;
  margin: 0;
}
.feature-divider {
  height: 1px;
  background: #E6E7E8;
  width: 100%;
}
.about-view-more {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
/* Product Section */
.product-section {
  padding: 0 0 100px;
  overflow: hidden;
}
.product-item {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.product-item a {
  text-decoration: none;
}
.product-image {
  width: 100%;
  aspect-ratio: 189/265;
  margin: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  text-align: left;
	margin-top: .6em;
}
.product-info h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #3f3d3c;
  margin: 0;
  font-weight: normal;
}
.product-info p {
  font-family: 'EB Garamond', serif;
  font-size: 12px;
  line-height: 0.8;
  color: #3f3d3c;
  margin: 0;
  white-space: nowrap;
}
.product-view-more {
  margin-top: 30px;
  padding: 0 30px;
  display: flex;
  justify-content: center;
}
/* Brand Story Section */
.brand-story-section {
  padding: 45px 0 100px;
}
.brand-story-content {
  display: flex;
  gap: 30px;
  margin-top: 45px;
}
.brand-story-image {
  flex: 1;
  margin: 0;
}
@media (min-width: 577px) {
  .brand-story-image figure {
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  .brand-story-image figure img {
    height: 100%;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
  }
}
@media (min-width: 1200px) {
  .brand-story-image figure {
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  .brand-story-image figure img {
    height: 100%;
    width: auto;
  }
}
.brand-story-text {
  flex: 1;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.brand-story-text h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: #3f3d3c;
  margin: 0;
}
.brand-story-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #3f3d3c;
  margin: 0;
}
/* Taste Guide Section */
.taste-guide-section {
  /*padding: 0 0 100px;*/
  overflow: hidden;
}
.taste-guide-banners {
  display: flex;
  gap: 0px;
  margin-top: 150px;
  width: 100%;
}
.taste-guide-banner {
  position: relative;
  flex: 1;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 576px) {
  .taste-guide-banner {
    padding: 50px 0;
  }
}
.hero-image{
	height: 100vh;
}
 .hero-content {
    padding: 0px!important;
  }
.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  transition: transform 0.5s ease-out;
}
.taste-guide-banner:hover .banner-image {
  transform: scale(1.1);
}
.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.5s ease-out;
}
.taste-guide-banner:hover .banner-overlay {
  opacity: 0;
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.banner-content h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  line-height: 1;
  margin: 0;
}
.banner-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
/* Footer Enhancements */
/* Responsive Design for Home Page */
@media (max-width: 1200px) {
  .about-details {
    /*flex-direction: column;*/
    gap: 50px;
  }
  .feature-item {
    gap: 20px;
  }
  .about-features {
    padding-left: 0;
  }
  .taste-guide-banner {
    height: 500px;
  }
}
@media (max-width: 768px) {
	.taste-guide-banners {
  margin-top: 70px;
}
  .about-section {
    padding: 100px 0;
  }
  .product-section {
    padding: 0 0 60px;
  }
  .feature-item {
    gap: 20px;
  }
  .hero-section {
    height: 100vh;
    gap: 100px;
  }
  .hero-content {
    padding: 60px 20px 20px;
  }
  .hero-title {
    top: 250px;
  }
  .hero-title h1 {
    font-size: 24px;
    line-height: 1.4;
  }
  .hero-subtitle {
    top: 350px;
  }
  .hero-subtitle p {
    font-size: 14px;
    line-height: 1.8;
  }
  .about-text {
    padding-right: 0;
  }
  .about-details {
    gap: 30px;
  }
  .about-features {
    gap: 40px;
  }
  .feature-header h3 {
    font-size: 20px;
  }
  .feature-number {
    font-size: 24px;
  }
  .product-carousel {
    height: 350px;
  }
  .product-item {
    min-width: 150px;
  }
  .brand-story-text h3 {
    font-size: 20px;
  }
  .banner-content h3 {
    font-size: 24px;
  }
  .banner-content p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
	.about-image {
flex: 1;
max-width: 100%;
}
	.feature-number {
	padding-top: 0em
}
	.about-image figure img {
position: relative;
top: 0%;
left: 0%;
transform: translateX(0%) translateY(0%);
width: 100%;
height: auto;
object-fit: cover;
}
	.about-image figure {
overflow: inherit;
}
  .about-view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
	.taste-guide-banners {
  margin-top: 40px;
}
  .about-section {
    padding: 50px 0;
  }
  .product-section {
    padding: 0 0 40px;
  }
  .about-details {
    flex-direction: column;
    gap: 30px;
  }
  .brand-story-content {
    flex-direction: column;
  }
  .taste-guide-banners {
    flex-direction: column;
	  display: block;
  }
  .hero-title h1 {
    font-size: 20px;
  }
  .hero-subtitle p {
    font-size: 4vw;
  }
	.taste-guide-banner {
  position: relative;
  flex: 1;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}
	.banner-image {
}
	  .taste-guide-banner {
    height: 200px;
  }
  .banner-content h3 {
    font-size: 20px;
  }
}
        /* Common section header settings */
        .section-header.bg_grey01,
        .section-header.bg_grey02,
        .section-header.bg_grey03,
        .section-header.bg_grey04 {
            display: table;
            position: relative;
            /* Essential for ::before wipe animation */
        }

        /* Right-aligned section headers */
        .section-header.bg_grey02,
        .section-header.bg_grey04 {
            margin-left: auto;
            margin-right: 0;
        }

        /* bg_grey02 specific styles */
        .section-header.bg_grey02 {
            margin-top: 30px;
            padding: 30px 30px;
        }

        /* bg_grey01 specific styles */
        .section-header.bg_grey01 {
            padding: 30px 0;
            max-width: 32rem;
            width: 80%;
        }

        /* bg_grey03 specific styles */
        .section-header.bg_grey03 {
            padding: 30px 0;
            max-width: 34rem;
            width: 80%;
        }

        /* bg_grey04 specific styles */
        .section-header.bg_grey04 {
            padding: 30px 0;
            max-width: 30rem;
            text-align: right;
            width: 80%;
        }

        /* Initial state of each section header (before animation) */
        .section-header {
            opacity: 0; /* Hidden initially */
            transform: translateY(20px); /* Start slightly from below */
            transition: opacity 0.3s ease-out, transform 0.8s ease-out; /* Animation speed and easing */
        }

        /* Common styles for all ::before pseudo-elements */
        .section-header::before {
            content: '';
            position: absolute;
            background-color: #E6E7E8;
            z-index: -1;
            height: 100%; /* Common height for all ::before */
            transition: transform 0.3s ease-out 0.8s; /* Background animation starts 0.8s later */
        }

        /* bg_grey01::before style (appears from left) */
        .section-header.bg_grey01::before {
            top: 0;
            right: 80px;
            width: 100%;
            transform-origin: left; /* Scale from left */
            transform: scaleX(0); /* Initial state: width 0 */
        }

        /* bg_grey02::before style (appears from right) */
        .section-header.bg_grey02::before {
            bottom: 0px;
            right: 0%;
            width: 110%;
            transform-origin: right; /* Scale from right */
            transform: scaleX(0); /* Initial state: width 0 */
        }

        /* bg_grey03::before style (appears from left) */
        .section-header.bg_grey03::before {
            bottom: 0px;
            left: -10%;
            width: 100%;
            transform-origin: left; /* Scale from left */
            transform: scaleX(0); /* Initial state: width 0 */
        }

        /* bg_grey04::before style (appears from right) */
        .section-header.bg_grey04::before {
            top: 0;
            right: -6%;
            width: 100%;
            transform-origin: right; /* Scale from right */
            transform: scaleX(0); /* Initial state: width 0 */
        }

        /* Class applied when animation is triggered */
        .section-header.is-visible {
            opacity: 1; /* Visible */
            transform: translateY(0); /* Return to original position */
        }

        .section-header.is-visible::before {
            transform: scaleX(1); /* Expand width to 100% */
        }

        /* Text-specific animation (starts before background animation) */
        .section-header.is-visible h2,
        .section-header.is-visible p {
            animation: textFadeInUp 0.8s ease-out forwards; /* Apply keyframe animation */
            animation-delay: 0s; /* Start immediately */
        }

        /* Text fade-in and upward movement animation */
        @keyframes textFadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
.slider {
  margin: 60px auto 60px auto;
}
.slick-slide {
  margin: 0px 26px;
}
.slick-slide img {
  width: 100%;
}
.slick-prev:before, .slick-next:before {
  color: black;
}