/* FOMUS PARURE - Main Stylesheet */

/* リセットとベーススタイル */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.8;
    color: #1a1a1a;
    background-color: #fefefe;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ユーティリティクラス */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ボタンスタイル */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    background: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    background-color: #000000;
}

.btn--secondary {
    background-color: transparent;
    color: #333333;
    border-color: #333333;
}

.btn--secondary:hover {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
}

.btn--large {
    padding: 20px 40px;
    font-size: 12px;
    letter-spacing: 0.2em;
}

.btn__arrow {
    margin-left: 8px;
    font-size: 16px;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav__logo {
    text-decoration: none;
}

.nav__logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-bottom: none;
}

.nav__logo-text::after,
.nav__logo-text::before {
    display: none;
}

.nav__logo a {
    text-decoration: none;
    border: none;
    border-bottom: none;
}

.nav__logo a:hover,
.nav__logo a:focus,
.nav__logo a:active {
    text-decoration: none;
    border: none;
    border-bottom: none;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav__link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

.nav__link:hover {
    color: #d4af37;
    transform: translateY(-1px);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #d4af37, #f4e99b);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__region {
    display: flex;
    align-items: center;
    gap: 16px;
}

.region-selector__select {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(244, 233, 155, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    padding: 8px 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: #1a1a1a;
    cursor: pointer;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 14px;
    padding-right: 36px;
    min-width: 130px;
    backdrop-filter: blur(10px);
}

.region-selector__select:hover {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 233, 155, 0.08) 100%);
    transform: translateY(-1px);
}

.region-selector__select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 233, 155, 0.08) 100%);
}

.nav__mobile {
    display: none;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    width: 20px;
    height: 20px;
    justify-content: space-between;
}

.nav__toggle span {
    width: 100%;
    height: 2px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
}

/* ヒーローセクション */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background-color: #faf8f5;
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 60px;
}

.hero__image-wrapper {
    flex: 0 0 55%;
    position: relative;
}

.hero__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero__content {
    flex: 1;
    padding: 40px;
    position: relative;
}

.hero__brand-mark {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8b7829;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.hero__brand-mark::after {
    content: '';
    position: absolute;
    left: -30px;
    right: -30px;
    bottom: -10px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.hero__title {
    margin-bottom: 30px;
}

.hero__title-main {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    display: block;
}

.hero__subtitle {
    margin-bottom: 40px;
}

.hero__subtitle-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin: 5px 0;
}

.hero__cta {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.hero__cta:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}


/* 哲学セクション */
.philosophy {
    padding: 100px 0;
    background: #ffffff;
}

.philosophy__title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 300;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.philosophy__tagline {
    text-align: center;
    margin-bottom: 60px;
}

.philosophy__tagline p {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 300;
    color: #d4af37;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.philosophy__tagline p::before,
.philosophy__tagline p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateY(-50%);
}

.philosophy__tagline p::before {
    left: -60px;
}

.philosophy__tagline p::after {
    right: -60px;
}

.philosophy__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy__description {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.philosophy__values {
    margin-bottom: 40px;
}

.philosophy__values p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.philosophy__list {
    list-style: none;
    padding: 0;
    margin: 24px auto;
    display: inline-block;
    text-align: left;
}

.philosophy__list li {
    font-size: 16px;
    line-height: 1.8;
    color: #777777;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.philosophy__closing {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.philosophy__closing strong {
    color: #d4af37;
    font-weight: 400;
}

.hero__badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 233, 155, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #8b7829;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}


.hero__offer {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 233, 155, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 24px 32px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    position: relative;
}

.hero__offer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, #d4af37, #f4e99b);
    border-radius: 0 2px 2px 0;
    transform: translateY(-50%);
}

.hero__offer p {
    font-size: 15px;
    color: #1a1a1a;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero__visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.hero__image-container {
    width: 100%;
    max-width: 500px;
}

.hero__image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ddd 0%, #f0f0f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
}

.hero__image::before {
    content: "Hero Image";
}

/* ブランドストーリー */
.brand-story {
    padding: 100px 0;
    background: linear-gradient(180deg, #faf8f5 0%, #f5f3f0 100%);
    position: relative;
}

.brand-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, #d4af37, transparent);
    transform: translateX(-50%);
}

.brand-story__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand-story__title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 48px;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.brand-story__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 56px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.stat__label {
    font-size: 13px;
    color: #6a6a6a;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand-story__description {
    font-size: 18px;
    line-height: 1.9;
    color: #3a3a3a;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.brand-story__visual {
    display: none;
}

.brand-story__image {
    display: none;
}

.brand-story__image:hover {
    transform: scale(1.02);
}

/* フィーチャー */
.features {
    padding: 100px 0;
    background: #ffffff;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.feature {
    text-align: center;
    padding: 40px 20px;
}

.feature__icon {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 44, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #2c2c2c;
}

.feature__title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.feature__description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.feature__visual {
    margin-top: 24px;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.feature__visual:hover {
    transform: scale(1.05);
}

.feature:nth-child(1) .feature__visual {
    background-image: url('../144A1204.JPG');
}

.feature:nth-child(2) .feature__visual {
    background-image: url('../144A9026.JPG');
}

.feature:nth-child(3) .feature__visual {
    background-image: url('../144A1137.JPG');
}

/* セクションヘッダー */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 32px;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    position: relative;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 18px;
    color: #777777;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 80px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* プロダクト */
.products {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
    position: relative;
}

/* コレクションギャラリー */
.collection-gallery {
    margin: 60px 0 80px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.collection-gallery__item {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.collection-gallery__item--main {
    height: 600px;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.collection-gallery__item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.collection-gallery__item--main:hover {
    transform: translateY(-20px) scale(1.08);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.collection-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.collection-gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-gallery__item:hover .collection-gallery__overlay {
    opacity: 1;
}

.collection-gallery__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.collection-gallery__link:hover {
    background: white;
    color: #1a1a1a;
}

.products::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(-50%);
}


.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(244, 233, 155, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover {
    border-color: #999999;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card__content {
    padding: 50px;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.product-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #333333;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.product-card__description {
    font-size: 14px;
    line-height: 1.8;
    color: #777777;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.product-card__price {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.product-card__actions {
    display: flex;
    gap: 12px;
}

.product-card__btn {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.product-card__btn--primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2);
    position: relative;
    overflow: hidden;
}

.product-card__btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.6s;
}

.product-card__btn--primary:hover::before {
    left: 100%;
}

.product-card__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.product-card__btn--secondary {
    background-color: transparent;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
}

.product-card__btn--secondary:hover {
    background-color: #2c2c2c;
    color: white;
}

/* 証言 */
.testimonials {
    padding: 80px 0;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial__rating {
    font-size: 20px;
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial__text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial__author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial__name {
    display: block;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 4px;
}

.testimonial__product {
    font-size: 14px;
    color: #666;
}

/* 保証 */
.guarantee {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.guarantee__content {
    text-align: center;
}

.guarantee__title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.guarantee__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.guarantee__item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.guarantee__icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.guarantee__item-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.guarantee__item-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* 価格情報 */
.pricing-info {
    padding: 80px 0;
}

.pricing-info__content {
    text-align: center;
}

.pricing-info__title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.pricing-info__subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.pricing-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-info__item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.pricing-info__icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pricing-info__item-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.pricing-info__item-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.pricing-info__note {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: left;
}

.pricing-info__note p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* コレクション */
.collection {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
}

.collection__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.collection__title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
}

.collection__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.collection__offer {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.collection__offer-text {
    font-size: 14px;
    margin-bottom: 8px;
}

.collection__offer-code {
    font-size: 16px;
    font-weight: 600;
}

.collection__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.collection__visual {
    display: flex;
    justify-content: center;
}

.collection__image {
    width: 100%;
    height: 400px;
    background-image: url('../144A1204.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.collection__image:hover {
    transform: scale(1.02);
}

/* フッター */
.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__section--brand {
    max-width: 300px;
}

.footer__title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

.footer__description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer__contact p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer__subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 8px;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer__list a:hover {
    opacity: 1;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer__bottom p {
    font-size: 14px;
    opacity: 0.6;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }
    
    .nav__mobile {
        display: block;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero__content {
        margin-bottom: 40px;
    }
    
    .hero__title {
        font-size: 36px;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero {
        margin-top: 60px;
    }
    
    .hero__image {
        height: 50vh;
    }
    
    .philosophy {
        padding: 60px 0;
    }
    
    .philosophy__title {
        font-size: 36px;
        margin-bottom: 24px;
    }
    
    .philosophy__tagline p {
        font-size: 24px;
    }
    
    .philosophy__tagline p::before,
    .philosophy__tagline p::after {
        display: none;
    }
    
    .collection-showcase {
        margin: 40px 0 60px 0;
    }
    
    .collection-showcase__image {
        max-width: 90%;
        height: 350px;
    }
    
    
    .brand-story__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .brand-story__stats {
        justify-content: center;
    }
    
    .brand-story__image {
        height: 250px;
    }
    
    .collection__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .collection__image {
        height: 250px;
    }
    
    
    .feature__visual {
        height: 150px;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* エクスペリエンスタブセクション */
.experience-tabs {
    padding: 100px 0;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
}

/* エクスペリエンスリンク */
.experience-links {
    max-width: 800px;
    margin: 0 auto;
}

.experience-links__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.experience-links__btn {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #f5f3f0;
    padding: 40px 30px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.experience-links__btn:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.tabs__icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.experience-links__btn:hover .tabs__icon-wrapper {
    background: rgba(212, 175, 55, 0.2);
}

.tabs__icon {
    font-size: 24px;
    color: #d4af37;
}

.tabs__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tabs__title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.tabs__subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* クラフトマンシップセクション */
.craftsmanship-section {
    padding: 100px 0;
    background: #ffffff;
}

/* ライフスタイルセクション */
.lifestyle-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
}


/* クラフトマンシップスタイル */
.craftsmanship {
    padding: 40px 0;
}

.craftsmanship__grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.craftsmanship__item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: center;
}

.craftsmanship__item--reverse {
    grid-template-columns: 1fr 200px;
}

.craftsmanship__item--reverse .craftsmanship__visual {
    order: 2;
}

.craftsmanship__item--reverse .craftsmanship__content {
    order: 1;
    text-align: right;
}

.craftsmanship__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.craftsmanship__icon {
    font-size: 80px;
    opacity: 0.8;
}

.craftsmanship__title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.craftsmanship__description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    letter-spacing: 0.02em;
}

/* ライフスタイルスタイル */
.lifestyle {
    padding: 40px 0;
}

.lifestyle__grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.lifestyle__item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: center;
}

.lifestyle__item--reverse {
    grid-template-columns: 1fr 200px;
}

.lifestyle__item--reverse .lifestyle__visual {
    order: 2;
}

.lifestyle__item--reverse .lifestyle__content {
    order: 1;
    text-align: right;
}

.lifestyle__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lifestyle__icon {
    font-size: 80px;
    opacity: 0.8;
}

.lifestyle__title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.lifestyle__description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    letter-spacing: 0.02em;
}

/* Gift Experience Section */
.gift-experience {
    padding: 120px 0;
    background: linear-gradient(180deg, #fefefe 0%, #fdfbf7 50%, #faf8f3 100%);
    position: relative;
}

.gift-experience::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(-50%);
}

.gift-experience__content {
    max-width: 1200px;
    margin: 0 auto;
}

.gift-experience__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.gift-experience__main-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.gift-experience__main-description {
    font-size: 17px;
    line-height: 1.9;
    color: #3a3a3a;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.gift-experience__image-main {
    width: 100%;
    height: 400px;
    background-image: url('../144A9989.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    transition: transform 0.4s ease;
}

.gift-experience__image-main:hover {
    transform: scale(1.02);
}

.gift-experience__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 120px;
}

.gift-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.gift-feature--reverse {
    direction: ltr;
}

.gift-feature--reverse > * {
    direction: ltr;
}

.gift-feature__visual {
    width: 100%;
    margin-bottom: 24px;
}

.gift-feature__image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gift-feature__image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.gift-feature:nth-child(1) .gift-feature__image {
    background-image: url('../144A1116.JPG');
}

.gift-feature:nth-child(2) .gift-feature__image {
    background-image: url('../144A1137.JPG');
}

.gift-feature:nth-child(3) .gift-feature__image {
    background-image: url('../144A9026.JPG');
}

.gift-feature__content {
    padding: 20px 0;
}

.gift-feature__icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.gift-feature__title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.gift-feature__description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.gift-experience__cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(244, 233, 155, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 80px 60px;
    backdrop-filter: blur(10px);
    position: relative;
}

.gift-experience__cta::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.2));
    border-radius: 20px;
    z-index: -1;
}

.gift-experience__cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.gift-experience__cta-description {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 40px;
    font-weight: 300;
}

.gift-experience__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for Gift Experience */
@media (max-width: 1200px) {
    .gift-experience__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .gift-feature:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .gift-experience__main {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .gift-experience__features {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .gift-feature:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }
    
    .gift-feature--reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .gift-experience {
        padding: 80px 0;
    }
    
    .gift-experience__main {
        margin-bottom: 80px;
    }
    
    .gift-experience__features {
        gap: 60px;
        margin-bottom: 80px;
    }
    
    .gift-experience__main-title {
        font-size: 28px;
    }
    
    .gift-feature__title {
        font-size: 24px;
    }
    
    .gift-experience__cta {
        padding: 60px 40px;
    }
    
    .gift-experience__cta-title {
        font-size: 28px;
    }
    
    .gift-experience__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 60px;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee__grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-info__grid {
        grid-template-columns: 1fr;
    }
}