@charset "utf-8";
/* CSS Document */

		:root {
            /* 現在のテーマ：ブラウン系 */
            --bg-main: #f5f4ef;
            --accent-main: #A08C7D;
            --accent-main-hover: #8A7667;
            --dark-bg: #EFEBE7;
            --text-heading: #5C524A;
            --text-body: #6B625B;
            --white: #FFFFFF;
            --border-light: #E0D9D3;
            --shadow-light: rgba(0, 0, 0, 0.05);
            --first-letter-color: #7D6B5C;
            --font-body: "Noto Sans JP", sans-serif;
          /* --font-heading-en: "Cormorant Garamond", serif;*/
            --font-heading-en: "begum", sans-serif;
            --font-heading-ja: "Marcellus", serif;
        }
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            color: var(--text-body);
            background-color: var(--bg-main);
            line-height: 1.8;
            font-size: 16px;
            overflow-x: hidden;
        }
        body.modal-open {
            overflow: hidden;
        }
		
		
		.pc{
			display: block;
		}
		
		.sp{
			display: none!important;
		}
		
		
        @media (max-width: 768px) {
		.pc{
			display: none!important;
		}
		
		.sp{
			display: block!important;
		}
		
        }
        
		
		
		
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading-ja);
            color: var(--text-heading);
            font-weight: 700;
            line-height: 1.4;
        }
        p {
            margin-bottom: 1em;
        }
        a {
            color: var(--accent-main);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--accent-main-hover);
        }
        img, video {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            vertical-align: middle;
            object-fit: cover;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
		
		.reasons-container{
			width: 90vw;
			max-width: 1400px;
			margin: auto;
        }
		

		
		
	
        .section {
            padding: 100px 0;
            overflow: hidden;
        }
		

		
        
		
		
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title .en {
    /*font-family: var(--font-heading-en);*/
    font-size: 3.5rem;
    font-family: "begum", sans-serif;
    display: block;
    margin-bottom: 0.1em;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--text-heading);
    line-height: 1.2;
        }
        .section-title .en::first-letter {
            color: var(--first-letter-color);
        }
        .section-title .ja {
            font-size: 0.9rem;
            color: var(--text-body);
            font-family: var(--font-body);
            letter-spacing: 1px;
            font-weight: 700;
        }
        .site-header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            padding:1rem;
            /*background: transparent;*/
            transition: background-color 0.4s ease-out, box-shadow 0.4s ease-out, padding 0.4s ease-out;
            z-index: 1000;
            display: flex!important;
            justify-content: space-between;
            align-items: center;
			/*background-color: #ffffff96 !important;*/
        }
		
		
		@media (max-width: 768px) {
        .site-header {
            padding:0.8rem;
			
        }
		}
		.site-header.scrolled {
            /* スマホでスクロール時も背景とシャドウを維持し、PCと同じ見た目にする */
            backdrop-filter: blur(10px); 
            box-shadow: 0 2px 10px var(--shadow-light);
             background: none; 
            /* backdrop-filter: none; を削除 */
            /* box-shadow: none; を削除 */
        }
			
			
		.site-header:not(.scrolled) .bar {	
			background-color: var(--white) !important;
		}		
			
		.site-header:not(.scrolled) .site-logo img {		
			filter: invert(1) grayscale(100%); /* ロゴ画像を白くするフィルター */
        }
		
        .site-header.scrolled .site-logo a {
            color: var(--text-heading)!important;
        }	
			
		.site-header.scrolled .bar {
			background-color: var(--text-heading) !important; 
			}
			
		.site-header.scrolled .site-logo img {
		     filter: brightness(0) saturate(100%) invert(30%) sepia(6%) saturate(1059%) hue-rotate(344deg) brightness(100%) contrast(90%);
	    }
			

		
        .site-header.scrolled {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px var(--shadow-light);
            padding: 15px 40px;
        }
		
		@media (max-width: 768px) {
        .site-header.scrolled {
            background: none;
            backdrop-filter: none;
            box-shadow: none;
        } }		
		
		
		
		.site-logo{
			display: flex;
			flex-direction: column;
			width: 150px;
			line-height: 20px;
		}
		
		@media (max-width: 768px) {
        .site-logo{
			line-height: 12px;
		} }	
		
		
		
		.site-logo img{
			width: 120px;
		}
		
		@media (max-width: 768px) {
        .site-logo img{
			width: 100px;
		}}		
		
		
		.site-logo-txt{
		    padding-left: 6px;
			font-size: 15px;
		}
		
        .site-logo a {
            /*font-family: var(--font-heading-en);*/
            font-size: 0.9rem;
            /*color: var(--white);*/
            font-weight: 400;
            transition: color 0.3s ease;
			 color: var(--white);
        }
		
		
		
		@media (max-width: 768px) {
         .site-logo a {
            font-size: 0.7rem;
			 color: var(--white);
        } }	
		

        .main-nav {
            /* PCでは表示 */
            display: none; 
        }
        @media (min-width: 769px) {
             .main-nav {
                 display: block;
             }
             .main-nav ul {
                 list-style: none;
                 gap: 15px 30px;
                 align-items: center;
                 list-style: none;
                 display: flex;
                 flex-wrap: wrap;
                 justify-content: flex-end;
             }
        }
        
        .main-nav a {
            color: var(--white);
            font-weight: 700;
            font-size: 0.9rem;
            position: relative;
            padding-bottom: 5px;
        }
        .site-header.scrolled .main-nav a {
            color: var(--text-body);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-main);
            transition: width 0.3s ease-out;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .btn {
            display: inline-block;
            background-color: var(--accent-main);
            color: var(--white)!important;
            padding: 15px 40px!important;
            border-radius: 50px;
            transition: background-color 0.3s, opacity 0.3s;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-weight: 700;
            text-align: center;
			font-size: 16px;
        }
		
		@media (min-width: 769px) {
        .solution-item-image video {
             /* padding: 8px 40px !important;*/
        } }	
		
        .btn:hover {
            background-color: var(--accent-main-hover);
            color: var(--white);
        }
        .btn-center {
            width: auto;
            min-width: 280px;
        }
        .btn.btn-line { background-color: #06C755; }
        .btn.btn-line:hover { background-color: #05a546; }
        .btn.btn-instagram { 
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
        }
        .btn.btn-instagram:hover { opacity: 0.9; }
        
        /* --- FVセクション：画像切り替え対応 --- */
        .first-view {
            height: auto;
            min-height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
        }
        .fv-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        .fv-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 2s ease-in-out, transform 7s ease-out;
        }
        .fv-slide.active {
            opacity: 1;
            transform: scale(1);
        }
		
		#fv-slide-1{
			background-image: url("../images/top-pc-bg01.webp");
		}
		#fv-slide-2{
			background-image: url("../images/top-pc-bg02.webp");
		}
		#fv-slide-3{
			background-image: url("../images/top-pc-bg03.webp");
		}
		
		@media (max-width: 768px) {
        #fv-slide-1{
			background-image: url("../images/top-sp-bg01.webp");
		} 
        #fv-slide-2{
			background-image: url("../images/top-sp-bg02.webp");
		} 
        #fv-slide-3{
			background-image: url("../images/top-sp-bg03.webp");
		} 
		}	
		

		
        .first-view-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 2;
        }
        .first-view-content {
            position: relative;
            z-index: 3;
        }
		
		.first-view-content img{
			border-radius: unset;
		}
        .first-view h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 0.5em;
            line-height: 1.4;
            font-family: var(--font-heading-ja);
        }
        .first-view p {
            font-size: 1.2rem;
            font-family: var(--font-body);
            margin-bottom: 1.5em;
        }
        .grid-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
		
		@media (max-width: 768px) {
        .grid-layout {
            gap: 30px;
        } }	
		
        .section:nth-child(even) .grid-layout .grid-item:first-child {
            order: 2;
        }
        .grid-item h2 {
            font-size: 2.2rem;
            margin-bottom: 1em;
        }
		
		h2 small{
			font-size: 1rem;
			display: block;
			margin-top: 1rem;
			margin-bottom: 1rem;
		}
		
        .grid-item p {
            font-size: 1rem;
        }
        .grid-item ul {
            list-style: none;
            margin-top: 20px;
        }
        .grid-item ul li {
            background: var(--white);
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 10px;
            font-weight: 700;
            border-left: 5px solid var(--dark-bg);
        }

		
		
		/*----メッセージ----*/
		
		#sympathy{
			padding: 50px 0;
		}
		
        .sympathy-after-wrapper {
            position: relative;
            padding: 110px 0;
            color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            background: url("../images/sympathy-after-wrapper-pc.webp") center/cover;
            background-attachment: fixed;
        }
		
		@media (max-width: 768px) {
        .sympathy-after-wrapper {
            background: url("../images/sympathy-after-wrapper-sp.webp") center/cover;
        } }
		
		
        .sympathy-after-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1;
        }
        .sympathy-after-wrapper .container {
            position: relative;
            z-index: 2;
        }
        .sympathy-after-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 2rem;
            color: var(--white);
		    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.7));
        }
		
		@media (max-width: 768px) {
         .sympathy-after-title {
            margin-bottom: 30px;
        } }	
		
        .solution-list-new {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            text-align: center;
        }
        .solution-item-new {
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.2);
            overflow: hidden;
            padding: 0;
        }
		
        .solution-item-image video {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 0;
        }
		
		
		
		@media (max-width: 768px) {
        .solution-item-image video {
            height:55vw;;
        } }	
		
        .solution-item-image img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 0;
        }
		
		
		@media (max-width: 768px) {
        .solution-item-image img  {
            height: 55vw;
        } }			
		
        .solution-item-text {
			position: relative;
            padding: 30px;
		    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.7));
			background-color: #0000007a;
			text-align: left;
			height: 100%;
        }
		
        .solution-item-new .solution-number {
    font-size: 2.7rem;
    font-weight: 500;
    font-style: normal;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1;
    opacity: 0.4;
    position: absolute;
    top: 8%;
    left: 72%;
    transform: translate(-50%, -50%) rotate(7deg);
			pointer-events: none;
			z-index: 0;
			white-space: nowrap;
			font-family: "bianca", sans-serif;
			font-weight: 400;
			font-style: normal;
        }
        .solution-item-new strong {
            display: block;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--white);
            font-family: 游明朝, YuMincho, serif;
            margin-bottom: 15px;
		    line-height: 3rem;
			/*margin-top: 1rem;*/
        }
        .solution-item-new span {
            font-size: 0.95rem;
            line-height: 1.8;
            display: block;
            color: rgba(255,255,255,0.9);
        }
        
		
		
        .solution-number{
            position:relative;
        }
       /* .solution-number:after{
			content: "|";
			font-size: 2.2rem;
			top: -0.3rem;
			position: relative;
			left: 1rem;
        }
		
		
		
		
        /* --- 「選ばれる理由」セクションのスタイル修正（画像配置の変更） --- */
        #reasons.section {
            background-color: var(--bg-main);
            position: relative;
            /* 背景画像の設定 */
            background-image: url('https://placehold.co/1200x800/EFEBE7/5C524A/blur=5');
            background-size: cover;
            background-position: center;
			padding-top: 20px;
        }
        .reasons-skew-container {
            display: flex;
            flex-direction: column;
            gap: 120px; /* アイテム間の間隔を調整 */
            position: relative;
            z-index: 10;
        }
		
		

		.reason-skew-item {
        display: flex;
        gap: 0;
        align-items: center;
        position: relative;
		}
			
		
		
        @media (min-width: 769px) {			
		.reason-skew-item-reverse {
        flex-direction: row-reverse;
		}}
		
		.border-bt{
			border-bottom: solid 1px;
		}
		
        
        /* 画像コンテナ */
        .reason-skew-image {
        position: relative;
        padding: 0;
        display: flex;
        align-items: center;
        height: auto;
        margin: 0;
        z-index: 10;
		width: 45vw;
        }
        
        .reason-skew-image img, .reason-skew-image video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        will-change: transform, opacity;
        transition: opacity 0.5s ease-out;
        }
        
        /* 小画像 (ダミーとして追加し、大画像に重ねる) */
        .reason-skew-image .small-image {
            display: block;
            width: 40%; 
            height: 40%;
            position: absolute;
            bottom: -20px; /* 下にずらす */
            right: 0; 
            z-index: 11; /* 大画像より手前 */
            border-radius: 8px;
            object-fit: cover;
            border: 5px solid var(--bg-main); /* 背景色と同じボーダーで重ね合わせを強調 */
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        /* ------------------ 英字縦書き装飾 ------------------ */
        .reason-skew-text-decoration {
            position: absolute;
            z-index: 5; 
            display: flex;
            flex-direction:column-reverse;
            align-items: flex-start;
            justify-content: flex-start;
            height: 100%;
            pointer-events: none;
            /*left: 45%; /* 中央の隙間に配置 */
        }
        .reason-skew-text-decoration .big-text {
			font-family: 'begum', sans-serif;
			font-size: 7rem;
			line-height: 0.8;
			font-weight: 700;
			color: #fff;
			opacity: 0.6;
			letter-spacing: 5px;
			position: relative;
        }
        .reason-skew-text-decoration .small-text {
            font-family: var(--font-body);
            font-size: 1.5rem;
            line-height: 1.5;
            font-weight: 700;
            color: #fff;
            opacity: 0.5;
			left: 0.5rem;
			position: relative;
        }

		.small-text :nth-child(even){
			left: -1rem;
		}
		
        @media (max-width: 768px) {
             .reason-skew-text-decoration { /*display: none;*/ }
			.reason-skew-text-decoration .big-text{font-size: 4.5rem;}
             .reason-skew-image {height: 300px; width: 90vw; margin: 0 auto 8vw;}
             .reason-skew-image img { width: 100%; position: relative; }
             .reason-skew-image .small-image { display: none; }
             
             /* スマホで横並び解除 */
             .reason-skew-item { grid-template-columns: 1fr; }
             .reason-skew-image { grid-column: 1 / -1; height: 300px; order: 1; }
             .reason-skew-content { grid-column: 1 / -1; order: 2; min-height: auto; }
             .reason-skew-item:nth-child(even) .reason-skew-image { grid-column: 1 / -1; }
             .reason-skew-item:nth-child(even) .reason-skew-image img { left: auto; right: auto; }
			.reason-skew-content h3{display: block;}
			.reason-skew-image h3{display:none; }
        }
        @media screen and (min-width: 768px) and (max-width: 1180px) {
			.reason-skew-content h3{display: none;}
			.reason-skew-text-decoration h3{display:block; }
			.reason-skew-image{ flex-direction: column;}
			.reason-skew-image h3{ margin-top: 2rem; font-size: 4vw;}
			.reason-skew-text-decoration {bottom: 15vw; width: 100%;}	
			.reason-skew-text-decoration .big-text{font-size: 6rem;}
        }	
        @media (min-width: 1181px) {
			.reason-skew-content h3{display: block;}
			.reason-skew-image h3{display:none; }
        }	
		
        /* テキストコンテンツ */
        .reason-skew-content {
			position: relative;
			z-index: 2;
			display: flex;
			flex-direction: column;
			justify-content: center;
			width: 90vw;
			margin: auto;
        }
		
        .right{
			right: 1rem;
			position: relative;
        }
		
        .pink{
			color: #ad7c7b;
        }
		
        @media (min-width: 769px) {	
        .reason-skew-content {
			width: 50%;
			padding: 0 0 0 50px;
			margin: 0;
        }}	
		
		
        
        /* 偶数番目の項目 (左右反転) */
        .reason-skew-item:nth-child(even) .reason-skew-image {
            grid-column: 2 / 3;
            justify-content: flex-end; /* 画像を右に寄せる */
        }
        .reason-skew-item:nth-child(even) .reason-skew-image img, .reason-skew-item:nth-child(even) .reason-skew-image video {
            left: auto;
            right: 0;
        }
        .reason-skew-item:nth-child(even) .reason-skew-image .small-image {
             left: 0; 
             right: auto;
        }
        .reason-skew-item:nth-child(even) .reason-skew-content {
            grid-column: 1 / 2;
            text-align: left;
        }
        .reason-skew-item:nth-child(even) .reason-skew-text-decoration {
            align-items: flex-end;
        }

        .reason-skew-content .reason-icon {
            font-size: 2.5rem;
            color: var(--accent-main);
            margin-bottom: 15px;
        }
        .reason-skew-content h3 {
            font-size: 2.8rem;
            margin-bottom: 2rem;
			line-height: 4.5rem;
            font-family: 游明朝, YuMincho, serif;
        }
		
		@media (max-width: 768px) {
        .reason-skew-content h3 {
            font-size: 1.8rem;
			line-height: 3rem;
        } }	
		
		
		
        .reason-skew-content ul {
            list-style: none;
            padding: 0;
            text-align: left;
            display: inline-block;
        }
        .reason-skew-content li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
            font-size: 0.9rem;
        }
        .reason-skew-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ad7c7b;
            font-weight: bold;
            font-size: 1.5em;
            top: 0.3rem;
        }
        .reason-skew-content li strong {
            display: block;
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1.6rem;
            color: var(--text-heading);
        }
        
        /* テキストマーキーのアニメーションを再定義 */
        .text-marquee {
            padding: 0;
            overflow: hidden;
            white-space: nowrap;
            /*background-color: var(--dark-bg); /* 背景をダークにして白文字を見やすく */
        }
        .text-marquee-content {
            display: inline-block;
            animation: scroll-text 60s linear infinite;
        }
        @keyframes scroll-text {
            from { transform: translateX(0%); }
            to { transform: translateX(-50%); }
        }
        /* 文字色とサイズを調整 */
        .text-marquee-content span {
            font-family: var(--font-heading-en);
            font-size: 4rem; /* サイズ調整 */
            color: var(--white); /* 白文字に */
            opacity: 0.9;
            margin: 0 40px;
            /* ユーザー要望：文字サイズと幅を調整 */
            display: inline-block; /* 途切れないようにする */
            min-width: 40vw; /* 最小幅を確保して途切れを防ぐ */
        }
		
		.sympathy-main-title{
		    line-height: 3rem;
			margin-top: 3rem;
		}
		
		@media (max-width: 768px) {
         .sympathy-main-title{
			margin-top: 0;
		} }	
		
        .sympathy-main-title .en {
            font-family: var(--font-heading-en);
            font-size: 3.5rem;
            color: var(--accent-main);
            letter-spacing: 1px;
        }
		
		
        @media (min-width: 769px) {	
        .sympathy-main-title .en {
            font-size: 5rem;
        }}
		
        .sympathy-main-title .ja {
            font-family: var(--font-body);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-heading);
            margin:0.2em 0 2em;
        }

        .sympathy-grid-before {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 100px;
        }
        .sympathy-before-image {
            width: 100%;
            height: 100%;
        }
		
		
        .sympathy-before-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }
        .sympathy-before-text .sub-title {
            font-size: 2rem;
            color: var(--text-body);
            font-weight: 700;
            margin-bottom: 25px;
		    line-height: 2.5rem;
		    font-family: 游明朝, YuMincho, ヒラギノ明朝 Pro W3, Hiragino Mincho Pro, HG明朝E, MS P明朝, MS 明朝, serif;
        }
		
		@media (max-width: 768px) {
        .sympathy-before-text .sub-title {
            font-size: 1.7rem;
		    line-height: 2.2rem;
        } }	
		
		.sub-title small{
           font-size: 1.3rem!important;
		}
        .sympathy-before-text ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
			margin-bottom: 3rem;
        }
        .sympathy-before-text li {
            background-color: var(--white);
            padding: 18px 25px;
            border-radius: 8px;
            position: relative;
		    /*font-family: 游明朝, YuMincho, ヒラギノ明朝 Pro W3, Hiragino Mincho Pro, HG明朝E, MS P明朝, MS 明朝, serif;*/
            font-size: 1.2rem;
			line-height: 1.5;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--accent-main);
		    color: #262320;
			/*font-weight: bold;*/
        }
		
		
		@media (max-width: 768px) {
        .sympathy-before-text li {
            font-size: 1rem;
        } }	
		
		

        /* --- タブ切り替え効果 --- */
        @keyframes fadeInEffect {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .tabs-nav { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
        .tab-button { padding: 12px 25px; border: 1px solid var(--border-light); background: transparent; color: var(--text-body); border-radius: 50px; cursor: pointer; transition: all 0.3s ease; font-weight: 700; font-size: 1rem;}
        .tab-button.active { background: var(--accent-main); border-color: var(--accent-main); color: var(--white); }
        .tab-content { display: none; }
        .tab-content.active { 
            display: block;
            animation: fadeInEffect 0.4s ease-out;
			max-width: 1000px;
			margin: 0 auto;
        }
        .requirement-list { background: var(--white); padding: 40px; border-radius: 8px; border: 1px solid var(--border-light); }
        .requirement-item { display: flex; padding: 20px 0; border-bottom: 1px solid var(--border-light); }
		
		@media (min-width: 769px) {
        .requirement-item{
             gap: 2rem;
        } }	
        .requirement-item:last-child { border-bottom: none; }
        .requirement-title { /*width: 150px; */ font-weight: 700; flex-shrink: 0; color: var(--text-heading); font-size: 1.4rem; margin: 0.2rem 0;}
        .requirement-detail ul { list-style: none; }
        .requirement-detail ul li { position: relative; padding-left: 20px; }
        .requirement-detail ul li::before { content: '・'; position: absolute; left: 0; color: var(--accent-main); }
		.requirement-detail strong{font-size: 1.2rem; padding-left: 5px;}
        
        /* --- NEWSセクションのスタイル --- */
        .news-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 30px; 
            margin-bottom: 30px; /* もっと見るボタンのためのスペース */
        }
        .news-card { 
            background: var(--white); 
            border-radius: 8px; 
            overflow: hidden; 
            box-shadow: 0 4px 15px var(--shadow-light); 
            display: flex; 
            flex-direction: column; 
            border-top: 5px solid var(--accent-main);
            /* デフォルトでは表示、JSで制御 */
        }
        .news-hidden {
             display: none;
        }
        .news-card-image { 
            height: auto; 
            width: 100%; 
            object-fit: cover; 
        }
        .news-card-content { 
            padding: 25px; 
            flex-grow: 1; 
            display: flex; 
            flex-direction: column; 
        }
        .news-card-content h3 { 
            font-size: 1.4rem; 
            margin-bottom: 10px; 
            line-height: 1.5;
        }
        .news-card-content p { 
            font-size: 0.9rem; 
            flex-grow: 1; 
            margin-bottom: 20px; 
        }
        .news-card-header {
             display: flex;
             justify-content: space-between;
             align-items: center;
             margin-bottom: 10px;
        }
        .news-date {
             font-size: 0.85rem;
             color: #888;
        }
        .news-category {
             background-color: var(--accent-main);
             color: var(--white);
             font-size: 0.75rem;
             padding: 3px 8px;
             border-radius: 4px;
             font-weight: 700;
        }
        .news-card-footer { 
            display: flex; 
            justify-content: flex-end; 
            align-items: center; 
            font-size: 0.85rem; 
            color: #888; 
            margin-top: auto;
        }
        .read-more-btn { 
            font-size: 0.9rem; 
            font-weight: 700; 
            color: var(--accent-main); 
            cursor: pointer; 
            position: relative;
            padding-right: 15px;
        }
        .read-more-btn::after {
            content: '→';
            position: absolute;
            right: 0;
            transition: transform 0.2s ease;
        }
        .read-more-btn:hover::after {
            transform: translateX(3px);
        }
        
        /* NEWSモーダルスタイル */
		
		#modalTitle{
		    font-family: 'Noto Sans JP', sans-serif;
			font-weight: 700;
			font-size: 1.5rem;
			margin-bottom: 15px;
			color: #333;
		}
		
		#modalDate{
			font-size: 0.9rem;
			color: #888;
			margin-bottom: 10px;
			text-align: left;
		}
		
		#modalMainImage {
			width: 100%;
			height: auto;
			border-radius: 4px;
			margin-bottom: 20px;
			display: none; /* JSで制御するためデフォルトはnone */
		}
		
		#modalTextContent{
			line-height: 1.8;
			color: #555;
		}
        .news-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            z-index: 3500; /* HQモーダルより高く */
            align-items: flex-start;
            justify-content: center;
            padding: 2vh 0px;
            overflow-y: auto;
            animation: fadeIn 0.3s ease-out;
        }
        .news-modal-content {
            background-color: #fff;
            padding: 15px 20px;
            border-radius: 8px;
            max-width: 900px;
            width: 90%;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: slideIn 0.4s ease-out;
            min-height: 50vh;
        }
        .news-modal-close {
            position: absolute;
            top: 5px;
            right: 10px;
            font-size: 2.5em;
            cursor: pointer;
            color: #888;
            line-height: 1;
            transition: transform 0.2s, color 0.2s;
        }
        .modal-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .modal-gallery img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            object-fit: cover;
        }
        
        /* --- VOICES カルーセル：Flickity対応 --- */
		
		#voices{
			background-color: var(--dark-bg);
		}
		
        @media (min-width: 769px) {	
		.voices-container{
			display: flex;
			align-items: center;
		}}
		
		.voices-container{
			width: 90vw;
			max-width: 1200px;
			margin: auto;
        }
		
        .video-carousel-wrapper { 
            position: relative; 
            max-width: 1000px;
            margin: 0 auto;
        }
			
        @media (min-width: 769px) {
        .video-carousel-wrapper { 
             width: 35vw;
        }}
		
        /* Flickityの矢印を非表示にして、カスタムナビゲーションを使用 */
        .flickity-prev-next-button { display: none !important; }

        .video-carousel:focus { outline: none; }
        .video-slide { 
            width: 60%;
            margin: 0 20px;
            opacity: 0.4;
            transform: scale(0.9);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .video-slide.is-selected { 
            opacity: 1;
            transform: scale(1);
        }
        .video-content {
            position: relative;
            height: 0;
            background: #000;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        /* Instagram埋め込み用にaspect-ratioを設定 */
        .video-content-instagram {
            /* 9:16のアスペクト比 */
            padding-bottom: 177.77%; 
        }
        .video-content-youtube {
            padding-bottom: 56.25%; /* 16:9のアスペクト比 */
        }

        .video-content iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* PC時の矢印配置調整 */
        .carousel-nav-pc {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none; /* 矢印エリア外のマウスイベントを透過 */
            max-width: 1040px; /* カルーセルラッパーより少し大きく */
            margin: 0 auto;
            z-index: 10;
			width: 80vw;
        }

        .carousel-nav-pc button {
            pointer-events: auto; /* ボタン上でのマウスイベントを有効化 */
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid var(--accent-main); 
            color: var(--accent-main); 
            width: 50px; 
            height: 50px; 
            border-radius: 50%; 
            font-size: 1.5rem; 
            cursor: pointer; 
            margin: 0 -25px; /* ボタンを外に出す */
            transition: all 0.3s ease; 
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .carousel-nav-pc button:hover { 
            background: var(--accent-main); 
            color: var(--white); 
        }

        .carousel-nav-sp { 
            text-align: center; 
            margin-top: 30px; 
            display: none; /* PCでは非表示 */
        }
        .carousel-nav-sp button { 
             background: #ffffffed;
             border: 2px solid var(--accent-main); 
             color: var(--accent-main); 
             width: 50px; 
             height: 50px; 
             border-radius: 50%; 
             font-size: 1.5rem; 
             cursor: pointer; 
             margin: 0 10px; 
             transition: all 0.3s ease; 
        }
        .carousel-nav-sp button:hover { 
            background: var(--accent-main); 
            color: var(--white); 
        }
        
        /* PC時のVOICESセクションの縦幅を調整 (より小さく) */
        @media (min-width: 769px) {
            .video-carousel {
                max-width: 100%; /* カルーセルの最大幅を狭くする */
                margin: 0 auto;
            }
            .video-slide {
                width: 60%; /* 幅を80%に広げ、より縦幅を小さく見せる */
            }
            .carousel-nav-pc {
                max-width:70%; /* カルーセル幅に合わせて矢印を調整 */
            }
        }
        
        /* ------------------ サロンの雰囲気セクションレイアウト変更 ------------------ */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            /*grid-auto-rows: 250px;*/
            gap: 15px;
        }
        .gallery-grid-new {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 5カラムに変更 */
            /*grid-template-rows: repeat(3, 150px); /* 3行に変更、行の高さを調整 */
            gap: 10px; /* ギャップを小さく */
			grid-auto-flow: row dense; /* アイテムを自動で密に配置し、隙間を埋める */
			grid-auto-rows: 150px;
        }
        .gallery-item {
            overflow: hidden;
			height: auto; /* 高さをコンテンツに任せる */
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
		
		
		
       /* .gallery-grid-new .gallery-item:nth-child(1) {
            grid-column: span 3; 
            grid-row: span 2; 
        }
        .gallery-grid-new .gallery-item:nth-child(2) {
            grid-column: span 2;  
            grid-row: span 1;  
        }
        .gallery-grid-new .gallery-item:nth-child(3) {
            grid-column: span 2;  
            grid-row: span 2; 
        }
        .gallery-grid-new .gallery-item:nth-child(4) {
            grid-column: span 2;  
            grid-row: span 1;  
        }
        .gallery-grid-new .gallery-item:nth-child(5) {
            grid-column: span 1;
            grid-row: span 1;  
        }
        .gallery-grid-new .gallery-item:nth-child(6) {
            grid-column: span 1;
            grid-row: span 1; 
        }*/
		
		
		
		/* アスペクト比を定義するクラス */
		/* grid-auto-rows: 150px; との組み合わせで、実際のピクセルサイズが決まります */

		/* 1. 正方形 (1:1) */
		.square {
           grid-row: span 1;
           grid-column: span 1;
		}

		/* 2. やや縦長 (1:2) */
		.mix-tall {
			grid-row: span 2; 
			grid-column: span 1;
		}

		/* 3. やや横長 (2:1) */
		.gallery-grid-new {
           grid-row: span 1;
           grid-column: span 2;
		}

		/* 4. 大きな正方形 (2x2) */
		.large {
           grid-row: span 2;
           grid-column: span 2;
		}
		
        .gallery-btn-wrapper {
            text-align: center;
            margin-top: 50px;
        }
		
		
		/* さらに、アイテムを意図的に2行・2列に広げることでランダム性を高められます（手動指定が必要） */
		.gallery-item.span-2-row {
			grid-row: span 2;
		}
		.gallery-item.span-2-col {
			grid-column: span 2;
		}
		
		
		
		
        .lightbox {
            display: none;
            position: fixed;
            z-index: 3000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.85);
            justify-content: center;
            align-items: center;
        }
        .lightbox img {
            max-width: 90%;
            max-height: 80%;
            border-radius: 8px;
        }
        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 40px;
            font-size: 3rem;
            color: white;
            cursor: pointer;
            line-height: 1;
        }

		
		/*---一日の流れ---*/
		
		#flow{
			background-color: var(--dark-bg);
		}
        .flow-timeline { position: relative; max-width: 700px; margin: 0 auto; list-style: none; }
        .flow-timeline > li { position: relative; padding: 20px 0 20px 30px; }
        .flow-timeline > li::before { content: ''; position: absolute; left: 8px; top: 57px; width: 3px; height: 100%; background: #bfbab6; }
        .flow-timeline > li:last-child::before { display: none; }
        .flow-timeline > li::after { content: ''; position: absolute; left: 0; top: 57px; width: 19px; height: 19px; background: var(--white); border: 4px solid var(--accent-main); border-radius: 50%; z-index: 1; }
        .flow-timeline .timeline-content { background: var(--white); padding: 25px; border-radius: 8px; box-shadow: 0 4px 15px var(--shadow-light); }
		.timeline-content img{margin: 20px 0;}
		.timeline-content p{margin: 0;}
        .flow-timeline .days-contents, .flow-timeline .days-contents2 { display: flex; align-items: baseline; gap: 15px; }
        .flow-timeline .days-time { font-family: var(--font-heading-ja); font-size: 1.5rem; color: var(--accent-main); }
        .flow-timeline .days-contents p:last-child, .flow-timeline .days-contents2 p:last-child { font-size: 1.2rem; font-weight: 700; }
        .flow-timeline .days-contents small { font-size: 0.9rem; }
        .flow-timeline .days-point { font-weight: 700; border-left: 4px solid var(--accent-main); padding-left: 10px; margin: 20px; }
        .flow-timeline .days-li { padding-left: 15px; font-size: 0.9rem; }
        .flow-timeline .star { color: var(--accent-main); font-weight: 700; }
        .flow-timeline .sp { display: none; }
        .flow-timeline big { font-weight: 700; }
        .process-steps-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
        .process-step { background-color: var(--white); padding: 30px 20px; border-radius: 8px; border: 1px solid var(--border-light); box-shadow: 0 4px 15px var(--shadow-light); display: flex; flex-direction: column; align-items: center; text-align: center; }
        .process-step .step-number { font-family: var(--font-heading-ja); font-size: 3rem; color: var(--dark-bg); font-weight: 700; line-height: 1; }
        .process-step .step-title { font-size: 1.2rem; margin: 15px 0; flex-grow: 1; }
        .process-step img { width: 80vw; height: auto; margin-bottom: 15px; }

        .process-step p { font-size: 0.9rem; margin-bottom: 5px; }
        .process-step p.small-text { font-size: 0.8rem; opacity: 0.8; text-align: left;}
        .instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
        .instagram-post { position: relative; display: block; overflow: hidden; border-radius: 8px; aspect-ratio: 1 / 1; }
        .instagram-post img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .instagram-post:hover img { transform: scale(1.1); }
        .instagram-post-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); color: white; display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: 0; transition: opacity 0.3s ease; }
        .instagram-post:hover .instagram-post-overlay { opacity: 1; }
        
        /* --- FAQセクション：もっと見る対応 --- */
        .faq-list { max-width: 900px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid var(--border-light); }
        .faq-item:last-child { border-bottom: none; }
        .faq-question-toggle { display: none; }
		.faq-question-label { 
            display: flex; 
            align-items: center; 
            padding: 25px 0; 
            cursor: pointer; 
            font-size: 1rem; 
            font-weight: 700;  
            /* 変更: 要素を左右に分離 */
            justify-content: space-between;
			line-height: 1.5rem;
        }
        .faq-question-label span:first-child { 
            color: var(--accent-main); 
            /* 変更: Q.1の右側のスペースを削除 */
            margin-right: 0; 
        }
        /* 質問テキスト全体がフレックスアイテムとなるよう、以下のセレクタを追加 */
        .faq-question-label span:nth-child(2) {
             flex-grow: 1;
             text-align: left; /* 質問テキストは左寄せを維持 */
             margin: 0 10px; /* 質問番号と+マークの間に少しスペースを確保 */
        }
        .faq-question-label::after { 
            content: '+'; 
            font-size: 1.5rem; 
            color: var(--accent-main); 
            transition: transform 0.3s ease;
             /* +マークを固定 */
             flex-shrink: 0; 
        }      
		.faq-question-toggle:checked + .faq-question-label::after { transform: rotate(45deg); }
        .faq-answer-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out, padding 0.5s ease-out; }
        .faq-question-toggle:checked + .faq-question-label + .faq-answer-content { max-height: 300px; padding-bottom: 25px; }
        .faq-answer-content dl { display: flex; }
        .faq-answer-content dt { font-weight: 700; margin-right: 0.5em; }
        .faq-hidden { display: none; }
        #faq-show-more, #faq-close-more {
            display: none;
            margin: 40px auto 0;
            min-width: 250px;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .faq-item.is-visible {
            animation: fadeInUp 0.5s ease-out forwards;
        }

		.q-right{
			padding-right: 6px;
		}
		
		/*---店舗一覧---*/
        .locations-tabs-container { max-width: 900px; margin: 0 auto; }
        .locations-tab-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; border-bottom: 2px solid var(--dark-bg); padding-bottom: 15px; }
        .location-tab-btn { padding: 10px 20px; border: 1px solid var(--border-light); background: transparent; color: var(--text-body); border-radius: 50px; cursor: pointer; transition: all 0.3s ease; font-weight: 700; font-family: var(--font-body); }
        .location-tab-btn.active { background: var(--accent-main); border-color: var(--accent-main); color: var(--white); }
        .location-tab-content { display: none; }
        .location-tab-content.active { 
            display: block;
            animation: fadeInEffect 0.4s ease-out;
        }
        .location-details-grid { 
            display: grid; 
            grid-template-columns: 1fr; 
            gap: 20px; 
        }
        /* PCで2列表示 */
        @media (min-width: 769px) {
            .location-details-grid { 
                grid-template-columns: 1fr 1fr; 
            }
        }
        
        .location-item { 
            background-color: var(--white); 
            padding: 15px; 
            border: 1px solid var(--border-light); 
            border-radius: 8px; 
            display: flex; 
            gap: 20px; 
            align-items: center; 
            box-shadow: 0 4px 10px var(--shadow-light);
            position: relative; /* ボタン配置のため */
        }
        .location-item img { 
            width: 150px; 
            height: 100%; 
            object-fit: cover; 
            /*flex-shrink: 0; */
            border-radius: 4px;
        }
        .location-item h4 { 
            font-size: 1.1rem; 
            margin-bottom: 0.5em; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .location-item p { 
            font-size: 0.9rem; 
            margin-bottom: 0.2em; 
        }
        .new-badge { 
            background-color: var(--accent-main); 
            color: var(--white); 
            font-size: 0.7rem; 
            padding: 3px 8px; 
            border-radius: 4px; 
            font-family: var(--font-body); 
            font-weight: 700; 
        }
        
        /* 店舗詳細ボタンのスタイル */
        .location-item .detail-button {
            display: block;
            margin-top: 10px;
            padding: 8px 15px;
            background-color: var(--dark-bg);
            color: var(--text-heading);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            transition: background-color 0.3s;
            text-align: center;
        }
        .location-item .detail-button:hover {
            background-color: var(--border-light);
        }
        
        /* 1店舗・2店舗表示の切り替え用コンテナスタイル */
        .new-location-container {
            margin-bottom: 50px;
        }
        .new-location-title {
            text-align: center;
            font-size: 1.8rem;
            color: var(--text-heading);
            margin-bottom: 30px;
            font-weight: 700;
			line-height: 2.5rem;
			padding-left: 2rem;
			border-left: solid 5px;
			text-align: left;
			width: 100%;
        }
        /* 1店舗表示時のスタイル */
        #new-location-pattern-1 {
            display: flex!important;
			justify-content: center;
            margin: 0 auto;
        }
        /* PCでの新店1店舗表示時レイアウト */
        @media (min-width: 769px) {
            #new-location-pattern-1 .location-item {
                 display: flex;
                 /*grid-template-columns: 150px 1fr;*/
                 gap: 20px;
                 padding: 25px;
		        flex-direction: row;
				align-items: flex-end;
            }
            #new-location-pattern-1 .location-item img {
                 width: 100%;
                 height: auto;
				max-width: 300px;
            }
            #new-location-pattern-1 .location-item > div {
                 display: flex;
                 flex-direction: column;
                 align-items: flex-start;
            }
        }
        
        /* 2店舗表示時のグリッドスタイル */
        #new-location-pattern-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        /* 新店セクションの店舗アイテムのスタイル */
        .new-location-container .location-item {
             flex-direction: column;
             align-items: flex-start;
             padding: 25px;
             text-align: left;
        }
        .new-location-container .location-item img {
            width: 100%;
            height: auto;
           /* margin-bottom: 15px;*/
        }
        .new-location-container .location-item h4 {
            margin-bottom: 5px;
        }
        .new-location-container .location-item p:last-of-type {
            font-size: 1rem !important;
            color: var(--accent-main) !important;
            font-weight: 700;
            margin-bottom: 15px;
        }
		
        @media (max-width: 768px) {
		.new-salon img{
			width: 100%;
			height: auto;
		}
		}


        /* --- 本社スタッフ紹介セクション --- */
        .hq-staff-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        /* 5番目以降のメンバーを非表示にするためのクラス */
        .hq-hidden {
             display: none;
        }
        .hq-show-more-btn-wrapper {
             text-align: center;
             margin-top: 40px;
        }
        .hq-staff-card {
            background-color: var(--white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 15px var(--shadow-light);
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .hq-staff-card:hover {
            transform: translateY(-5px);
        }
        .hq-staff-photo {
            width: 100%;
            height: auto;
            overflow: hidden;
            border-radius: 50%;
            margin-bottom: 15px;
            border: 3px solid var(--dark-bg);
            background-color: #f0f0f0;
        }
		
		@media (max-width: 768px) {
        .hq-staff-photo {
            max-width: 300px;
			margin: 0 auto 20px;
        } }	
		
        .hq-staff-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }
        .hq-staff-card h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        .hq-staff-card p {
            font-size: 0.9rem;
            color: var(--accent-main);
            font-weight: 700;
            margin-bottom: 0;
        }
        .hq-staff-card .detail-btn {
            display: inline-block;
            margin-top: 15px;
            font-size: 0.8rem;
            color: var(--accent-main);
            font-weight: 700;
        }
        
		
		
		@media (max-width: 768px) {
        .sp-staff{
			display: flex;
			flex-direction: row-reverse;
			justify-content: center;
			column-gap: 10px;
			align-items: center;
		} 
		
        .sp-staff h4{
			font-size: 1.5rem;
			margin-bottom: 0;

			position: relative;
			bottom: -2px;
		} 		
		
		}	
		
        /* スタッフ詳細モーダル (省略 - 変更なし) */
        .staff-modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.75); z-index: 3000; align-items: center; justify-content: center; overflow-y: auto; animation: fadeIn 0.3s ease-out; }
        .staff-modal-content { background-color: var(--white); padding: 40px; border-radius: 8px; max-width: 600px; width: 90%; position: relative; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); text-align: center; }
        .staff-modal-close { position: absolute; top: 15px; right: 20px; font-size: 2.5em; cursor: pointer; color: #888; line-height: 1; }
        .staff-modal-photo { width: 50vw; height: 50vw; max-height: 300px; max-width: 300px; margin: 0 auto 20px; overflow: hidden; border-radius: 50%; border: 4px solid var(--accent-main); }
        .staff-modal-photo img { width: 100%; height: 100%; object-fit: cover; }
        .staff-modal-content h3 { font-size: 2rem; margin-bottom: 5px; }
        .staff-modal-content .role { font-size: 1.1rem; color: var(--text-body); font-weight: 700; margin-bottom: 25px; }
        .staff-modal-comment { background-color: var(--dark-bg); padding: 25px; border-radius: 8px; text-align: left; border-left: 5px solid var(--accent-main); }
        .staff-modal-comment p { font-style: italic; line-height: 1.7; margin-bottom: 0; }
		#modalStaffComment{text-align: left;}


        .contact-section { background-color: var(--dark-bg); }
        .application-container { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: flex-start; }
        .application-form-wrapper { width: 100%;  background: var(--white); padding: 40px; border-radius: 8px; box-shadow: 0 5px 20px var(--shadow-light); }
        .application-form-wrapper h3 { font-size: 1.8rem; text-align: center; margin-bottom: 30px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; }
        .form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border-light); border-radius: 5px; font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s; }
        .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-main); }
        .form-submit-btn { width: 100%; padding: 15px; font-size: 1.1rem; }
        .other-methods { display: flex; flex-direction: column; gap: 20px; height: 100%; justify-content: space-between;}
        .method-card { background: var(--white); padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 5px 20px var(--shadow-light); }
        .method-card .icon { font-size: 2.5rem; color: var(--accent-main); margin-bottom: 15px; }
        .method-card h4 { font-size: 1.4rem; margin-bottom: 10px; }
        .method-card p { font-size: 0.9rem; margin-bottom: 20px; }
        .method-card .phone-number { font-size: 2rem; font-weight: 200; color: var(--text-heading); display: block; font-family: "begum", sans-serif; }

        /* PC追従バナーのスタイル - 複数バナーに対応 */
        .desktop-sticky-banners {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 990;
            display: flex;
            flex-direction: column;
            gap: 15px; /* バナー間のスペース */
            /* PCのみ表示 */
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }
        .desktop-sticky-banners.visible {
            opacity: 1;
            visibility: visible;
        }
        @media (max-width: 768px) {
            .desktop-sticky-banners {
                display: none !important; /* SPで完全に非表示 */
            }
        }
        
        .desktop-banner-item {
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 250px; /* 固定幅 */
            transform: translateX(100%);
            transition: transform 0.4s ease;
        }
        .desktop-banner-item.visible {
            transform: translateX(0);
        }
        
        /* 個別バナーの色・コンテンツ調整 */
        #desktopBannerTimee {
            /* 以前のTimeeバナーのスタイル */
        }
        #desktopBannerInstagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
            color: var(--white);
        }

        .desktop-banner-item .desktop-banner-link { 
            padding: 15px 20px; 
            text-decoration: none; 
            display: flex; 
            flex-direction: column; 
            flex-grow: 1;
        }
        
        /* Instagramバナーのリンクテキストを白に */
        #desktopBannerInstagram .desktop-banner-link {
            color: var(--white);
        }
        #desktopBannerTimee .desktop-banner-link {
            color: var(--text-body);
        }
        
        .desktop-banner-item strong { 
            font-size: 1rem; 
            font-weight: 700; 
        }
        .desktop-banner-item span { 
            font-size: 0.8rem; 
        }
        .desktop-banner-close { 
            background-color: var(--dark-bg); 
            border: none; 
            color: var(--text-body); 
            padding: 0 15px; 
            align-self: stretch; 
            cursor: pointer; 
            font-size: 1.5rem; 
            transition: background-color 0.3s; 
        }
        .desktop-banner-close:hover { 
            background-color: #dcd9d4; 
        }
        /* Instagramバナーの閉じるボタンの調整 */
        #desktopBannerInstagram .desktop-banner-close {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }
        #desktopBannerInstagram .desktop-banner-close:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }


        /* --- スマホ版追従バナー --- */
		.instagram span{
			font-family: "begum", sans-serif;
			font-weight: 100;
		}
        .mobile-sticky-footer {
            position: sticky;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 55px;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 999;
            display: flex;
            opacity: 0;
            visibility: hidden;
            transform: translateY(100%);
            transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
            border-top: 1px solid rgba(0,0,0,0.08);
        }
        .mobile-sticky-footer.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
         @media (min-width: 769px) {
            .mobile-sticky-footer {
                display: none !important; /* PCで完全に非表示 */
            }
        }
        .footer-link {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            height: 100%;
            transition: background-color 0.3s ease;
            color: var(--text-body);
            flex-direction: row;
            gap: 12px;
            font-size: 1.2rem;
            font-weight: 700;
        }
        .footer-link i {
            font-size: 1.4rem;
            margin-bottom: 2px;
        }
        .footer-link.apply {
            background-color: var(--accent-main);
            color: var(--white);
            font-size: 1rem;
        }
        .footer-link.apply:hover { background-color: var(--accent-main-hover); }
        
		
   
        /* フッター */
        .site-footer-new {
            background-color: var(--dark-bg);
            padding: 60px 0 30px;
            color: var(--text-body);
        }
        .footer-container {
            display: flex;
            justify-content: center; /* 中央に配置 */
            align-items: center;
            flex-direction: column; /* 縦並び */
            margin-bottom: 40px;
        }
        .footer-logo {
            margin-bottom: 20px; /* ロゴとナビゲーションの間にスペース */
			max-width: 300px;
        }
		.footer-logo img{
			filter: brightness(0) saturate(100%) invert(30%) sepia(6%) saturate(1059%) hue-rotate(344deg) brightness(100%) contrast(90%);
			width: 54vw;
			margin-bottom: 1.5rem;
		}
		
        .footer-logo a {
            font-family: var(--font-heading-ja);
            font-size: 2.5rem; /* ロゴを大きく */
            color: var(--text-heading);
            font-weight: 700;
        }
        .footer-nav {
            margin-bottom: 20px;
        }
        .footer-nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center; /* ナビゲーションを中央に配置 */
        }
        .footer-nav a {
            color: var(--text-body);
            font-weight: 700;
            font-size: 0.9rem;
            position: relative;
            transition: color 0.3s ease;
        }
        .footer-nav a:hover {
            color: var(--accent-main);
        }
		
		.footer-bt{
			margin-top: 3rem;
			font-size: 10px;
		}
		
		.footer-bt li{
			gap: 20px;
			display: flex;
			align-items: center;
		}	
		
		.footer-bt a{
			gap: 10px;
			display: flex;
			align-items: center;
			letter-spacing: 2px;
			font-weight: 100;
		}	
		
		
		.footer-bt img{
			filter: brightness(0) saturate(100%) invert(30%) sepia(6%) saturate(1059%) hue-rotate(344deg) brightness(100%) contrast(90%);
			width: 1rem;
			border-radius: unset;
		}		
		
		
        .social-icons {
            display: flex;
            gap: 30px;
            margin-bottom: 20px;
			margin-top: 3rem;
        }
        .social-icons a {
            color: var(--text-body);
            font-size: 2rem;
            transition: color 0.3s ease;
        }
        .social-icons a:hover {
            color: var(--accent-main);
        }
        .copyright {
            text-align: center;
            font-size: 0.8rem;
            opacity: 0.8;
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
            width: 100%;
        }
        @media (max-width: 768px) {
            .footer-container {
                align-items: center;
            }
            /* VOICESセクションのSP調整 */
            .video-slide { 
                width: 100%; /* SPでは幅を広げる */
            }
            .carousel-nav-pc { display: none; } /* SPではPC用矢印を非表示 */
            .carousel-nav-sp { 
				display: block; 
				display: flex;
				position: absolute;
				top: 45%;
				 z-index: 999;
				padding: 2rem 0;
				justify-content: space-between;
				width: 100%;
			}
			/* SPではSP用ナビゲーションを表示 */
            .hq-staff-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
		
		
		
		
        /* --- スマホ版ハンバーガーメニュー --- */
		
		
		
 /* === 新しいモバイルメニューのスタイル（CLALA風デザインを再現） === */
		
.hamburger-menu{
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    transition: opacity 0.3s ease;
    z-index: 60;
    background: none;
    border: none;
}


.bar {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: none;
    transform-origin: center;
}
		
		
        #menu-overlay-native {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: #f7f2ed; /* 薄いベージュ系 */
            color: var(--text-heading);
            z-index: 5000; /* 既存のモバイルメニューより高く */
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.4s ease-in-out;
        }
        #menu-overlay-native.is-active {
            transform: translateX(0);
        }
        .menu-header-native {
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            padding: 1.5rem 1.2rem 1rem;
            border-bottom: 1px solid #e5e7eb; /* border-gray-200 相当 */
            position: sticky;
            top: 0;
            background-color: #f7f2ed;
            z-index: 5001;
        }
        .menu-social-icons-native {
            display: flex;
            gap: 16px; /* space-x-4 相当 */
        }
        .menu-social-icons-native svg {
            width: 24px;
            height: 24px;
            fill: #4b5563; /* text-gray-700 相当 */
        }
		
		.menu-social-icons-native i{
		    font-size: 2rem;
		}
        .menu-logo-wrapper-native {
            position: absolute;
            left: 0;
			padding-left: 1.22rem;
            text-align: center;
            line-height: 1.2;
			column-gap: 9px;
			flex-direction: column;
			display: flex;
        }
		
		.menu-logo-wrapper-native img{
			width: 100px;
			position: relative;
			right: 4px;
		}
        .menu-logo-main-native {
            font-size: 24px; /* text-2xl 相当 */
            font-weight: 700; /* font-bold 相当 */
            letter-spacing: 0.2em; /* tracking-widest 相当 */
        }
        .menu-logo-sub-native {
            font-size: 12px; /* text-xs 相当 */
            text-align: left;
			margin-top: 3px;
			margin-bottom: 0;
        }
        .menu-close-btn-native {
            background: none;
            border: none;
            color: #333;
            cursor: pointer;
            font-size: 3rem;
            line-height: 1;
            padding: 0;
			position: relative;
			bottom: 5px;
        }

        /* ナビゲーションとコンテンツエリア */
        .menu-content-area-native {
            padding: 24px; /* p-6 相当 */
            flex-grow: 1;
        }
        .menu-nav-grid-native {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px 0; /* gap-y-4 相当 */
            font-size: 14px; /* text-sm 相当 */
            font-weight: 600; /* font-semibold 相当 */
            margin-bottom: 32px; /* mb-8 相当 */
        }
        .menu-nav-link-native {
            color: var(--text-heading);
            text-decoration: none;
            font-size: 1rem;
        }

        /* CONTACTボタン */
        .menu-contact-btn-native {
            display: block;
            width: 100%;
            text-align: center;
            padding: 16px 0;
            background-color: var(--accent-main); 
            color: #ffffff;
            font-weight: 700;
			font-size: 1.2rem;
            border-radius: 6px;
            margin-bottom: 32px;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); /* shadow-lg 相当 */
            transition: background-color 0.15s;
        }
        .menu-contact-btn-native:hover {
            background-color: #374151; /* hover:bg-gray-700 相当 */
        }

        /* バナーグリッド */
        .menu-banner-grid-native {
            display: flex;
			flex-direction: column;
            gap: 12px; /* gap-3 相当 */
            margin-bottom: 32px;
        }
        .menu-banner-link-native {
            display: block;
            overflow: hidden;
            border-radius: 4px;
        }
        .menu-banner-link-native img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            loading: lazy;
        }
        .menu-banner-aspect-2-1 {
            aspect-ratio: 2 / 1;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.06);
        }
        .menu-banner-aspect-2-5-1 {
            /*aspect-ratio: 2.5 / 1;*/
           /* border: 1px solid #d1d5db;*/
        }

        /* フッターナビゲーション */
        .menu-footer-nav-native {
            text-align: center;
            font-size: 12px;
            color: #4b5563; /* text-gray-600 相当 */
            padding-bottom: 30px; /* 見栄えを考慮 */
        }
        .menu-footer-nav-native a {
            color: #4b5563;
            text-decoration: none;
            transition: color 0.3s;
        }
        .menu-footer-nav-native a:hover {
            color: #1f2937; /* hover:text-gray-900 相当 */
        }
        .menu-footer-nav-native span {
            margin: 0 8px;
        }
		
		
        /* === 新しいモバイルメニューのスタイル (ここまで) === */
		
		
		
        /* === スマホ版グリッド調整 === */
		
        @media (max-width: 768px) {
        .sympathy-grid-before {
            flex-direction: column;
			display: flex;
			margin-bottom: 50px;
        }
		.solution-list-new{
            flex-direction: column;
			display: flex;
        }
		.reason-skew-item{
            flex-direction: column;
			display: flex;
        }
		.hq-staff-grid{
            flex-direction: column;
			display: flex;
        }				
		.application-container	{
            flex-direction: column;
			display: flex;
        }				
		.grid-layout{
            flex-direction: column;
			display: flex;
        }		
		.process-steps-container{
            flex-direction: column;
			display: flex;
        }		
		
		.requirement-item{
            flex-direction: column;
			display: flex;
        }			
			
			
        }
		
		
		#fc-support img{
			max-height: 600px;
		}
		
		.fc h2{
			font-size: 2.4rem;
		}
		
		.fc a{
			margin-top: 30px;
			display: flex;
			justify-content:  center;
			width: 70vw;
			max-width: 300px;
		}
		
		@media (max-width: 768px) {
        .fc a{
			margin: 30px auto 0;
		} }	
		
		.fc-img{
			height: 100%;
			display: flex;
		}
		
		.instagram a{
			margin-top: 30px;
			display: flex;
			justify-content:  center;
			width: 80vw;
			max-width: 300px;
		}
		
		
		
		@media (max-width: 768px) {
        .instagram a{
			margin: 30px auto 0;
		} }	
		
		#timee{
			background-color: var(--dark-bg);
		}