@charset "UTF-8";

/*!
Theme Name: salondemirror
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: salondemirror
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

salondemirror is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/* ========================================
   Color & Typography Variables
   ======================================== */
:root {
    /* Colors */
    --unnamed-color-128cadfd: #128CADFD;
    --unnamed-color-fcfcff: #FCFCFF;
    --unnamed-color-7c6788: #7C6788;
    --unnamed-color-b397c2: #B397C2;
    --unnamed-color-7ebe53: #7EBE53;
    --unnamed-color-2e2e2e: #2E2E2E;
    --unnamed-color-1b533b: #1B533B;
    --unnamed-color-ffffff: #FFFFFF;
    --unnamed-color-3d3d3d: #3D3D3D;
    --unnamed-color-246e84: #246E84;
    --unnamed-color-246e84: #4b90e2;

    /* Font/text values */
    --unnamed-font-family-zenoldmincho-bold: 'Zen Old Mincho', serif;
    --unnamed-font-family-source-han-sans-jp: 'Noto Sans JP', sans-serif;

    /* Additional font metrics (ensure these live inside :root) */
    --unnamed-font-style-normal: normal;
    --unnamed-font-weight-normal: normal;
    --unnamed-font-size-13: 13px;
    --unnamed-font-size-16: 16px;
    --unnamed-font-size-30: 30px;
    --unnamed-font-size-32: 32px;
    --unnamed-character-spacing-0: 0px;
    --unnamed-line-spacing-34: 34px;
    --unnamed-line-spacing-44: 44px;
}

/* ======================================
   Reusable Button Template (Arrow Animation)
   ====================================== */

.c-btn-template {
    margin-top: 5rem !important;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    padding: 18px 30px;
    border: 1px solid var(--unnamed-color-128cadfd);
    background-color: transparent;
    color: var(--unnamed-color-128cadfd);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.c-btn-template__text {
    font-size: 16px;
    letter-spacing: 0.1em;
}

.c-btn-template__arrow {
    position: relative;
    width: 60px;
    height: 20px;
    display: flex;
    align-items: center;
}

.c-btn-template__arrow::before {
    content: '';
    position: absolute;
    right: 0;
    width: 45px;
    height: 1px;
    background-color: var(--unnamed-color-128cadfd);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-btn-template__arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 75%;
    width: 12px;
    height: 1px;
    background-color: var(--unnamed-color-128cadfd);
    transform: translateY(-5px) rotate(45deg);
    transform-origin: right center;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.c-btn-template:hover {
    background-color: rgba(18, 140, 253, 0.03);
}

.c-btn-template:hover .c-btn-template__arrow::before {
    width: 65px;
}

.c-btn-template:hover .c-btn-template__arrow::after {
    transition: transform 0.2s cubic-bezier(0.4,0,0.2,1);
}


/* Character Styles */
.unnamed-character-style-1 {
    font-family: var(--unnamed-font-family-source-han-sans-jp);
    font-style: var(--unnamed-font-style-normal);
    font-weight: var(--unnamed-font-weight-normal);
    font-size: var(--unnamed-font-size-16);
    line-height: var(--unnamed-line-spacing-34);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-3d3d3d);
}

.unnamed-character-style-2 {
    font-family: var(--unnamed-font-family-source-han-sans-jp);
    font-style: var(--unnamed-font-style-normal);
    font-weight: var(--unnamed-font-weight-normal);
    font-size: var(--unnamed-font-size-13);
    line-height: var(--unnamed-line-spacing-34);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-ffffff);
}

.unnamed-character-style-3 {
    font-family: var(--unnamed-font-family-source-han-sans-jp);
    font-style: var(--unnamed-font-style-normal);
    font-weight: var(--unnamed-font-weight-normal);
    font-size: var(--unnamed-font-size-30);
    line-height: var(--unnamed-line-spacing-34);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-246e84);
}

.unnamed-character-style-4 {
    font-family: var(--unnamed-font-family-zenoldmincho-bold);
    font-style: var(--unnamed-font-style-normal);
    font-weight: var(--unnamed-font-weight-normal);
    font-size: var(--unnamed-font-size-32);
    line-height: var(--unnamed-line-spacing-44);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-246e84);
}

/* ======================================
   Reset & Base Styles
   ====================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

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

/* ======================================
   Layout / Wrapper
   ====================================== */

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

.wrap04 {
    width: 750px;
        margin: 0 auto;
}

.wrap02 {
    width: 95%;
    max-width: inherit;
}

.wrap03 {
    width: 880px;
    max-width: inherit;
    margin: auto;
}

.sp {
    display: none !important;
}

/* ======================================
   Navigation Header
   ====================================== */

.header {
    background-color: #ffffff8a;
    box-shadow: none;
    /* position: sticky; */
    top: 0px;
    z-index: 100;
    position: fixed;
    width: 100%;
    transform: translate(0px, -100%);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.1s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
    /* backdrop-filter: blur(6px); */
    -webkit-backdrop-filter: blur(6px);
}

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

nav.header.header-visible {
    transform: translate(0px, 0%);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.1s cubic-bezier(0.4,0,0.2,1);
}


.header-wrap {
display: flex;
    align-items: center;
    height: 70px;
    width: 100%;
    max-width: inherit;
    padding: 0;
    margin: 0;
    padding-right: 2%;
    box-shadow: none;
    transition: box-shadow 0.4s ease;
}

nav.header.header-visible.header-scrolled .wrap.header-wrap {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-logo {
    margin-right: auto;
    margin-left: 2%;
}

.header-logo img {
    height: 0.8rem;
    width: auto;
}

.header-social {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease;
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-icon:hover {
    opacity: 0.7;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-bottom: 0;
}

.nav-menu a {
        position: relative;
    font-size: 12px !important;
    font-weight: 500;
    transition: color 0.3s ease;
}


.nav-menu a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #118cac;
    bottom: -7px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    opacity: 0.7;
    pointer-events: none;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    transform: scale(1, 1);
}

.nav-menu a:hover {
    color: #999;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    display: flex;
    gap: 2em;
}

/* ======================================
   Hero Area
   ====================================== */

.hero {
    position: relative;
    min-height: 600px;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 40%, transparent 100%);
}

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

.hero-wrap {
    position: relative;
    z-index: 2;
    grid-column: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    padding-left: 0;
    color: #fff;
    text-align: left;
    width: 30%;
}

.hero-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(255 255 255 / 0%);
    z-index: -1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-logo {
    max-width: 120px;
    margin: 0 0 30px 0;
    opacity: 0;
}

.hero-title {
    max-width: 140px;
    margin: 0 0 30px 0;
    width: 100%;
    height: auto;
}

.hero h1 {
    display: none;
}

.catchcopy {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0;
}

.subtext {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    max-width: 100%;
    margin: 0;
    opacity: 0;
}

/* ======================================
   Footer
   ====================================== */

footer {
    background-color: #138dad;
    color: #ffffffa3;
    padding: 60px 0 30px;
}

footer h1,
footer h2,
footer h3 {
    color: #fff;
    font-weight: 400;
}

.footer-header {
    text-align: center;
    margin-bottom: 50px;
}

.footer-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-logo {
    text-decoration: none;
    display: inline-block;
}

.footer-logo img {
    height: 90px;
    width: auto;
    display: block;
}

.footer-logo h1 {
    font-size: 32px;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 300;
}

.footer-logo p {
    font-size: 13px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    width: 600px;
    margin: auto;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-icon {
    color: #ffffffa3;
    font-size: 12px;
    /* margin-top: 2px; */
    flex-shrink: 0;
}

.info-label {
    font-size: 12px;
    /* color: rgba(255, 255, 255, 0.7); */
    margin: 0;
}

.info-text {
    font-size: 14px;
    color: #ffffffa3;
    margin: 3px 0 0;
    line-height: 1.6;
}

.footer-nav {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 40px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    font-size: 14px;
    margin: 0 0 20px;
    color: #ffffffa3;
    font-weight: 100;
    margin-left: 0 !important;
    padding-left: 0 !important;
    border-left: 0;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    font-size: 13px;
    color: rgb(255 255 255 / 65%);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav-list a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 3rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.social-link:hover {
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: rgb(255 255 255);
    padding-top: 20px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
    letter-spacing: 1.4px;
}

/* ======================================
   Responsive Design (768px以下)
   ====================================== */

@media (max-width: 768px) {
    .sp {
        display: block !important;
    }

    .wrap04 {
        max-width: 100%;
        width: 90%;
    }
    
    .wrap {
        padding: 0;
        width: 90%;
    }

    .pc {
        display: none !important;
    }

    .wrap.header-wrap {
        width: 100%;
        position: relative;
        padding-right: 3vw;
    }

    .c-btn-template__text {
        font-size: 3.3vw;
    }

    a.c-btn-template {
        padding: 3vw 5vw;
    }

    .contact-wrap {
        max-width: 100%;
    }

    .wrap03 {max-width: 100%;}

    .header-logo img {
        height: 0.95rem;
    }

    a.header-logo {
        margin-left: 1.4rem;
        position: relative;
        z-index: 999999;
    }

    a.header-logo.active img {
        /* filter: brightness(0) invert(1) !important; */
        /* background: azure; */
        /* width: 100vw; */
    }

    /* Navigation */
    .hamburger {
        display: flex;
        z-index: 9999999999;
        top: -0.5vw;
        position: relative;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(1.5px, -3px);
    }

    .header-social {
        display: none;
    }

    .header {
        position: fixed;
        width: 100%;
        top: 0px;
        z-index: 999999;
        background-color: #ffffff8a;
        /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
        transform: translate(0px, -100%);
        transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.1s cubic-bezier(0.4,0,0.2,1);
    }

    nav.header.header-visible {
        transform: translate(0px, 0%);
    }

    .hamburger span {
        background-color: #000000;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-color: rgba(0, 0, 0, 0.5); */
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* ブラー対応時は背景をより透明に */
    @supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
        .mobile-menu-wrapper {
            background: rgba(255, 255, 255, 0.75);
        }
    }
    
    /* Mobile Menu Wrapper */
    .mobile-menu-wrapper {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        
        /* フォールバック：ブラー非対応ブラウザ用 */
        background: rgb(255 255 255 / 95%);
        
        /* ブラー対応ブラウザ用 */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .mobile-menu-wrapper.active {
        transform: translateX(0);
        
        /* ★修正：ここでblur(6px)と書くと上書きされて弱くなるので削除するか、数値合わせる */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* ロゴをメニューオープン時にホワイト化 */
    .mobile-menu-wrapper.active ~ .header-logo img,
    .hamburger.active ~ .header-logo img {
        filter: brightness(0) invert(1);
    }

    /* Navigation Menu Styles */
    .nav-menu {
        position: static;
        width: 100%;
        height: auto;
        background-color: transparent;
        flex-direction: column;
        gap: 0;
        list-style: none;
        max-height: none;
        overflow: visible;
        transition: none;
        padding: 60px 0 20px 0;
        margin: 0;
    }

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

    .menu-globalnavi-container {display: none;}

    .mobile-menu-wrapper.active .menu-globalnavi-container {
        display: block;
        padding-top: 3rem;
    }

    .mobile-menu-wrapper .nav-menu {
        padding: 60px 20px 20px 20px;
    }

    .nav-menu.active {
        max-height: 500px;
        padding-left: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-wrapper .nav-menu li {
        border-bottom: 1px solid rgb(124 124 124 / 20%);
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        color: #333;
    }

    .mobile-menu-wrapper .nav-menu a {
        color: #000000;
        font-size: 16px;
        font-weight: 500;
        padding: 16px 0;
        position: relative;
        transition: all 0.3s ease;
    }

    .mobile-menu-wrapper .nav-menu a:hover {
        color: #fff;
        padding-left: 15px;
    }

    .mobile-menu-wrapper .nav-menu a::after {
        display: none;
    }

    /* Hero Area */
    .hero {
        min-height: 69vw;
        grid-template-columns: 1fr;
    }

    .hero-wrap {
        grid-column: 1;
        padding: 0;
        align-items: center;
        text-align: center;
        width: 32%;
        right: 0;
        position: absolute;
        height: inherit !important;
    }

    .hero-title {
        max-width: 19vw;
    }

    .hero-logo {
        max-width: 80px;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .catchcopy {
        font-size: 18px;
    }

    .subtext {
        font-size: 14px;
    }

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

    .subtext {
        font-size: 14px;
    }

    /* Footer */
    footer {
        padding: 40px 0 20px;
        overflow: hidden;
    }

    .footer-header {
        margin-bottom: 40px;
        /* width: 80%; */
        margin: auto;
    }

    .footer-logo img {
        height: 20vw;
        margin-bottom: 3rem;
    }

    .footer-logo h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .footer-logo p {
        font-size: 11px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        width: 100%;
    }

    .footer-nav-list li a {
        font-size: 4vw;
    }

    span.info-icon {
        /* display: none; */
        top: 1.1vw;
        position: relative;
    }

    .footer-info {
        gap: 15px;
    }

    .info-item {
        gap: 10px;
    }

    .info-label {
        font-size: 4vw;
    }

    .info-text {
        font-size: 4vw;
        font-weight: normal !important;
    }

    .footer-nav {
        /* grid-template-columns: 1fr 1fr; */
        gap: 30px;
        line-height: 1.5em;
    }

    .footer-nav-title {
        font-size: 4vw;
        margin-bottom: 15px;
        margin-left: 0 !important;
        padding-left: 0 !important;
        font-weight: normal;
    }

    .footer-nav-list {
        font-size: 0vw;
        gap: 1em !important;
    }

    .footer-nav-list a {
        font-size: 12px;
    }

    .footer-social {
        gap: 25px;
        margin-bottom: 25px;
    }

    .social-link {
        width: 28px;
        height: 28px;
    }

    .copyright {
        font-size: 11px;
        padding-top: 15px;
    }
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
    text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 * `fieldset` elements in all browsers.
 */
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/* Interactive
     ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Misc
     ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
    color: #404040;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}


h1.title {
    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: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-128cadfd);
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}


p {
    margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
    background: #fff;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

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

figure {
    margin: 1em 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

/* Links
--------------------------------------------- */
a {
    /* color: #4169e1; */
}

a:visited {
    /* color: #800080; */
}

a:hover,
a:focus,
a:active {
    /* color: #191970; */
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
    padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}

select {
    border: 1px solid #ccc;
}

textarea {
    width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.hero-titles h2.title {
    text-align: center;
    font: normal normal normal 32px / 44px ZenOldMincho-Bold;
    letter-spacing: 0px;
    color: #7EBE53;
    opacity: 1;
    margin-bottom: 0;
}

 .hero-titles p.subtitle {
    margin-top: 0;
    position: relative;
    /* color: #7c6788; */
    font-size: 16px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    display: inline-block;
}



.hero-titles {
    text-align: center;
}
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
    display: block;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    display: block;
    left: auto;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

@media screen and (min-width: 37.5em) {

    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: flex;
    }
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
    margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    text-align: end;
    flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
    display: block;
}

main#main {
    padding-bottom: 5rem;
    padding-top: 3rem;
}

.post,
.page {
    /* margin: 0 0 1.5em; */
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
    margin: 0 0 1.5em;
}

.widget select {
    max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {

    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}


  .contact-btn {
        padding: 16px 30px;
        font-size: 16px;
    }
.contact-btn:hover {
    /* transform: translateX(10px); */
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    width: 100%;
}


        
}

main#main {
    margin-top: 3rem;
    padding-bottom: 7rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 70px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
}


.contact-wrap {
    padding: 0px 0;
    background-color: var(--unnamed-color-128cadfd);
    display: flex;
    align-items: center;
    width: 28rem;
    margin: auto;
    justify-content: space-between;
    margin-top: 6rem;
    margin-bottom: 6rem;
}


.btn-arrow {
    margin-left: 10px;
    font-size: 20px;
}

/* Arrow for btn-scalp using pseudo-elements on inner span.arrow */
.btn .arrow {
    display: inline-block;
    width: 54px;
    height: 14px;
    position: relative;
    margin-left: 12px;
    flex-shrink: 0;
}
.btn .arrow::before,
.btn .arrow::after {
    content: '';
    position: absolute;
    /* left: 0; */
    top: 50%;
    width: 52px;
    height: 1px;
    background-color: #fff;
    transform-origin: center;
    content: '';
    position: absolute;
    right: 0;
    width: 45px;
    height: 1px;
    /* background-color: var(--unnamed-color-128cadfd); */
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn .arrow::before {
    transform: translateY(-50%) rotate(45deg);
    content: '';
    position: absolute;
    right: 0px;
    top: 83%;
    width: 12px;
    height: 1px;
    background-color: #fffffffd;
    transform: translateY(-5px) rotate(45deg);
    transform-origin: right center;
}




.btn:hover .arrow::after {
    background-color: #fff;
    content: '';
    display: block;
    width: 90px;
    height: 1px;
    right: 0px;
    background-color: #fff;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
    flex-shrink: 0;
    position: absolute;
    /* box-shadow: 42px -4px 0 -2px #fff, 42px 4px 0 -2px #fff; */
}

/* ========================================
   Heading Styles
   ======================================== */

/* H2 - セクション見出し */
h2 {
    /* background-color: #E8E3F0; */
    /* border-left: 5px solid #7C6788; */
    /* padding: 20px 24px; */
    /* margin: 40px 0 30px; */
    /* font-size: 24px; */
    /* font-weight: bold; */
    /* color: #7C6788; */
    /* font-family: var(--unnamed-font-family-source-han-sans-jp); */
    /* line-height: 1.6; */
}

h2.border.blue {
    background: #daecf3;
    border-color: #138dad;
    color: #138dad;
}

h2.border {
    font-size: 27px;
    text-align: center;
    padding: 11px 33px;
    background-color: #e8f5e9;
    border-left: 2px solid #66cc00;
    border-right: 2px solid #66cc00;
    font-weight: 500;
    color: #1a533b;
    display: inline-block;
    margin: auto;
    margin-bottom: 1rem;
}

/* H3 - 記事内小見出し */
h3 {
    border-left: 4px solid #128CADFD;
    padding-left: 16px;
    margin: 35px 0 20px;
    font-size: 20px;
    font-weight: bold;
    color: #2E2E2E;
    font-family: var(--unnamed-font-family-source-han-sans-jp);
    line-height: 1.6;
}

/* H4 - 記事内の細目見出し */
h4 {
    border-bottom: 2px solid #B397C2;
    padding-bottom: 12px;
    margin: 28px 0 16px;
    font-size: 18px;
    font-weight: bold;
    color: #3D3D3D;
    font-family: var(--unnamed-font-family-source-han-sans-jp);
    line-height: 1.6;
}

/* H5 - より細かい見出し */
h5 {
    margin: 24px 0 14px;
    font-size: 16px;
    font-weight: bold;
    color: #246E84;
    font-family: var(--unnamed-font-family-source-han-sans-jp);
    line-height: 1.6;
}

/* H6 - 最小見出し */
h6 {
    margin: 20px 0 12px;
    font-size: 15px;
    font-weight: bold;
    color: #7C6788;
    font-family: var(--unnamed-font-family-source-han-sans-jp);
    line-height: 1.6;
}


@media (max-width: 480px) {
    .contact-btn {
        width: 100%;
        padding: 15px 20px;
    }
                
    h2 {
        font-size: 5.5vw !important;
    }
}

/* ヘッダー初期状態（非表示） */
.header {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-40px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* 表示時アニメーション */
.header.header-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


/* ======================================
   Salon de Mirror - TOP Page Styles
   ====================================== */

/* ======================================
   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: 9vw;
}

.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;
    animation: blurFadeIn 1.2s ease-out forwards;
}

.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;
    animation: blurFadeIn 1.2s ease-out forwards;
}

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

.hero-item--left-top img {
    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-delay: 0.15s;
}

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

.hero-item--right img {
    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;
    animation: blurFadeIn 1.2s ease-out forwards;
}
@keyframes floatBubble1 {
    0% { transform: translate(0, 0) scale(1); }
    33% {
        transform: translate(20px, -30px) scale(1.05); }
    66% {
        transform: translate(-10px, 10px) scale(0.95); }
    100% {
    }

}

        /* ======================================
   Modal Image Styles
   ====================================== */
.modal-image {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.modal-content {
    position: relative;
    z-index: 10001;
    max-width: inherit;
    max-height: 94vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {width: 600px;height: auto;max-height: 94vh;object-fit: contain;display: block;}

.modal-close {
    position: absolute;
    top: -40px;
    /* right: 0; */
    transform: translate(280px, 0px);
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10002;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .modal-close {
        top: 0;
        /* right: 0; */
        font-size: 35px;
        transform: translate(45vw, 0px);
    }

    main#main {
        padding-top: 17vw;
    
    }
}




/* ======================================
   Responsive Design (Tablet: 769px - 1024px)
   ====================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .sp {
        display: none !important;
    }

    .wrap {
        padding: 0 30px;
        width: 100%;
    }

    .wrap02 {
        padding: 0 30px;
        width: 100%;
    }

    .wrap03 {
        padding: 0 30px;
        width: 100%;
    }

    .wrap04 {
        max-width: 90% !important;
        width: 95% !important;
        /* padding: 0 30px; */
    }

    .pc {
        display: block !important;
    }

    .c-btn-template {
        max-width: 380px;
        padding: 16px 28px;
    }

    .c-btn-template__text {
        font-size: 15px;
    }

    .contact-wrap {
        max-width: 100%;
    }

    a.c-btn-template {
        padding: 16px 28px;
    }


    .pricing-discount {
    margin-top: 3rem;
}
}
