@charset "utf-8";
@import url('luxuary.css');
/* Google Fontsの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Playfair+Display:wght@400;700&display=swap');

/* CSSカスタムプロパティ */
:root {
    --primary-color: #2C2C2C;
    --accent-color: #D4AF37;
    --accent-light: #E8D4A0;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #F8F8F8;
    --white: #FFFFFF;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E5B8 100%);
    
    /* フォント */
    --font-base: 'Noto Sans JP', sans-serif;
    --font-display: 'Noto Serif JP', serif;


}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* container */
#container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Classic Gold gradient with sparkle animation */
    background: var(--luxuary01-gradient);
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: calc(100% + 200px);
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 35px 15px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 65px 50px, #fff, transparent),
        radial-gradient(1px 1px at 115px 20px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 270px 65px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 340px 25px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 460px 85px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 540px 60px, rgba(255,255,255,0.9), transparent);
    background-repeat: repeat;
    background-size: 600px 100px;
    animation: sparkleMove 8s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes sparkleMove {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

#logo a {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    color: var(--white);
    position: relative;
    z-index: 1;
}

header nav ul {
    display: none;
}

@media screen and (min-width: 900px) {
    header nav ul {
        display: flex;
        gap: 2rem;
        position: relative;
        z-index: 1;
    }
    
    header nav a {
        font-size: 0.95rem;
        font-weight: 500;
        position: relative;
        color: var(--white);
    }
    
    header nav a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--white);
        transition: width 0.3s ease;
    }
    
    header nav a:hover::after {
        width: 100%;
    }
}

/* ハンバーガーメニュー */
#menubar_hdr {
    position: fixed;
    top: 1.5rem;
    right: 5%;
    z-index: 1001;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 900px) {
    #menubar_hdr {
        display: none;
    }
}

.menu-icon {
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-icon span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.menu-icon span:first-child {
    top: 0;
}

.menu-icon span:last-child {
    bottom: 0;
}

#menubar_hdr.ham .menu-icon span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

#menubar_hdr.ham .menu-icon span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* モバイルメニュー */
#menubar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 100px 2rem 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

#menubar.display-block {
    display: block;
}

#menubar nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#menubar nav a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: block;
}

/* 申し込みボタン（固定） */
#btn-special {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

#btn-special a {
    display: block;
    writing-mode: vertical-rl;
    background: var(--gradient-gold);
    color: var(--primary-color);
    font-weight: 700;
    padding: 1.5rem 0.8rem;
    letter-spacing: 0.2em;
    border-radius: 10px 0 0 10px;
    box-shadow: -3px 3px 15px rgba(212, 175, 55, 0.3);
}

#btn-special a:hover {
    box-shadow: -5px 5px 20px rgba(212, 175, 55, 0.5);
    transform: translateX(-5px);
}

@media screen and (max-width: 900px) {
    #btn-special {
        display: none;
    }
}

/* メインビジュアル */
#mainvisual {
    margin-top: 60px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.mainvisual-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.mainvisual-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 900px;
}

.catch-sub {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.catch-main {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.catch-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hero.primary {
    background: var(--gradient-gold);
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-hero.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-hero.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-hero.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

@media screen and (max-width: 900px) {
    #mainvisual {
        height: 70vh;
    }
    
    .catch-main {
        font-size: 2rem;
    }
    
    .catch-desc {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

/* main */
main {
    flex: 1;
}

/* セクション共通 */
section {
    padding: 8rem 5%;
}

@media screen and (max-width: 900px) {
    section {
        padding: 5rem 5%;
    }
}

.bg-light {
    background: var(--bg-light);
}

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

.section-label {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

@media screen and (max-width: 900px) {
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-desc {
        font-size: 0.95rem;
    }
}

/* コンセプト */
.concept {
    background: var(--primary-color);
    color: var(--white);
}

.concept-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.concept .section-label {
    color: var(--accent-light);
}

.concept .section-title {
    color: var(--white);
    font-size: 2.8rem;
}

.concept-text {
    font-size: 1.3rem;
    line-height: 2;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5em;
}

@media screen and (max-width: 900px) {
    .concept .section-title {
        font-size: 2rem;
    }
    
    .concept-text {
        font-size: 1.1rem;
    }
}

/* サービス一覧 */
.service-list {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary-color);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
}

.service-icon {
    font-size: 2.5rem;
}

.service-catch {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-desc {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.service-points {
    list-style: none;
}

.service-points li {
    padding: 0.8rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
}

.service-points li:last-child {
    border-bottom: none;
}

@media screen and (max-width: 900px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 5rem;
    }
    
    .service-item.reverse {
        direction: ltr;
    }
    
    .service-image img {
        height: 300px;
    }
    
    .service-content {
        padding: 1rem 0;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
}

/* キャンペーン */
.campaign {
    background: var(--gradient-gold);
    text-align: center;
}

.campaign-inner {
    max-width: 900px;
    margin: 0 auto;
}

.campaign-label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.campaign-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.highlight-red {
    color: #C41E3A;
    font-size: 1.3em;
}

.campaign-desc {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.campaign-image {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.campaign-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media screen and (max-width: 900px) {
    .campaign-title {
        font-size: 1.8rem;
    }
    
    .campaign-desc {
        font-size: 1rem;
    }
    
    .campaign-image img {
        height: 250px;
    }
}

.sp-only {
    display: none;
}

@media screen and (max-width: 600px) {
    .sp-only {
        display: inline;
    }
}

/* 料金プラン */
.price-plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.price-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    position: relative;
    border: 3px solid var(--accent-color);
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 3rem;
    font-weight: 700;
    font-size: 0.85rem;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.price-header {
    background: var(--luxuary10-gradient);
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: calc(100% + 200px);
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 35px 15px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 65px 50px, #fff, transparent),
        radial-gradient(1px 1px at 115px 20px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 270px 65px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 340px 25px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 460px 85px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 540px 60px, rgba(255,255,255,0.9), transparent);
    background-repeat: repeat;
    background-size: 600px 100px;
    animation: sparkleMove 8s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.plan-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.price-body {
    padding: 3rem 2rem;
}

.price-amount {
    text-align: center;
    margin-bottom: 2.5rem;
}

.price-num {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary-color);
}

.price-unit {
    font-size: 1.5rem;
    margin-left: 0.3rem;
}

.price-tax {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.price-save {
    display: block;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 0.8rem;
    font-size: 1.1rem;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.price-footer {
    padding: 0 2rem 2.5rem;
}

.btn-plan {
    display: block;
    text-align: center;
    padding: 1.2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-plan.primary {
    background: var(--gradient-gold);
    color: var(--primary-color);
    border: none;
}

.btn-plan.primary:hover {
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.price-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 2;
}

@media screen and (max-width: 900px) {
    .price-plans {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-num {
        font-size: 2.8rem;
    }
}

/* 選ばれる理由 */
.reasons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.reason-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.reason-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.reason-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
}

@media screen and (max-width: 900px) {
    .reasons {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .reasons {
        grid-template-columns: 1fr;
    }
}

/* お客様の声 */
.voice-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.voice-item {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.voice-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.voice-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.voice-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.voice-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.voice-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
}

@media screen and (max-width: 900px) {
    .voice-item {
        padding: 2rem;
    }
    
    .voice-photo {
        width: 60px;
        height: 60px;
    }
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.faq-q, .faq-a {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.faq-q {
    background: var(--gradient-gold);
    color: var(--primary-color);
}

.faq-question p {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-top: 0.5rem;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-a {
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer p {
    line-height: 1.9;
    color: var(--text-light);
    padding-top: 0.5rem;
}

/* CTA */
.cta {
    background: var(--luxuary01-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: calc(100% + 200px);
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 35px 15px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 65px 50px, #fff, transparent),
        radial-gradient(1px 1px at 115px 20px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 270px 65px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 340px 25px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 460px 85px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 540px 60px, rgba(255,255,255,0.9), transparent);
    background-repeat: repeat;
    background-size: 600px 100px;
    animation: sparkleMove 8s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 2rem;
}

.cta-desc {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1.3rem 3.5rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta.primary {
    background: var(--luxuary10-gradient);
    color: var(--white);
}

.btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(165, 42, 42, 0.6);
}

.btn-cta.secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-cta.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

@media screen and (max-width: 900px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-desc {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* お問い合わせ */
.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.info-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-item p {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400 !important;
}

@media screen and (max-width: 900px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* フッター */
footer {
    background: var(--luxuary08-gradient);
    color: var(--white);
    padding: 5rem 5% 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: calc(100% + 200px);
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 35px 15px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 65px 50px, #fff, transparent),
        radial-gradient(1px 1px at 115px 20px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 270px 65px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 340px 25px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 460px 85px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 540px 60px, rgba(255,255,255,0.9), transparent);
    background-repeat: repeat;
    background-size: 600px 100px;
    animation: sparkleMove 8s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.dropshadow {
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

