:root {
    --primary-color: #003447;
    --accent-color: #00a8cc;
    --secondary-color: #87e7ff;
    --text-light: #fdfdfd;
    --text-dark: #003447;
    --bg-light: #fdfdfd;
    --bg-section: #f0f8ff;
    --shadow: 0 8px 25px rgba(0, 52, 71, 0.1);
    --shadow-hover: 0 15px 35px rgba(0, 52, 71, 0.15);
    --gradient: linear-gradient(135deg, #d8ffff 0%, #87e7ff 100%);
}

/* オープニングアニメーション */
.opening-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f9fcfeff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.opening-animation.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ホワイトアウト効果 */
.white-out {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.8s ease-in;
}

.white-out.active {
    opacity: 1;
}

/* 画面全体の円形エフェクト */
.global-ripples {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.global-wave-ripple {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    border: 2px solid rgba(135, 231, 255, 0.3);
    animation: waterDrop 1.8s infinite;
}

.ripple-1 {
    top: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    border-color: rgba(0, 168, 204, 0.25);
}

.ripple-2 {
    top: 60%;
    right: 20%;
    width: 120px;
    height: 120px;
    animation-delay: 0.5s;
    border-color: rgba(0, 52, 71, 0.25);
}

.ripple-3 {
    bottom: 30%;
    left: 10%;
    width: 100px;
    height: 100px;
    animation-delay: 1s;
    border-color: rgba(135, 231, 255, 0.25);
}

.ripple-4 {
    top: 15%;
    right: 25%;
    width: 90px;
    height: 90px;
    animation-delay: 1.5s;
    border-color: rgba(0, 168, 204, 0.25);
}

.ripple-5 {
    bottom: 20%;
    right: 15%;
    width: 110px;
    height: 110px;
    animation-delay: 2s;
    border-color: rgba(0, 52, 71, 0.25);
}

.ripple-6 {
    top: 40%;
    left: 5%;
    width: 70px;
    height: 70px;
    animation-delay: 2.5s;
    border-color: rgba(135, 231, 255, 0.25);
}

.ripple-7 {
    bottom: 45%;
    right: 30%;
    width: 130px;
    height: 130px;
    animation-delay: 3s;
    border-color: rgba(0, 168, 204, 0.25);
}

.ripple-8 {
    top: 70%;
    left: 25%;
    width: 95px;
    height: 95px;
    animation-delay: 3.5s;
    border-color: rgba(0, 52, 71, 0.25);
}

.opening-content {
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.opening-logo-video {
    width: 250px;
    height: auto;
    animation: logoZoom 2s ease-out;
    z-index: 2;
    position: relative;
    border: none;
    outline: none;
    background: transparent;
    mix-blend-mode: normal;
}

.wave-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0;
    border: 1px solid rgba(135, 231, 255, 0.25);
    animation: waterDropCenter 1.5s infinite;
}

.wave-ripple:nth-child(2) {
    animation-delay: 0.3s;
    border-color: rgba(0, 168, 204, 0.25);
}

.wave-ripple:nth-child(3) {
    animation-delay: 0.6s;
    border-color: rgba(0, 52, 71, 0.25);
}

.wave-ripple:nth-child(4) {
    animation-delay: 0.9s;
    border-color: rgba(135, 231, 255, 0.25);
}

.wave-ripple:nth-child(5) {
    animation-delay: 1.2s;
    border-color: rgba(0, 168, 204, 0.25);
}

.loading-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 3px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes logoZoom {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        width: 150px;
        height: 150px;
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.5);
    }
    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes waterDrop {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }
    8% {
        opacity: 0.7;
        transform: scale(0.3);
    }
    16% {
        opacity: 0.8;
        transform: scale(0.6);
    }
    24% {
        opacity: 0.9;
        transform: scale(0.9);
    }
    32% {
        opacity: 0.8;
        transform: scale(1.3);
    }
    40% {
        opacity: 0.7;
        transform: scale(1.8);
    }
    48% {
        opacity: 0.6;
        transform: scale(2.3);
    }
    56% {
        opacity: 0.4;
        transform: scale(2.8);
    }
    64% {
        opacity: 0.3;
        transform: scale(3.3);
    }
    72% {
        opacity: 0.2;
        transform: scale(3.8);
    }
    80% {
        opacity: 0.1;
        transform: scale(4.3);
    }
    88% {
        opacity: 0.05;
        transform: scale(4.8);
    }
    100% {
        opacity: 0;
        transform: scale(5.2);
    }
}

@keyframes waterDropCenter {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.1);
    }
    12% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(0.4);
    }
    20% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.7);
    }
    28% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1);
    }
    36% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.5);
    }
    44% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(2);
    }
    52% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(2.5);
    }
    60% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(3);
    }
    68% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(3.5);
    }
    76% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(4);
    }
    84% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(4.5);
    }
    92% {
        opacity: 0.05;
        transform: translate(-50%, -50%) scale(5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(5.5);
    }
}

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

body {
    font-family: 'Noto Serif JP', 'Inter', serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    background-color: var(--bg-light);
    margin: 0;
    padding: 0;
    width: 100%;
}


/* セクション間の波線区切り */
.wave-divider {
    width: 100%;
    height: 120px;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    animation: wave-flow 8s ease-in-out infinite;
    display: block;
    margin: 0;
    padding: 0;
}

.wave-divider.top {
    transform: rotate(180deg);
}

.wave-divider.dynamic {
    height: 150px;
    width: calc(100vw + 40px);
    margin-left: calc(50% - 50vw - 20px);
}

.wave-divider.diagonal {
    height: 100px;
    transform: skewY(-2deg);
    margin: -20px 0;
}

.wave-divider.diagonal.reverse {
    transform: skewY(2deg);
}

@keyframes wave-flow {
    0%, 100% {
        transform: translateX(0) scaleX(1);
    }
    25% {
        transform: translateX(-10px) scaleX(1.02);
    }
    50% {
        transform: translateX(0) scaleX(0.98);
    }
    75% {
        transform: translateX(10px) scaleX(1.01);
    }
}


/* 波のレイヤー効果 */
.wave-layers {
    position: relative;
}

/* ホバー時のさざなみエフェクト */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 168, 204, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple-effect:hover::before {
    width: 300px;
    height: 300px;
}

/* 文字にさざなみエフェクト */
.wave-text {
    display: inline-block;
    animation: text-wave 3s ease-in-out infinite;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.wave-text span {
    display: inline-block;
    animation: letter-wave 2s ease-in-out infinite;
    text-shadow: inherit;
}

.wave-text span:nth-child(1) { animation-delay: 0.1s; }
.wave-text span:nth-child(2) { animation-delay: 0.2s; }
.wave-text span:nth-child(3) { animation-delay: 0.3s; }
.wave-text span:nth-child(4) { animation-delay: 0.4s; }
.wave-text span:nth-child(5) { animation-delay: 0.5s; }
.wave-text span:nth-child(6) { animation-delay: 0.6s; }
.wave-text span:nth-child(7) { animation-delay: 0.7s; }
.wave-text span:nth-child(8) { animation-delay: 0.8s; }

@keyframes letter-wave {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* スクロール時のさざなみエフェクト */
.scroll-wave {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.9), rgba(135, 231, 255, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    animation: scroll-pulse 2s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: var(--shadow);
}

.scroll-wave.visible {
    opacity: 1;
}

.scroll-wave::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: ripple 1.5s ease-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* リップルエフェクト用のCSS */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

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

/* ナビゲーション */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 253, 253, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 52, 71, 0.1);
}

.navbar.scrolled {
    background: rgba(253, 253, 253, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-image {
    height: 30px;
    width: auto;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ヒーローセクション */
.hero {
    min-height: 120vh;
    background: linear-gradient(135deg, #d8ffff 0%, #87e7ff 50%, #00a8cc 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
}

.hero:has(.hero-content:hover) {
    background: #1a1a2e;
    animation-play-state: paused;
}

/* ホバー時の背景動画 */
.hero-hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

/* スマートフォンでは背景を固定しない */
@media (max-width: 768px) {
    .hero-hover-video {
        background-attachment: scroll;
    }
}

.hero:has(.hero-content:hover) .hero-hover-video {
    opacity: 0.3;
}

/* 個人サロンボタンのピンクホバー効果 */
.salon-btn:hover {
    background-color: #ff69b4 !important;
    border-color: #ff69b4 !important;
    color: white !important;
    transform: translateY(-2px);
}

/* 背景暗化オーバーレイ */
.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    transition: background 0.8s ease-in-out;
    pointer-events: none;
}

/* スマートフォンでのアニメーション */
@media (max-width: 768px) {
    .hero-dark-overlay {
        animation: heroBackgroundDarken 4s ease-in-out infinite alternate;
    }
}

/* 背景暗化アニメーション */
@keyframes heroBackgroundDarken {
    0% {
        background: rgba(0, 0, 0, 0);
    }
    50% {
        background: rgba(0, 0, 0, 0.15);
    }
    100% {
        background: rgba(0, 0, 0, 0.3);
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0; 
    bottom: 0;
    background: rgba(0, 52, 71, 0.15);
    z-index: 1;
}


/* 斜めの区切り */
.diagonal-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 6;
}

.diagonal-divider svg {
    width: 100%;
    height: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="2" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="1"><animate attributeName="r" values="2;20;2" dur="12s" repeatCount="indefinite"/><animate attributeName="opacity" values="0;0.8;0" dur="12s" repeatCount="indefinite"/></circle><circle cx="70" cy="50" r="3" fill="none" stroke="rgba(135,231,255,0.25)" stroke-width="1.2"><animate attributeName="r" values="3;25;3" dur="15s" repeatCount="indefinite"/><animate attributeName="opacity" values="0;0.6;0" dur="15s" repeatCount="indefinite"/></circle><circle cx="40" cy="80" r="2.5" fill="none" stroke="rgba(0,168,204,0.2)" stroke-width="1.1"><animate attributeName="r" values="2.5;18;2.5" dur="10s" repeatCount="indefinite"/><animate attributeName="opacity" values="0;0.7;0" dur="10s" repeatCount="indefinite"/></circle><circle cx="85" cy="20" r="1.8" fill="none" stroke="rgba(216,255,255,0.18)" stroke-width="0.9"><animate attributeName="r" values="1.8;15;1.8" dur="8s" repeatCount="indefinite"/><animate attributeName="opacity" values="0;0.9;0" dur="8s" repeatCount="indefinite"/></circle><circle cx="10" cy="70" r="3.2" fill="none" stroke="rgba(135,231,255,0.15)" stroke-width="1.4"><animate attributeName="r" values="3.2;28;3.2" dur="18s" repeatCount="indefinite"/><animate attributeName="opacity" values="0;0.4;0" dur="18s" repeatCount="indefinite"/></circle><circle cx="60" cy="10" r="2.2" fill="none" stroke="rgba(255,255,255,0.22)" stroke-width="1.05"><animate attributeName="r" values="2.2;21;2.2" dur="14s" repeatCount="indefinite"/><animate attributeName="opacity" values="0;0.8;0" dur="14s" repeatCount="indefinite"/></circle></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.hero:has(.hero-content:hover)::before {
    opacity: 0;
}



.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    text-align: center;
    transform: translateY(-10vh);
}

/* スクロールインジケーター */
.scroll_down{
    position: absolute;
    bottom: 200px;
    right: 50px;
    z-index: 4;
}

.scroll_down a{
    position: absolute;
    left: 10px;
    bottom: 87px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .2em;
    writing-mode: vertical-lr;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.scroll_down a:hover {
    color: rgba(255, 255, 255, 1);
}

.scroll_down:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation:
        circlemove 3s ease-in-out infinite,
        cirlemovehide 3s ease-out infinite;
}

@keyframes circlemove{
    0%{bottom:160px;}
    100%{bottom:0px;}
}

@keyframes cirlemovehide{
    0%{opacity:0}
    50%{opacity:1;}
    80%{opacity:0.9;}
    100%{opacity:0;}
}

.scroll_down:after{
    content:"";
    position: absolute;
    bottom:0;
    left:0;
    width:2px;
    height: 160px;
    background: rgba(255, 255, 255, 0.8);
}


.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-content:hover h1,
.hero-content:hover h1 span {
    background: linear-gradient(
        45deg, 
        #ff0000, #ff8800, #ffff00, #88ff00, 
        #00ff00, #00ff88, #00ffff, #0088ff, 
        #0000ff, #8800ff, #ff00ff, #ff0088
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-flow 5s linear infinite;
    text-shadow: none;
    transform: scale(1.05);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 2rem;
    opacity: 1;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
    line-height: 1.8;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--text-light);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 52, 71, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 52, 71, 0.2);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.2);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* About セクション */
.section {
    padding: 5rem 0;
    position: relative;
    background: var(--bg-light);
    z-index: 4;
}

#about {
    background: var(--bg-light);
    padding-top: 5rem;
    margin-top: 60px;
    z-index: 4;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}


.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 斜めの背景区切り */
.diagonal-section {
    position: relative;
    overflow: hidden;
}

.diagonal-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: calc(100% + 200px);
    background: var(--bg-section);
    transform: skewY(-2deg);
    z-index: -1;
}

.diagonal-section.reverse::before {
    transform: skewY(2deg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

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

.skill-item {
    background: var(--bg-section);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(135, 231, 255, 0.1);
}

.skill-item:hover .skill-icon-container {
    background: rgba(0, 168, 204, 0.2);
    border-color: var(--accent-color);
    transform: rotate(10deg);
}

.skill-item:hover .skill-icon-container i {
    color: var(--primary-color);
    transform: scale(1.2);
}

.skill-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 168, 204, 0.2);
    transition: all 0.3s ease;
}

.skill-item i {
    font-size: 2rem;
    color: var(--accent-color);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.skill-item > div:not(.skill-icon-container):not(.skill-progress) {
    position: relative;
    z-index: 2;
}

.water-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 168, 204, 0.8) 0%, 
        rgba(135, 231, 255, 0.8) 50%, 
        rgba(216, 255, 255, 0.8) 100%);
    border-radius: 50%;
    transform: translateY(100%);
    transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.water-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%);
    border-radius: 50%;
}

.water-fill::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 30%, 
        transparent 70%);
    animation: water-shimmer 3s ease-in-out infinite;
    border-radius: 50%;
}

.skill-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 0 0 10px 10px;
    opacity: 0.8;
    transform: translateY(100%);
    transition: transform 2s ease-out;
}

.skill-item[data-level="99"] .skill-progress {
    height: 99%;
}

.skill-item[data-level="95"] .skill-progress {
    height: 95%;
}

.skill-item[data-level="90"] .skill-progress {
    height: 90%;
}

.skill-item[data-level="85"] .skill-progress {
    height: 85%;
}

.skill-item[data-level="80"] .skill-progress {
    height: 80%;
}

.skill-item[data-level="75"] .skill-progress {
    height: 75%;
}

.skill-item[data-level="70"] .skill-progress {
    height: 70%;
}

.skill-item[data-level="20"] .skill-progress {
    height: 20%;
}


.skill-item.animate .skill-progress {
    transform: translateY(0);
}

/* 水で満たされるアニメーション */
@keyframes water-shimmer {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateX(10px) rotate(5deg);
        opacity: 0.6;
    }
}

/* レベル別の水位設定 - 高さは固定、上からの位置で調整 */
.skill-item.animate[data-level="99"] .water-fill {
    height: 100%;
    transform: translateY(1%);
}

.skill-item.animate[data-level="95"] .water-fill {
    height: 100%;
    transform: translateY(5%);
}

.skill-item.animate[data-level="90"] .water-fill {
    height: 100%;
    transform: translateY(10%);
}

.skill-item.animate[data-level="85"] .water-fill {
    height: 100%;
    transform: translateY(15%);
}

.skill-item.animate[data-level="80"] .water-fill {
    height: 100%;
    transform: translateY(20%);
}

.skill-item.animate[data-level="75"] .water-fill {
    height: 100%;
    transform: translateY(25%);
}

.skill-item.animate[data-level="70"] .water-fill {
    height: 100%;
    transform: translateY(30%);
}

.skill-item.animate[data-level="20"] .water-fill {
    height: 100%;
    transform: translateY(80%);
}


/* アイコンの色を白に変更 */
.skill-item.animate i {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 水のスプラッシュエフェクト */
@keyframes water-splash {
    0% {
        transform: translateY(var(--water-y, 80%)) scaleY(1);
        border-radius: 50%;
    }
    10% {
        transform: translateY(calc(var(--water-y, 80%) - 15%)) scaleY(0.8);
        border-radius: 70% 30% 40% 60%;
    }
    25% {
        transform: translateY(calc(var(--water-y, 80%) - 5%)) scaleY(1.2);
        border-radius: 30% 70% 60% 40%;
    }
    40% {
        transform: translateY(calc(var(--water-y, 80%) - 12%)) scaleY(0.9);
        border-radius: 60% 40% 30% 70%;
    }
    55% {
        transform: translateY(calc(var(--water-y, 80%) - 3%)) scaleY(1.1);
        border-radius: 40% 60% 70% 30%;
    }
    70% {
        transform: translateY(calc(var(--water-y, 80%) - 8%)) scaleY(0.95);
        border-radius: 55% 45% 45% 55%;
    }
    85% {
        transform: translateY(calc(var(--water-y, 80%) - 2%)) scaleY(1.05);
        border-radius: 48% 52% 52% 48%;
    }
    100% {
        transform: translateY(var(--water-y, 80%)) scaleY(1);
        border-radius: 50%;
    }
}

@keyframes water-ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes water-shimmer-splash {
    0% {
        transform: translateX(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateX(8px) rotate(3deg) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translateX(-5px) rotate(-2deg) scale(1.05);
        opacity: 0.8;
    }
    75% {
        transform: translateX(3px) rotate(1deg) scale(1.02);
        opacity: 0.5;
    }
    100% {
        transform: translateX(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
}

@keyframes panel-water-splash {
    0% {
        transform: scaleY(1);
        border-radius: 0 0 10px 10px;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    15% {
        transform: scaleY(calc(1 + var(--splash-height-1, 10) / var(--water-level, 80)));
        border-radius: 0 0 10px 10px;
        clip-path: polygon(0% 0%, 10% 5%, 20% 8%, 30% 10%, 40% 10%, 50% 9%, 60% 10%, 70% 10%, 80% 8%, 90% 5%, 100% 0%, 100% 100%, 0% 100%);
    }
    30% {
        transform: scaleY(calc(1 + var(--splash-height-2, 4) / var(--water-level, 80)));
        border-radius: 0 0 10px 10px;
        clip-path: polygon(0% 0%, 10% 2%, 20% 4%, 30% 5%, 40% 5%, 50% 4%, 60% 5%, 70% 5%, 80% 4%, 90% 2%, 100% 0%, 100% 100%, 0% 100%);
    }
    45% {
        transform: scaleY(calc(1 + var(--splash-height-3, 8) / var(--water-level, 80)));
        border-radius: 0 0 10px 10px;
        clip-path: polygon(0% 0%, 10% 8%, 20% 12%, 30% 15%, 40% 15%, 50% 14%, 60% 15%, 70% 15%, 80% 12%, 90% 8%, 100% 0%, 100% 100%, 0% 100%);
    }
    60% {
        transform: scaleY(calc(1 + var(--splash-height-4, 2) / var(--water-level, 80)));
        border-radius: 0 0 10px 10px;
        clip-path: polygon(0% 0%, 10% 1%, 20% 2%, 30% 3%, 40% 3%, 50% 2%, 60% 3%, 70% 3%, 80% 2%, 90% 1%, 100% 0%, 100% 100%, 0% 100%);
    }
    75% {
        transform: scaleY(calc(1 + var(--splash-height-5, 6) / var(--water-level, 80)));
        border-radius: 0 0 10px 10px;
        clip-path: polygon(0% 0%, 10% 6%, 20% 9%, 30% 12%, 40% 12%, 50% 11%, 60% 12%, 70% 12%, 80% 9%, 90% 6%, 100% 0%, 100% 100%, 0% 100%);
    }
    90% {
        transform: scaleY(calc(1 + var(--splash-height-6, 1) / var(--water-level, 80)));
        border-radius: 0 0 10px 10px;
        clip-path: polygon(0% 0%, 10% 3%, 20% 5%, 30% 7%, 40% 7%, 50% 6%, 60% 7%, 70% 7%, 80% 5%, 90% 3%, 100% 0%, 100% 100%, 0% 100%);
    }
    100% {
        transform: scaleY(1);
        border-radius: 0 0 10px 10px;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}

/* 既存の水（skill-progress）にスプラッシュエフェクトを適用 */
.skill-item.splash .skill-progress {
    animation: panel-water-splash 1.2s ease-out !important;
    transform: translateY(0) !important;
    transition: none !important;
}

.skill-item.animate.splash .water-fill {
    animation: water-splash 1.2s ease-out !important;
    transform: translateY(var(--water-y, 80%)) !important;
    transition: none !important;
}

.skill-item.animate.splash .water-fill::after {
    animation: water-shimmer-splash 1.2s ease-out !important;
}

.skill-item.splash::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, 
        rgba(135, 231, 255, 0.8) 0%, 
        rgba(135, 231, 255, 0.4) 40%, 
        transparent 80%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: water-ripple 1s ease-out;
    pointer-events: none;
    z-index: 3;
}

/* Portfolio セクション */
.portfolio {
    background: transparent;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-color);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.1), rgba(135, 231, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.portfolio-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 52, 71, 0.2);
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item img,
.portfolio-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.portfolio-item:hover img,
.portfolio-item:hover video {
    transform: scale(1.08);
}

.portfolio-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(-5px);
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-info h3 {
    color: var(--accent-color);
}

.portfolio-info p {
    color: #666;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-info p {
    color: #555;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-section);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.portfolio-item:hover .tag {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}


.shapedividers_com-5051 {
    overflow: hidden;
    position: relative;
    height: 150px;
    background: #f0f8ff;
}

.shapedividers_com-5051::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 381 77.25" preserveAspectRatio="none"><g fill="%23ffffff"><path d="M0 8.47L381 42.33V0H0z"/><path d="M0 33.87L381 59.27V0H0z" opacity=".5"/><path d="M0 59.27L381 77.25V0H0z" opacity=".3"/></g></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}

/* Contact Form Styles */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    color: #666;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Services セクション */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    box-shadow: var(--shadow-hover);
}

.service-card:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.service-card:hover h3 {
    color: var(--accent-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rainbow-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Salon LP Specific Styles */
.salon-hero {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E1 100%);
    color: #2C2C2C;
    padding: 120px 0 80px;
    position: relative;
}

.salon-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 30px;
    border-color: transparent transparent #F0F8FF transparent;
    left: 50%;
    transform: translateX(-50%);
}

.salon-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.salon-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.salon-hero .sub-copy {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.salon-hero-image {
    text-align: center;
}

.salon-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.cta-primary {
    background: #FF6B8A;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 107, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 138, 0.5);
    background: #FF5577;
    color: white;
}

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

.empathy-section {
    background: #f0f8ff;
    padding: 80px 0;
}

.worry-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.worry-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.worry-image {
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: sticky;
    top: 2rem;
}

.worry-image img {
    width: 100%;
    height: auto;
    max-height: calc(4 * (2rem + 150px) + 3 * 2rem);
    object-fit: contain;
    border-radius: 15px;
}

.worry-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #E377A4;
    display: flex;
    flex-direction: column;
    min-height: 150px;
    justify-content: flex-start;
}

.worry-item i {
    color: #E377A4;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Disadvantage section styles */
.disadvantage-section {
    background: linear-gradient(135deg, #2C1B2E 0%, #3D2A3F 100%);
    padding: 80px 0;
    position: relative;
}

.disadvantage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.disadvantage-section .container {
    position: relative;
    z-index: 1;
}

.disadvantage-section .section-title {
    color: white;
}

.disadvantage-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.disadvantage-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.disadvantage-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.disadvantage-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #E377A4;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.disadvantage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.disadvantage-icon {
    background: linear-gradient(135deg, #E377A4, #CD6FA8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.disadvantage-icon i {
    color: white;
    font-size: 1.5rem;
}

.disadvantage-content h3 {
    color: #003447;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.disadvantage-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.disadvantage-conclusion {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    border: 2px solid #E377A4;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.disadvantage-conclusion p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #003447;
    margin: 0;
}

.disadvantage-conclusion strong {
    color: #E377A4;
    font-weight: 700;
}

.success-pattern {
    background: white;
    padding: 80px 0;
}

.pattern-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    background: linear-gradient(135deg, #f8fcff, #f0f8ff);
    color: #2c5aa0;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
    border: 1px solid rgba(70, 130, 180, 0.2);
    box-shadow: 0 2px 8px rgba(135, 206, 235, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-item:hover {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    border-color: rgba(70, 130, 180, 0.4);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.15);
}

.step-icon {
    background: linear-gradient(135deg, #4682b4, #2c5aa0);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(44, 90, 160, 0.2);
    flex-shrink: 0;
    position: relative;
}

.step-number {
    background: rgba(44, 90, 160, 0.8);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    position: absolute;
    top: -8px;
    right: -8px;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5aa0;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

.benefits-section {
    background: #f0f8ff;
    padding: 80px 0;
}

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

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    background: linear-gradient(135deg, #4A7A8E, #3598B0);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.vision-section {
    background: linear-gradient(135deg, #2A9DB5, #04A7CC);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.vision-section p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.comparison-section {
    background: white;
    padding: 80px 0;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-card {
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.no-action {
    background: #ffe6e6;
    border: 2px solid #ff6b6b;
}

.take-action {
    background: #e6f7ff;
    border: 2px solid #04A7CC;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.no-action li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.take-action li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #04A7CC;
    font-weight: bold;
}

.faq-section {
    background: #f0f8ff;
    padding: 80px 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background: #04A7CC;
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    line-height: 1.6;
}

.faq-answer.active {
    display: block;
}

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #04A7CC;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(4, 167, 204, 0.4);
    transition: all 0.3s ease;
    animation: floatingBounce 3s ease-in-out infinite;
    overflow: hidden;
}

.floating-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

.floating-cta:hover {
    transform: scale(1.05);
    color: white;
    animation-play-state: paused;
}

.floating-cta:hover::before {
    animation-play-state: paused;
}

/* フローティングCTAの上下揺れアニメーション */
@keyframes floatingBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ヒーローセクションのアニメーション */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes shimmer {
    0%, 90%, 100% {
        left: -100%;
    }
    10%, 30% {
        left: 100%;
    }
}

/* Salon specific inline styles converted to classes */
.salon-text-center-section {
    text-align: center;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.salon-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.salon-highlight-text {
    font-size: 1.2rem;
    color: #E377A4;
    font-weight: 600;
}

.salon-success-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 3rem;
}

.salon-success-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.salon-success-final {
    font-size: 1.1rem;
    line-height: 1.8;
}

.salon-pattern-conclusion {
    text-align: center;
    margin-top: 3rem;
}

.salon-pattern-highlight {
    font-size: 1.2rem;
    color: #CD6FA8;
    font-weight: 600;
}

.salon-vision-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.salon-vision-list {
    margin-top: 2rem;
}

.salon-vision-conclusion {
    font-size: 1.2rem;
    margin-top: 2rem;
    font-weight: 600;
}

.salon-comparison-dark {
    background: #003447;
    color: white;
    padding: 80px 0;
}

.salon-comparison-header {
    text-align: center;
    margin-bottom: 4rem;
}

.salon-comparison-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.salon-comparison-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
}

.salon-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.salon-no-action-card {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 3rem;
}

.salon-action-card {
    background: rgba(0, 168, 204, 0.1);
    border: 2px solid #04A7CC;
    border-radius: 15px;
    padding: 3rem;
}

.salon-comparison-card-title {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.salon-action-card-title {
    color: #04A7CC;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.salon-timeline {
    margin-bottom: 2rem;
}

.salon-timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.salon-timeline-icon {
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.salon-timeline-clock {
    font-size: 0.8rem;
}

.salon-timeline-title {
    color: rgba(255,255,255,0.9);
    margin: 0 0 0.5rem 0;
}

.salon-timeline-text {
    margin: 0;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.salon-check-list {
    margin-bottom: 2rem;
}

.salon-check-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.salon-check-icon {
    color: #04A7CC;
    margin-right: 1rem;
}

.salon-check-text {
    margin: 0;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.salon-conclusion-text {
    text-align: center;
    margin-top: 2rem;
}

.salon-conclusion-intro {
    color: #04A7CC;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.salon-conclusion-highlight {
    color: #04A7CC;
    font-size: 1.2rem;
    font-weight: 600;
}

.salon-conclusion-span {
    color: #87e7ff;
}

.salon-design-box {
    text-align: center;
    background: rgba(135, 231, 255, 0.1);
    border: 2px solid #87e7ff;
    padding: 3rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 4rem auto 0;
}

.salon-design-title {
    color: #87e7ff;
    margin-bottom: 1.5rem;
}

.salon-design-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.salon-closing-section {
    background: white;
    text-align: center;
    padding: 80px 0;
}

.salon-closing-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

.salon-closing-cta {
    margin-top: 3rem;
}

.salon-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.salon-contact-section {
    background: #f0f8ff;
    padding: 80px 0;
}

.salon-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.salon-cta-full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Salon responsive styles */
/* タブレット対応 */
@media (max-width: 1024px) {
    .salon-hero-content {
        gap: 3rem;
        max-width: 900px;
    }
    
    .salon-hero {
        padding: 100px 0 60px;
    }
    
    .benefit-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .pattern-steps {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .salon-hero {
        padding: 80px 0 40px;
    }
    
    .salon-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .salon-hero-text {
        text-align: center;
    }
    
    .salon-hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-top: 4rem;
        margin-bottom: 1rem;
    }
    
    .salon-hero .sub-copy {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .worry-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .worry-image {
        position: static;
        margin-top: 2rem;
    }
    
    .disadvantage-list {
        gap: 1.5rem;
    }
    
    .disadvantage-item {
        flex-direction: row;
        text-align: left;
        padding: 1.5rem;
    }
    
    .disadvantage-icon {
        margin-right: 1rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .pattern-steps {
        gap: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .benefit-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .salon-faq-container {
        max-width: 100%;
    }
    
    .floating-cta {
        bottom: 10px;
        right: 10px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* レスポンシブ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* 小さなモバイル対応 */
@media (max-width: 480px) {
    .salon-hero {
        padding: 60px 0 30px;
    }
    
    .salon-hero h1 {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-top: 3.5rem;
    }
    
    .salon-hero .sub-copy {
        font-size: 0.9rem;
    }
    
    .cta-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .worry-item h3 {
        font-size: 0.9rem;
    }
    
    .disadvantage-item {
        padding: 1rem;
    }
    
    .disadvantage-content h3 {
        font-size: 1rem;
    }
    
    .disadvantage-content p {
        font-size: 0.9rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .faq-question span {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .floating-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}


