/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Inter', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic UI', '游ゴシック', sans-serif;
    line-height: 1.7;
    color: #000000;
    background: #ffffff;
    font-feature-settings: 'palt';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
ul, li, p{
    line-height: 1.5;
}

.fadeitem {
  opacity: 0; /* 初期状態では透明にする */
  animation: fadeDown 1.5s ease-out forwards; /* fadeDownアニメーションを1秒間、滑らかに、終了後も状態を維持して適用 */
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px); /* 上から20pxの位置から開始 */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 最終的な位置に移動 */
  }
}

.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
  &.fadein-left{
      transform: translate(-30px,0);
  }
  &.fadein-right{
      transform: translate(30px,0);
  }
  &.fadein-up{
      transform: translate(0,-30px);
  }
  &.fadein-bottom{
      transform: translate(0,30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}

.pc_none{
    display: none;
}
.sp_none{
    display: block;
}

.re_yushi h1{
    width: unset;
    background: unset;
    white-space:unset !important;
}

/* Container with 1140px width */
.container {
    max-width: 1140px;
    margin: 0 auto;
    /*padding: 0 30px;*/
    width: 100%;
}

/* Section 1 & 2 Container with Background */
.hero-value-container {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 120px;
}

.hero-value-background {
    position: absolute;
    top: 30%;
    left: -32%;
    /* width: 60%; */
    height: 100%;
    z-index: 1;
}

.hero-value-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Section 1: Hero Section */
.hero-section {
    /*min-height: 100vh;*/
    background: transparent;
    /*padding: 0 0 120px;*/
    padding: 0;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-bottom: 240px;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: #000000;
    margin-top: 0;
    letter-spacing: -0.02em;
    font-family: 'Noto Sans JP', sans-serif;
}

.hero-subtitle {
    color: #666666;
    font-weight: 700;
    font-size: 80px;
    display: block;
    margin-top: 20px;
}

.hero-decorations {
    position: relative;
    height: 640px;
    width: 100%;
}
.hero-decorations img {
    width: 72%;
}

/* 装飾1: section1_item01.png - メイン建物画像（右側上部） */
.decoration-1 {
    position: absolute;
    right: 20px;
    top: 24%;
    width: 280px;
    height: auto;
    object-fit: contain;
    z-index: 3;
}

/* 装飾2: section1_item03.png - 人物画像（左下） */
.decoration-2 {
    position: absolute;
    top: 40%;
    right: 96px;
    width: 160px;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

/* 装飾3: section1_item02.png - 人物画像（左下中央） */
.decoration-3 {
    position: absolute;
    bottom: 14%;
    /*right: 104px;*/
    width: 300px;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

/* Section 2: Value Proposition */
.value-section {
    /*padding: 120px 0;*/
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.value-content {
    position: relative;
    z-index: 2;
    text-align: right;
}

.value-text {
    max-width: 1140px;
    margin: 0 auto;
    text-align: right;
}

.value-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #000000;
    letter-spacing: -0.02em;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: right;
}

.highlight {
    color: #DAC000;
    font-weight: 900;
}

.value-subtitle {
    font-size: 32px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: right;
}

.value-decoration {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
    padding-right: 24%;
}

.value-decoration-img {
    width: 220px;
    height: auto;
    object-fit: contain;
}

.value-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: right;
    max-width: 800px;
    margin-left: auto;
}

.value-description p {
    margin-bottom: 20px;
    text-align: right;
}

/* CTA Section */
.cta-section {
    padding: 0 0 120px;
    background: #FFFEF8;
    display: flex;
    justify-content: center;
}

.cta-content {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-border {
    border: 3px solid #DAC000;
    border-radius: 20px;
    padding: 4px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(218, 192, 0, 0.15);
    /*max-width: 900px;*/
    width: 100%;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    padding: 2rem;
    gap: 2rem;
}

/* Left and Right Buttons */
.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: 1rem;*/
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    width: 30%;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button-image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    b/*ackground: #f8f9fa;
    border-radius: 50%;
    margin-bottom: 0.5rem;*/
}

.cta-item-icon {
    width: 100px;
    height: 80px;
    object-fit: contain;
}

.cta-btn-action {
    background: #DAC000;
    color: #000000;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    min-width: 140px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-btn-action:hover {
    background: #EDD761;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(218, 192, 0, 0.3);
}

/* Center Text */
.cta-center-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.cta-center-text span {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    font-family: 'Noto Sans JP', sans-serif;
}

/* Responsive adjustments for CTA */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }
    
    .cta-center-text {
        order: -1;
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .cta-center-text span {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-button {
        width: 100%;
        /*max-width: 250px;*/
    }
    
    .cta-btn-action {
        width: 100%;
    }
    .value-decoration-img {
    width: 200px;
    height: auto;
    object-fit: contain;
}
}

.cta-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .cta-title {
            font-size: 36px !important;
            font-weight: 700;
            color: #333 !important;
            text-align: center;
            margin-bottom: 20px;
            white-space: nowrap;
        }

        .cta-container {
            background-color: #E8D547;
    border-radius: 16px;
    position: relative;
    overflow: visible;
    display: flex
;
    align-items: center;
    min-height: 160px;
    padding: 24px 0;
        }

        .concierge-section {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 200px;
            height: 300px;
            z-index: 10;
        }

        .concierge-image {
            position: absolute;
            bottom: 0;
            left: 20px;
            width: 180px;
            height: auto;
        }

        .buttons-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            margin-left: 180px;
            padding: 0 40px;
        }

        .button-group {
            text-align: center;
            position: relative;
            width: 50%;
        }
        .button-group a{
            font-size: 1.6em;
        }

        .button-label {
            font-size: 18px;
            font-weight: 500;
            color: #333;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            white-space: nowrap;
        }
        .button-label span{
            display: block;
            font-size: 1.2em;
            margin-top: 8px;
        }

        .sparkle-icon {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
        }

        .sparkle-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 2px;
            height: 12px;
            background: #333;
        }

        .sparkle-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 2px;
            background: #333;
        }

        .sparkle-dots {
            position: absolute;
            top: -18px;
            display: flex;
            gap: 3px;
        }

        .sparkle-dots::before,
        .sparkle-dots::after {
            content: '';
            width: 2px;
            height: 2px;
            background: #333;
            border-radius: 50%;
        }

        .sparkle-dots.left {
            left: calc(50% - 35px);
        }

        .sparkle-dots.right {
            left: calc(50% + 20px);
        }

        .cta-button {
            display: inline-block;
            padding: 14px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-primary {
            background: #fff;
            color: #333;
            width: 100%;
        }

        .btn-primary:hover {
            background: #f8f8f8;
        }

        .btn-secondary {
            background: #333;
            color: #fff;
            width: 100%;
        }

        .btn-secondary:hover {
            background: #222;
        }

        .btn-3rd {
            border: 1px solid #333;
            background: #fff;
            color: #333;
            width: 100%;
            text-align: center;
        }

        .btn-3rd:hover {
            border: 1px solid #333;
            background: #333;
            color: #fff;
        }
        .soudan{
            display: flex;
            align-items: center;
            padding: 24px 40px;
        }
        .art_txt{
            width: 80%;
            margin-top: 16px;
            font-size: 16px;
            padding-left: 1em;
  text-indent: -1em;
  padding-right: 48px;

        }

        @media (max-width: 768px) {
            .cta-section{
                padding: 16px;
            }
            .cta-wrapper {
                max-width: unset;
                padding: 10px;
                width: 100%;
            }

            .cta-title {
                font-size: 24px;
                margin-bottom: 15px;
                white-space: unset;
            }

            .cta-container {
                flex-direction: column;
                min-height: auto;
                padding: 20px;
                text-align: center;
                overflow: hidden;
            }

            .concierge-section {
                position: static;
                width: auto;
                height: auto;
                margin-bottom: 20px;
            }

            .concierge-image {
                position: static;
                width: 100px;
            }

            .buttons-section {
                margin-left: 0;
                flex-direction: column;
                gap: 25px;
                padding: 0;
                width: 100%;
            }
            .button-group {
            width: 100%;
        }

            .button-label {
                font-size: 14px;
                margin-bottom: 12px;
            }

            .cta-button {
                padding: 16px;
                font-size: 1.2em !important;
                white-space: unset;
            }


        .btn-primary {
            font-size: 20px !important;
            padding: 16px !important;
        }

        .btn-secondary {
            font-size: 20px !important;
            color: #fff !important;
            padding: 16px !important;
        }
        .btn-3rd {
            font-size: 20px !important;
            padding: 16px !important;
            margin: 0 auto;
            margin-top: 16px;
        }
            .soudan{
                display: block;
                padding: 24px;
                text-align: center;
            }
            
        .art_txt{
            width: 100%;
            padding-right: 0;
            text-align: left;
        }
    }

/* Section 3: TRUE KABU&ND Style Migration */
.kabuand-whats-section {
    position: relative;
    min-height: 300vh; /* Ensure sufficient height for scroll behavior */
    padding: 60px 0;
}

.kabuand-whats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://rita-hudousan.com/contents/finance_test3/img/section3_bg.png');
  background-size:cover;
  background-position: top center;
  /* mix-blend-mode:soft-light; 合成モード */
  z-index: 0;
}

.sec3_keyvis{
    width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: center;
}

.sec3_keyvis_tit{
    width: 40%;
}

.sec3_keyvis h2{
    font-size: 48px;
    font-weight: bold;
}

.sec3_keyvis img{
    text-align: center;
}

.whats-content-card img{
    display: block;
    padding: 32px 0;
    margin: 0 auto;
    /*height: 96px;*/
}

/* Pin-spacer behavior for navigation container */
.pin-spacer {
    position: sticky;
    top: 0;
    align-self: flex-start;
    width: 40%;
}

/* Ensure proper stacking */
.kabuand-whats-section .relative.mx-auto {
    position: sticky;
    top: 0;
    /*min-height: 100vh;*/
    width: 1200px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    gap: 48px;
}

/* Navigation Buttons */
.whats-nav-button {
    position: relative;
    min-height: 60px;
    width: 100%;
    overflow: hidden;
    border-radius: 40px;
    border: 2px solid white;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    transform: translateX(0);
    line-height: 1.4em;
}

/* ホバー効果 */
.whats-nav-button:hover {
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.whats-nav-button:hover .absolute.bg-white {
    opacity: 0.15 !important;
}

/* アクティブ状態 */
.whats-nav-button.active {
    /*transform: translateX(12px);*/
    border: 2px solid white;
    background: linear-gradient(135deg, rgba(218, 192, 0, 0.1) 0%, rgba(218, 192, 0, 0.05) 100%);
    box-shadow: 0 6px 25px rgba(218, 192, 0, 0.2);
}

.whats-nav-button.active .absolute.bg-white {
    opacity: 0.25 !important;
    background: linear-gradient(135deg, rgba(218, 192, 0, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
}

/* アクティブ状態での右側アイコンの変化 */
.whats-nav-button.active .size-\[16px\] {
    background: #DAC000;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.whats-nav-button.active .size-\[16px\] svg {
    color: #000000;
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

/* ホバー時のテキスト効果 */
.whats-nav-button:hover .text-white {
    color: #000;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.whats-nav-button.active .text-white {
    color: #000;
    font-weight: 700;
    /*text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);*/
}

.whats-nav-button .relative.flex {
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* アクティブボタンに矢印インジケーター追加 */
.whats-nav-button.active::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid #DAC000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* ホバー時のボタン全体の微細な効果 */
.whats-nav-button:not(.active):hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

/* 非アクティブボタンのホバー時アイコン変化 */
.whats-nav-button:not(.active):hover .size-\[16px\] {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Content Cards */
.whats-content-card {
    position: relative;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whats-content-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background-color: #fff;
    border-radius: 24px;
}

.whats-content-card:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.whats-content-card.active {
    position: relative;
    z-index: 2;
}

/* Utility classes to match kabuand.com */
.size-full {
    width: 100%;
    height: 100%;
}

.size-4 {
    width: 1rem;
    height: 1rem;
}

.size-10 {
    width: 2.5rem;
    height: 2.5rem;
}

.size-16 {
    width: 4rem;
    height: 4rem;
}

.size-\[16px\] {
    width: 16px;
    height: 16px;
}

.size-\[12px\] {
    width: 12px;
    height: 12px;
}

.w-\[24px\] {
    width: 24px;
}

.w-\[86px\] {
    width: 86px;
}

.h-\[22px\] {
    height: 22px;
}

.min-h-\[60px\] {
    min-height: 60px;
}

.min-h-\[500px\] {
    min-height: 500px;
}

.max-w-\[1180px\] {
    max-width: 1180px;
}

.max-w-\[640px\] {
    max-width: 640px;
}

.max-w-\[360px\] {
    max-width: 360px;
}

.min-w-\[320px\] {
    min-width: 320px;
}

.rounded-\[40px\] {
    border-radius: 40px;
}

.rounded-\[8px\] {
    border-radius: 8px;
}

.rounded-\[11px\] {
    border-radius: 11px;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.gap-y-4 {
    row-gap: 1rem;
}

.gap-y-10 {
    row-gap: 2.5rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.flex-none {
    flex: none;
}

.text-\[1\.6rem\] {
    font-size: 1.6rem;
}

.text-\[2rem\] {
    font-size: 2rem;
}

.text-\[2\.5rem\] {
    font-size: 2.5rem;
}

.font-\[700\] {
    font-weight: 700;
}

.text-brand {
    color: #DAC000;
}

.bg-brand {
    background-color: #DAC000;
}

.aspect-\[3\.352\] {
    aspect-ratio: 3.352;
}

.text-base{
    font-size: 16px;
}

/* Section 3 Mobile Responsive Styles - Follow kabuand.com structure */
@media (max-width: 768px) {
    .sec3_keyvis{
    width: 100%;
    display: block;
    padding: 0 10px;
}
.sec3_keyvis_tit{
    width: 100%;
    margin-bottom: 16px;
    text-align: center;
}
.sec3_keyvis img{
    width: 88%;
    margin-bottom: 24px;
    text-align: center;
}
.whats-content-card img{
    width: 100%;
}
.whats-content-card {
    background-color: #fff;
    border-radius: 24px;
}
    /* Section 3 Container - Mobile adjustments */
    .kabuand-whats-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .kabuand-whats-section .relative.mx-auto {
        position: relative;
        top: auto;
        min-height: auto;
        display: block;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
    }
    
    /* Mobile layout - Stack navigation and content vertically */
    .pin-spacer {
        position: relative;
        top: auto;
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    
    /* Navigation container - Mobile adjustments */
    #whats-nav-container {
        width: 100%;
        min-width: 100%;
        max-width: none;
        padding-top: 0;
        min-height: auto;
    }
    
    /* Navigation buttons - Mobile style matching kabuand.com */
    .whats-nav-button {
        min-height: 50px;
        border-radius: 25px;
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .whats-nav-button .relative.flex {
        font-size: 14px;
        font-weight: 600;
        padding-left: 16px;
        padding-right: 20px;
    }
    
    .whats-nav-button .w-\[24px\] {
        width: 20px;
        margin-right: 8px;
    }
    
    .whats-nav-button .size-\[16px\] {
        width: 14px;
        height: 14px;
    }
    
    .whats-nav-button .size-\[12px\] {
        width: 10px;
        height: 10px;
    }
    
    /* Mobile behavior - Remove active states and hover effects */
    .whats-nav-button.active {
        transform: translateX(0);
        border-color: rgba(255, 255, 255, 0.7);
        background: transparent;
        box-shadow: none;
    }
    
    .whats-nav-button:hover {
        transform: translateX(0);
        border-color: rgba(255, 255, 255, 0.8);
        box-shadow: none;
    }
    
    .whats-nav-button.active .absolute.bg-white {
        opacity: 0 !important;
    }
    
    .whats-nav-button.active::after {
        display: none;
    }
    
    .whats-nav-button.active .size-\[16px\] {
        background: rgba(255, 255, 255, 0.8);
        transform: scale(1);
    }
    
    .whats-nav-button.active .size-\[16px\] svg {
        color: #DAC000;
        transform: rotate(0deg);
    }
    
    /* Content area - Mobile layout: Show all cards */
    .kabuand-whats-section .relative.mx-auto > div:last-child {
        margin-left: 0;
        margin-top: 0;
        width: 100%;
        max-width: none;
        padding-top: 0;
        gap: 20px;
        display: block;
    }
    
    /* Content cards - Mobile: Show all cards, remove active/inactive states */
    .whats-content-card {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        margin-bottom: 20px;
        z-index: auto !important;
    }
    
    .whats-content-card .relative.min-h-\[500px\] {
        min-height: auto;
    }
    
    .whats-content-card section {
        padding: 20px 16px;
    }
    
    /* Card content - Mobile typography */
    .whats-content-card .relative.flex.h-\[22px\] {
        height: 18px;
        font-size: 12px;
    }
    
    .whats-content-card .w-\[86px\] {
        width: 70px;
    }
    
    .whats-content-card h3 {
        font-size: 1.2rem !important;
        margin-top: 12px;
        line-height: 1.3;
    }
    
    .whats-content-card .relative.mt-6 {
        margin-top: 16px;
    }
    
    .whats-content-card p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Image adjustments for mobile */
    .whats-content-card .relative.mt-6.aspect-\[3\.352\] {
        margin-top: 16px;
        aspect-ratio: 2.5;
    }
    
    .whats-content-card .relative.mt-4 {
        margin-top: 12px;
    }
    
    /* List items - Mobile adjustments */
    .whats-content-card ul.space-y-2 li {
        font-size: 14px;
        margin-top: 8px;
    }
    
    .whats-content-card ul.space-y-2 li span:first-child {
        margin-right: 8px;
        font-size: 14px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .kabuand-whats-section {
        padding: 30px 0;
    }
    
    .kabuand-whats-section .relative.mx-auto {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .whats-nav-button {
        min-height: 45px;
        font-size: 13px;
    }
    
    .whats-nav-button .relative.flex {
        font-size: 18px !important;
        font-weight: bold !important;
        padding-left: 8px;
        padding-right: 8px;
        color: #333;
    }
    
    .whats-content-card section {
        padding: 24px;
    }
    
    .whats-content-card h3 {
        font-size: 1.1rem !important;
    }
    
    .whats-content-card p {
        font-size: 16px;
    }
    
    .whats-content-card ul.space-y-2 li {
        font-size: 13px;
    }
}

/* Responsive classes */
@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    
    /*.md\:px-\[30px\] {
        padding-left: 30px;
        padding-right: 30px;
    }*/
    
    .md\:pt-\[90px\] {
        padding-top: 48px;
    }
    
    .md\:mt-0 {
        margin-top: 0;
    }
    
    .md\:mt-6 {
        margin-top: 1.5rem;
    }
    
    .md\:ml-\[2\%\] {
        margin-left: 2%;
    }
    
    /*.md\:w-\[32\.15\%\] {
        width: 44%;
    }*/
    
    .md\:w-\[65\%\] {
        width: 65%;
    }
    
    /* {
        max-width: 360px;
    }*/
    
    .md\:max-w-\[640px\] {
        max-width: unset;
    }
    
    /*.md\:min-h-\[360px\] {
        min-height: 360px;
    }*/
    
    .md\:gap-y-10 {
        row-gap: 2.5rem;
    }
    
    .md\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    
    .md\:text-\[2rem\] {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .lg\:p-14 {
        padding: 1.6rem;
    }
    
    .lg\:text-\[2\.5rem\] {
        font-size: 2.5rem;
    }
}

/* Section 4: Additional Content */
.additional-section {
    padding: 120px 0;
    background: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    font-family: 'Noto Sans JP', sans-serif;
}

.additional-text {
    max-width: 800px;
    margin: 0 auto;
}

.additional-text p {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.8;
    color: #666666;
    text-align: center;
}

/* Section 5: Our Mission (Text Loop) */
.mission-section {
    background: transparent;
    padding: 0;
    overflow: hidden;
    position: relative;
    /* Create a visual overlay effect */
    z-index: 50;
}

.mission-loop-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.mission-loop-text {
    display: flex;
    white-space: nowrap;
    animation: scroll-text 25s linear infinite;
    will-change: transform;
}

.mission-text {
    font-size: 240px;
    font-weight: bold;
    color: #DAC000;
    margin-right: 10rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
    /*text-transform: uppercase;*/
    line-height: 1;
    flex-shrink: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: -30px;
}

@keyframes scroll-text {
    from {
        transform: translateX(100vw);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Add a subtle gradient overlay for better visual integration */
.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.3) 80%,
        rgba(255, 255, 255, 0.8) 100%
    );*/
    pointer-events: none;
    z-index: 1;
}

.mission-loop-text {
    position: relative;
    z-index: 2;
}

/* Section 4: Customer Survey CTA (From Figma Design) */
.customer-survey-section {
    padding: 120px 0;
    background: #f3f3f3;
    position: relative;
    overflow: hidden;
    /*margin-top:-200px;*/
}

.customer-survey-section .container{
    overflow:unset !important;
}

.survey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 600px;
    position: relative;
}

/* Left Side: Text Content */
.survey-text {
    padding-right: 4rem;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.survey-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.survey-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 0;
}

/* Right Side: Survey CTA Panel with Black Background extending to browser edge */
.survey-cta-panel {
    position: relative;
    background: #000000;
    color: #ffffff;
    padding: 4rem 4rem;
    border-radius: 20px 0 0 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    /* Extend to browser edge */
    margin-right: calc(-50vw + 50%);
    padding-right: calc(50vw - 50% + 3rem);
}

.survey-cta-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff !important;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
}
.ctab-title {
    font-size: 31px;
    font-weight: 700;
    color: #333 !important;
    line-height: 1.3;
    margin-bottom: 24px;
    font-family: 'Noto Sans JP', sans-serif;
}

.cta-description {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 2rem;
}

.cta-illustration {
    position: relative;
    width: 200px;
    height: 150px;
    margin: 2rem 0;
}

/* Images in Survey CTA Panel (Right Side - White Filter) */
.survey-cta-panel .person-checklist {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.survey-cta-panel .checklist {
    position: absolute;
    right: 0;
    top: 20px;
    width: 80px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Images in Survey Text (Left Side - Natural Colors) */
.survey-text .person-checklist {
    position: absolute;
    top: 8%;
    left: -32px;
    width: 104px;
    height: auto;
    object-fit: contain;
    filter: none;
}

.survey-text .checklist {
    position: absolute;
    right: -64px;
    top: 24%;
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: none;
}

.survey-action {
    /*text-align: left;*/
}

.action-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.survey-btn {
    background: #DAC000;
    color: #000000;
    padding: 1rem 3rem;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    /*min-width: 200px;*/
    width: 100%;
    padding: 24px 0;
}

.survey-btn:hover {
    background: #EDD761;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218, 192, 0, 0.3);
}

/* Section 6: User Reviews Slider */
.reviews-section {
    padding: 120px 0;
    background: #ffffff;
    text-align: center;
}

.reviews-container {
    /*max-width: 1140px;*/
    margin: 0 auto;
    /*padding: 0 30px;*/
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-section .section-title span{
    color: #DAC000;
    font-weight: bold;
}

.reviews-subtitle {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0;
    font-weight: 400;
}

.reviews-slider-wrapper {
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 0 2rem;
}

.review-slide {
    min-width: calc(33.333% - 1.333rem);
    flex-shrink: 0;
}

.review-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.review-rating {
    margin-bottom: 1.5rem;
    color: #DAC000;
    font-size: 18px;
    text-align: center;
}

.review-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2.0rem;
    line-height: 1.4;
    text-align: left;
}

.review-text {
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 16px;
    flex-grow: 1;
}

.review-date {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #999999;
    font-weight: 500;
}

.review-date img {
    width: 64px;
}

.slide-content img{
    width: 24%;
    margin-bottom: 16px;
}
.revi{
    align-items: flex-end;
    text-align: right !important;
    margin-top: 24px;
}

/* Centered Slider Controls */
.slider-controls-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    background: #f0f0f0;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
}

.slider-btn:hover {
    background: #DAC000;
    color: #000000;
    transform: scale(1.1);
}

/* 画像 */
.rv_area {
  width: 100%;
  height: auto;
  padding: 24px 48px;
  background-color: #f8f9fa;
}

/* スライド全体 */
.swiper-slide {
  transition: transform 0.6s;
}

.btn_slide{
    width: 1140px;
    margin: 0 auto;
    display: flex;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0;
    right: auto;
    width: 50%;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0;
    left: auto;
    width: 50%;
}

.swiper-button-next, .swiper-button-prev {
    position: relative;
    margin-top: 40px;
}

/* 左右のスライド */
.swiper-slide-prev,
.swiper-slide-next,
.swiper-slide-duplicate-prev,
.swiper-slide-duplicate-next {
  transform: scale(0.85);
}

.swiper-button-next, .swiper-button-prev {
    color: #000;
    height: unset;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 20px;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
    background-color: #f3f3f3;
    padding: 16px 20px;
    border-radius: 48px;
}
.sp_none{
    display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title, .hero-subtitle {
        font-size: 64px;
    }
    
    .value-title {
        font-size: 48px;
    }
    
    .features-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-value-background {
        left: -30%;
        width: 200%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 3rem;
    }
    
    .hero-title, .hero-subtitle {
        font-size: 48px;
    }
    
    .hero-decorations {
        height: 350px;
    }
    
    /*.decoration-1 {

        right: 20px;
    top: 50%;
    width: 200px;
    }
    
    .decoration-2 {
        top: 70%;
    left: 30%;
    width: 56px;
    }
    
    .decoration-3 {
        bottom: 0;
    left: 50px;
    width: 120px;
    }*/
    
    .value-content {
        text-align: center;
    }
    
    .value-text {
        text-align: center;
    }
    
    .value-title {
        text-align: center;
    }
    
    .value-subtitle {
        text-align: center;
    }
    
    .value-decoration {
        justify-content: none;
    }
    
    .value-description {
        text-align: left;
        margin: 0 auto;
    }
    
    .value-description p {
        text-align: left;
    }
    
    .value-title {
        font-size: 48px;
    }
    
    .value-subtitle {
        font-size: 24px;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .features-steps {
        max-width: 100%;
    }
    
    .feature-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        justify-content: center;
        padding: 1.5rem 2rem;
    }
    
    .cta-button.primary {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mission-text {
        font-size: 32px;
        margin-right: 2rem;
    }
    
    .review-slide {
        min-width: 100%;
    }
    
    .reviews-header {
        text-align: center;
        padding: 0 16px;
        margin-bottom: 24px;
    }
    
    .reviews-subtitle {
        font-size: 16px;
    }
    
    .reviews-slider-wrapper {
        margin-bottom: 2rem;
    }
    
    .reviews-slider {
        padding: 0 1rem;
    }
    .cta-description {
    margin-bottom: 24px;
}
}

@media (max-width: 480px) {
    .pc_none{
    display: block;
}
.sp_none{
    display: none;
}
    .container {
        padding: 0 24px;
    }
    
    .hero-value-background {
        left: -30%;
        width: 200%;
    }
    
    .hero-title, .hero-subtitle {
        font-size: 48px;
        text-align: center;
    }
    
    /*.hero-decorations {
        height: 280px;
        margin-top: 48px;
    }*/
    .hero-section {
    min-height: unset !important;
}
    .decoration-1 {
    right: 18% !important;
    top: 0 !important;
    width: 220px !important;
    }
    
    .decoration-2 {
        top: 24% !important;
    right: 34% !important;
    width: 120px !important;
    }
    
    .decoration-3 {
        /*bottom: -32px !important;*/
    right: 24% !important;
    width: 200px !important;
    }

    .hero-value-bg-image {
    width: 72%;
    height: 72%;
 
}
    
    .value-title {
        font-size: 48px;
    }
    
    .features-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .mission-text {
        font-size: 160px;
    }
    
    .feature-step {
        padding: 1.5rem;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .hero-section {
        padding: 64px 0 0;
        align-items: flex-start;
    }
    
    .value-section, .additional-section, .reviews-section {
        padding: 80px 0 24px;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
    }
    
    .cta-button span {
        font-size: 16px;
    }
    
    .cta-btn-action {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .survey-cta-panel {
    min-height: 320px !important;
}
.btn_slide{
    width: 100%;
}
.rv_area {
  padding: 24px 16px;
}
.additional-text p {
    font-size: 28px;
}
.slide-content img{
    width: 48%;
}
.pc_none{
    display: block;
}
.sp_none{
    display: none;
}

}

/* Isometric Image Animations for Section 1, 2, 4 */
.isometric-image {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: none;
}

.isometric-image.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.05);
    }
    70% {
        opacity: 0.9;
        transform: translateY(5px) scale(0.98);
    }
    90% {
        opacity: 0.95;
        transform: translateY(-2px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Delayed animations for multiple images in same section */
.isometric-image.delay-1 {
    animation-delay: 0.2s;
}

.isometric-image.delay-2 {
    animation-delay: 0.4s;
}

.isometric-image.delay-3 {
    animation-delay: 0.6s;
}

/* Additional performance optimizations */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.mission-loop-text {
    will-change: transform;
}

.reviews-slider {
    will-change: transform;
}

.feature-step {
    will-change: opacity, transform;
}

/* Section 4 Mobile Responsive */
@media (max-width: 768px) {
    .survey-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .survey-text {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }
    
    .survey-title {
        font-size: 36px;
    }
    
    .survey-cta-panel {
        margin-right: 0;
        padding: 16px;
        border-radius: 20px;
        margin-left: -20px;
        margin-right: -20px;
    }
    
    .cta-title {
        font-size: 24px;
        color: #fff !important;
        margin-top: 32px;
    }
    
    .cta-illustration {
        width: 150px;
        height: 120px;
    }
    
    .survey-text .checklist {
        width: 100px;
    }

    .survey-text .person-checklist {
        width: 92px;
    }
    
    .survey-cta-panel .person-checklist, .survey-cta-panel .checklist {
        width: 100px;
    }
}

/* Print styles */
@media print {
    .mission-section {
        background: white !important;
    }
    
    .mission-text {
        color: black !important;
    }
    
    .reviews-section {
        page-break-inside: avoid;
    }
}

/* add re_cta */
.slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            margin: 50px 0;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: fit-content;
            padding: 24px 0;
        }

        .slide {
            flex-shrink: 0;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            height: auto;
            background: #fff;
            color: #333;
            font-size: 16px;
            font-weight: 500;
            border-radius: 10px;
            box-shadow: 0 4px 14px rgba(0,0,0,0.1);
            margin: 0 10px;
            padding: 24px;
        }

        /* デスクトップ表示 */
        @media (min-width: 769px) {
            .slide {
                width: 640px;
                min-width: 640px;
            }

            /*.slide:nth-child(even) {
                background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
            }

            .slide:nth-child(3n) {
                background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
            }*/
        }

        /* タブレット・スマホ表示 */
        @media (max-width: 768px) {
            .slider-container {
                padding: 0 15px;
            }

            .slide {
                width: calc(100vw - 80px);
                min-width: calc(100vw - 80px);
            }

            /*.slide:nth-child(even) {
                background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
            }

            .slide:nth-child(3n) {
                background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
            }*/
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            background: white;
            border: 2px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            color: #333;
            transition: all 0.3s ease;
            user-select: none;
        }

        .slider-btn:hover {
            border-color: #667eea;
            color: #667eea;
            transform: scale(1.05);
            box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
        }

        .slider-btn:active {
            transform: scale(0.95);
        }

        .slider-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #667eea;
            transform: scale(1.2);
        }

        /* スライド内容のサンプル */
        .slide-content {
            text-align: center;
            padding: 20px;
        }

        .slide-content h2 {
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .slide-content p {
            font-size: 1.1em;
            opacity: 0.9;
            line-height: 1.6;
            text-align: left;
        }

        @media (max-width: 768px) {
            .slide-content h2 {
                font-size: 1.8em;
            }
            
            .slide-content p {
                font-size: 1em;
            }
        }
    .slider-indicators{
        display: none;
    }

.user_segment{
    display: flex;
    gap: 48px;
}
.cta_tit{
    text-align: center;
    margin-bottom: 80px;
}
.cnt_l,
.cnt_r{
    width: 50%;
    background-color: #E8D547;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}
.cnt_l span,
.cnt_r span{
    display: block;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 24px;
}
.cnt_l .concierge-image{
    position: unset;
    margin-top: -96px;
    margin-bottom: 24px;
    bottom: 0;
    left: 20px;
    width: 160px;
    height: auto;
}
.cnt_r .soudan {
    display: unset;
    align-items: unset;
    padding: unset;
}
.cnt_r .art_txt{
    width: 100%;
    margin-top: 16px;
    font-size: 16px;
    padding-left: 1em;
    text-indent: -1em;
    padding-right: 0;
    text-align: left;
    margin-bottom: 16px;
}
.form_att_section{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 80px;
}
.atn_form{
    margin-top: 48px;
    display: flex;
    align-items: center;
    padding: 24px;
    background-color: #f3f3f3;
}
.atn_tit{
    width: 15%;
    padding: 8px;
    background-color: #DAC000;
    font-size: 16px;
    font-weight: 600;
}
.atn_cnt{
    width: 85%;
    padding: 8px;
    text-align: center;
    font-size: 14px;
}
@media (max-width: 768px) {
    .user_segment{
        display: block;
        gap: 0;
        margin-bottom: 48px;
    }
    .cnt_l,
    .cnt_r{
        width: 100%;
        padding: 24px;
    }
    .cnt_l{
        margin-bottom: 24px;
    }
    .cnt_l .concierge-image{
        margin-top: -80px;
        width: 120px;
    }
    .form_att_section{
    max-width: unset;
    width: 100%;
    margin: 0 auto;
    padding: 16px 16px 48px;
}
    .atn_form{
    margin-top: 48px;
    display: block;
    padding: 16px;
}
.atn_tit{
    width: 100%;
}
.atn_cnt{
    width: 100%;
    text-align: left;
}
}