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

:root {
    --primary-green: #1a472a;
    --secondary-green: #2d5a3d;
    --accent-orange: #ff6b35;
    --text-dark: #333;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --fill-0: #cb66dd;
    --stroke-0: white;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding: 0px 0px 144px 0px;
}

.container {
    max-width: 1200px;
    box-sizing: border-box;
    width: 100%;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-content-container {
    width: 100%;
    height: 70px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px 23px;
    background: #26d9d5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

header .logo {
    height: 39.334px;
    width: 102.184px;
    flex-shrink: 0;
    position: relative;
    /* margin-left: 10px; */
}

header .logo img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 39.334px;
    width: 102.184px;
    object-fit: contain;
}

header .logo .logo-border {
    z-index: 1;
}

header .logo .logo-text {
    z-index: 2;
}

.nav-menu {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1001;
    position: relative;
    margin-left: auto;
}

.mobile-menu-btn .menu-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.mobile-menu-btn .close-icon {
    display: none;
    width: 17.14px;
    height: 17.14px;
    object-fit: contain;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-nav-container {
    position: relative;
    top: -70px;
    z-index: 100;
    pointer-events: none;
}

/* モバイルナビゲーション */
.mobile-nav {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #26d9d5;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-nav.active {
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 320px;
}

.mobile-nav-logo {
    height: 58.8px;
    width: 152.753px;
}

.mobile-nav-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav-menu li {
    margin: 0;
}

.mobile-nav-menu a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-style: italic;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
}

.mobile-nav-cta {
    background: #ff984a;
    color: var(--white);
    padding: 10px 75px;
    font-style: italic;
    border: 4px solid var(--white);
    border-radius: 28px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
    margin: 20px 0;
}

.mobile-nav-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mobile-nav-social a {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
}

.mobile-nav-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ファーストビュー */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    color: var(--white);
}

/* 背景レイヤー構造 */
.hero-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85vh;
    z-index: 1;
}

.hero-bg-base {
    position: absolute;
    top: 8vh;
    left: -60vw;
    width: 200vw;
    height: 80vh;
    background: #ececec;
}

.hero-bg-main {
    position: absolute;
    top: 0;
    left: -50vw;
    width: 170vw;
    height: 85vh;
    background: url("assets/images/fcc8a37833108b2548b1f62fa4392009fe734d2b.png");
    background-size: cover;
    background-position: center;
}

/* ヒーロー背景スライドショー */
.hero-bg-slideshow {
    position: absolute;
    top: 0;
    left: -50vw;
    width: 170vw;
    height: 85vh;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: -1vh;
    left: -100vw;
    width: 250vw;
    height: 85vh;
    background: url("assets/images/288132d4c13a7c03901d0611eb1f520d66daad84.png");
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.hero-bg-dark-overlay {
    position: absolute;
    top: -1vh;
    left: -100vw;
    width: 250vw;
    height: 85vh;
    background: rgba(0, 6, 9, 0.25);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: min(283px, 80vw);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: min(24px, 3vh);
    margin: 0 auto;
    padding-top: max(40px, 5vh);
    padding-bottom: max(200px, 25vh);
}

.hero-tagline {
    color: #fff;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.72);
    font-family: "Noto Serif JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: 26px;
    /* 185.714% */
    /* font-family: "Noto Serif JP", serif;
    font-weight: 900;
    font-size: max(14px, 1.8vh);
    color: var(--white);
    text-shadow: rgba(0, 0, 0, 0.72) 0px 0px 20px;
    line-height: max(26px, 3.2vh);
    white-space: nowrap; */
}

.hero-logo {
    width: max(102.184px, 12vw);
    height: max(39.334px, 5vh);
}

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

.hero-main-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    text-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.hero-sub-text {
    margin-top: -12px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    text-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    max-width: min(283px, 80vw);
}

.text-line {
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}

.hero-main-text .text-line span {
    color: var(--white);
    font-size: max(16px, 2vh);
}

.hero-main-text .text-line span.highlight {
    color: #26d9d5;
    font-size: max(22px, 2.8vh);
}

.hero-main-text .text-line span.large {
    font-size: max(22px, 2.8vh);
}

.hero-sub-text .text-line span {
    color: var(--white);
    font-size: 18px;
}

.hero-sub-text .text-line span.highlight {
    color: #26d9d5;
    font-size: max(22px, 2.8vh);
}

.hero-sub-text .text-line.single-line {
    white-space: nowrap;
    min-width: max-content;
}

.hero-sub-text .text-line.single-line span {
    white-space: nowrap;
}

.cta-button {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* セクション共通 */
section {
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-orange);
}

/* 古いソリューションスタイルは削除済み */

/* プラン */
.plans {
    background: var(--white);
}

.plan-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.plan-carousel::-webkit-scrollbar {
    height: 8px;
}

.plan-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.plan-carousel::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 10px;
}

.plan-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
}

.plan-card.featured {
    border-color: var(--accent-orange);
    transform: scale(1.02);
}

.plan-price {
    font-size: 2rem;
    color: var(--accent-orange);
    font-weight: bold;
    margin-bottom: 10px;
}

.plan-name {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

/* UNEEKOR */
.uneekor {
    background: var(--bg-light);
}

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

.uneekor-logo {
    width: 150px;
    height: 60px;
    background: var(--primary-green);
    margin: 0 auto 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

/* ショールーム */
.showroom {
    background: var(--white);
}

.showroom-gallery {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.showroom-gallery::-webkit-scrollbar {
    height: 8px;
}

.showroom-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.showroom-gallery::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 10px;
}

.showroom-image {
    flex: 0 0 250px;
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    scroll-snap-align: center;
    overflow: hidden;
}

.showroom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* お問い合わせ */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0 19.5px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

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

.submit-button {
    width: 100%;
    background: var(--accent-orange);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #e55a2b;
}

/* フッター */
footer {
    background: #cff5f4;
    color: var(--white);
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-links a {
    text-decoration: none;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* スクロールアニメーション */
.scroll-animation {
    position: absolute;
    right: 20px;
    bottom: 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 14px;
    z-index: 12;
}

.scroll-text {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 12px;
    color: var(--white);
    letter-spacing: 0.6px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-line {
    width: 4px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    border-radius: 1px;
    overflow: hidden;
}

.scroll-progress {
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 0%;
    background: #26D9D5;
    transition: height 0.12s ease-out;
    will-change: height;
    overflow: hidden;
}

.scroll-progress::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-0%) translateY(-100%);
    width: 100%;
    max-width: 14px;
    height: 50%;
    border-radius: 999px;
    background: #26D9D5;
    pointer-events: none;
    animation: progressPillDown 3.0s linear infinite;
    z-index: 2;
}

@keyframes progressPillDown {
    0% {
        transform: translateX(-50%) translateY(-100%);
    }

    100% {
        transform: translateX(-50%) translateY(200%);
    }
}

/* 左下の画像 */
.hero-bottom-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 314px;
    height: 400px;
    max-width: 75vw;
    z-index: 5;
    overflow: hidden;
    border-radius: 10px;
    mask: url("assets/images/813c8b43b9a07895718877b859d61586ac25a103.svg");
    -webkit-mask: url("assets/images/813c8b43b9a07895718877b859d61586ac25a103.svg");
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.hero-bottom-image img {
    width: 437px;
    height: 327px;
    object-fit: cover;
    margin-left: -72px;
    margin-top: 85px;
}

/* ヒーローCTAボタン */
.hero-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    display: flex;
    justify-content: center;
}

.cta-container {
    width: 100%;
}

.cta-header {
    background: #cff5f5;
    padding: 13px 20px;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: absolute;
    bottom: 104px;
    left: 0; */
    width: 100%;
    z-index: 14;
}

.cta-header p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #007ba7;
    margin: 0;
    white-space: nowrap;
}

/* .cta-header::after {
    content: '';
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 21px solid #cff5f5;
} */

.cta-top {
    background: #26d9d5;
    padding: 11px 89px;
    text-align: center;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-top p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

.cta-button-main {
    width: 100%;
    height: 60px;
    background: #ff984a;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 17px 99px;
}

.cta-button-main span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: white;
    white-space: nowrap;
}

.cta-button-main img {
    position: absolute;
    right: 24px;
    width: 34px;
    height: 34px;
}

.cta-button-main:hover {
    background: #e6874a;
}

/* 問題提起セクション */
.problems-wrapper {
    background: #e4e4e4;
    padding: 20px;
    box-sizing: border-box;
    min-height: 950px;
    position: relative;
    background-color: #e4e4e4;
    z-index: 2;
}

.problems-section {
    background: url("assets/images/29efd39950e27fec4f5bd80b243ea0638cdd2560.png") center/cover;
    min-height: 900px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow: visible;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.problems-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 6, 9, 0.55);
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.problems-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    z-index: 2;
}

/* メインコンテンツ */
.problems-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 20px 40px;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

/* ヘッダーテキスト */
.problems-header {
    text-align: center;
    z-index: 5;
    position: relative;
}

.problems-header-top-lines {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 0px;
    height: 4px;
}

.problems-header-top-line {
    width: 340px;
    height: 1px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.problems-header-top-line:first-child {
    top: 0;
}

.problems-header-top-line:last-child {
    bottom: 0;
}

.problems-header-decoration {
    position: absolute;
    width: 253px;
    height: 46px;
    left: 50%;
    top: 105px;
    transform: translateX(-50%) rotate(0.465deg);
    z-index: 1;
}

.problems-header-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.problems-intro {
    color: white;
    font-size: 14px;
    margin-bottom: 6px;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    text-shadow: rgba(0, 0, 0, 0.9) 0px 0px 14px;
    line-height: 48px;
    position: relative;
    z-index: 3;
}

.problems-main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 224px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.problems-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 100%;
}

.problems-title-line span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    line-height: 48px;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 0px 15px;
}

.text-normal {
    color: white;
    font-size: 20px;
}

.text-highlight {
    color: #26d9d5;
    font-size: 30px;
}

/* 人物画像 */
.problems-person {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
}

.person-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 4px solid #26d9d5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(38, 217, 213, 0.25);
}

.person-circle img {
    width: 450px;
    object-fit: cover;
    margin-top: 30px;
}

/* 上部の吹き出し群 */
.problems-bubbles-top {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    z-index: 3;
}

/* 下部の吹き出し群 */
.problems-bubbles-bottom {
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    z-index: 3;
}

.speech-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bubble-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bubble-bg img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.bubble-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 35px 25px;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.bubble-content p {
    font-size: 14px;
    color: white;
    font-weight: bold;
    line-height: 28px;
}

.bubble-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.2));
}

.bubble-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bubble-text {
    color: white;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px;
}

/* 店のデザイン吹き出し（左上・紫） */
.speech-bubble.shop-design {
    width: 196px;
    height: 162px;
    left: -17px;
    top: -50px;
    z-index: 15;
}

.speech-bubble.shop-design img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 無人運営マニュアル吹き出し（右上・青） */
.speech-bubble.manual {
    width: 207px;
    height: 154px;
    right: -5px;
    top: 10px;
    z-index: 15;
}

.speech-bubble.manual img {
    width: 207px;
    object-fit: contain;
}

/* シミュレーターの選定吹き出し（左中・シアン） */
.speech-bubble.simulator {
    width: 207px;
    height: 156px;
    left: 0px;
    top: 56px;
    z-index: 10;
}

.speech-bubble.simulator img {
    width: 207px;
    object-fit: contain;
}

/* 予約システムの導入吹き出し（左下・オレンジ） */
.speech-bubble.reservation {
    width: 213px;
    height: 162px;
    left: -20px;
    top: 75px;
    z-index: 10;
}

.speech-bubble.reservation img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 内装工事吹き出し（右下・シアン） */
.speech-bubble.interior {
    width: 153px;
    height: 185px;
    right: 0px;
    top: 121px;
    z-index: 9;
}

.speech-bubble.interior img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 集客ツール吹き出し（下部・グリーン） */
.speech-bubble.marketing {
    width: 222px;
    height: 111px;
    right: 80px;
    top: 200px;
    z-index: 8;
}

.speech-bubble.marketing img {
    width: 222px;
    object-fit: contain;
}

/* ソリューション見出しセクション */
.solution-header-section {
    background: #e4e4e4;
    padding: 60px 0px 40px;
    position: relative;
}

.solution-header-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.solution-header-content {
    position: relative;
    text-align: center;
}

.solution-header-top-lines {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 0px;
    height: 4px;
}

.solution-header-top-line {
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.solution-header-top-line:first-child {
    top: 0;
}

.solution-header-top-line:last-child {
    bottom: 0;
}

.solution-header-line-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.solution-header-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    font-style: italic;
    text-align: center;
    background: #e4e4e4;
    padding: 0 24px;
    margin: 0;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.solution-header-line {
    position: absolute;
    top: 50%;
    height: 1px;
    background: #000;
    width: 120px;
}

.solution-header-line.left {
    left: 0;
}

.solution-header-line.right {
    right: 0;
}

/* 下部のグレー背景セクション */
.problems-bottom-section {
    background: #e4e4e4;
    min-height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 50% 50%);
    margin-bottom: -60px;
}

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

/* ソリューション詳細セクション */
.solution-details {
    background: #ffffff;
    padding: 50px 0;
    position: relative;
}

.solution-details-container {
    /* max-width: 375px;
    margin: 0 auto; */
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

/* コピー部分 */
.solution-copy {
    display: flex;
    flex-direction: column;
    gap: 51px;
    align-items: center;
    width: 280px;
}

/* 装飾線 */
.solution-decoration {
    display: flex;
    gap: 10px;
    align-items: center;
}

.decoration-lines {
    position: relative;
    width: 50px;
    height: 58px;
}

.decoration-line {
    position: absolute;
    width: 50px;
    height: 24px;
    transform: rotate(180deg) scaleY(-1);
}

.decoration-line:nth-child(1) {
    top: 0;
}

.decoration-line:nth-child(2) {
    top: 18px;
}

.decoration-line:nth-child(3) {
    top: 34px;
}

/* ロゴグループ */
.solution-logo-group {
    position: relative;
    width: 190px;
    height: 73px;
}

.logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* メイン文章 */
.solution-main-text {
    display: flex;
    flex-direction: column;
    gap: 58px;
    align-items: center;
    width: 100%;
}

.main-title {
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    text-align: center;
    margin: 0;
}

.brand-name {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
    font-style: italic;
    color: #26d9d5;
    font-size: 18px;
    font-variation-settings: "wdth" 75;
}

/* サービス項目 */
.service-items {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
    width: 216px;
}

.service-item {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 26px;
    line-height: 38px;
    color: #26d9d5;
    text-align: center;
    transform: skewX(-12deg);
}

.closing-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #515151;
    text-align: center;
    margin: 0;
}

/* ソリューションカード */
.solution-details .solution-cards {
    background: #cff5f5;
    border-radius: 34px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    padding: 48px 17px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    align-items: center;
    position: static;
    margin: 0 -20px;
}

.solution-details .solution-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    background: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
    box-shadow: none;
    position: static;
    overflow: visible;
}

.solution-details .solution-card::before {
    display: none;
}

.solution-details .solution-card h3 {
    color: #000;
    font-size: 20px;
    margin-bottom: 0;
}

.card-image {
    position: relative;
    width: 340px;
    height: 185px;
    overflow: hidden;
    border-radius: 6px;
}

.masked-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 330px;
    align-items: flex-start;
}

.card-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    line-height: 48px;
    color: #000;
    text-align: left;
    margin: 0 0 6px 0;
    display: block;
}

.card-description {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
    color: #515151;
    margin: 0;
    text-align: left;
    /* padding-left: 20px;
    padding-right: 20px; */
}

.showroom-description-p-b {
    margin-top: 20px;
}

/* ソリューション詳細のレスポンシブ対応 */
/* @media (min-width: 768px) {
    .solution-details-container {
        max-width: 768px;
    }

    .solution-copy {
        width: 400px;
    }

    .solution-details .solution-cards {
        padding: 60px 20px;
        gap: 60px;
        width: 400px;
    }

    .solution-details .card-image {
        width: 400px;
        height: 220px;
    }

    .solution-details .card-content {
        width: 400px;
    }
}

@media (min-width: 1024px) {
    .solution-details-container {
        max-width: 1024px;
    }

    .solution-copy {
        width: 500px;
    }

    .solution-details .solution-cards {
        padding: 80px 30px;
        width: 500px;
    }

    .solution-details .card-image {
        width: 500px;
        height: 280px;
    }

    .solution-details .card-content {
        width: 500px;
    }
} */

/* UNEEKORセクション */
.uneekor-section {
    background: #ffffff;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uneekor-container {
    width: 100%;
    /* max-width: 340px; */
    background: #ffffff;
    border: 1px solid #a5a5a5;
    border-radius: 10px;
    padding: 74px 15px;
    box-shadow: none;
}

.uneekor-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

/* メインテキスト */
.uneekor-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.uneekor-main-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 280px;
    text-align: center;
}

.uneekor-title {
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    margin: 0;
    text-align: center;
}

.uneekor-title .brand-name {
    font-family: "Roboto", sans-serif;
    color: #26d9d5;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    line-height: 28px;
}

.uneekor-description {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #515151;
    margin: 0;
    text-align: center;
}

/* 機材セクション */
.uneekor-equipment {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.equipment-header {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.equipment-header-top-lines {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 0px;
    height: 4px;
}

.equipment-header-top-line {
    width: 340px;
    height: 1px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.equipment-header-top-line:first-child {
    top: 0;
}

.equipment-header-top-line:last-child {
    bottom: 0;
}

.equipment-banner {
    background: #26d9d5;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #ffffff;
    line-height: 34px;
    text-align: center;
}

.banner-arrow {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 21px;
    z-index: 1;
}

.arrow-icon {
    width: 100%;
    height: 100%;
}

.equipment-list {
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.equipment-item {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-style: italic;
    font-size: 20px;
    color: #000;
    font-variation-settings: "wdth" 100;
    white-space: nowrap;
}

/* ボタン */
.uneekor-button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
    padding: 0 13px;
}

.uneekor-button {
    background: #ff984a;
    width: 100%;
    height: 60px;
    box-shadow: 2px 3px 2px 0px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
    text-decoration: none;
    position: relative;
    border: none;
    position: relative;
}

.button-icon-container {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 34.447px;
    height: 34.447px;
}

.button-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #ffffff;
    text-align: center;
    grid-area: 1 / 1;
    /* transform: translateX(-17px); */
}

.button-icon {
    grid-area: 1 / 1;
    justify-self: end;
    align-self: center;
    /* margin-right: 15px; */
    width: 34.447px;
    height: 34.447px;
}

/* レスポンシブ対応 */
/* @media (min-width: 768px) {
    .uneekor-container {
        max-width: 400px;
    }

    .uneekor-content {
        width: 340px;
    }

    .equipment-banner,
    .uneekor-button {
        width: 340px;
    }
} */

/* プランセクション */
.plans-section {
    background: #ffffff;
    padding: 60px 0px;
    position: relative;
}

.plans-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* セクション見出し */
.plans-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.plans-header-top-lines {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 0px;
    height: 4px;
    width: 100%;
}

.plans-header-top-line {
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.plans-header-top-line:first-child {
    top: 0;
}

.plans-header-top-line:last-child {
    bottom: 0;
}

.plans-header-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.plans-header-line {
    flex: 1;
    height: 1px;
    background: #000;
    /* max-width: 150px; */
}

.plans-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    color: #000;
    margin: 0 20px;
    text-align: center;
    white-space: nowrap;
    font-style: italic;
}

/* メイン説明文 */
.plans-intro {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.plans-main-text {
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    margin: 0;
    text-align: center;
}

.plans-main-text .brand-name {
    font-family: "Roboto", sans-serif;
    color: #26d9d5;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: 28px;
}

.plans-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.plans-description p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #515151;
    margin: 0;
}

/* プランカルーセル */
.plans-carousel {
    width: 100%;
    position: relative;
    padding-bottom: 80px;
    margin-top: 50px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 400%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    transition: transform 0.3s ease;
}

.carousel-slide {
    width: 100%;
    flex: 0 0 100%;
}

/* ケースラッパー全体 */
.case-wrapper {
    /* width: 334px; */
    position: relative;
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0px 20.5px;
}

/* ケースヘッダー */
.case-header {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: start;
    width: 100%;
}

.case-label {
    background: #26d9d5;
    color: white;
    padding: 10px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 120px;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
}

.case-number {
    font-size: 24px;
    font-style: italic;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    line-height: normal;
    margin-left: 4px;
}

.case-title {
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: #000;
    margin: 0;
}

/* ケースカード */
.case-card {
    background: white;
    border: 1px solid #a5a5a5;
    border-radius: 10px;
    position: relative;
    padding: 27px 12px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    height: 100%;
}

/* 顧客の吹き出し */
.customer-bubble {
    /* position: absolute;
    top: 20px;
    left: 17px; */
    width: 100%;
    z-index: 1;
    border-radius: 10px;
    background: #26d9d5;
}

.customer-bubble-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.bubble-arrow {
    position: relative;
    top: -1px;
    /* bottom: -15px;
    left: 50%;
    transform: translateX(-50%); */
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #26d9d5;
}

/* 顧客アバター */
.customer-avatar {
    /* position: absolute;
    top: 215px;
    left: 50%;
    transform: translateX(-50%); */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    z-index: 2;
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 解決策の吹き出し */
.solution-bubble {
    position: relative;
    /* bottom: 27px;
    left: 12px; */
    width: 100%;
    /* height: 164px; */
    margin-bottom: 20px;
}

.solution-bubble-bg {
    /* position: absolute; */
    background: #26d9d5;
    /* width: 300px;
    height: 154px; */
    border-radius: 10px;
    top: 4px;
    left: 5px;
}

.solution-avatar-mask {
    position: absolute;
    top: -21px;
    left: -21px;
    width: 73px;
    height: 73px;
    background-image: url("assets/images/bd07163addb8f9d779a5875e696e12a6e772febd.png");
    background-size: cover;
    background-position: center;
    -webkit-mask-image: url("assets/images/0e8840ca0bd851c1bd5ef66be6ae8d8c68845844.svg");
    -webkit-mask-size: 57px 57px;
    -webkit-mask-position: 16px 16px;
    -webkit-mask-repeat: no-repeat;
    mask-image: url("assets/images/0e8840ca0bd851c1bd5ef66be6ae8d8c68845844.svg");
    mask-size: 57px 57px;
    mask-position: 16px 16px;
    mask-repeat: no-repeat;
}

.solution-text {
    /* position: absolute;
    top: 29px;
    left: 33px;
    width: 254px; */
    padding: 21px 23px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 28px;
    color: white;
    margin: 0;
    z-index: 1;
}

/* Successリボン */
.success-ribbon {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #ff6b35;
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    padding: 4px 12px;
    transform: rotate(-8deg);
    z-index: 3;
    border-radius: 2px;
}

/* Golphロゴ */
.golph-logo {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 70px;
    height: 70px;
    z-index: 2;
}

.golph-ball-container {
    position: absolute;
    top: 6.62px;
    left: -5.93px;
    width: 81.308px;
    height: 81.308px;
}

.golph-ball {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.golph-text-base,
.golph-text-overlay {
    position: absolute;
    top: 24.23px;
    left: 7px;
    width: 55.867px;
    height: 21.505px;
    z-index: 1;
}

/* カルーセルナビゲーション */
.carousel-navigation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 16px;
    z-index: 10;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.carousel-btn:hover {
    opacity: 0.8;
}

.carousel-btn img {
    width: 100%;
    height: 100%;
}

.carousel-btn.next img {
    transform: rotate(180deg) scaleY(-1);
}

/* レスポンシブ対応 */
/* @media (min-width: 768px) {
    .plans-container {
        max-width: 768px;
    }

    .plan-card {
        padding: 32px 24px;
    }

    .customer-bubble,
    .solution-bubble {
        max-width: 320px;
    }
} */

/* ショールームセクション */
.showroom-section {
    padding: 60px 0px;
    background: #fff;
}

.showroom-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

/* セクション見出し */
.showroom-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.showroom-header-top-lines {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 0px;
    height: 4px;
    width: 100%;
}

.showroom-header-top-line {
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.showroom-header-top-line:first-child {
    top: 0;
}

.showroom-header-top-line:last-child {
    bottom: 0;
}

.showroom-header-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.showroom-header-line {
    flex: 1;
    height: 1px;
    background: #000;
    max-width: 150px;
}

.showroom-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    color: #000;
    margin: 0 20px;
    text-align: center;
    white-space: nowrap;
    font-style: italic;
}

/* メイン見出しと説明文 */
.showroom-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 0px 19.5px;
    width: 100%;
}

.showroom-main-title {
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    margin: 0;
    line-height: 28px;
    text-align: center;
}

.showroom-brand {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: 28px;
    color: #26d9d5;
}

.showroom-description {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #515151;
    line-height: 28px;
    max-width: 280px;
}

.showroom-description p {
    margin: 0;
}

/* CTAボタン */
.showroom-cta {
    width: 100%;
    display: flex;
    justify-content: center;
}

.showroom-button {
    background: #ff984a;
    color: white;
    border: none;
    border-radius: 0;
    width: 310px;
    height: 60px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 22px;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 3px 2px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    text-align: left;
    padding: 0;
}

.showroom-button:hover {
    transform: translateY(-1px);
    box-shadow: 3px 4px 3px 0px rgba(0, 0, 0, 0.3);
}

.showroom-button span {
    position: absolute;
    left: 135px;
    top: 17px;
    transform: translateX(-50%);
    white-space: nowrap;
    line-height: normal;
}

.showroom-button svg {
    position: absolute;
    left: 266px;
    top: 13px;
    width: 34px;
    height: 34px;
}

/* 画像スライダー */
.showroom-slider {
    width: 100%;
    position: relative;
    height: 550px;
    padding-bottom: 70px;
    /* overflow: hidden; */
}

.showroom-carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.showroom-slide {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 480px;
    width: 100%;
}

.showroom-slide.active {
    display: flex;
    margin-top: 30px;
}

.showroom-main-image {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
    aspect-ratio: 300/462;
}

.showroom-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* サイドの画像（左右に少し見える部分） */
.showroom-side-image {
    width: 5%;
    height: 100%;
    /* border-radius: 10px; */
    overflow: hidden;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 1;
}

.right {
    border-radius: 10px 0 0 10px;
}

.left {
    border-radius: 0 10px 10px 0;
}

.showroom-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-navigation {
    /* position: absolute;
    bottom: 20px;
    right: 20px; */
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    padding-right: 37px;
    gap: 16px;
    z-index: 10;
}

.showroom-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.showroom-nav-btn:hover {
    opacity: 0.8;
}

.showroom-nav-btn img {
    width: 100%;
    height: 100%;
}

.showroom-nav-btn.next img {
    transform: rotate(180deg) scaleY(-1);
}

/* レスポンシブデザイン */
/* @media (min-width: 768px) {
    .showroom-container {
        max-width: 768px;
    }

    .showroom-image-container {
        height: 400px;
    }
} */

/* お問い合わせセクション */
.contact-section {
    background: #ffffff;
    padding: 60px 0px;
    position: relative;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* セクション見出し */
.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.contact-header-top-lines {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 0px;
    height: 4px;
    width: 100%;
}

.contact-header-top-line {
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.contact-header-top-line:first-child {
    top: 0;
}

.contact-header-top-line:last-child {
    bottom: 0;
}

.contact-header-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-header-line {
    flex: 1;
    height: 1px;
    background: #000;
    max-width: 150px;
}

.contact-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    color: #000;
    margin: 0 20px;
    text-align: center;
    white-space: nowrap;
    font-style: italic;
}

/* メイン見出しと説明文 */
.contact-intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0px 18.5px;
}

.contact-main-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: #000;
    margin: 0;
}

.contact-description {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-description p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    color: #515151;
    margin: 0;
}

.contact-note {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
}

.contact-note p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    color: #515151;
    margin: 0;
}

/* お問い合わせフォーム */
.contact-form {
    width: 100%;
    /* max-width: 400px; */
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.uneekor-button-container-suminoe {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uneekor-button-container-submit {
    display: flex;
    flex-direction: column;
    align-items: center !important;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: #ff4444;
    font-weight: bold;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: #333;
    background: #ffffff;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #26d9d5;
    box-shadow: 0 0 0 2px rgba(38, 217, 213, 0.1);
}

.form-input::placeholder {
    color: #999;
    font-size: 13px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: #333;
    background: #ffffff;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    resize: vertical;
    min-height: 120px;
}

.form-textarea:focus {
    outline: none;
    border-color: #26d9d5;
    box-shadow: 0 0 0 2px rgba(38, 217, 213, 0.1);
}

.form-textarea::placeholder {
    color: #999;
    font-size: 13px;
}

/* 送信ボタン */
.form-submit {
    margin-top: 16px;
}

.contact-submit-btn {
    width: 100%;
    background: #ff984a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 16px 24px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition:
        background-color 0.3s ease,
        transform 0.1s ease;
    box-shadow: 0 2px 4px rgba(255, 152, 74, 0.3);
}

.contact-submit-btn:hover {
    background: #e8854a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 152, 74, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.submit-text {
    font-weight: bold;
}

.submit-icon {
    flex-shrink: 0;
}

/* フォームバリデーション */
/* 初回未入力ではバリデーション色を出さない */
/* フィールドが触れられた(touched)場合、または送信後(was-validated)のみ適用 */
.form-input.touched:invalid,
.form-select.touched:invalid,
.form-textarea.touched:invalid,
.contact-form.was-validated .form-input:invalid,
.contact-form.was-validated .form-select:invalid,
.contact-form.was-validated .form-textarea:invalid {
    border-color: #ff4444;
}

/* 送信完了モーダル */
.contact-complete {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-complete.is-open {
    opacity: 1;
    pointer-events: auto;
}

.contact-complete__backdrop {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #26D9D5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-complete__close {
    position: absolute;
    top: 25px;
    right: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
}

.contact-complete__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.98);
    width: min(92vw, 520px);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: transform 0.25s ease;
}

.contact-complete.is-open .contact-complete__dialog {
    transform: translate(-50%, -50%) scale(1);
}

.contact-complete__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.contact-complete__body {
    padding: 32px 24px 28px;
    text-align: center;
}

.contact-complete__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-complete__title {
    margin: 0 0 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0d0d0d;
}

.contact-complete__text {
    margin: 0 auto 20px;
    max-width: 38ch;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #515151;
}

.contact-complete__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 44px;
    padding: 0 20px;
    border: none;
    border-radius: 8px;
    background: #26d9d5;
    color: #ffffff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 6px 16px rgba(38, 217, 213, 0.3);
}

.contact-complete__button:hover {
    background: #20c7c4;
}

.contact-complete__button:active {
    transform: translateY(1px);
}

.contact-complete__text__container {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
    justify-content: center;
}

.contact-complete__container {
    display: flex;
    flex-direction: column;
    gap: 46px;
    align-items: center;
    justify-content: center;
    padding: 0px 32px;
}

.contact-complete__text__title {
    color: white;
    font-size: 18px;
}

.contact-complete__text__description {
    color: white;
    font-size: 14px;
}

@media (min-width: 768px) {
    .contact-complete__title {
        font-size: 22px;
    }

    .contact-complete__text {
        font-size: 15px;
    }

    .contact-complete__body {
        padding: 40px 32px 32px;
    }
}

.form-input.touched:valid,
.form-select.touched:valid,
.form-textarea.touched:valid,
.contact-form.was-validated .form-input:valid,
.contact-form.was-validated .form-select:valid,
.contact-form.was-validated .form-textarea:valid {
    border-color: #26d9d5;
}

/* レスポンシブ対応 */
/* @media (min-width: 768px) {
    .contact-container {
        max-width: 800px;
    }

    .contact-form {
        max-width: 500px;
    }

    .form-group {
        gap: 12px;
    }

    .contact-submit-btn {
        padding: 18px 32px;
        font-size: 18px;
    }
} */

/* フッター */
.footer {
    background: #ffffff;
    position: relative;
}

.footer-main {
    background: #cff5f4;
    padding: 60px 20px 40px;
}

.footer-container {
    max-width: 375px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* フッターロゴ */
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-box {
    border: 3px solid #000;
    padding: 12px 24px;
    width: 153px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-box img {
    width: 153px;
    height: 58px;
}

.logo-text {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
    font-style: italic;
    font-size: 24px;
    color: #000;
    font-variation-settings: "wdth" 75;
    line-height: 1;
}

/* ソーシャルアイコン */
.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

/* フッターリンク */
.footer-links {
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.footer-link {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-link:hover {
    color: #26d9d5;
    text-decoration: underline;
}

/* コピーライト */
.footer-copyright {
    background: #26d9d5;
    padding: 16px 20px;
    text-align: center;
}

.footer-copyright p {
    font-family: "Roboto", sans-serif;
    color: #000;
    margin: 0;
    font-size: 12px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
}

.privacy-policy-main-container {
    padding: 140px 35px;
}

.privacy-policy-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .container {
        width: 375px;
        margin: 0 auto;
        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    }

    header {
        width: 375px;
    }

    .mobile-nav {
        overflow: hidden;
        width: 375px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-nav .mobile-nav-content {
        overflow: hidden;
        width: 375px;
    }

    .mobile-nav-container {
        overflow: hidden;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-complete__backdrop {
        width: 375px;
    }

    .cta-container {
        width: 375px;
    }
}

/* レスポンシブ対応 */
/* @media (min-width: 768px) {
    .footer-container {
        max-width: 768px;
        gap: 50px;
    }

    .footer-main {
        padding: 80px 20px 60px;
    }

    .footer-social {
        gap: 30px;
    }

    .social-icon {
        width: 56px;
        height: 56px;
    }

    .social-icon img {
        width: 28px;
        height: 28px;
    }

    .footer-links {
        flex-direction: row;
        gap: 40px;
    }

    .footer-link {
        font-size: 15px;
    }

    .footer-copyright p {
        font-size: 13px;
    }
} */

/* @media (min-width: 1024px) {
    .footer-container {
        max-width: 1024px;
    }

    .footer-main {
        padding: 100px 20px 80px;
    }
} */

/* タブレット対応 */
/* @media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .plan-carousel {
        justify-content: center;
    }

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

/* デスクトップ対応 */
/* @media (min-width: 1024px) {
    .header-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .mobile-menu-btn {
        display: none;
    }

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

    .nav-menu a {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }

    .nav-menu a:hover {
        color: var(--accent-orange);
    }

    .hero {
        padding: 150px 20px 80px;
    }

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

    section {
        padding: 80px 20px;
    }

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

    .showroom-gallery {
        justify-content: center;
    }
} */