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

        body {
            font-family: 'Helvetica Neue', Arial, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
            overflow-x: hidden;
            background: #0a0a0a;
        }
        p{
            font-size: 16px;
        }
        .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 2.4s;
  &.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;
  }
}
html {
    scroll-behavior: smooth;
}

.re_sale h1 {
    white-space: unset !important;
    background: unset !important;
    padding: 0 !important;
}
        /* ヒーローセクション */
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            animation: heroFadeIn 1.5s ease-out;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 700;
            margin-bottom: 2.4rem;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.5rem);
            opacity: 0.9;
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .hero-cta {
            display: inline-block;
            padding: 1rem 3rem;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .hero-cta:hover {
            background: white;
            color: #764ba2;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* スティッキーセクションのコンテナ */
        .sticky-container {
            position: relative;
            height: 640vh; /* 4セクション分の高さ */
        }

        /* 共通セクションスタイル */
        .section {
            /*position: sticky;*/
            top: 0;
            width: 100%;
            /*height: 100vh;*/
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(100px) scale(0.9);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .section2 {
            /*position: sticky;*/
            top: 0;
            width: 100%;
            /*height: 100vh;*/
            display: flex;
            align-items: center;
            justify-content: center;
            /*opacity: 0;
            transform: translateY(100px) scale(0.9);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);*/
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .section-content {
            width: 1140px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: white;
            margin-bottom: 2.4rem;
            font-weight: 700;
            letter-spacing: 0.1em;
        }

        .section-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            /*max-width: 800px;*/
            margin: 0 auto;
        }

        /* Section 2 */
        #section2 {
            background: #DAC000;
            border-radius: 16px;
            padding: 112px 0;
            z-index: 10;
            width: 100%;
        }
        #section2 .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: #000;
            margin: 96px 0;
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .ap_area{
            display: flex;
            gap: 24px;
        }
        .ap_area img{
            height: 240px !important;
            margin-bottom: 24px;
        }
        .ap_area .col2{
            width: 50%;
            background: #fff;
            border-radius: 16px;
            padding: 32px;
        }
        .ap_ctg{
            font-size: 1.6em;
            font-weight: bold;
            color: #BDBDBD;
            margin-bottom: 16px;
        }
        .ap_name_l{
            font-size: 2.0em;
            font-weight: bold;
            letter-spacing: 0.4em;
            margin-bottom: 48px;
            color: #EA1C6E;
        }
        .ap_name_r{
            font-size: 2.0em;
            font-weight: bold;
            letter-spacing: 0.4em;
            margin-bottom: 48px;
            color: #1C7FEA;
        }
        .ap_disc_l{
            font-size: 1.6em;
            font-weight: bold;
            letter-spacing: 0.4em;
            background:#EA1C6E ;
            color: #fff;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 8px;
        }
        .ap_disc_r{
            font-size: 1.6em;
            font-weight: bold;
            letter-spacing: 0.4em;
            background:#1C7FEA ;
            color: #fff;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 8px;
        }
        .ap_recd{
            text-align: right;
            font-size: 1.2em;
            font-weight: 500;
            letter-spacing: 0.2em;
            margin-bottom: 48px;
        }
        .ap_area p{
            text-align: left;
        }

        /* Section 3 */
        #section3 {   
            /*: #fff;
            border-radius: 16px;
            padding: 48px 0;*/
            z-index: 10;
            width: 100%;
            padding: 112px 0 0;
            margin: 0 0 128px;
            background-image: url(https://rita-hudousan.com/contents/form_sale_test/common/img/rita_town.png) ;
            background-repeat: no-repeat;
            background-position: top;
            background-size:100%;
        }
        #section3.section{
            /*height: 140vh;*/
            align-items: top;
            align-items:flex-start;
            justify-content: center;
        }

        #section3 .section-title{
            color: #000;
            text-align: center;
            margin-bottom: 48px;
        }
        #section3 .udr_arw{
            /*margin-bottom: 8%;*/
        }
        #section3 .udr_arw img{
            width: 120px;
        }

        #section3 .section-description {
            color: #000;
            text-align: left;
            /*padding-left: 4%;*/
            margin-bottom: 56%;
        }

        .pose_area{
            /*display: flex;
            align-items:flex-start;
            gap: 24px;*/
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 8px;
            padding: 48px 104px 80px;
            margin-bottom: 80px;
        }
        .pose_area .col3{
            width: 100%;
        }
        .pose_point{
            display: flex;
            align-items:flex-start;
            gap: 8px;
            margin-top: 48px;
        }
        .pose_point .col3{
            width: 33%;
            border: 3px solid #000;
            border-radius: 8px;
            padding: 24px;
            font-size: 1.4em;
            font-weight: bold;
            letter-spacing: 0.08em;
        }

        .pose_tit{
            display: block;
            font-size: 2.8em;
            font-weight: bold;
            line-height: 1.4;
            letter-spacing: 0.08em;
            margin-bottom: 48px;
        }
        .pose_area .col3 p{
            text-align: left !important;
        }


        /* Section 4 */
        #section4 {
            background: #fff;
            z-index: 12;
            width: 100%;
            padding: 112px 0;
        }
        #section4.section{
            align-items: top;
            align-items:flex-start;
            justify-content: center;
        }

        #section4 .section-title{
            color: #000;
            text-align: center;
        }

        #section4 .section-description {
            color: #000;
            text-align: center;
            margin-bottom: 8%;
        }
        #section4 .section-title span {
            color: #DAC000;
        }

        #section_faq{
            margin: 0 0 48px;
        }
        #section_faq .section-title{
            color: #000;
            text-align: center;
        }
        #section_faq img{
            width: 20%;
            margin-bottom: 24px;
        }

        #section_choice{
            margin: 112px 0 0;
        }

        #section_choice .section-title{
            color: #000;
            text-align: center;
            margin-bottom: 88px;
        }
        #section_choice img{
            height: 200px !important;
        }
        #section_choice .udr_arw{
            display: flex;
            margin-bottom: -112px;
        }
        .arw_l{
            width: 50%;
            text-align: right;
            padding-right: 16%;

        }
        .arw_r{
            width: 50%;
            text-align: left;
            padding-left: 16%;

        }

        .step-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 30px;
        }

        .step-item {
            flex: 1;
            text-align: left;
            position: relative;
        }

        .step-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .step-number {
            color: #DAC000;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.05em;
            margin-bottom: -10px;
        }

        .step-number-large {
            color: #DAC000;
            font-size: 48px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0.02em;
        }

        .step-circle {
            width: 120px;
            height: 120px;
            background-color: #C8C8C8;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: block;
        }

        .step-title {
            color: #DAC000;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }

        .step-description {
            color: #333333;
            font-size: 14px;
            line-height: 1.7;
            letter-spacing: 0.02em;
        }

        .step_msg {
            font-size: clamp(2.4rem, 2.5vw, 1.4rem);
            color: #000;
            margin-top: 16%;
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .step_msg span{
            color: #DAC000;
        }

        /* Section 5 */
        #section5 {
            background: #DAC000;
            /*border-radius: 16px;*/
            padding: 112px 0;
            z-index: 12;
            width: 100%;
        }

        .faq-container {
            /*max-width: 900px;
            margin: 0 auto;
            display: flex;*/
            align-items: flex-start;
        }

        .faq-header {
            margin-bottom: 15px;
            width: 40%;
            text-align: left;
        }

        .faq-title {
            font-size: 48px;
            font-weight: 900;
            color: #000000;
            margin-bottom: 10px;
            letter-spacing: 0.05em;
        }

        .faq-subtitle {
            font-size: 16px;
            color: #000000;
            line-height: 1.6;
            margin-bottom: 35px;
        }

        
        .faq-container .cta-button {
            width: 68%;
            display: inline-block;
            text-align: center;
            padding: 16px;
            background: #000;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1.25rem;
            font-weight: 500;
            letter-spacing: 0.16em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        }

        .faq-list {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 15px;
            text-align: left;
        }

        .faq-item {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            background-color: #FFF3D4;
        }

        .faq-question {
            padding: 20px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            position: relative;
            min-height: 70px;
        }

        .faq-question-content {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
        }

        .q-mark {
            background-color: #FDB813;
            color: #000000;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            flex-shrink: 0;
        }

        .question-text {
            font-size: 16px;
            font-weight: 700;
            color: #000000;
            letter-spacing: 0.02em;
        }

        .toggle-icon {
            width: 24px;
            height: 24px;
            position: relative;
            flex-shrink: 0;
        }

        .toggle-icon::before,
        .toggle-icon::after {
            content: '';
            position: absolute;
            background-color: #FDB813;
            transition: all 0.3s ease;
        }

        .toggle-icon::before {
            width: 24px;
            height: 3px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .toggle-icon::after {
            width: 3px;
            height: 24px;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

        .faq-item.active .toggle-icon::after {
            opacity: 0;
            transform: translateX(-50%) rotate(90deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 640px;
        }

        .faq-answer-content {
            padding: 0 25px 25px 25px;
            display: flex;
            gap: 20px;
        }

        .a-mark {
            background-color: #E0E0E0;
            color: #666666;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            flex-shrink: 0;
        }

        .answer-text {
            font-size: 14px;
            line-height: 1.8;
            color: #333333;
            letter-spacing: 0.02em;
            padding-top: 5px;
        }
        
        /* Section 6 */
        #section6 {
            background: #fff;
            padding: 80px 0;
            z-index: 12;
            width: 100%;
        }

.cta-container {
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .cta-content {
            flex: 1;
            width: 70%;
            text-align: left;
        }

        .cta-info {
            width: 30%;
        }

        .cta-title {
            color: #000;
            font-size: 56px;
            font-weight: 900;
            line-height: 1.3;
            letter-spacing: 0.02em;
            margin-bottom: 30px;
        }

        .cta-description {
            color: #000;
            font-size: 18px;
            line-height: 1.8;
            letter-spacing: 0.05em;
            text-align: left;
            margin-bottom: 48px;
        }

        .cta-buttons {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .btn {
            padding: 20px 50px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            letter-spacing: 0.08em;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            border: 2px solid transparent;
            min-width: 200px;
        }

        .btn-outline {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
            width: 50%;
        }

        .btn-outline:hover {
            background-color: #ffffff;
            color: #000000;
        }

        .btn-primary {
            background-color: #E91E63;
            color: #ffffff;
            border: 2px solid #E91E63;
            width: 100%;
        }

        .btn-primary:hover {
            background-color: #D81B60;
            border-color: #D81B60;
        }

        /* フッター */
        .footer {
            background: #0a0a0a;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }

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

        .footer-title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2rem;
        }

        /* スクロールインジケーター */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        .scroll-indicator::before {
            content: '↓';
            font-size: 24px;
            color: white;
            opacity: 0.7;
        }

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

        body {
            font-family: 'Noto Sans JP', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #ffffff;
        }

        .kv-section {
            width: 100%;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            background: #fff;
        }

        .kv-container {
            width: 1140px;
            max-width: calc(100% - 40px);
            margin: 0 auto;
            position: relative;
            z-index: 10;
            padding: 160px 0;
            display: flex;
            /*align-items: center;*/
            min-height: 100vh;
        }

        .kv-content {
            text-align: left;
            width: 100%;
            /*max-width: 800px;*/
            margin: 0 auto;
        }

        .kv-title {
            font-size: 4.0rem;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 80px;
            line-height: 1.2;
            letter-spacing: 0.08em;
        }
        .kv-subtit{
            font-size: 2.4rem;
            color: #000;
            margin-bottom: 16px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;

        }

        .kv-cnt{
            display: flex;
            align-items: center;
        }

        .kvtit_rd{
            color: #EA1C6E;
            font-weight: bold;
        }
        .kvtit_bl{
            color: #1C7FEA;
            font-weight: bold;
        }

        .kv-subtitle {
            font-size: 1.5rem;
            color: #007bff;
            margin-bottom: 24px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .kv-description {
            width: 68%;
            font-size: 1.25rem;
            color: #4a4a4a;
            max-width: 680px;
            /*margin: 0 auto 56px;
            margin-bottom: 48px;*/
            line-height: 1.;
            font-weight: 400;
            padding-right: 24px;
        }

        .cta-button {
            width: 32%;
            display: inline-block;
            text-align: center;
            padding: 16px;
            background: #EA1C6E;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1.25rem;
            font-weight: 500;
            letter-spacing: 0.16em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
        }

        /* パララックス用の四角オブジェクト群 */
        .parallax-objects {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .parallax-square {
            position: absolute;
            border-radius: 4px;
            /*opacity: 0.8;*/
            transition: transform 0.1s linear;
        }

        /* 異なるサイズと色の四角形 */
        .square-1 {
            width: 172px;
            height: 320px;
            background-color: #DAC000;
            bottom: 8%;
            left: 0%;
        }

        .square-2 {
            width: 140px;
            height: 220px;
            background-color: #DAC000;
            bottom: 4%;
            left: 13%;
        }

        .square-3 {
            width: 120px;
            height: 160px;
            background-color: #DAC000;
            bottom: 6%;
            left: 26%;
        }

        .square-4 {
            width: 100px;
            height: 120px;
            background-color: #DAC000;
            bottom: 8%;
            left: 36%;
        }

        .square-5 {
            width: 100px;
            height: 120px;
            background-color: #DAC000;
            bottom: 4%;
            left: 44%;
        }

        .square-6 {
            width: 120px;
            height: 160px;
            background-color: #DAC000;
            bottom: 6%;
            left: 52%;
        }

        .square-7 {
            width: 100px;
            height: 120px;
            background-color: #DAC000;
            bottom: 4%;
            left: 62%;
        }

        .square-8 {
            width: 140px;
            height: 220px;
            background-color: #DAC000;
            bottom: 8%;
            left: 72%;
        }

        .square-9 {
            width: 172px;
            height: 320px;
            background-color: #DAC000;
            bottom: 8%;
            right: 4%;
        }

        .square-10 {
            width: 120px;
            height: 160px;
            background-color: #f3f3f3;
            bottom: 4%;
            right: 2%;
        }

        .square-11 {
            width: 140px;
            height: 220px;
            background-color: #f3f3f3;
            bottom: 0%;
            right: 12%;
        }

        .square-12 {
            width: 100px;
            height: 120px;
            background-color: #f3f3f3;
            bottom: 2%;
            right: 24%;
        }

        .square-13 {
            width: 100px;
            height: 120px;
            background-color: #f3f3f3;
            bottom: 0%;
            right: 36%;
        }

        .square-14 {
            width: 120px;
            height: 160px;
            background-color: #f3f3f3;
            bottom: 0%;
            right: 62%;
        }

        .square-15 {
            width: 120px;
            height: 160px;
            background-color: #f3f3f3;
            bottom: 4%;
            right: 84%;
        }


        /* 002_section1 スタイル */
        .section1 {
            width: 100%;
            min-height: 100vh;
            position: sticky;
            top: 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            transform: translateY(100vh);
            opacity: 0;
            transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 15;
        }

        .section1.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .section1-container {
            width: 1140px;
            max-width: calc(100% - 40px);
            margin: 0 auto;
            padding: 120px 20px;
            position: relative;
        }

        .section1-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .section1-text {
            transform: translateY(60px);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
        }

        .section1.visible .section1-text {
            transform: translateY(0);
            opacity: 1;
        }

        .section1-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 32px;
            line-height: 1.3;
        }

        .section1-subtitle {
            font-size: 1.125rem;
            color: #007bff;
            font-weight: 500;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section1-description {
            font-size: 1.125rem;
            color: #495057;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .section1-features {
            list-style: none;
            margin-bottom: 48px;
        }

        .section1-features li {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 12px;
            position: relative;
            padding-left: 24px;
        }

        .section1-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

        .section1-visual {
            position: relative;
            transform: translateX(60px);
            opacity: 0;
            transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
        }

        .section1.visible .section1-visual {
            transform: translateX(0);
            opacity: 1;
        }

        .section1-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #007bff, #28a745);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            font-weight: 500;
        }

        .section1-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 24px 16px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .section1.visible .stat-item:nth-child(1) {
            transition-delay: 0.8s;
            transform: translateY(0);
            opacity: 1;
        }

        .section1.visible .stat-item:nth-child(2) {
            transition-delay: 1s;
            transform: translateY(0);
            opacity: 1;
        }

        .section1.visible .stat-item:nth-child(3) {
            transition-delay: 1.2s;
            transform: translateY(0);
            opacity: 1;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #007bff;
            display: block;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 500;
        }

    .parallax-container {
    min-height: 100vh;
    padding: 300px 0 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.scale-element {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.1s ease-out;
}

.scale-element h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.scale-element p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}    



.parallax-container {
    min-height: 300vh;
    padding: 300px 0 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.scale-element {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.1s ease-out;
}

.scale-element h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.scale-element p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.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 (min-width: 1441px) {
        #section3 {   
            background-size:80%;
        }
        }

        @media (max-width: 992px) {
            .cta-container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .cta-buttons {
                justify-content: center;
            }
        }
        @media (max-width: 768px) {
            .hero-section{
                min-height: 100vh !important;
                height: 100vh !important;
            }

            .kv-section{
                min-height: 100vh !important;
                height: 100vh !important;
            }
            .kv-title{
                font-size: 36px;
                font-weight: bold;
                margin-bottom: 48px;
            }

            .kv-subtit{
                font-size: 24px;
                font-weight: bold;
            }
            .kv-cnt{
                font-size: 16px;
                display: block;
            }


            .kv-description {
                font-size: 16px;
            }
            .section-title{
                font-size: 24px;
                font-weight: bold;
        }
        #section2 .section-title {
                font-size: 24px;
                font-weight: bold;
        }
            .step-container {
                flex-direction: column;
                gap: 40px;
            }

            .step-item {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }

            .faq-title {
                font-size: 36px;
            }

            .faq-subtitle {
                font-size: 14px;
            }

            .cta-button {
                padding: 15px 35px;
                font-size: 20px;
                font-weight: bold;
                color: #fff !important;
            }

            .faq-question {
                padding: 18px 20px;
            }

            .question-text {
                font-size: 15px;
            }

            .q-mark, .a-mark {
                width: 32px;
                height: 32px;
                font-size: 18px;
            }

            .faq-answer-content {
                padding: 0 20px 20px 20px;
            }
            .cta-title {
                font-size: 42px;
                margin-bottom: 25px;
            }

            .cta-description {
                font-size: 16px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 20px;
                width: 100%;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                padding: 18px 40px;
                font-size: 20px;
                color: #fff !important;
            }
            .section-content {
                padding: 0 1.5rem;
            }
            
            .section-description {
                font-size: 1rem;
            }
                        #section_choice img {
    height: 128px !important;
}
        #section_choice .section-title{
            margin: 48px 0 !important;
        }

.atn_form{
    margin-top: 48px;
    display: block;
    padding: 16px;
}
.atn_tit{
    width: 100%;
}
.atn_cnt{
    width: 100%;
    text-align: left;
}

.square-3,
.square-6,
.square-8,
.square-10,
.square-12,
.square-15{
    display: none;
}

.ap_disc_l{
            letter-spacing: 0.1em;
        }

.ap_disc_r{
            letter-spacing: 0;
        }
}

        @media (max-width: 480px) {
.step-number {
                font-size: 16px;
            }

            .step-number-large {
                font-size: 40px;
            }

            .step-circle {
                width: 100px;
                height: 100px;
            }

            .step-title {
                font-size: 18px;
            }

            .step-description {
                font-size: 13px;
            }

            .faq-title {
                font-size: 28px;
            }

            .faq-subtitle {
                font-size: 13px;
            }

            .faq-question-content {
                gap: 15px;
            }

            .question-text {
                font-size: 20px;
            }

            .answer-text {
                font-size: 16px;
            }
            .cta-title {
                font-size: 24px;
                margin-bottom: 20px;
            }

            .cta-description {
                font-size: 14px;
                line-height: 1.7;
            }

            .btn {
                padding: 16px 30px;
                font-size: 20px;
            }

            .kv-container {
                width: calc(100% - 32px);
                padding: 128px 0 0;
            }

            .kv-title {
                /*font-size: 2.2rem;*/
            }
            .kv-subtit{
               /*font-size: 1.6rem;*/
            }
            .kv-cnt{
                display: block;
            }

            .kv-subtitle {
                font-size: 1.125rem;
            }

            .kv-description {
                /*font-size: 1rem;*/
                width: 100%;
                padding: 0;
                margin-bottom: 64px;
            }

            .cta-button {
                width: 100%;
                padding: 14px 32px;
                /*font-size: 1rem;*/
            }

            /* 異なるサイズと色の四角形 */
        .square-1 {
            width: 81px;
            height: 160px;
            background-color: #DAC000;
            bottom: 8%;
            left: 0%;
        }

        .square-2 {
            width: 70px;
            height: 110px;
            background-color: #DAC000;
            bottom: 4%;
            left: 13%;
        }

        .square-3 {
            width: 60px;
            height: 80px;
            background-color: #DAC000;
            bottom: 6%;
            left: 26%;
        }

        .square-4 {
            width: 50px;
            height: 60px;
            background-color: #DAC000;
            bottom: 8%;
            left: 36%;
        }

        .square-5 {
            width: 50px;
            height: 60px;
            background-color: #DAC000;
            bottom: 4%;
            left: 44%;
        }

        .square-6 {
            width: 60px;
            height: 80px;
            background-color: #DAC000;
            bottom: 6%;
            left: 52%;
        }

        .square-7 {
            width: 50px;
            height: 60px;
            background-color: #DAC000;
            bottom: 4%;
            left: 62%;
        }

        .square-8 {
            width: 70px;
            height: 110px;
            background-color: #DAC000;
            bottom: 8%;
            left: 72%;
        }

        .square-9 {
            width: 81px;
            height: 160px;
            background-color: #DAC000;
            bottom: 8%;
            right: 4%;
        }

        .square-10 {
            width: 60px;
            height: 80px;
            background-color: #f3f3f3;
            bottom: 4%;
            right: 2%;
        }

        .square-11 {
            width: 70px;
            height: 110px;
            background-color: #f3f3f3;
            bottom: 0%;
            right: 12%;
        }

        .square-12 {
            width: 50px;
            height: 60px;
            background-color: #f3f3f3;
            bottom: 2%;
            right: 24%;
        }

        .square-13 {
            width: 50px;
            height: 60px;
            background-color: #f3f3f3;
            bottom: 0%;
            right: 36%;
        }

        .square-14 {
            width: 60px;
            height: 80px;
            background-color: #f3f3f3;
            bottom: 0%;
            right: 62%;
        }

        .square-15 {
            width: 60px;
            height: 80px;
            background-color: #f3f3f3;
            bottom: 4%;
            right: 84%;
        }

            .section1-container {
                padding: 80px 16px;
            }

            .section1-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .section1-title {
                font-size: 2.25rem;
            }

            .section1-stats {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .section1-visual {
                transform: translateY(40px);
            }

            .section1.visible .section1-visual {
                transform: translateY(0);
            }

            #section_choice{
                margin: 0 !important;
            }
            #section_choice .udr_arw {
    margin-bottom: -64px;
}
            .arw_l {
    padding-right: 8%;
}
            .arw_r {
    padding-left: 8%;
}

            
            .pc_none{
                display: block;
            }
.sp_ulink{
    display: flex;
    gap: 8px;
    margin-top: 0;
}
.btn_l{
    width: 49%;
}
.btn_r{
    width: 49%;
}
.btn_l a,
.btn_r a{
    text-decoration: none;
}
.button-s {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin:0 auto;
    padding: 8px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #EA1C6E;
    font-size: 1.2em;
    font-weight: 700;
}

.button-s::after {
    transform: rotate(135deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #EA1C6E;
    border-right: 2px solid #EA1C6E;
    content: '';
}
.button-p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin:0 auto;
    padding: 8px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #1C7FEA;
    font-size: 1.2em;
    font-weight: 700;
}

.button-p::after {
    transform: rotate(135deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #1C7FEA;
    border-right: 2px solid #1C7FEA;
    content: '';
}
#section2 {
    padding: 112px 20px 48px;

}
#section2 .section-title {
    margin: 48px 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}
            .section-content{
                width: 100%;
            }
            .ap_area {
    display: block;
    gap: 0;
}
.ap_area .col2 {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
}
.ap_area .col2:last-child{
    margin-top: 24px;
}
.ap_recd {
    margin-bottom: 24px;
}
.ap_area img {
    height: 200px;
    margin-bottom: 8px;
}
.ap_name_r {
    margin-bottom: 24px;
}
#section3 {
    z-index: 10;
    width: 100%;
    padding: 64px 0 0;
    margin: 0 0 64px;
    background-image: url(https://rita-hudousan.com/contents/form_sale_test/common/img/rita_town.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
#section3 .udr_arw img {
    width: 80px;
}
.pose_area {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 80px;
}
.pose_tit {
    font-size: 20px;
    text-align: left;
    margin-bottom: 24px;
}
.pose_point {
    display: block;
    align-items: flex-start;
    gap: 0;
    margin-top: 24px;
}
.pose_point .col3 {
    width: 100%;
    padding: 16px;
    font-size: 1.4em;
    font-weight: bold;
    letter-spacing: 0.08em;
}
.pose_point .col3:nth-child(2){
    margin-top: 8px;
}
.pose_point .col3:nth-child(3){
    margin-top: 8px;
}
#section_faq img {
    width: 48%;
    margin-bottom: 24px;
}
#section5,
#section6 {
    padding: 64px 20px;
}
.cta-content {
    width: 100%;
}
.cta-container{
    gap: 0 !important;
}
.cta-info{
    width: 100%;
}
.btn{
    max-width: unset;
}
            
}
        @media (min-width: 480px) {
.pc_none{
                display: none;
            }
        }

#rita_form {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}