/* YOU・CARS 重機ラジコンカフェ - メインスタイルシート */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 50px;
}

@media (min-width: 768px) {
    .nav {
        height: 45px;
    }
    .header {
        padding: 0.3rem 0;
    }
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}


.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* HEROセクション */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.4), rgba(255, 215, 0, 0.3), rgba(255, 107, 53, 0.4));
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* 動画が読み込まれない場合のフォールバック */
.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8c00, #ffd700, #ff6b35);
    z-index: 0;
}

.hero-content {
    z-index: 3;
    color: white;
    max-width: 800px;
    padding: 2rem;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    animation: bounce 2s infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.cta-button {
    display: inline-block;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: linear-gradient(45deg, #ff4757, #ff6b35);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 71, 87, 0.6);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.sub-copy {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.main-copy {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* コンセプトセクション */
.concept {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.concept-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* ギャラリーセクション */
.gallery {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%, #ffd1ff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-caption {
    padding: 1.5rem;
    text-align: center;
}

.gallery-caption h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.gallery-caption p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 体験の魅力セクション */
.features {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(0,0,0,0.7);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.feature-item > * {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0.5rem;
    color: white;
}

.feature-item .feature-icon {
    background: rgba(255,107,53,0.8);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0.5rem auto;
    color: white;
}

.feature-item:nth-child(1)::before {
    background-image: url('./images/8.png');
}

.feature-item:nth-child(2)::before {
    background-image: url('./images/9.png');
}

.feature-item:nth-child(3)::before {
    background-image: url('./images/10.png');
}

.feature-item:nth-child(4)::before {
    background-image: url('./images/11.png');
}

.feature-item:nth-child(5)::before {
    background-image: url('./images/12.png');
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    background: transparent !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.feature-item p {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    background: transparent !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* 体験の流れセクション */
.flow {
    padding: 5rem 2rem;
    background: linear-gradient(rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8)), url('./images/7.png') center/cover no-repeat;
    color: white;
    position: relative;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.step-number {
    background: #ffd700;
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* 料金セクション */
.pricing {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff8c00, #ffd700);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #ff8c00;
}

.pricing-card.featured::before {
    height: 8px;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.pricing-note p {
    margin: 0.5rem 0;
    color: #666;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff8c00;
    margin: 1rem 0;
}

.price-label {
    background: #ff8c00;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

/* アクセスセクション */
.access {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.access-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.access-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* --- Design A: Glass + Neon enhancements for Access section --- */
.access-info.access-card {
    position: relative;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.05);
    max-width: 820px;
    margin: 0 auto;
}

.access-info.access-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,140,0,0.6), rgba(255,215,0,0.35), rgba(255,107,53,0.6));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; /* Safari/WebKit */
            mask-composite: exclude; /* Standard */
    pointer-events: none;
}

.access-info h3 .sub {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 215, 0, 0.8);
    letter-spacing: 0.5px;
}

.access-icons {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.icon-line {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: start;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

.icon-dot {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,140,0,0.85), rgba(255,215,0,0.65));
    color: #1a1a1a;
    font-weight: 700;
}

.icon-line h4 {
    margin: 0 0 0.25rem 0;
    color: #ffd700;
    font-size: 1rem;
}

.icon-line p, .icon-line ul {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.access-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.2px;
    color: #1a1a1a;
    background: linear-gradient(135deg, #ffcf66, #ff9f43);
    box-shadow: 0 6px 16px rgba(255,165,0,0.25);
}

.badge.secondary {
    background: linear-gradient(135deg, #a8e6cf, #4ecdc4);
}

.badge.neutral {
    background: linear-gradient(135deg, #d4d4d8, #f1f5f9);
}

.access-cta {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.access-cta .cta-call {
    background: linear-gradient(45deg, #ff4757, #ff6b35);
    color: #fff;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 20px rgba(255,71,87,0.35);
}

.access-cta .cta-call:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .icon-line { grid-template-columns: 24px 1fr; }
    .icon-dot { width: 24px; height: 24px; border-radius: 6px; font-size: 0.85rem; }
}

.access-info h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* --- Drinks: Glass + Neon menu --- */
.drinks {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.drinks .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.drinks-card {
    position: relative;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.05);
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    padding: 1.25rem 1rem;
}

.drinks-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,140,0,0.6), rgba(255,215,0,0.35), rgba(255,107,53,0.6));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.drink-list {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0.5rem;
    display: grid;
    gap: 0.6rem;
}

.drink-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

.drink-name {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
}

.drink-dot {
    height: 2px;
    width: 100%;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.15) 0 6px, transparent 6px 10px);
    align-self: center;
}

.drink-price {
    color: #ffd700;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.drink-item:hover {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .drink-item { grid-template-columns: 1fr auto; }
    .drink-dot { display: none; }
}

/* --- Promo (Oil change x RC) --- */
#oil-rc.promo {
    position: relative;
    padding: 5rem 2rem;
    background:
        radial-gradient(1200px 500px at 10% -10%, rgba(255, 107, 53, 0.25), transparent 60%),
        radial-gradient(900px 400px at 90% 10%, rgba(255, 215, 0, 0.18), transparent 60%),
        linear-gradient(135deg, #1b1f34 0%, #2a1f3d 40%, #1a1a1a 100%);
    overflow: hidden;
}

#oil-rc.promo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.35;
    pointer-events: none;
}

#oil-rc .section-title {
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.35), 0 0 28px rgba(255, 107, 53, 0.25);
}

.promo-card {
    padding: 1.4rem 1.2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.04);
}

.promo-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.promo-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
}

.promo-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.promo-image:hover img {
    transform: scale(1.06);
    opacity: 0.95;
}

.promo-images.stylish {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.promo-images.stylish .promo-image {
    box-shadow: 0 14px 30px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06) inset, 0 0 22px rgba(255,165,0,0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.promo-image--a {
    transform: rotate(-2deg) translateY(0);
    z-index: 2;
}

.promo-image--b {
    transform: rotate(3deg) translateY(12px);
}

.promo-image--a:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08) inset, 0 0 28px rgba(255,165,0,0.28);
}

.promo-image--b:hover {
    transform: rotate(1deg) translateY(-2px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08) inset, 0 0 28px rgba(255,165,0,0.28);
}

.promo-caption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    font-size: 0.9rem;
    color: #fff;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.3px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25), 0 0 12px rgba(255,215,0,0.25);
}

@media (max-width: 768px) {
    .promo-images.stylish { grid-template-columns: 1fr; }
    .promo-image--a, .promo-image--b { transform: none; }
    .promo-image img { height: 160px; }
}

.promo-card .access-badges { margin-top: 0; }
.promo-card .icon-line { background: rgba(255,255,255,0.08); }
.promo-card .icon-dot { color: #111; }
.promo-card .cta-call { box-shadow: 0 10px 26px rgba(255,71,87,0.4); }

@media (max-width: 768px) {
    #oil-rc.promo { padding: 4rem 1.5rem; }
}

.contact-button {
    background: linear-gradient(45deg, #ff4757, #ff6b35);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-decoration: none;
    display: inline-block;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

/* 予約・お問い合わせセクション */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #ff4757, #ff6b35);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 820px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.phone-contact {
    text-align: center;
    margin-bottom: 2rem;
}

.phone-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 1rem;
}

.sns-links h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.sns-links p {
    margin-bottom: 0.5rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-btn.tiktok {
    background: linear-gradient(45deg, #ff0050, #ff4081);
    border-color: #ff0050;
}

.social-btn.tiktok:hover {
    background: linear-gradient(45deg, #e6004a, #ff4081);
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.4);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    border-color: #e1306c;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #7a359e, #e61a1a, #f0a83e);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.social-btn span {
    font-size: 1.2rem;
}

/* Instagram投稿風スタイル */
.social-media-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.instagram-post {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.post-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.profile-details {
    flex: 1;
}

.username {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
}

.location {
    font-size: 12px;
    color: #8e8e8e;
}

.post-options {
    font-size: 16px;
    color: #262626;
    cursor: pointer;
}

.post-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
}

.action-buttons {
    display: flex;
    gap: 16px;
}

.action-btn {
    font-size: 24px;
    cursor: pointer;
}

.bookmark {
    font-size: 24px;
    cursor: pointer;
}

.post-likes {
    padding: 0 16px;
    font-size: 14px;
    color: #262626;
}

.post-caption {
    padding: 0 16px 8px 16px;
    font-size: 14px;
    line-height: 1.4;
    color: #262626;
}

.post-caption .username {
    font-weight: 600;
}

.hashtags {
    color: #00376b;
}

.post-time {
    padding: 0 16px 12px 16px;
    font-size: 12px;
    color: #8e8e8e;
}

.view-on-instagram {
    display: block;
    text-align: center;
    padding: 12px;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-on-instagram:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* TikTok投稿風スタイル */
.tiktok-post {
    background: black;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    color: white;
}

.tiktok-header {
    padding: 12px 16px;
    background: black;
    border-bottom: 1px solid #333;
}

.tiktok-logo {
    text-align: center;
}

.tiktok-video-container {
    position: relative;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, #ff0050, #ff4081);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.tiktok-video-placeholder {
    text-align: center;
    color: white;
}

.play-button {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.video-info p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.video-info span {
    font-size: 14px;
    opacity: 0.8;
}

.tiktok-description {
    padding: 12px 16px;
    background: black;
}

.tiktok-user {
    margin-bottom: 8px;
}

.tiktok-description p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.tiktok-music {
    font-size: 12px;
    opacity: 0.7;
}

.view-on-tiktok {
    display: block;
    text-align: center;
    padding: 12px;
    background: linear-gradient(45deg, #ff0050, #ff4081);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-on-tiktok:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.tiktok-link {
    text-align: center;
}

/* Instagram埋め込み風スタイル */
.instagram-embed {
    margin-bottom: 2rem;
}

.instagram-placeholder {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #ff6b35;
    border-radius: 15px;
    overflow: hidden;
    max-width: 400px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.instagram-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.instagram-card {
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(255,165,0,0.1), rgba(255,215,0,0.1));
    border-radius: 20px;
    border: 3px solid rgba(255, 165, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 2px solid white;
}

.instagram-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(255,107,53,0.8), rgba(247,147,30,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    text-align: center;
    color: white;
}

.image-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.profile-info h5 {
    color: #2c3e50;
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
}

.profile-info p {
    color: rgba(44, 62, 80, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.instagram-content {
    padding: 1.5rem;
    background: white;
    color: #2c3e50;
}

.post-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #ff6b35, #ffd700, #4ecdc4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.post-caption p {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.instagram-actions {
    padding: 1rem 1.5rem;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
}

.view-instagram {
    display: inline-block;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
}

.view-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(131, 58, 180, 0.4);
}

.contact-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

/* フッター */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .social-media-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .instagram-post {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .sub-copy {
        font-size: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav {
        padding: 0 2rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero .sub-copy {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-media-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .instagram-post {
        max-width: 100%;
        width: 100%;
    }
    
    .tiktok-embed {
        max-width: 100%;
        width: 100%;
    }
    
    .access-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 0 1rem;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .logo {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .logo span {
        font-size: 0.6rem !important;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .sub-copy {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .instagram-post {
        max-width: 100%;
        margin: 0;
    }
    
    .tiktok-embed {
        max-width: 100%;
    }
    
    .social-media-section {
        padding: 0 1rem;
    }
}

/* アニメーション効果 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
