@charset "UTF-8";

/* ======================================
   Salon de Mirror - TOP Page Styles
   【修正済み完全版 - SP画像表示問題解決済み】
   ====================================== */

/* ======================================
   1. PC / 共通スタイル
   ====================================== */

/* ===== Hero Grid Layout ===== */
header.hero {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    display: block !important;
}

.hero-wrap {
    position: absolute;
    top: 0%;
    left: 100%;
    transform: translate(-100%, 0%);
    z-index: 20;
    text-align: center;
    pointer-events: none;
    height: 100% !important;
}

main#main {
    padding-top: 0;
}

.hero-title {
    /* max-width: 80%; */
    /* height: auto; */
}

.hero-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    height: 80vh;
    min-height: 600px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.hero-item {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.hero-item--left-top {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    border-bottom: none;
    border-right: none;
}

.hero-item--left-top img {
    animation: none;
    animation-delay: 0s;
}

.hero-item--left-bottom {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    border-top: none;
    border-right: none;
}

.hero-item--left-bottom img {
    animation: none;
    animation-delay: 0.15s;
}

.hero-item--right {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    border-left: none;
}

.hero-item--right img {
    animation: none;
    animation-delay: 0.3s;
}


/* ===== Introduction Section ===== */

/* ブラーフェードインアニメーション */
@keyframes blurFadeIn {
    0% {
        opacity: 0;
        filter: blur(15px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.introduction {
    padding: 30vh 0;
    position: relative;
    overflow: hidden;
    background: #ecf8fa;
    z-index: 1;
}

@keyframes floatBubble1 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -60px) scale(1.15); }
    66% { transform: translate(-20px, 20px) scale(0.85); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatBubble2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, 80px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.introduction::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(74, 144, 226, 0.1);
    filter: blur(4px);
    transition: filter 0.5s, transform 0.3s, box-shadow 0.3s;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: blurFadeIn 1.2s ease-out 0.8s forwards, floatBubble1 18s ease-in-out 2s infinite;
    animation-play-state: paused;
    transform: scale(1.05);
}

.introduction.activated::before {
    animation-play-state: running;
}

.introduction::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: rgba(74, 144, 226, 0.08);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: blurFadeIn 1.2s ease-out 1.2s forwards, floatBubble2 22s linear 2.4s infinite alternate;
    animation-play-state: paused;
    will-change: transform;
}

.introduction.activated::after {
    animation-play-state: running;
}

.introduction .wrap {
    position: relative;
    z-index: 2;
    text-align: center;
}

.intro-catchcopy {
    margin-bottom: 50px;
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-32) / var(--unnamed-line-spacing-44) var(--unnamed-font-family-zenoldmincho-bold);
    letter-spacing: 0px;
    color: var(--unnamed-color-128cadfd);
    text-align: center;
    animation: blurFadeIn 1.2s ease-out 0.3s forwards;
    opacity: 0;
}

.intro-text {
    max-width: 700px;
    margin: 0 auto;
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) 18px / var(--unnamed-line-spacing-34) var(--unnamed-font-family-source-han-sans-jp);
    letter-spacing: 0;
    color: var(--unnamed-color-128cadfd);
    text-align: center;
    opacity: 1;
    animation: blurFadeIn 1.2s ease-out 0.6s forwards;
    opacity: 0;
}

.intro-text strong {
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}


/* ===== News Section ===== */
.news {
    padding: 100px 0;
    background-color: #fff;
}

h2 {
    margin-bottom: 15px;
    text-align: center;
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-30) / var(--unnamed-line-spacing-34) var(--unnamed-font-family-source-han-sans-jp);
    letter-spacing: 0;
    color: var(--unnamed-color-128cadfd);
}

.subtitle {
    margin-bottom: 50px;
    text-align: center;
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) 18px / var(--unnamed-line-spacing-34) var(--unnamed-font-family-source-han-sans-jp);
    letter-spacing: 0;
    color: var(--unnamed-color-128cadfd);
}

.news-item {
    background-color: transparent;
    padding: 10px 0;
    border-left: none;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 50px;
    align-items: center;
    border-radius: 0;
    transition: none;
    box-shadow: none;
}

.news-item:hover {
    box-shadow: none;
    transform: none;
}

.news-item time {
    display: block;
    white-space: nowrap;
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-13) / var(--unnamed-line-spacing-34) var(--unnamed-font-family-source-han-sans-jp);
    letter-spacing: 0;
    color: var(--unnamed-color-128cadfd);
}

.news-item h3 {
    margin: 0;
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-16) / var(--unnamed-line-spacing-34) var(--unnamed-font-family-source-han-sans-jp);
    letter-spacing: 0;
    color: var(--unnamed-color-3d3d3d);
    border-left: 0;
}

.news-item .btn-more {
    white-space: nowrap;
    font-size: 13px;
    padding: 10px 25px;
}

.btn-more-archive {
    display: block;
    text-align: center;
    margin: 60px auto 0;
    max-width: 300px;
}

.btn-more {
    display: inline-block;
    background-color: transparent;
    color: #4a90e2;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 400;
    text-align: left !important;
    border: 1px solid #4a90e2;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 400px;
}

.btn-more:hover {
    color: #fff;
}


/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background-color: #fff;
}

.about-top {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.about-top-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: flex;
    grid-template-columns: 200px 1fr;
    gap: 0px;
    margin-bottom: 60px;
    align-items: center;
    justify-content: space-between;
}

.about-logo {
    text-align: center;
    display: block;
    width: 25%;
}

.procell-logo {
    height: auto;
    margin-bottom: 20px;
    width: 19rem;
    max-width: unset;
    display: block;
    margin: auto;
}

.about-text {
    padding: 0;
    width: 71%;
}

.about-text p {
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-16) / var(--unnamed-line-spacing-34) var(--unnamed-font-family-source-han-sans-jp);
}

.about p {
    margin-bottom: 20px;
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) 18px / var(--unnamed-line-spacing-34) var(--unnamed-font-family-source-han-sans-jp);
    letter-spacing: 0;
}

.about-logo-text {
    font-size: 16px !important;
    font-weight: 700;
    color: #138dad !important;
    line-height: 1.6;
}

.about-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.about-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    min-height: 100px;
    position: relative;
}

.about-buttons .btn::after {
    display: block;
    width: 40px;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    box-shadow: 42px -4px 0 -2px #fff, 42px 4px 0 -2px #fff;
}

.about-buttons .btn:hover::after {
    width: 65px;
}

.btn-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-title {
    display: block;
    font-weight: 400;
    font-size: 16px;
}

.btn-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.95;
}

.about-buttons .btn-arrow-icon {
    margin-left: auto;
    flex-shrink: 0;
}

.about-buttons .btn-arrow-icon svg {
    stroke: #fff;
}

.btn-scalp {
    background-color: #6ec25a;
}

.btn-scalp:hover {
    background-color: #5aa946;
}

.btn-facial {
    background-color: #b8a8d4;
}

.btn-facial:hover {
    background-color: #a39cc1;
}

.btn-arrow-icon {
    display: none;
}

.contact-btn:hover::after {
    width: 65px;
}

span.swiper-pagination-bullet {
    width: 40px;
    border-radius: inherit;
    height: 3px;
}

.swiper-pagination {
    gap: 5px;
}


/* ===== Message Section ===== */
.message {
    padding: 100px 0;
    background-color: #fff;
}

.message-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0px;
    align-items: center;
    margin-bottom: 60px;
    padding: 60px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: auto;
}

.message-container:before {
    content: "";
    display: block;
    position: absolute;
    height: 70%;
    width: 100%;
    z-index: -1;
    border: 1px solid var(--unnamed-color-128cadfd);
}

.message-left {
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.message-card {
    border-radius: 8px;
}

.message-card h2 {
    margin-bottom: 40px;
    color: #4a90e2;
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) 28px / var(--unnamed-line-spacing-44) var(--unnamed-font-family-zenoldmincho-bold);
    letter-spacing: 0;
    color: var(--unnamed-color-128cadfd);
    text-align: left;
    font-size: 27px;
}

.message-info {
    text-align: left;
}

.salon-name {
    font-weight: 200;
    margin-bottom: 5px;
    font-size: 18px;
}

.message-title {
    margin-bottom: 8px;
    font-weight: 300;
}

.message-author {
    font-weight: 300;
}

.message-right {
    display: flex;
    align-items: inherit;
    justify-content: right;
}

.message-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    overflow: hidden;
}

.message-content {
    padding: 60px;
    border-radius: 8px;
}

.message-content p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 20px;
    color: #555;
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-16) / var(--unnamed-line-spacing-34) var(--unnamed-font-family-source-han-sans-jp);
    letter-spacing: 0;
    color: var(--unnamed-color-3d3d3d);
    padding: 0 !important;
    margin: 0;
}

.message-content p:last-child {
    margin-bottom: 0;
}


/* ===== Case Studies Section (PC) ===== */
.case-studies {
    padding: 0;
    background: transparent;
}

.case-studies-bg {
    padding: 100px 0;
    position: relative;
    /* overflow: hidden; */
}

.case-studies-bg:before {
    content: "";
    display: block;
    position: absolute;
    width: 70%;
    bottom: 4%;
    height: 90%;
    text-align: center;
    background: #e8f1f8;
    right: 50%;
    transform: translate(50%, 0%);
    z-index: -1;
}

.case-studies h2 {
    text-align: center;
}

/* ★重要:親要素の影響を無視して強制的に全幅にする設定 */
.cases-swiper {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    position: relative;
    left: auto !important;
    right: auto !important;
    /* overflow: visible !important; */
    padding: 20px 0;
    margin-bottom: 50px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    width: auto;
    align-items: center;
    /* right: -25vw; */
}

/* ★重要:スライド個別の幅指定を解除(JSに任せる) */
.swiper-slide {
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* width指定は削除済み */
}

.case-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.case-slide-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: filter 0.5s, transform 0.3s, box-shadow 0.3s;

}

.swiper-backface-hidden .swiper-slide {
    height: 18vw;
}

.case-slide-link:hover .case-slide-image {
    filter: blur(0);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* コントロールボタン・ページネーション */
.case-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.case-controls .swiper-button-prev,
.case-controls .swiper-button-next {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 10px !important;
    position: static;
    cursor: pointer;
    transition: all 0.3s;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 30px;
}

.case-controls .swiper-button-prev.swiper-button-lock,
.case-controls .swiper-button-next.swiper-button-lock {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.case-controls .swiper-button-prev::after,
.case-controls .swiper-button-next::after {
    color: #128cad !important;
    font-size: 25px !important;
    font-weight: 300 !important;
    line-height: 0em;
    top: -0.1em;
    position: relative;
}

.case-controls .swiper-button-prev::after {
    content: '<' !important;
}

.case-controls .swiper-button-next::after {
    content: '>' !important;
}

.swiper-button-prev {
    order: 1;
}

.swiper-button-next {
    order: 3;
}

.case-controls .swiper-pagination {
    position: static;
    order: 2;
    display: flex !important;
    gap: 5px !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
}

.case-controls .swiper-pagination-bullet {
    width: 2vw !important;
    height: 3px !important;
    border-radius: 0 !important;
    background: #d0e2ee !important;
    opacity: 1 !important;
    margin: 0 !important;
    display: block !important;
}

.case-controls .swiper-pagination-bullet-active {
    background: #128cad !important;
}

/* その他パーツ */
a.btn-more.btn-more-archive {
    display: flex;
    justify-content: space-between;
}

.btn-more-archive {
    display: block;
}

.contact-arrow {
    font-size: 24px;
}

.contact-arrow-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    display: inline-block;
}

.slider-arrow {
    display: block;
    line-height: 1;
}


/* ===== Salon Info / Access Section (PC) ===== */
.salon-info {
    background-color: #fff;
    padding: 100px 0;
}

.salon-info h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

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

.store {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.store-image-wrapper {
    width: 100%;
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}

.store-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-content {
    padding: 30px;
    background-color: #e8f5f9;
}

.store h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    border-left: 0;
    padding-left: 0;
}

.store-address {
    line-height: 1.6;
    margin-bottom: 10px;
}

.store-detail {
    margin-bottom: 15px;
    line-height: 1.5;
}

.store-access {
    line-height: 1.6;
    margin-top: 3rem;
}


/* ======================================
   2. Responsive Design (Tablet: 769px - 1024px)
   ====================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-wrap {
        width: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

        .procell-logo {
        width: 12rem;
    }

    .hero-wrap::before {
        /* content: ''; */
        /* display: block; */
        /* width: 1px; */
        /* height: 60%; */
        /* background-color: #fff; */
        /* margin-right: 20px; */
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
        color: #fff;
    }

    .hero-title img {
        max-width: 150px;
        height: auto;
    }

    .hero-grid {
        height: 60vh;
        min-height: 500px;
    }

    .hero-item img {
        object-fit: cover;
    }

    .hero-item--right img {
        animation: none !important;
    }

    .introduction {
        padding: 80px 0;
    }

    .intro-catchcopy {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .intro-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .news {
        padding: 80px 0;
    }

    .news h2 {
        font-size: 36px;
    }

    .news-item {
        padding: 15px 0;
    }

    .about {
        padding: 80px 0;
    }

    .message {
        padding: 80px 0;
    }

    .message-card h2 {
        font-size: 20px;
        line-height: 1.5;
    }

    .case-studies {
        padding: 80px 0;
    }

    .cases-swiper {
        height: 300px;
        overflow: hidden !important;
    }

    .case-slide-image {
        object-fit: cover;
    }

    .salon-info {
        padding: 80px 0;
    }

    .store {
        margin-bottom: 30px;
    }

    .store-image {
        height: 280px;
    }
}

/* ======================================
   2. Responsive Design (SP: 768px以下)
   ====================================== */

@media (max-width: 768px) {
nav.header.header-visible {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

    
    /* ★★★ SP版 Hero Grid 修正版 - 画像表示問題解決 ★★★ */
    .hero-grid {
        position: relative;
        width: 100%;
        min-height: 70vw;
        border: none;
        opacity: 1 !important;           /* ★追加:強制的に表示 */
        filter: blur(0) !important;      /* ★追加:ブラーを無効化 */
        animation: none !important;      /* ★追加:アニメーションを完全に無効化 */
        transform: translateY(0) !important; /* ★追加:変形をリセット */
    }

    .hero-item {
        width: 100% !important;
        height: auto;
        border: none;
        margin-bottom: 0;
        position: relative;
        overflow: hidden;
        opacity: 1 !important;           /* ★追加:強制的に表示 */
    }

    .hero-item.hero-item--left-top {
        width: 100% !important;
        height: 35vw !important;
        margin-bottom: 0;
        opacity: 1 !important;           /* ★追加 */
    }

    .hero-item.hero-item--left-bottom {
        width: 100% !important;
        height: 35vw !important;
        margin-bottom: 0;
        opacity: 1 !important;           /* ★追加 */
    }

    .hero-item.hero-item--right {
                   /* ★追加 */
    }

    .hero-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block;
        opacity: 1 !important;           /* ★追加:強制的に表示 */
        filter: blur(0) !important;      /* ★追加:ブラーを無効化 */
        animation: none !important;      /* ★追加:アニメーションを完全に無効化 */
    }

    /* Introduction */
    .introduction {
        padding: 24vw 0 31vw 0;
    }
    .introduction::after {
        bottom: 20vw;
        right: -16vw;
        width: 40vw;
        height: 40vw;
    }
    .introduction::before {
        width: 50vw;
        height: 50vw;
        top: 0vw;
        left: -10vw;
    }
    .intro-catchcopy {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .intro-text {
        font-size: 16px;
        line-height: 1.8;
    }

    /* News */
    .news {
        padding: 60px 0;
    }
    .news h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    .subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .news-item {
        grid-template-columns: 1fr;
        padding: 10px 0;
        margin-bottom: 0;
        gap: 0px;
        border-bottom: 1px solid #1292ad;
    }
    .news-item time {
        font-size: 14px;
    }
    .news-item h3 {
        font-size: 15px;
        border-left: inherit;
        padding-left: 0;
        line-height: 1.5em;
    }
    .news-item .btn-more {
        display: none;
    }
    .btn-more-archive {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    /* About */
    .about {
        padding: 60px 0;
    }
    .about-top {
        margin-bottom: 50px;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        display: block;
        text-align: center;
    }
    .about-logo {
        margin-bottom: 20px;
        width: inherit;
    }
    .about-text {
        width: 100%;
        text-align: left;
    }
    .procell-logo {
        width: 37vw;
    }
    .about p {
        line-height: 1.8;
        margin-bottom: 15px;
        font-size: 4.1vw !important;
    }
    .about-buttons {
        grid-template-columns: 1fr;
        gap: 31px;
    }
    .about-buttons .btn {
        padding: 3vw 5vw;
        min-height: inherit;
        font-size: 3.6vw !important;
    }
    .btn-content {
        gap: 0;
    }
    .btn-content span.btn-title {
    font-size: 3.6vw;
}
    .about-feature {
        padding: 20px;
        margin: 20px 0;
    }

    /* Message */
    .message {
        padding: 60px 0;
    }
    .message-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
        margin-bottom: 0;
    }
    .message-container:before {
        height: 90%;
    }
    .message-right {
        position: absolute;
        width: 33vw;
        right: 6vw;
        bottom: -14vw;
    }
    .message-card h2 {
        font-size: 4.4vw !important;
        margin-bottom: 25px;
        text-align: left;
        line-height: 1.3em;
    }

    .message-info {
    line-height: 1.7em;
}
    .message-image {
        max-width: 200px;
    }
    .message-content {
        padding: 0px 0px;
        margin-top: 10vw;
    }
    .message-content p {
        font-size: 4.1vw;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    /* Case Studies SP */
    .case-studies-bg {
        padding: 60px 0;
    }
    .case-studies-bg:before {
        width: 100%;
    }
    .case-studies h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    a.c-btn-template {
    }
    .salon-name {
        margin-bottom: 0;
    }
    .message-title {
        margin: 0;
    }
    .message-author {
        margin: 0;
    }

    /* SP版でも全幅設定を適用 */
    .cases-swiper {
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        left: auto !important;
        height: auto;
        padding-bottom: 20px;
        margin-bottom: 30px;
        overflow: hidden !important;
    }
    .swiper-wrapper {
        width: 100%;
    }
    .swiper-slide {
        aspect-ratio: 4 / 3;
        max-height: 200px;
    }
    .case-slide-image {
        /* filter: blur(2px); */
    }

    .case-slide-link {
    height: 36vw;
}

    
    .case-controls {
        gap: 20px !important;
        margin-bottom: 30px;
    }
    .case-controls .swiper-button-prev,
    .case-controls .swiper-button-next {
        width: 45px !important;
        height: 45px !important;
        flex-shrink: 0;
        padding: 0 !important;
        margin: 0 !important;
    }
    .case-controls .swiper-button-prev::after,
    .case-controls .swiper-button-next::after {
        font-size: 28px !important;
    }
    .case-controls .swiper-pagination {
        margin: 0 !important;
        gap: 4px !important;
    }
    .case-controls .swiper-pagination-bullet {
        width: 4vw !important;
        height: 2px !important;
    }
    .contact-wrap {
        /* padding: 20px 20px; */
        margin: 4rem 0 0rem 0;
    }

    /* Salon Info SP */
    .salon-info {
        padding: 60px 20px;
    }

    .salon-info h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .stores {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .store-content {
        padding: 3.9vw;
    }

    .store h3 {
        font-size: 4.5vw;
        border-left: 0;
        padding-left: 0;
    }

    .store-address {
        font-size: 4.4vw;
        margin-bottom: 8px;
    }

    .store-detail {
        margin-bottom: 10px;
        margin-top: 0;
        font-size: 4.5vw;
    }

    .store-access {
        font-size: 4.2vw;
    }

    .salon-info .wrap.wrap03 {
        width: 100%;
    }
}


@media (max-width: 768px) {
    /* ===== Hero Section SP版 ===== */
    .hero-grid {
        position: relative;
        width: 100%;
        min-height: unset !important;
        border: none;
        opacity: 1 !important;
        filter: blur(0) !important;
        animation: none !important;
        transform: translateY(0) !important;
        overflow: hidden;
    }

    .hero-item {
        width: 100% !important;
        /* height: 35vw !important; */
        border: none;
        margin-bottom: 0;
        position: relative;
        overflow: hidden;
        opacity: 1 !important;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }

    .hero-item.hero-item--left-top {
        width: 100% !important;
        height: 35vw !important;
        margin-bottom: 0;
        opacity: 1 !important;
    }

    .hero-item.hero-item--left-bottom {
        width: 100% !important;
        height: 35vw !important;
        margin-bottom: 0;
        opacity: 1 !important;
    }

    .hero-item.hero-item--right {
        position: relative;
        width: 100% !important;
        top: auto;
        right: auto;
        opacity: 1 !important;
    }

    .hero-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        opacity: 1 !important;
        filter: blur(0) !important;
        animation: none !important;
        transform: none !important;
    }

    /* 以下、他のセクション... */
}

@media (max-width: 768px) {
    /* ===== Hero Section SP版 ===== */
    .hero-grid {
        position: relative;
        width: 100%;
        height: 69vw;
        border: none;
        opacity: 1 !important;
        filter: blur(0) !important;
        animation: none !important;
        transform: translateY(0) !important;
        overflow: hidden;
    
    }

    .hero-item {
        width: 100% !important;
        border: none;
        margin-bottom: 0;
        position: relative;
        overflow: hidden;
        opacity: 1 !important;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }

    .hero-item.hero-item--left-top {
        width: 100% !important;
        height: 35vw !important;
        margin-bottom: 0;
        opacity: 1 !important;
    }

    .hero-item.hero-item--left-bottom {
        width: 100% !important;
        height: 35vw !important;
        margin-bottom: 0;
        opacity: 1 !important;
    }

    .hero-item.hero-item--right {
        position: relative;
        width: 100% !important;
        top: auto;
        right: auto;
        opacity: 1 !important;
    }

    .hero-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        opacity: 1 !important;
        filter: blur(0) !important;
        animation: none !important;
        transform: none !important;
    }

    /* 以下、他のセクション... */
}
