@import url('https://fonts.googleapis.com/css2?family=Poiret+One&family=Noto+Sans+JP:wght@300;400&display=swap');
        
:root {
    --main-bg: #fffbf7;
    --accent-light: #f9e8f2;
    --accent-medium: #f5d4e4;
    --text-color: #5a5a5a;
    --title-color: #696295;
    --crayon-colors: #ffaad4, #aad4ff, #ffffaa, #aaffaa, #ffaaaa, #aaaaff, #d4aaff, #ffd4aa;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    background: var(--main-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,249,242,0.8) 0%, rgba(249,232,242,0.5) 50%, rgba(221,241,247,0.5) 100%);
    z-index: -3;
}

/* クレヨンの線アニメーション用のキャンバス */
.crayon-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    opacity: 0.2;
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.shape-1 {
    top: 10%;
    left: 15%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ffc5e3, #c5ddff);
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #ffe8c5, #c5ffd4);
    animation: float 25s ease-in-out infinite 2s;
}

.shape-3 {
    bottom: 10%;
    left: 25%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #e8c5ff, #d4c5ff);
    animation: float 22s ease-in-out infinite 1s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

h1, h2, h3, h4 {
    font-family: 'Poiret One', 'Noto Sans JP', cursive, sans-serif;
    font-weight: normal;
    color: var(--title-color);
}

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

.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 251, 247, 0.85);
}

.header.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--title-color);
    letter-spacing: 1px;
}

.logo span {
    font-size: 1rem;
    display: block;
    color: #a996c9;
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-medium), transparent);
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.menu-icon {
    position: relative;
    width: 100%;
    height: 100%;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--title-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-icon span:nth-child(1) {
    top: 0px;
}

.menu-icon span:nth-child(2) {
    top: 10px;
}

.menu-icon span:nth-child(3) {
    top: 20px;
}

/* バツマークへの変形 */
.menu-icon.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-icon.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px; /* ヘッダーの高さ分だけ下げる */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* 半透明化 */
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #696295, #c3a5d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-medium), transparent);
}

.profile {
    display: flex;
    align-items: center;
    gap: 50px;
}

.profile-image {
    flex: 0 0 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 300px;
    height: 300px;
    display: block;
    transition: transform 0.5s ease;
}

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

.profile-content {
    flex: 1;
}

.profile-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: light;
}

.profile-subtitle {
    font-size: 1rem;
    color: #a996c9;
    margin-bottom: 20px;
    font-weight: light;
}

.profile-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.highlight {
    background: linear-gradient(180deg, rgba(255,255,255,0) 65%, rgba(195, 165, 217, 0.3) 65%);
    display: inline;
    padding: 0 2px;
}

.quote-block {
    border-left: 3px solid var(--accent-medium);
    padding-left: 20px;
    font-style: italic;
    margin: 20px 0;
    color: #696295;
}

.key-point {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.key-point-title {
    font-family: 'Poiret One', 'Noto Sans JP', cursive, sans-serif;
    font-size: 1.2rem;
    color: var(--title-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.key-point-title:before {
    content: "✧";
    margin-right: 8px;
    color: #c3a5d9;
}

.paragraph-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    fill: var(--accent-medium);
}

.text-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: var(--title-color);
    font-size: 0.9rem;
}

.text-divider:before,
.text-divider:after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-medium), transparent);
}

.text-divider:before {
    margin-right: 15px;
}

.text-divider:after {
    margin-left: 15px;
}

.concept {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

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

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-content {
    padding: 20px;
}

.gallery-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-subtitle {
    font-size: 0.9rem;
    color: #a996c9;
    margin-bottom: 10px;
}

.gallery-info {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    font-size: 0.9rem;
}

.gallery-button-container {
    text-align: center;
    margin-top: 50px;
}

.gallery-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #c3a5d9, #866bb9);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(134, 107, 185, 0.3);
    transition: all 0.3s ease;
}

.gallery-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(134, 107, 185, 0.4);
}

.therapy {
    max-width: 800px;
    margin: 0 auto;
}

.therapy-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.therapy-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #866bb9;
}

.contact {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social-icon {
    width: 25px;
    height: 25px;
    fill: var(--title-color);
}

.footer {
    padding: 50px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 100px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 20px;
}

.footer-nav li {
    margin: 0 15px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--title-color);
}

.copyright {
    font-size: 0.9rem;
    color: #a9a9a9;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .profile {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 807px) {
    .header-container {
        position: relative;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 251, 247, 0.95);
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero-content {
        padding: 1.5rem;
        width: 85%;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .logo span {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
        width: 90%;
        max-width: none;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .therapy-card {
        padding: 25px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .gallery-button {
        padding: 12px 25px;
        font-size: 1rem;
        width: 90%;
        margin: 0 auto;
    }
}