header/* Pierre Zero Website - Main Styles (Unified) */

/* =================================================================
   RESET AND BASE STYLES
   ================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    background-color: #ffffff;
}
html, body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #3f3d3c;
    line-height: 1.8;
	margin: 0;
	padding: 0;
}

/* =================================================================
   FONT IMPORTS
   ================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&display=swap');

/* =================================================================
   HEADER AND NAVIGATION
   ================================================================= */
header {
    position: absolute;
    z-index: 10;
    width: 100%;
    background: white;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
	box-sizing: border-box;
}

.logo {
    height: auto;
    width: 140px;
    display: block;
    transition: opacity 0.3s ease;
	
}

.logo:hover {
    opacity: 0.75;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}



        /* ヘッダーが固定されたときのスタイル */
        .main-header.is-fixed {
    position: fixed; /* 画面上部に固定 */
    top: 0; /* 画面上部から0ピクセルの位置 */
    left: 0; /* 左端から0ピクセルの位置 */
    z-index: 1000; /* 他のコンテンツの上に表示 */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); /* より強い影 */
    background-color: rgba(255,255,255,0.80);
    /* アニメーションの初期状態 */
    transform: translateY(-200%); /* 画面上部から完全に隠す */
    opacity: 0; /* 最初は透明 */            
            /* transitionプロパティはアニメーションに置き換えられるため削除 */
        }

        /* ヘッダーが固定され、かつ表示されるときのスタイル */
        .main-header.is-fixed.is-visible {
            /* @keyframes アニメーションを適用 (時間を0.5秒に短縮) */
            animation: slideInFadeIn 0.5s ease-in-out forwards;
        }

        /* 枠外からスライドしてフェードインするアニメーションの定義 */
        @keyframes slideInFadeIn {
            0% {
                transform: translateY(-200%); /* 画面上部から完全に隠す */
                opacity: 0; /* 最初は透明 */
            }
            100% {
                transform: translateY(0); /* 通常の位置にスライド */
                opacity: 1; /* 不透明にして表示 */
            }
        }

        /* ヘッダーの高さ分のスペースを確保するための要素 */
        .header-spacer {
            height: 0; /* JavaScriptで設定されるため初期値は0 */
        }

/* =================================================================
   COMMON BUTTON STYLES
   ================================================================= */
.btn {
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary {
    background: #3f3d3c;
    color: white;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    gap: 30px;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #555;
}

.btn-secondary {
    background: #d6c677;
    color: #3f3d3c;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    gap: 30px;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: #c5b566;
}

.view-more-btn {
    background: #3f3d3c;
    color: white;
    padding: 15px 35px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    text-decoration: none;
    transition: 0.8s;
	border: 1px solid #3f3d3c;
}

.view-more-btn:hover {
	background: white;
    color: #3f3d3c;
}

.online-shop-btn {
    background: #d6c677;
    color: #3f3d3c;
    border: none;
   padding: 15px 35px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

.online-shop-btn:hover {
    background: #c5b566;
}

/* =================================================================
   PAGE TOP BUTTON
   ================================================================= */
.page-top-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: opacity 0.3s ease;
	text-decoration: none;
}

.page-top-btn:hover {
    opacity: 0.75;
}

.page-top-btn svg {
    width: 18px;
    height: 20px;
   stroke: #3f3d3c;
}
.page-top-btn:hover svg {
   stroke: #D6C677;
}
.page-top-btn p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #3f3d3c;
    margin: 0;
	font-weight: 500;
}
.page-top-btn:hover p {
    color: #D6C677;
}

.page-top-container {
    display: flex;
    justify-content: center;
	padding: 6rem 2rem 10rem;
}
@media (max-width: 768px) {
.page-top-container {
    display: flex;
    justify-content: center;
	padding: 5rem 2rem 8rem;
}
}
@media (max-width: 576px) {
	.page-top-container {
    display: flex;
    justify-content: center;
		padding: 4rem 1rem 6rem;
}}
/* =================================================================
   SECTION HEADERS
   ================================================================= */
.section-header h1,
.section-header h2 {
    font-family: 'EB Garamond', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.4;
    color: #3f3d3c;
    margin: 0;
}

.section-header h3 {
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.4;
    color: #3f3d3c;
    margin: 0;
}

.section-header p {
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: #3f3d3c;
    margin: 0;
}

/* =================================================================
   PAGE HEADERS
   ================================================================= */
.page-header {
    background: #e6e7e8;
    padding: 80px 0;
    text-align: center;
	margin: 4rem auto 0;
}

.page-title {
    font-family: 'Bodoni Seventy Two ITC', serif;
    font-size:54px;
    line-height: 0.8;
    color: #3f3d3c;
    margin: 0 0 20px 0;
}
.page-sub-title {
    font-family: 'Shippori Mincho B1', serif;
    font-size: 18px;
    line-height: 1;
    color: #3f3d3c;
    margin: 0;
}
/* =================================================================
   BREADCRUMBS
   ================================================================= */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #3f3d3c;
    justify-content: flex-start;
    width: 100%;
	padding: 20px 0px;
	box-sizing: border-box;
}

.breadcrumbs p {
    margin: 0;
    white-space: nowrap;
}
.breadcrumbs a {
    text-decoration: none;
	color: #3f3d3c;
}
.breadcrumbs a:hover {
    color: #737373;
}

/* =================================================================
   LAYOUT UTILITIES
   ================================================================= */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 150px 0;
}

.section-sm {
    padding: 100px 0;
}

.section-lg {
    padding: 200px 0;
}

/* =================================================================
   COMMON IMAGE STYLES
   ================================================================= */
figure {
    margin: 0;
    padding: 0;
}

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

/* =================================================================
   FOOTER STYLES
   ================================================================= */


.p-footer {
  /* 基本レイアウト */
}
.p-footer__page-top {
  text-align: center;
}
.p-footer__top, .p-footer__top--foreign {
  text-align: center;
  background: #475f2a;
}
.p-footer__bottom, .p-footer__bottom--foreign {
  text-align: center;
  background: #141414;
}
.p-footer__msg {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: flex-start;
}
.p-footer__logo {
  color: #fff;
}
.p-footer__logo > .c-logo-co {
  display: block;
}
.p-footer__copy {
  display: flex;
  flex-flow: row 1.8666666667;
  align-items: stretch;
  justify-content: 1.6666666667;
  color: rgba(255, 255, 255, 0.5);
}
.p-footer__nav {
  color: rgba(255, 255, 255, 0.5);
}
.p-footer__nav .c-nav-footer__link {
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition-property: color;
}
.p-footer__nav .c-nav-footer__link.is-hover {
  color: rgba(255, 255, 255, 0.75);
}
.p-footer__sns {
  color: #fff;
}
.p-footer__top .p-footer__sns, .p-footer__top--foreign .p-footer__sns {
  display: none;
}
.p-footer__top--foreign .p-footer__sns {
  display: initial;
}
.p-footer__term {
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}
.p-footer__term > .c-link-underline.is-hover {
  color: rgba(255, 255, 255, 0.75);
  opacity: unset;
}
.p-footer__copyright {
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}


footer {
    
    color: white;
    padding:0;
}

.footer-warning {
    background: #475f2a;
    padding: 60px 30px;
    text-align: center;
}

.footer-warning figure {
    margin: 0 0 16px 0;
	display: table;
	margin: 0 auto;
}
@media (max-width: 576px) {
	.footer-warning figure {
    max-width: 230px;
}}
.footer-warning p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-social {
    padding: 100px 30px;
    text-align: center;
	background: #3f3d3c;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 100px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    opacity: 0.4;
    transform: scaleY(-1);
}

.footer-copyright {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
}

/* =================================================================
   COMMON ANIMATIONS
   ================================================================= */
.fade-in {
   /* opacity: 0;
    animation: fadeIn 1s ease-out forwards;*/

}

.fade-out {
    opacity: 1;
    animation: fadeOut 1s ease-out forwards;

}

.slide-up {
    transform: translateY(200px);
    opacity: 0;
    animation: slideUp 1s ease-out forwards;

}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;

}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;

}

.fade-in-scale {
    animation: fadeInScale 1s ease-out forwards;

}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}
.pb-0 {
    padding-bottom: 0;
}
.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

.mb-1 {
    margin-bottom: 10px;
}

.mt-1 {
    margin-top: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mt-2 {
    margin-top: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mt-3 {
    margin-top: 30px;
}

.plr-0{
	padding-left: 0;
	padding-right: 0;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 10px;
}

.gap-2 {
    gap: 20px;
}

.gap-3 {
    gap: 30px;
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

/* Large screens and down */
@media (max-width: 1200px) {


    .section-header h1,
    .section-header h2 {
        font-size: 36px;
    }

    .section-header h3 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 18px;
    }
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 1200px) {
    header {
        padding: 22px;
    }
}

/* Large screens only */
@media (min-width: 1201px) {
    header {
        padding: 20px 40px;
    }
}

/* Small screens and down */
@media (max-width: 768px) {
	.footer-warning {
    padding: 30px 20px 50px 20px;
}
	.page-sub-title {
    font-size: 16px;
}
	.logo {
    height: auto;
    width: 100px;
    display: block;
    transition: opacity 0.3s ease;
}
    header {
        padding: 20px;
        height: auto;
        gap: 20px;
    }

    .container,
    .container-wide {
        padding: 0 20px;
    }

    .section {
        padding: 80px 0;
    }

    .section-sm {
        padding: 60px 0;
    }

    .section-lg {
        padding: 120px 0;
    }

    .section-header h1,
    .section-header h2 {
        font-size: 28px;
    }

    .section-header h3 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 16px;
    }

    .page-title {
        font-size: 36px;
    }

    .view-more-btn,
    .online-shop-btn {
        font-size: 14px;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        gap: 15px;
    }
}

/* Extra small screens */
@media (max-width: 576px) {
	.view-more-btn {
  padding: 20px 20%;
		font-size:16px!important;

}
	.section {
        padding: 60px 0;
    }
.page-sub-title {
    font-size: 16px;
}
	.page-header {
    padding: 50px 0;
}
    .section-sm {
        padding: 20px 0;
    }

    .section-lg {
        padding: 100px 0;
    }
    .page-title {
        font-size: 30px;
		margin: 0 0 10px 0;
    }

    .section-header h1,
    .section-header h2 {
        font-size: 24px;
    }

    .section-header h3 {
        font-size: 18px;
    }

    .view-more-btn,
    .online-shop-btn,
    .btn-primary,
    .btn-secondary {
        font-size: 12px;
        gap: 10px;
    }
}
figure img{
	max-width: 100%;
	height: auto;
}
.container {
  box-sizing: border-box;
}
@media (min-width: 576px) {
	
.img_left{
	margin-left: calc((50vw - 100%) * -1)!important;
}
.img_right{
	margin-right: calc((50vw - 100%) * -1)!important;
}}
.social-icons ul{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.social-icons ul li{
    margin: 0 7px;
}
.social-icons ul a{
    display: block;
    width: 50px;
    border-radius: 50%;
    height: 50px;
    background-color: rgba(255,255,255,.1);
	display: flex;
	justify-content: center;
	align-items: center;
}
.social-icons ul a img{
   opacity: .7;
}
/* =================================================================
   PRINT STYLES
   ================================================================= */
@media print {
    header,
    footer,
    .page-top-btn,
    .hamburger-menu,
    .mobile-menu {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .section {
        padding: 20pt 0;
    }
}
@media (min-width: 769px) {
.pc-none{
	display: none;
}}

/* =================================================================
   PRODUCT NAVIGATION
   ================================================================= */
.product-navigation {
    padding: 100px 0 30px 0;
}

.product-nav-items {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.product-nav-item {
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
	 display: flex;
	justify-content: flex-start;
	flex-direction: column;
	gap: 8px;
}

.nav-content {
    display: flex;
    gap: 15px;
    align-items: center;
}
.nav-content i {
    font-size: .8em;
}

.product-nav-item p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #3f3d3c;
    margin: 0;
    white-space: nowrap;
    text-align: right;
    transition: color 0.3s ease;
}

.product-nav-item span {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #3f3d3c;
    margin: 0;
    transition: color 0.3s ease;
}

.product-nav-item:hover p,
.product-nav-item:hover span {
    color: #D6C677;
}
@media (max-width: 576px) {
	
	.product-nav-items {
        width: 90%;
        padding: 0 20px;
		flex-direction: column;
		gap: 15px;
  		justify-content: flex-start;
}
	.nav-content {
  gap: 5px;
}
	.nav-line{
		display: none;
	}
	.product-nav-item {
display: block;
	width: 100%;
	font-size: 16px;
	
}
.product-nav-item p {
font-size: 16px;
}
	.nav-content {
    display: flex;
    justify-content: space-between!important;
    border-bottom: 1px #c3c3c3 dotted;
	padding-bottom: .8em;
	font-size: 16px!important;
}
}
.section-header h3 {
font-family: 'Shippori Mincho B1', serif;
font-weight: 600;
font-size: 32px;
line-height: 1.4;
color: #3f3d3c;
margin: 0;
}
.section-title {
font-family: 'Shippori Mincho B1', serif;
font-weight: 600;
font-size: 24px!important;
line-height: 1.4!important;
color: #3f3d3c!important;
margin: 0!important;
text-align: left!important;
white-space: nowrap!important;
}
@media (max-width: 768px) {
.section-title {
font-size: 20px!important;
}}
@media (max-width: 576px) {
.section-title {
font-size: 18px!important;
}}
@media (min-width: 770px) {
.pc-text-none{
	display: none;
}}
@media (max-width: 769px) {
.sp-text-none {
	display: none;
}}
@media (min-width: 991px) {
.pc-text-none_991 {
	display: none;
}}
@media (max-width: 991px) {
.sp-text-none_991 {
	display: none !important;
}}



