    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { overflow: hidden; }
    
    /* ========== オープニング ========== */
    .opening {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: #C62828;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      overflow: hidden;
    }

    .opening.hidden {
      display: none;
    }

    .triangle-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .tri {
      position: absolute;
    }

    .tri1 {
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 100vw 100vh 0;
      border-color: transparent #7B1818 transparent transparent;
      transform: translateX(-100%);
      animation: megaSlide1 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0s forwards;
    }

    .tri2 {
      bottom: 0;
      right: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 120vh 0 0 100vw;
      border-color: transparent transparent transparent #8B0000;
      transform: translateX(100%);
      animation: megaSlide2 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0.06s forwards;
    }

    .tri3 {
      bottom: 0;
      left: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 80vh 70vw 0 0;
      border-color: #990000 transparent transparent transparent;
      transform: translateY(100%);
      animation: megaSlide3 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    }

    .tri4 {
      top: 0;
      right: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 0 70vh 60vw;
      border-color: transparent transparent #A31515 transparent;
      transform: translateY(-100%);
      animation: megaSlide4 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards;
    }

    .tri5 {
      top: 30%;
      left: 10%;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 50vw 40vh 0;
      border-color: transparent #B71C1C transparent transparent;
      transform: scale(0);
      animation: megaScale 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.18s forwards;
    }

    @keyframes megaSlide1 {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(0); }
    }

    @keyframes megaSlide2 {
      0% { transform: translateX(100%); }
      100% { transform: translateX(0); }
    }

    @keyframes megaSlide3 {
      0% { transform: translateY(100%); }
      100% { transform: translateY(0); }
    }

    @keyframes megaSlide4 {
      0% { transform: translateY(-100%); }
      100% { transform: translateY(0); }
    }

    @keyframes megaScale {
      0% { transform: scale(0); }
      100% { transform: scale(1); }
    }

    .opening-text-container {
      position: relative;
      z-index: 10;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .text-line {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      line-height: 1.1;
    }

    .char {
      font-weight: 900;
      color: #fff;
      letter-spacing: 0.08em;
      opacity: 0;
      transform: translateY(50px) scale(0.5);
      display: inline-block;
      text-shadow: 4px 4px 30px rgba(0,0,0,0.4);
      font-family: "Noto Sans JP", sans-serif;
    }

    .line1 .char { font-size: 8vw; }
    .line2 .char { font-size: 20vw; }
    .line3 .char { font-size: 10vw; }
    
    .opening-text-container {
      margin-top: -10vh;
    }

    @keyframes popIn {
      0% {
        opacity: 0;
        transform: translateY(80px) scale(0.2);
      }
      50% {
        opacity: 1;
        transform: translateY(-20px) scale(1.2);
      }
      75% {
        transform: translateY(10px) scale(0.95);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* ========== トランジション ========== */
    .color-wipe {
      position: fixed;
      top: 0;
      right: 0;
      width: 0;
      height: 100vh;
      background: #7EC8E3;
      z-index: 10000;
    }

    .color-wipe.active {
      animation: wipeIn 0.8s ease-in-out forwards;
    }

    @keyframes wipeIn {
      0% { width: 0; right: 0; left: auto; }
      50% { width: 100%; right: 0; left: auto; }
      50.1% { width: 100%; right: auto; left: 0; }
      100% { width: 0; right: auto; left: 0; }
    }
    
    .main-visual {
      width: 100vw;
      position: relative;
      background-color: #ffffff;
      overflow: hidden;
      opacity: 0;
      transition: opacity 0.3s;
    }
    
    .main-visual.visible {
      opacity: 1;
    }
    
    /* ========== 新トップビジュアル ========== */
    .mv-container {
      position: relative;
      width: 100%;
      aspect-ratio: 1920 / 1080;
    }
    
    .mv-background {
      position: absolute;
      inset: 0;
      background-size: 100% 100%;
      background-position: top center;
      background-repeat: no-repeat;
      background-color: #ffffff;
      z-index: 1;
    }
    
    #mv-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 3;
    }
    
    .mv-rotating-image {
      position: absolute;
      top: 5.05vw;
      left: 1.5625vw;
      perspective: 1000px;
      z-index: 5;
    }
    
    .mv-card {
      position: relative;
      width: 20.1vw;
      height: 27.14vw;
      transform-style: preserve-3d;
      transition: transform 0.8s ease-in-out;
    }
    
    .mv-card-front,
    .mv-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
    }
    
    .mv-card-front img,
    .mv-card-back img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    
    .mv-card-back {
      transform: rotateY(180deg);
    }
    
    .mv-rotating-image-2 {
      position: absolute;
      top: 28.125vw;
      left: 79.17vw;
      perspective: 1000px;
      z-index: 5;
    }
    
    .mv-rotating-image-2 .mv-card {
      position: relative;
      width: 20.1vw;
      height: 27.14vw;
      transform-style: preserve-3d;
      transition: transform 0.8s ease-in-out;
    }
    
    .mv-video-container {
      position: absolute;
      top: 2.03vw;
      left: 22.6vw;
      width: 20.1vw;
      height: 16.6vw;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
      z-index: 5;
    }
    
    .mv-video-container video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .mv-video-container-2 {
      position: absolute;
      top: 2.03vw;
      left: 66.51vw;
      width: 20.1vw;
      height: 16.6vw;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
      z-index: 5;
    }
    
    .mv-video-container-2 video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .mv-video-container-3 {
      position: absolute;
      top: 2.03vw;
      left: 87.71vw;
      width: 11.25vw;
      height: 24.11vw;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
      z-index: 5;
    }
    
    .mv-video-container-3 video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .mv-video-container-4 {
      position: absolute;
      top: 33.75vw;
      left: 1.51vw;
      width: 20.1vw;
      height: 20.1vw;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
      z-index: 5;
    }
    
    .mv-video-container-4 video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .mv-hama {
      position: absolute;
      top: calc(31vw + 100px);
      left: 17vw;
      width: 8vw;
      z-index: 6;
      animation: mvHamaFloat 3s ease-in-out infinite;
    }
    
    .mv-hama img {
      width: 100%;
      height: auto;
    }
    
    @keyframes mvHamaFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }
    
    .mv-logo-icon {
      position: absolute;
      top: calc(19.74vw + 20px);
      left: 55vw;
      width: 5.1vw;
      height: 4.6vw;
      z-index: 6;
      animation: mvLogoSpin 4s linear infinite;
    }
    
    .mv-logo-icon img {
      width: 100%;
      height: 100%;
    }
    
    @keyframes mvLogoSpin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    .mv-accent {
      position: absolute;
      top: 26.2vw;
      left: 24.43vw;
      width: 9.11vw;
      height: 2.86vw;
      z-index: 6;
    }
    
    .mv-accent img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    
    .mv-sticky-left {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 9.82vw;
      height: 10.42vw;
      z-index: 10;
    }
    
    .mv-sticky-left img,
    .mv-sticky-right img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    
    .mv-sticky-right {
      position: fixed;
      bottom: 0;
      right: 0;
      width: 9.82vw;
      height: 10.42vw;
      z-index: 10;
    }
    
    .mv-sticky-left.stopped,
    .mv-sticky-right.stopped {
      position: absolute;
      bottom: 0;
    }
    
    .mv-slideshow-left-2 {
      position: absolute;
      top: 42.6vw;
      left: 23.33vw;
      width: 11.25vw;
      height: 11.25vw;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
      z-index: 5;
    }
    
    .mv-slideshow-left-2 img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translateX(0);
    }
    
    .mv-slideshow-left-2 img.mv-slide-in {
      z-index: 2;
    }
    
    .mv-slideshow-left-2 img.mv-slide-out {
      z-index: 1;
    }
    
    .mv-slideshow-up {
      position: absolute;
      top: 42.6vw;
      left: 37.6vw;
      width: 11.25vw;
      height: 11.25vw;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
      z-index: 5;
    }
    
    .mv-slideshow-up img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translateY(0);
    }
    
    .mv-slide-in-bottom {
      animation: mvSlideInBottom 0.5s ease-out forwards;
      z-index: 2;
    }
    
    .mv-slide-out-top {
      animation: mvSlideOutTop 0.5s ease-out forwards;
      z-index: 1;
    }
    
    @keyframes mvSlideInBottom {
      from { transform: translateY(100%); }
      to { transform: translateY(0); }
    }
    
    @keyframes mvSlideOutTop {
      from { transform: translateY(0); }
      to { transform: translateY(-100%); }
    }
    
    .mv-slideshow-down {
      position: absolute;
      top: 42.6vw;
      left: 51.25vw;
      width: 11.25vw;
      height: 11.25vw;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
      z-index: 5;
    }
    
    .mv-slideshow-down img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translateY(0);
    }
    
    .mv-video-container-5 {
      position: absolute;
      top: 42.6vw;
      left: 65.21vw;
      width: 11.25vw;
      height: 11.25vw;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
      z-index: 5;
    }
    
    .mv-video-container-5 video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .mv-title-image {
      position: absolute;
      top: 20vw;
      left: 23.54vw;
      width: 40.31vw;
      height: 10.36vw;
      overflow: hidden;
      z-index: 5;
    }
    
    .mv-title-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      -webkit-clip-path: inset(0 100% 0 0);
      clip-path: inset(0 100% 0 0);
      animation: mvWipeFromLeft 0.4s ease-out forwards;
    }
    
    @keyframes mvWipeFromLeft {
      from { 
        -webkit-clip-path: inset(0 100% 0 0); 
        clip-path: inset(0 100% 0 0); 
      }
      to { 
        -webkit-clip-path: inset(0 0 0 0); 
        clip-path: inset(0 0 0 0); 
      }
    }
    
    .mv-price-image {
      position: absolute;
      top: 30.05vw;
      left: 36.51vw;
      width: 23.96vw;
      height: 13.44vw;
      overflow: visible;
      z-index: 5;
    }
    
    .mv-price-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transform: scale(3);
      opacity: 0;
      animation: mvPriceShrink 0.3s ease-out 0.5s forwards;
    }
    
    @keyframes mvPriceShrink {
      0% { transform: scale(3); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }
    
    .mv-badge {
      position: absolute;
      top: 30.83vw;
      left: 26.98vw;
      width: 9.17vw;
      height: 9.17vw;
      background: #1a3366;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      animation: mvFadeIn 0.5s ease-out 0.8s forwards;
      z-index: 5;
    }
    
    .mv-badge-title {
      color: #ffdd00;
      font-size: 1.8vw;
      font-weight: bold;
      line-height: 1.2;
    }
    
    .mv-badge-text {
      color: white;
      font-size: 0.9vw;
      line-height: 1.3;
      text-align: center;
    }
    
    @keyframes mvFadeIn {
      from { opacity: 0; transform: scale(0.8); }
      to { opacity: 1; transform: scale(1); }
    }
    
    .mv-logo-area {
      position: absolute;
      top: 0.1vw;
      left: 3.39vw;
      z-index: 5;
    }
    
    .mv-logo-area img {
      width: 13.96vw;
      height: 2.92vw;
      object-fit: contain;
    }
    
    .mv-logo-tagline {
      font-size: 0.8vw;
      color: #333;
      margin-top: 0.3vw;
      font-weight: bold;
      letter-spacing: 0.15em;
      text-align: center;
      font-family: "Noto Sans JP", sans-serif;
    }
    
    .mv-slideshow-vertical {
      position: absolute;
      top: 20.78vw;
      left: 66.72vw;
      width: 11.25vw;
      height: 18.33vw;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
      z-index: 5;
    }
    
    .mv-slideshow-vertical img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translateY(0);
    }
    
    .mv-slide-in-top {
      animation: mvSlideInTop 0.5s ease-out forwards;
      z-index: 2;
    }
    
    .mv-slide-out-bottom {
      animation: mvSlideOutBottom 0.5s ease-out forwards;
      z-index: 1;
    }
    
    @keyframes mvSlideInTop {
      from { transform: translateY(-100%); }
      to { transform: translateY(0); }
    }
    
    @keyframes mvSlideOutBottom {
      from { transform: translateY(0); }
      to { transform: translateY(100%); }
    }
    
    .mv-slideshow {
      position: absolute;
      top: 2.03vw;
      left: 43.75vw;
      width: 21.67vw;
      height: 16.6vw;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
      z-index: 5;
    }
    
    .mv-slideshow img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translateX(0);
    }
    
    .mv-slide-in {
      animation: mvSlideIn 0.5s ease-out forwards;
      z-index: 2;
    }
    
    .mv-slide-out {
      animation: mvSlideOut 0.5s ease-out forwards;
      z-index: 1;
    }
    
    .mv-slideshow img:not(.mv-slide-out):not(.mv-slide-in) {
      z-index: 2;
    }
    
    @keyframes mvSlideIn {
      from { transform: translateX(100%); }
      to { transform: translateX(0); }
    }
    
    @keyframes mvSlideOut {
      from { transform: translateX(0); }
      to { transform: translateX(-100%); }
    }
    
    /* ========== セクション3 ========== */
    .section-company {
      width: 100vw;
      min-height: 100vh;
      padding-bottom: 8vw;
      position: relative;
      overflow-x: clip;
      overflow-y: visible;
      background: #fff;
    }
    
    .section-company-bg {
      position: absolute;
      top: 0;
      right: 0;
      width: 0%;
      height: 100%;
      background: #F3FCFF;
      z-index: 0;
      transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      overflow: hidden;
    }
    
    .section-company.active .section-company-bg {
      width: 100%;
    }
    
    .company-shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }
    
    .company-shapes .shape {
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .section-company.active .company-shapes .shape {
      opacity: 1;
    }
    
    /* 線 */
    .section-shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }
    
    .s-line {
      position: absolute;
      background: #222;
      opacity: 0;
      transform-origin: center;
      transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    
    .s-line.from-left {
      transform: translateX(-100%) rotate(var(--rotate));
    }
    
    .s-line.from-right {
      transform: translateX(100%) rotate(var(--rotate));
    }
    
    .section-company.active .s-line {
      opacity: 1;
      transform: translateX(0) rotate(var(--rotate));
    }
    
    .s-line.delay1 { transition-delay: 0.1s; }
    .s-line.delay2 { transition-delay: 0.15s; }
    .s-line.delay3 { transition-delay: 0.2s; }
    .s-line.delay4 { transition-delay: 0.25s; }
    .s-line.delay5 { transition-delay: 0.3s; }
    
    /* ========== マーキーライン ========== */
    .marquee-line {
      width: 100%;
      background: #0047BA;
      padding: 1.5vw 0;
      overflow: hidden;
    }
    
    .marquee-track {
      display: flex;
      animation: marqueeScroll 15s linear infinite;
    }
    
    .marquee-text {
      color: #fff;
      font-size: 2vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      white-space: nowrap;
      padding: 0 1.5vw;
    }
    
    @keyframes marqueeScroll {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }
    
    /* 縦マーキー */
    .marquee-vertical {
      position: absolute;
      top: 0;
      width: 3.5vw;
      height: 100%;
      background: #0047BA;
      overflow: hidden;
      z-index: 10;
    }
    
    .marquee-vertical.left {
      left: 0;
    }
    
    .marquee-vertical.right {
      right: 0;
    }
    
    .marquee-vertical-track {
      display: flex;
      flex-direction: column;
      animation: marqueeVertical 12s linear infinite;
    }
    
    .marquee-vertical.right .marquee-vertical-track {
      animation: marqueeVerticalReverse 12s linear infinite;
    }
    
    .marquee-vertical-text {
      color: #fff;
      font-size: 2vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      writing-mode: vertical-rl;
      white-space: nowrap;
      padding: 0.8vw 0;
    }
    
    @keyframes marqueeVertical {
      0% { transform: translateY(-50%); }
      100% { transform: translateY(0); }
    }
    
    @keyframes marqueeVerticalReverse {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }
    
    .bottom-marquee {
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 10;
    }
    
    /* ========== ロゴディバイダー ========== */
    .logo-divider {
      width: 100%;
      padding: 3vw 0;
      background: #F07167;
      overflow: hidden;
      position: relative;
      z-index: 10;
    }
    
    .logo-divider .logo-row {
      position: relative;
      top: auto;
      display: flex;
      white-space: nowrap;
      animation: logoScrollReverse 30s linear infinite;
      z-index: auto;
      pointer-events: auto;
    }
    
    @keyframes logoScrollReverse {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    .logo-divider .logo-text {
      display: inline-block !important;
      font-family: Arial, sans-serif;
      font-size: 10vw;
      font-weight: bold;
      color: rgba(255,255,255,0.8) !important;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-right: 0.5em;
    }
    
    /* ========== セクション4: 撮影ギャラリー ========== */
    .section-gallery {
      width: 100vw;
      min-height: 80vh;
      padding: 5vw 0;
      background: linear-gradient(to bottom, #F07167 0%, #F07167 8vw, #97DAE6 8vw, #97DAE6 100%);
      position: relative;
      overflow: visible;
    }
    
    .gallery-float-scroll {
      position: absolute;
      top: 2vw;
      left: 0;
      width: 100%;
      z-index: 2;
      pointer-events: none;
    }
    
    .gallery-float-track {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
    }
    
    .gallery-float-item {
      width: 100vw;
      height: auto;
      -webkit-clip-path: inset(0 0 0 100%);
      clip-path: inset(0 0 0 100%);
    }
    
    .section-gallery.float-active .gallery-float-item {
      -webkit-animation: galleryFloatReveal 1.5s ease-out forwards, galleryFloatBounce 3s ease-in-out infinite;
      animation: galleryFloatReveal 1.5s ease-out forwards, galleryFloatBounce 3s ease-in-out infinite;
      -webkit-animation-delay: 0s, 1.5s;
      animation-delay: 0s, 1.5s;
    }
    
    @-webkit-keyframes galleryFloatReveal {
      0% { -webkit-clip-path: inset(0 0 0 100%); clip-path: inset(0 0 0 100%); }
      100% { -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); }
    }
    
    @keyframes galleryFloatReveal {
      0% { -webkit-clip-path: inset(0 0 0 100%); clip-path: inset(0 0 0 100%); }
      100% { -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); }
    }
    
    @keyframes galleryFloatBounce {
      0%, 100% { margin-top: 0; }
      50% { margin-top: -20px; }
    }
    
    .gallery-accent-img {
      position: absolute;
      left: 0;
      top: 8vw;
      transform: translateY(-50%);
      width: 35vw;
      height: auto;
      z-index: 10;
    }
    
    .section-gallery-content {
      width: 100%;
      position: relative;
      z-index: 10;
    }
    
    .gallery-title {
      font-size: 4vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #fff;
      text-align: center;
      margin-bottom: 0.5vw;
    }
    
    .gallery-subtitle {
      font-size: 1.5vw;
      font-weight: 700;
      font-family: Arial, sans-serif;
      color: rgba(255,255,255,0.7);
      text-align: center;
      letter-spacing: 0.3em;
      margin-bottom: 3vw;
    }
    
    .gallery-logo-icon {
      display: block;
      margin: 0 auto 2vw;
      width: 5vw;
      height: 5vw;
      animation: logoSpinEase 6s ease-in-out infinite;
    }
    
    .video-gallery-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
      z-index: 5;
    }
    
    /* 動画ギャラリー */
    .video-gallery {
      display: flex;
      gap: 2vw;
      overflow-x: scroll;
      padding: 2vw 0;
      padding-left: calc(50% - 9vw);
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      cursor: grab;
    }
    
    .video-gallery:active {
      cursor: grabbing;
    }
    
    .video-gallery::-webkit-scrollbar {
      display: none;
    }
    
    .video-item {
      flex: 0 0 18vw;
      position: relative;
      transition: transform 0.3s ease;
      transform: scale(0.9);
    }
    
    .video-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #97DAE6;
      border-radius: 1vw;
      z-index: -1;
    }
    
    .video-item video {
      width: 100%;
      aspect-ratio: 9 / 16;
      object-fit: cover;
      border-radius: 1vw;
      background: #000;
      opacity: 0.5;
      transition: opacity 0.3s ease;
    }
    
    .video-item.active video {
      opacity: 1;
    }
    
    .video-item.active {
      transform: scale(1);
    }
    
    .video-info {
      margin-top: 1vw;
      text-align: center;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .video-item.active .video-info {
      opacity: 1;
      transform: translateY(0);
    }
    
    .video-info-title {
      font-size: 1.2vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      color: #fff;
      margin-bottom: 0.3vw;
    }
    
    .video-info-desc {
      font-size: 0.9vw;
      font-family: "Noto Sans JP", sans-serif;
      color: rgba(255,255,255,0.8);
    }
    
    /* スマホ対応 */
    @media (max-width: 768px) {
      .video-item {
        flex: 0 0 45vw;
      }
      
      .video-gallery {
        padding-left: calc(50% - 22.5vw);
      }
      
      .video-info-title {
        font-size: 3.5vw;
      }
      
      .video-info-desc {
        font-size: 3vw;
      }
    }
    
    /* ========== セクション5: 撮影実績 ========== */
    .section-works {
      width: 100%;
      background: #F62755;
      padding: 3vw 0;
      overflow: hidden;
    }
    
    .works-row {
      width: 100%;
      overflow: hidden;
    }
    
    .works-track {
      display: flex;
      gap: 0.8vw;
      width: max-content;
    }
    
    .works-track img {
      width: 10vw;
      height: 6.7vw;
      object-fit: cover;
      border-radius: 0.3vw;
    }
    
    .works-track-rtl {
      animation: worksScrollRtl 30s linear infinite;
    }
    
    .works-track-ltr {
      animation: worksScrollLtr 30s linear infinite;
    }
    
    @keyframes worksScrollRtl {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    @keyframes worksScrollLtr {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }
    
    .works-center {
      padding: 3vw 0;
      text-align: center;
    }
    
    .works-text {
      font-size: 2vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      color: #fff;
      margin-bottom: 1vw;
    }
    
    .works-count {
      font-size: 8vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #fff;
      letter-spacing: -0.02em;
    }
    
    .works-unit {
      font-size: 4vw;
      margin-left: 0.3vw;
    }
    
    .works-unit-wrap {
      position: relative;
      display: inline-block;
    }
    
    .works-float-img {
      position: absolute;
      width: 80px;
      height: auto;
      top: 20px;
      right: -20px;
      animation: worksFloat 3s ease-in-out infinite;
    }
    
    @keyframes worksFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }
    
    .works-plus {
      font-size: 3vw;
      margin-left: 0.5vw;
    }
    
    /* ========== セクション6: AIブランディング ========== */
    .section-ai {
      width: 100%;
      min-height: 80vh;
      background: #FFE100;
      position: relative;
      z-index: 5;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5vw 8vw;
      padding-bottom: 12vw;
    }
    
    .ai-content {
      display: flex;
      align-items: flex-start;
      gap: 5vw;
      width: 100%;
    }
    
    .ai-video-area {
      flex: 0 0 45vw;
    }
    
    .ai-video-area video {
      width: 100%;
      border-radius: 1vw;
      box-shadow: 0 1vw 3vw rgba(0,0,0,0.2);
    }
    
    .ai-text-area {
      flex: 1;
      max-width: 35vw;
    }
    
    .ai-title-row {
      display: flex;
      align-items: flex-start;
      gap: 2vw;
      margin-bottom: 2vw;
    }
    
    .ai-title {
      font-size: 3vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
      line-height: 1.4;
      white-space: nowrap;
    }
    
    .ai-float-img {
      width: 150px;
      height: 100px;
      object-fit: contain;
      animation: aiFloat 3s ease-in-out infinite;
    }
    
    @keyframes aiFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }
    
    .ai-desc {
      font-size: 1.2vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
      line-height: 1.8;
      margin-bottom: 2vw;
    }
    
    .ai-slider-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding-bottom: 4vw;
    }
    
    .ai-slider {
      display: flex;
      gap: 1vw;
      animation: aiSlide 10s linear infinite;
    }
    
    @keyframes aiSlide {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    .ai-check-area {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 0.5vw;
    }
    
    .ai-check-btn {
      display: inline-block;
      background: #fff;
      color: #333;
      font-size: 1vw;
      font-weight: 700;
      font-family: Arial, sans-serif;
      padding: 0.5vw 1.5vw;
      border-radius: 2vw;
    }
    
    .ai-check-float {
      width: 4vw;
      height: auto;
      animation: aiCheckFloat 2s ease-in-out infinite;
    }
    
    @keyframes aiCheckFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    .ai-slide {
      flex-shrink: 0;
      width: 8vw;
      height: 8vw;
      cursor: pointer;
    }
    
    .ai-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0.5vw;
      transition: transform 0.3s ease;
    }
    
    .ai-slide:hover img {
      transform: scale(1.05);
    }
    
    /* 画像拡大モーダル */
    .img-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.9);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .img-modal.active {
      opacity: 1;
      visibility: visible;
    }
    
    .img-modal img {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 1vw;
    }
    
    .img-modal-close {
      position: absolute;
      top: 2vw;
      right: 2vw;
      width: 3vw;
      height: 3vw;
      background: #fff;
      color: #333;
      border: none;
      border-radius: 50%;
      font-size: 1.5vw;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .img-modal-close:hover {
      background: #F62755;
      color: #fff;
    }
    
    .ai-note {
      width: 100%;
      text-align: center;
      font-size: 1vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #E53935;
      margin-top: 3vw;
    }
    
    /* ========== セクション: TECHNOLOGY ========== */
    .section-technology {
      width: 100%;
      background: transparent;
      padding: 0;
      overflow: hidden;
      position: relative;
      z-index: 10;
      margin-top: -10vw;
    }
    
    .technology-header {
      padding: 0 8vw;
      margin-bottom: 0;
    }
    
    .technology-content {
      background: #F07167;
      padding: 6vw 8vw 8vw;
      margin-top: -4vw;
    }
    
    .technology-title-en {
      font-size: 10vw;
      font-weight: bold;
      font-family: Arial, sans-serif;
      color: #fff;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0;
      line-height: 1;
    }
    
    .tech-row-top {
      display: flex;
      gap: 3vw;
      margin-bottom: 5vw;
      align-items: flex-start;
    }
    
    .tech-row-bottom {
      display: flex;
      gap: 3vw;
      justify-content: flex-end;
      margin-right: -4vw;
    }
    
    .tech-img {
      border-radius: 2vw;
      overflow: visible;
      background: #fff;
      position: relative;
    }
    
    .tech-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 2vw;
    }
    
    .tech-img-label-name {
      position: absolute;
      background: #333;
      color: #fff;
      font-size: 1.8vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      padding: 0.2vw 0.6vw;
      border: 3px solid #333;
      white-space: nowrap;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    
    .tech-img-label-name span {
      display: inline-block;
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 0.3s ease, transform 0.4s ease;
    }
    
    .section-technology.active .tech-img-label-name {
      transform: scaleX(1);
    }
    
    .section-technology.active .tech-img-label-name span {
      opacity: 1;
      transform: translateX(0);
    }
    
    .label-name-1 {
      left: calc(5% - 50px - 20px);
      bottom: calc(5% + 4vw);
      transition-delay: 0.2s;
    }
    .section-technology.active .label-name-1 span {
      transition-delay: 0.5s;
    }
    
    .label-name-2 {
      left: calc(-15% - 20px);
      top: auto;
      bottom: calc(5% + 4vw);
      transform: scaleX(0);
      transition-delay: 0.4s;
    }
    .section-technology.active .label-name-2 {
      transform: scaleX(1);
    }
    .section-technology.active .label-name-2 span {
      transition-delay: 0.7s;
    }
    
    .label-name-3 {
      left: calc(-5% - 20px);
      bottom: calc(2% + 4vw);
      transition-delay: 0.6s;
    }
    .section-technology.active .label-name-3 span {
      transition-delay: 0.9s;
    }
    
    .tech-img-label {
      position: absolute;
      background: #fff;
      color: #333;
      font-size: 1.1vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      padding: 0.6vw 1.2vw;
      border: 3px solid #333;
      white-space: nowrap;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    
    .tech-img-label span {
      display: inline-block;
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 0.3s ease, transform 0.4s ease;
    }
    
    .section-technology.active .tech-img-label {
      transform: scaleX(1);
    }
    
    .section-technology.active .tech-img-label span {
      opacity: 1;
      transform: translateX(0);
    }
    
    .label-1 {
      left: calc(5% - 50px);
      bottom: 5%;
      transition-delay: 0.3s;
    }
    .section-technology.active .label-1 span {
      transition-delay: 0.6s;
    }
    
    .label-2 {
      left: -15%;
      top: auto;
      bottom: 5%;
      transform: scaleX(0);
      transition-delay: 0.5s;
    }
    .section-technology.active .label-2 {
      transform: scaleX(1);
    }
    .section-technology.active .label-2 span {
      transition-delay: 0.8s;
    }
    
    .label-3 {
      left: -5%;
      bottom: 2%;
      transition-delay: 0.7s;
    }
    .section-technology.active .label-3 span {
      transition-delay: 1s;
    }
    
    .tech-img-1 {
      width: 40vw;
      height: 22vw;
      margin-left: -4vw;
    }
    
    .tech-img-2 {
      width: 30vw;
      height: 22vw;
    }
    
    .tech-img-3 {
      width: 35vw;
      height: 25vw;
      margin-top: 5vw;
    }
    
    .tech-text {
      flex: 1;
      padding: 2vw 0;
    }
    
    .tech-label {
      display: inline-block;
      font-size: 1vw;
      font-weight: 700;
      font-family: Arial, sans-serif;
      color: #fff;
      letter-spacing: 0.1em;
      text-decoration: underline;
      margin-bottom: 1.5vw;
    }
    
    .tech-title {
      font-size: 2.2vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #fff;
      line-height: 1.5;
      margin-bottom: 1.5vw;
    }
    
    .tech-desc {
      font-size: 1.1vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #fff;
      line-height: 1.8;
      margin-bottom: 2vw;
    }
    
    .tech-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8vw;
    }
    
    .tech-tag {
      font-size: 1vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      color: #FFE100;
    }
    
    /* ========== セクション: モデル撮影 ========== */
    .section-model {
      width: 100%;
      background: transparent;
      padding: 0;
      overflow: hidden;
      position: relative;
      z-index: 10;
      margin-top: -5vw;
    }
    
    .model-header {
      padding: 0 8vw;
      margin-bottom: 0;
    }
    
    .model-content {
      background: #fff;
      padding: 3vw 0 5vw;
      margin-top: -4vw;
    }
    
    .model-text-area {
      padding: 0 8vw;
      margin-bottom: 3vw;
      padding-top: 2vw;
    }
    
    .model-title-en {
      font-size: 10vw;
      font-weight: 900;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: #000;
      letter-spacing: 0.02em;
      margin-bottom: 0;
      line-height: 1;
    }
    
    .model-title-jp {
      font-size: 2.5vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #000;
      line-height: 1.5;
      letter-spacing: 0.1em;
    }
    
    .model-gallery-wrapper {
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      cursor: grab;
      -webkit-overflow-scrolling: touch;
    }
    
    .model-gallery-wrapper:active {
      cursor: grabbing;
    }
    
    .model-gallery-wrapper::-webkit-scrollbar {
      display: none;
    }
    
    .model-gallery {
      display: flex;
      align-items: flex-end;
      gap: 1.5vw;
      padding: 0 8vw;
      width: max-content;
    }
    
    .model-img {
      flex-shrink: 0;
      overflow: hidden;
    }
    
    .model-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .model-img-tall {
      width: 18vw;
      height: 28vw;
    }
    
    .model-img-wide {
      width: 22vw;
      height: 18vw;
    }
    
    .model-img-square {
      width: 20vw;
      height: 20vw;
    }
    
    /* ========== セクション7: システム紹介 ========== */
    .section-system {
      width: 100%;
      min-height: 80vh;
      background: linear-gradient(180deg, #E8F4F8 0%, #D4EBF2 50%, #C0E2EC 100%);
      padding: 5vw 8vw;
    }
    
    .system-header {
      display: flex;
      align-items: flex-start;
      gap: 3vw;
      margin-bottom: 2vw;
    }
    
    .system-logo {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5vw;
    }
    
    .system-logo-icon {
      width: 4vw;
      height: 4vw;
      animation: logoSpinEase 6s ease-in-out infinite;
    }
    
    .system-logo-text {
      font-size: 1.5vw;
      font-weight: 700;
      font-family: Arial, sans-serif;
      color: #013384;
      border-bottom: 3px solid #013384;
      padding-bottom: 0.3vw;
    }
    
    .system-catch {
      font-size: 3.5vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #013384;
      line-height: 1.4;
    }
    
    .system-desc {
      font-size: 1.1vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #666;
      line-height: 1.8;
      margin-bottom: 4vw;
      margin-left: 7vw;
    }
    
    .system-cards {
      display: flex;
      justify-content: center;
      gap: 3vw;
    }
    
    .system-card {
      flex: 0 0 25vw;
    }
    
    .system-card-img {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 1vw;
      overflow: hidden;
    }
    
    .system-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .system-card-num {
      position: absolute;
      bottom: 1vw;
      left: 1vw;
      font-size: 2vw;
      font-weight: 900;
      font-family: Arial, sans-serif;
      color: #fff;
      text-shadow: 0 0 10px rgba(0,0,0,0.5);
    }
    
    .system-card-label {
      margin-top: 1vw;
      padding: 0.8vw 1.5vw;
      background: #013384;
      color: #fff;
      font-size: 1.1vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      text-align: center;
      border-radius: 0.3vw;
      display: inline-block;
    }
    
    .system-card-desc {
      font-size: 0.9vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #666;
      line-height: 1.6;
      margin-top: 1vw;
      text-align: center;
    }
    
    /* ========== セクション8: 料金プラン ========== */
    .section-price {
      width: 100%;
      min-height: 80vh;
      background: #fff;
      padding: 5vw 8vw;
    }
    
    .price-header {
      text-align: center;
      margin-bottom: 4vw;
    }
    
    .price-logo-icon {
      width: 4vw;
      height: 4vw;
      margin-bottom: 1vw;
      animation: logoSpinEase 6s ease-in-out infinite;
    }
    
    .price-title {
      font-size: 3vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
      margin-bottom: 0.3vw;
    }
    
    .price-subtitle {
      font-size: 1.2vw;
      font-weight: 700;
      font-family: Arial, sans-serif;
      color: #999;
      letter-spacing: 0.3em;
    }
    
    .price-cards {
      display: flex;
      justify-content: center;
      gap: 1vw;
      margin-bottom: 3vw;
    }
    
    .price-card {
      flex: 0 0 12vw;
      background: #fff;
      border-radius: 1vw;
      box-shadow: 0 0.5vw 2vw rgba(0,0,0,0.1);
      overflow: hidden;
      position: relative;
      transition: transform 0.3s ease;
    }
    
    .price-card:hover {
      transform: translateY(-10px);
    }
    
    .price-card.popular {
      transform: scale(1.05);
      box-shadow: 0 1vw 3vw rgba(246, 39, 85, 0.3);
    }
    
    .price-card.popular:hover {
      transform: scale(1.05) translateY(-10px);
    }
    
    .price-card-badge {
      position: absolute;
      top: 1vw;
      right: -2vw;
      background: #F62755;
      color: #fff;
      font-size: 0.9vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      padding: 0.3vw 2.5vw;
      transform: rotate(45deg);
    }
    
    .price-card-header {
      padding: 1.5vw 1vw;
      text-align: center;
      color: #fff;
      height: 6vw;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }
    
    .price-card-header.plan1 { background: #33C2D0; }
    .price-card-header.plan2 { background: #F62755; }
    .price-card-header.plan3 { background: #7FC13D; }
    .price-card-header.plan4 { background: #F26923; }
    .price-card-header.plan5 { background: #013384; }
    .price-card-header.plan6 { background: #9B59B6; }
    .price-card-header.plan7 { background: #E91E63; }
    .price-card-header.plan8 { background: #00BCD4; }
    
    .price-card-header.light {
      background: #33C2D0;
    }
    
    .price-card-header.standard {
      background: #F62755;
    }
    
    .price-card-header.premium {
      background: #7FC13D;
    }
    
    .price-card-name {
      font-size: 1.3vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
    }
    
    .price-card-en {
      font-size: 0.7vw;
      font-weight: 700;
      font-family: Arial, sans-serif;
      letter-spacing: 0.1em;
      opacity: 0.8;
    }
    
    .price-card-body {
      padding: 1.5vw 1vw;
    }
    
    .price-card-price {
      text-align: center;
      font-size: 1vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
      margin-bottom: 1vw;
    }
    
    .price-num {
      font-size: 2vw;
      font-weight: 900;
      color: #F62755;
    }
    
    .price-card-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1vw 0;
    }
    
    .price-card-list li {
      font-size: 0.85vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #666;
      padding: 0.4vw 0;
      border-bottom: 1px solid #eee;
      padding-left: 1.2vw;
      position: relative;
    }
    
    .price-card-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #7FC13D;
      font-weight: bold;
    }
    
    .price-card-note {
      font-size: 0.8vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #999;
      text-align: center;
    }
    
    .price-notice {
      text-align: center;
      font-size: 1vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #999;
    }
    
    /* 料金セクション スマホ対応 */
    @media (max-width: 768px) {
      .section-price {
        padding: 8vw 4vw;
        min-height: auto;
      }
      
      .price-cards {
        flex-wrap: wrap;
        gap: 3vw;
        justify-content: center;
      }
      
      .price-card {
        flex: 0 0 44vw;
        border-radius: 2vw;
      }
      
      .price-card-header {
        padding: 2vw;
        height: 22vw !important;
        min-height: 22vw !important;
        max-height: 22vw !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        overflow: hidden;
      }
      
      .price-card-name {
        font-size: 3.2vw;
        line-height: 1.4;
        text-align: center;
      }
      
      .price-card-en {
        font-size: 2vw;
      }
      
      .price-card-body {
        padding: 3vw 2vw;
      }
      
      .price-num {
        font-size: 6vw;
      }
      
      .price-card-price {
        font-size: 3vw;
      }
      
      .price-card-list li {
        font-size: 2.8vw;
        padding-left: 4vw;
        margin-bottom: 1.5vw;
      }
      
      .price-card-list li::before {
        font-size: 2.5vw;
      }
      
      .price-title {
        font-size: 7vw;
      }
      
      .price-subtitle {
        font-size: 3.5vw;
      }
      
      .price-logo-icon {
        width: 12vw;
        height: 12vw;
      }
      
      .price-card-note {
        font-size: 2.5vw;
        padding: 2vw;
      }
    }
    
    /* ========== セクション9: FLOW ========== */
    .section-flow {
      width: 100%;
      background: #f5f5f5;
      padding: 5vw 5vw;
    }
    
    .flow-header {
      text-align: center;
      margin-bottom: 4vw;
    }
    
    .flow-logo-icon {
      width: 4vw;
      height: 4vw;
      margin-bottom: 1vw;
      animation: logoSpinEase 6s ease-in-out infinite;
    }
    
    .flow-title {
      font-size: 3vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
      margin-bottom: 0.3vw;
    }
    
    .flow-subtitle {
      font-size: 1.2vw;
      font-weight: 700;
      font-family: Arial, sans-serif;
      color: #999;
      letter-spacing: 0.3em;
    }
    
    .flow-steps {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 1vw;
    }
    
    .flow-step {
      flex: 0 0 15vw;
      background: #fff;
      border-radius: 1vw;
      padding: 2vw 1.5vw;
      text-align: center;
      box-shadow: 0 0.3vw 1vw rgba(0,0,0,0.1);
      position: relative;
    }
    
    .flow-step-num {
      position: absolute;
      top: -1vw;
      left: 50%;
      transform: translateX(-50%);
      background: #F62755;
      color: #fff;
      font-size: 1vw;
      font-weight: 900;
      font-family: Arial, sans-serif;
      padding: 0.3vw 1vw;
      border-radius: 2vw;
    }
    
    .flow-step-icon {
      width: 8vw;
      height: 8vw;
      margin: 1vw auto;
      border-radius: 50%;
      overflow: hidden;
    }
    
    .flow-step-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .flow-step-title {
      font-size: 1.2vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
      margin-bottom: 0.5vw;
    }
    
    .flow-step-desc {
      font-size: 0.9vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #666;
      line-height: 1.5;
    }
    
    .flow-arrow {
      font-size: 2vw;
      color: #F62755;
      font-weight: 900;
      align-self: center;
      margin-top: 2vw;
    }
    
    /* ========== セクション10: Q&A ========== */
    .section-qa {
      width: 100%;
      background: #f5f5f5;
      padding: 5vw 3vw;
    }
    
    .qa-header {
      text-align: center;
      margin-bottom: 4vw;
    }
    
    .qa-logo-icon {
      width: 4vw;
      height: 4vw;
      margin-bottom: 1vw;
      animation: logoSpinEase 6s ease-in-out infinite;
    }
    
    .qa-title {
      font-size: 3vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
      margin-bottom: 0.3vw;
    }
    
    .qa-subtitle {
      font-size: 1.2vw;
      font-weight: 700;
      font-family: Arial, sans-serif;
      color: #999;
      letter-spacing: 0.3em;
    }
    
    .qa-list {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1vw;
    }
    
    .qa-item {
      background: #fff;
      border-radius: 0.5vw;
      overflow: hidden;
      box-shadow: 0 0.2vw 0.8vw rgba(0,0,0,0.08);
    }
    
    .qa-question {
      display: flex;
      align-items: center;
      gap: 1vw;
      padding: 1.2vw 1.5vw;
      background: #fff;
      border-bottom: 1px solid #eee;
    }
    
    .qa-q {
      font-size: 1.2vw;
      font-weight: 900;
      font-family: Arial, sans-serif;
      background: #F62755;
      color: #fff;
      width: 2vw;
      height: 2vw;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .qa-question p {
      font-size: 1vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
      margin: 0;
    }
    
    .qa-answer {
      display: flex;
      align-items: flex-start;
      gap: 1vw;
      padding: 1.2vw 1.5vw;
      background: #fff;
    }
    
    .qa-a {
      font-size: 1.2vw;
      font-weight: 900;
      font-family: Arial, sans-serif;
      background: #33C2D0;
      color: #fff;
      width: 2vw;
      height: 2vw;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .qa-answer p {
      font-size: 0.95vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #666;
      line-height: 1.6;
      margin: 0;
    }
    
    /* ========== セクション9: お問い合わせ ========== */
    .section-contact {
      width: 100%;
      background: linear-gradient(180deg, #FFA500 0%, #FF8C00 50%, #FF6600 100%);
      padding: 5vw 0 10vw;
      position: relative;
      overflow: hidden;
    }
    
    .contact-vertical-wrapper {
      position: absolute;
      left: 10px;
      top: 2vw;
      z-index: 1;
    }
    
    .contact-vertical-text {
      writing-mode: vertical-rl;
      font-size: 4vw;
      font-weight: 900;
      font-family: Arial, sans-serif;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.2em;
      white-space: nowrap;
    }
    
    .contact-pickup-label {
      position: absolute;
      right: 20vw;
      top: 35%;
      background: #FFE100;
      color: #333;
      font-size: 1.3vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      padding: 0.8vw 1.5vw;
      border-radius: 0.5vw;
      transform: rotate(-5deg);
      z-index: 2;
      box-shadow: 0 0.3vw 1vw rgba(0,0,0,0.2);
      animation: pickupFloat 3s ease-in-out infinite;
    }
    
    @keyframes pickupFloat {
      0%, 100% { transform: rotate(-5deg) translateY(0); }
      50% { transform: rotate(-5deg) translateY(-10px); }
    }
    
    .contact-content {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .contact-catch {
      font-size: 2.5vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #fff;
      margin-bottom: 1vw;
    }
    
    .contact-free {
      color: #FFE100;
      font-size: 3.5vw;
    }
    
    .contact-title {
      font-size: 3vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #fff;
      margin-bottom: 2vw;
    }
    
    .contact-btn {
      display: inline-block;
      background: #fff;
      color: #FF6600;
      font-size: 1.5vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      padding: 1.2vw 4vw;
      border-radius: 5vw;
      text-decoration: none;
      margin-bottom: 3vw;
      box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .contact-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.3);
    }
    
    .contact-info {
      display: flex;
      justify-content: center;
      gap: 5vw;
      margin-bottom: 2vw;
    }
    
    .contact-tel,
    .contact-mobile {
      text-align: center;
    }
    
    .contact-label {
      font-size: 1.2vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      color: rgba(255,255,255,0.8);
      margin-bottom: 0.5vw;
    }
    
    .contact-number {
      font-size: 3vw;
      font-weight: 900;
      font-family: Arial, sans-serif;
      color: #fff;
      letter-spacing: 0.05em;
    }
    
    .contact-staff {
      font-size: 1.5vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #fff;
    }
    
    .staff-name {
      font-weight: 900;
      font-size: 2vw;
    }
    
    /* お問い合わせフォーム */
    .contact-form-wrapper {
      max-width: 700px;
      margin: 0 auto 3vw;
      background: rgba(255,255,255,0.95);
      padding: 2.5vw;
      border-radius: 1vw;
      box-shadow: 0 0.5vw 2vw rgba(0,0,0,0.15);
    }
    
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5vw;
      box-sizing: border-box;
    }
    
    .form-row {
      display: flex;
      gap: 1.5vw;
      width: 100%;
    }
    
    .form-row-4 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 1.5vw;
    }
    
    .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.5vw;
    }
    
    .form-group.full {
      width: 100%;
    }
    
    .form-group label {
      font-size: 1vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
      display: flex;
      align-items: center;
      gap: 0.5vw;
    }
    
    .required {
      font-size: 0.7vw;
      background: #F62755;
      color: #fff;
      padding: 0.15vw 0.4vw;
      border-radius: 0.2vw;
    }
    
    .form-group input,
    .form-group textarea {
      padding: 1vw;
      font-size: 1vw;
      font-family: "Noto Sans JP", sans-serif;
      border: 2px solid #ddd;
      border-radius: 0.5vw;
      transition: border-color 0.3s ease;
      box-sizing: border-box;
      width: 100%;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #FF8C00;
    }
    
    .form-group textarea {
      resize: vertical;
    }
    
    .form-submit {
      background: #F62755;
      color: #fff;
      font-size: 1.3vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      padding: 1.2vw 3vw;
      border: none;
      border-radius: 5vw;
      cursor: pointer;
      margin: 1vw auto 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 0.3vw 1vw rgba(246, 39, 85, 0.4);
    }
    
    .form-submit:hover {
      transform: translateY(-5px);
      box-shadow: 0 0.5vw 1.5vw rgba(246, 39, 85, 0.5);
    }
    
    /* お問い合わせフォームセクション（ベージュ背景） */
    .section-contact-form {
      width: 100%;
      background: #EDE8E3;
      padding: 5vw 3vw;
    }
    
    .contact-form-container {
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
    }
    
    .contact-top-row {
      margin-bottom: 3vw;
    }
    
    .phone-title {
      font-size: 1.3vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
      display: flex;
      align-items: center;
      gap: 0.8vw;
      margin-bottom: 1.5vw;
    }
    
    .phone-bar {
      display: inline-block;
      width: 4px;
      height: 1.5vw;
      background: #F62755;
    }
    
    .phone-number {
      font-size: 2.5vw;
      font-weight: 900;
      font-family: Arial, sans-serif;
      color: #333;
      letter-spacing: 0.02em;
      margin-bottom: 0.5vw;
    }
    
    .phone-mobile-row {
      display: flex;
      align-items: center;
      gap: 1.5vw;
      margin-bottom: 1vw;
    }
    
    .phone-number-mobile {
      font-size: 1.8vw;
      font-weight: 900;
      font-family: Arial, sans-serif;
      color: #333;
      letter-spacing: 0.02em;
    }
    
    .phone-staff {
      font-size: 1.2vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
    }
    
    .phone-desc {
      font-size: 1vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #666;
      margin-bottom: 0.5vw;
    }
    
    .phone-time {
      font-size: 1vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #666;
    }
    
    .section-contact-form .contact-form-wrapper {
      max-width: 100%;
      margin: 0;
      box-sizing: border-box;
    }
    
    /* ========== セクション13: Instagram ========== */
    .section-instagram {
      width: 100%;
      background: #fff;
      padding: 5vw 0;
      overflow: hidden;
    }
    
    .insta-title {
      text-align: center;
      font-size: 3vw;
      font-weight: 900;
      font-family: Arial, sans-serif;
      color: #333;
      letter-spacing: 0.1em;
      margin-bottom: 3vw;
    }
    
    .insta-gallery {
      width: 100%;
      overflow: hidden;
      margin-bottom: 3vw;
    }
    
    .insta-track {
      display: flex;
      gap: 1.5vw;
      animation: instaScroll 30s linear infinite;
    }
    
    @keyframes instaScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    .insta-item {
      flex-shrink: 0;
      width: 15vw;
      height: 15vw;
      border-radius: 1.5vw;
      overflow: hidden;
    }
    
    .insta-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .insta-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1vw;
      margin: 0 auto;
      font-size: 1.2vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      color: #333;
      text-decoration: none;
      transition: opacity 0.3s ease;
    }
    
    .insta-btn:hover {
      opacity: 0.7;
    }
    
    .insta-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3vw;
      height: 3vw;
      background: #F62755;
      color: #fff;
      border-radius: 50%;
      font-size: 1.5vw;
    }
    
    /* ========== フッター ========== */
    .site-footer {
      width: 100%;
      background: #013384;
      padding: 0 5vw 5vw;
      position: relative;
      margin-top: 5vw;
    }
    
    .back-to-top {
      position: absolute;
      top: -3vw;
      left: 50%;
      transform: translateX(-50%);
      text-decoration: none;
      transition: transform 0.3s ease;
    }
    
    .back-to-top:hover {
      transform: translateX(-50%) translateY(-5px);
    }
    
    .back-to-top img {
      height: 6vw;
    }
    
    .footer-content {
      display: flex;
      gap: 3vw;
      align-items: flex-start;
      padding-top: 4vw;
    }
    
    .footer-left {
      flex: 1;
    }
    
    .footer-catch {
      font-size: 2.5vw;
      font-weight: 900;
      font-family: "Noto Sans JP", sans-serif;
      color: #fff;
      line-height: 1.5;
      margin-bottom: 2vw;
    }
    
    .footer-logo {
      background: #fff;
      border-radius: 1vw;
      padding: 1vw 2vw;
      display: inline-block;
      margin-bottom: 2vw;
    }
    
    .footer-logo img {
      height: 4vw;
    }
    
    .footer-contact {
      margin-bottom: 1.5vw;
    }
    
    .footer-contact p {
      font-size: 1.2vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #fff;
      margin-bottom: 0.3vw;
    }
    
    .footer-address p {
      font-size: 1.2vw;
      font-family: "Noto Sans JP", sans-serif;
      color: #fff;
      margin-bottom: 0.3vw;
    }
    
    .footer-center {
      flex: 0 0 auto;
    }
    
    .footer-map {
      width: 22vw;
      height: 25.6vw;
      background: #fff;
    }
    
    .footer-map iframe {
      width: 100%;
      height: 100%;
    }
    
    .footer-right {
      flex: 0 0 auto;
    }
    
    .footer-insta-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.8vw;
    }
    
    .footer-insta-item {
      width: 8vw;
      height: 8vw;
    }
    
    .footer-insta-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .copyright {
      text-align: center;
      font-size: 0.9vw;
      font-family: "Noto Sans JP", sans-serif;
      color: rgba(255,255,255,0.6);
      margin-top: 3vw;
      padding-top: 2vw;
      border-top: 1px solid rgba(255,255,255,0.2);
    }
    
    .contact-logo-scroll {
      position: absolute;
      bottom: -2vw;
      left: 0;
      width: 100%;
      overflow: hidden;
      z-index: 0;
    }
    
    .contact-logo-track {
      display: flex;
      white-space: nowrap;
      animation: contactLogoScroll 20s linear infinite;
    }
    
    .contact-logo-text {
      font-family: Arial, sans-serif;
      font-size: 10vw;
      font-weight: bold;
      color: rgba(255,255,255,0.2);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-right: 0.5em;
    }
    
    @keyframes contactLogoScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    .section-company-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding-top: 15vh;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
      overflow: visible;
    }
    
    .section-company.active .section-company-content {
      opacity: 1;
      transform: translateY(0);
    }
    
    .company-logo {
      display: flex;
      align-items: center;
      gap: 1vw;
      margin-bottom: 1.5vw;
    }
    
    .company-logo-icon {
      height: 8vw;
      animation: logoSpinEase 6s ease-in-out infinite;
    }
    
    .company-logo-text {
      height: 5vw;
    }
    
    @keyframes logoSpinEase {
      0% { transform: rotate(0deg); }
      20% { transform: rotate(360deg); }
      30% { transform: rotate(360deg); }
      50% { transform: rotate(0deg); }
      60% { transform: rotate(0deg); }
      80% { transform: rotate(-360deg); }
      90% { transform: rotate(-360deg); }
      100% { transform: rotate(0deg); }
    }
    
    .company-catchcopy {
      color: #333;
      font-size: 1.8vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      margin-bottom: 1.5vw;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
    }
    
    .company-catchcopy .sp-br {
      display: none;
    }
    
    .section-company.active .company-catchcopy {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* 強みカード */
    .company-cards {
      display: flex;
      justify-content: center;
      gap: 2vw;
      margin-top: 3vw;
      padding: 0 8vw;
      overflow: visible;
    }
    
    .company-card {
      border-radius: 1vw;
      overflow: visible;
      width: 18vw;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .company-card:nth-child(1) {
      background: #F26923;
      border: 4px solid #F26923;
    }
    .company-card:nth-child(1) .company-card-body { background: #F26923; }
    .company-card:nth-child(1) .company-card-img { background: #F26923; }
    
    .company-card:nth-child(2) {
      background: #33C2D0;
      border: 4px solid #33C2D0;
    }
    .company-card:nth-child(2) .company-card-body { background: #33C2D0; }
    .company-card:nth-child(2) .company-card-img { background: #33C2D0; }
    
    .company-card:nth-child(3) {
      background: #FFFF00;
      border: 4px solid #FFFF00;
    }
    .company-card:nth-child(3) .company-card-body { background: #FFFF00; }
    .company-card:nth-child(3) .company-card-img { background: #FFFF00; }
    .company-card:nth-child(3) .company-card-title { color: #333; border-bottom-color: rgba(0,0,0,0.3); }
    .company-card:nth-child(3) .company-card-desc { color: #333; }
    
    .company-card:nth-child(4) {
      background: #7FC13D;
      border: 4px solid #7FC13D;
    }
    .company-card:nth-child(4) .company-card-body { background: #7FC13D; }
    .company-card:nth-child(4) .company-card-img { background: #7FC13D; }
    
    .section-company.active .company-card {
      opacity: 1;
      transform: translateY(0);
    }
    
    .section-company.active .company-card:nth-child(1) { transition-delay: 0.3s; }
    .section-company.active .company-card:nth-child(2) { transition-delay: 0.4s; }
    .section-company.active .company-card:nth-child(3) { transition-delay: 0.5s; }
    .section-company.active .company-card:nth-child(4) { transition-delay: 0.6s; }
    
    .company-card-img {
      width: 100%;
      aspect-ratio: 3 / 4;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: visible;
    }
    
    .company-card-img > img:first-child {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .company-card-text {
      position: absolute;
      top: 50%;
      left: -25px;
      transform: translateY(-50%);
      width: 170px;
      height: auto;
      z-index: 10;
      animation: cardFloat 3s ease-in-out infinite;
    }
    
    @keyframes cardFloat {
      0%, 100% { transform: translateY(-50%); }
      50% { transform: translateY(calc(-50% - 10px)); }
    }
    
    .company-card:nth-child(1) .company-card-text { animation-delay: 0s; }
    .company-card:nth-child(2) .company-card-text.text-left { 
      top: 12%; 
      animation-delay: 0.5s; 
    }
    .company-card:nth-child(2) .company-card-text.text-right { 
      top: auto;
      bottom: 10%;
      left: auto;
      right: -25px;
      transform: translateY(0);
      animation: cardFloatRight 3s ease-in-out infinite;
      animation-delay: 0.8s;
    }
    .company-card:nth-child(3) .company-card-text { 
      top: 25%;
      animation-delay: 1s; 
    }
    .company-card:nth-child(4) .company-card-text { 
      top: -10%;
      left: auto;
      right: -15px;
      width: 65px;
      transform: translateY(0);
      animation: cardFloatRight 3s ease-in-out infinite;
      animation-delay: 1.5s; 
    }
    
    @keyframes cardFloatRight {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    .company-card-body {
      padding: 1vw;
    }
    
    .company-card-title {
      color: #fff;
      font-size: 1.5vw;
      font-weight: 700;
      font-family: "Noto Sans JP", sans-serif;
      text-align: center;
      border-bottom: 2px solid rgba(255,255,255,0.5);
      padding-bottom: 0.5vw;
      margin-bottom: 0.5vw;
    }
    
    .company-card-desc {
      color: #fff;
      font-size: 0.9vw;
      font-family: "Noto Sans JP", sans-serif;
      line-height: 1.5;
      text-align: left;
      white-space: nowrap;
    }
    
    /* スマホ対応（カード用） */
    @media (max-width: 768px) {
      .company-card-desc {
        font-size: 2.8vw;
        white-space: normal;
        word-break: break-all;
      }
    }
    
    .company-label {
      background: #F62755;
      padding: 0.3vw 1vw;
      margin-bottom: 1vw;
      transform: scaleX(0) skewX(-5deg);
      transform-origin: left center;
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
    }
    
    .section-company.active .company-label {
      transform: scaleX(1) skewX(-5deg);
    }
    
    .company-label span {
      color: #fff;
      font-size: 3.5vw;
      font-weight: 900;
      font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
      display: inline-block;
      letter-spacing: 0.05em;
      opacity: 0;
      transition: opacity 0.3s ease 0.7s;
    }
    
    .section-company.active .company-label span {
      opacity: 1;
    }
    
    .company-label .small-ha {
      font-size: 2vw;
      font-weight: 900;
      opacity: 0;
      transition: opacity 0.3s ease 0.7s;
    }
    
    .company-label .tight {
      margin-left: -0.2vw;
      font-weight: 900;
      opacity: 0;
      transition: opacity 0.3s ease 0.7s;
    }
    
    .section-company.active .company-label .small-ha,
    .section-company.active .company-label .tight {
      opacity: 1;
    }
    
    .company-title {
      color: #333;
      font-size: 5vw;
      font-weight: 700;
      font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
      text-align: center;
      position: relative;
    }
    
    .company-title::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 4px;
      background: #4ECDC4;
      border-radius: 2px;
    }
    
    .company-title .small {
      font-size: 0.5em;
    }
    
    .scroll-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      transform-origin: top left;
      z-index: 10;
    }
    
    .scroll-container {
      height: 1320px;
      display: flex;
      animation: scrollLeft 60s linear infinite;
    }
    
    @keyframes scrollLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    .scroll-area {
      position: relative;
      width: 6000px;
      height: 1320px;
      flex-shrink: 0;
    }
    
    .item {
      position: absolute;
    }
    
    .item img {
      display: block;
    }
    
    /* 🔴 固定 */
    .fixed { }
    
    /* 🔵 カクカク */
    .kaku { animation: kakukaku 1.5s ease-in-out infinite; }
    @keyframes kakukaku {
      0%, 100% { transform: rotate(-10deg); }
      50% { transform: rotate(10deg); }
    }
    
    /* 🟡 ふわふわ */
    .fuwa { animation: fuwafuwa 2s ease-in-out infinite; }
    @keyframes fuwafuwa {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }
    
    .delay1 { animation-delay: 0.15s; }
    .delay2 { animation-delay: 0.3s; }
    .delay3 { animation-delay: 0.45s; }
    .delay4 { animation-delay: 0.6s; }
    .delay5 { animation-delay: 0.75s; }
    .delay6 { animation-delay: 0.9s; }
    .delay7 { animation-delay: 1.05s; }
    .delay8 { animation-delay: 1.2s; }
    
    .logo-row {
      position: absolute;
      top: 26vw;
      left: 0;
      white-space: nowrap;
      z-index: 2;
      pointer-events: none;
      animation: logoScroll 30s linear infinite;
    }
    
    .logo-text {
      display: inline-block;
      font-family: Arial, sans-serif;
      font-size: 10vw;
      font-weight: bold;
      color: rgba(0, 0, 0, 0.08);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-right: 0.5em;
    }
    
    @keyframes logoScroll {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }
    
    /* カラフル図形 */
    .shapes-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 3;
      pointer-events: none;
      overflow: hidden;
    }
    
    .shape {
      position: absolute;
    }
    
    /* 半円ドーナツ */
    .half-donut {
      border-style: solid;
      border-bottom: none;
      border-radius: 999px 999px 0 0;
    }
    
    /* 四角 */
    .square {
    }
    
    /* 丸 */
    .circle {
      border-radius: 50%;
    }
    
    /* 三角 */
    .triangle {
      width: 0;
      height: 0;
      border-left-style: solid;
      border-right-style: solid;
      border-bottom-style: solid;
      border-left-color: transparent;
      border-right-color: transparent;
    }
    
    /* リング */
    .ring {
      border-style: solid;
      border-radius: 50%;
      background: transparent;
    }
    
    /* アニメーション */
    .float1 { animation: float1 8s ease-in-out infinite; }
    .float2 { animation: float2 10s ease-in-out infinite; }
    .float3 { animation: float3 12s ease-in-out infinite; }
    .float4 { animation: float4 9s ease-in-out infinite; }
    .float5 { animation: float5 11s ease-in-out infinite; }
    
    @keyframes float1 {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(30px, -20px) rotate(90deg); }
      50% { transform: translate(60px, 10px) rotate(180deg); }
      75% { transform: translate(30px, 30px) rotate(270deg); }
    }
    
    @keyframes float2 {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      33% { transform: translate(-40px, 30px) rotate(120deg); }
      66% { transform: translate(20px, -30px) rotate(240deg); }
    }
    
    @keyframes float3 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(50px, 40px) scale(1.2); }
    }
    
    @keyframes float4 {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-50px) rotate(180deg); }
    }
    
    @keyframes float5 {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(-20px, -40px) rotate(-90deg); }
      50% { transform: translate(-50px, 0) rotate(-180deg); }
      75% { transform: translate(-20px, 40px) rotate(-270deg); }
    }
    
    .strobe-light {
      position: absolute;
      bottom: 0;
      z-index: 15;
      pointer-events: none;
      width: 12vw;
      height: auto;
    }
    
    .strobe-left {
      left: 0;
    }
    
    .strobe-right {
      right: 0;
    }
    
    @media (max-width: 768px) {
      .strobe-light {
        width: 22vw;
      }
    }
    
    .price-label {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 100;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5vw;
    }
    
    .price-top {
      display: none;
    }
    
    .price-top-img {
      -webkit-clip-path: inset(0 100% 0 0);
      clip-path: inset(0 100% 0 0);
      animation: priceImgReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
    }
    
    .price-top-img img {
      display: block;
      height: auto;
      max-width: 100%;
    }
    
    @keyframes priceImgReveal {
      0% { 
        -webkit-clip-path: inset(0 100% 0 0); 
        clip-path: inset(0 100% 0 0); 
      }
      100% { 
        -webkit-clip-path: inset(0 0 0 0); 
        clip-path: inset(0 0 0 0); 
      }
    }
    
    .price-top span {
      color: #fff;
      font-size: 3.5vw;
      font-weight: bold;
      font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
      font-style: italic;
      display: inline-block;
      opacity: 0;
      transform: translateX(-20px);
      animation: textSlideIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s forwards;
    }
    
    .price-top-sp,
    .price-top-sp2 {
      display: none;
    }
    
    .price-top-sp {
      background: #000;
      padding: 0.6vw 1.5vw;
      border-radius: 0.3vw;
      transform: scaleX(0);
      transform-origin: left center;
      animation: expandRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
      white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    
    .price-top-sp span {
      color: #fff;
      font-size: 6vw;
      font-weight: bold;
      font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
      font-style: italic;
      display: inline-block;
      opacity: 0;
      transform: translateX(-20px);
      animation: textSlideIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s forwards;
    }
    
    .price-top-sp2 {
      background: #000;
      padding: 0.6vw 1.5vw;
      border-radius: 0.3vw;
      transform: scaleX(0);
      transform-origin: left center;
      animation: expandRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s forwards;
      white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    
    .price-top-sp2 span {
      color: #fff;
      font-size: 6vw;
      font-weight: bold;
      font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
      font-style: italic;
      display: inline-block;
      opacity: 0;
      transform: translateX(-20px);
      animation: textSlideIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.7s forwards;
    }
    
    .price-bottom {
      background: #000;
      padding: 0.4vw 1vw;
      border-radius: 0.3vw;
      display: flex;
      align-items: center;
      gap: 1.5vw;
      transform: scaleX(0);
      transform-origin: left center;
      animation: expandRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    
    .price-detail {
      color: #fff;
      font-size: 1.5vw;
      font-weight: bold;
      line-height: 1.4;
      font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
      opacity: 0;
      transform: translateX(-20px);
      animation: textSlideIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s forwards;
    }
    
    .price-amount {
      color: #fff;
      font-size: 6vw;
      font-weight: bold;
      font-family: Arial, sans-serif;
      opacity: 0;
      transform: scale(0) rotate(-10deg);
      animation: pricePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards;
      text-shadow: 0 0 20px rgba(255,255,255,0.5);
    }
    
    @keyframes expandRight {
      0% {
        transform: scaleX(0);
      }
      100% {
        transform: scaleX(1);
      }
    }
    
    @keyframes textSlideIn {
      0% {
        opacity: 0;
        transform: translateX(-20px);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes pricePop {
      0% {
        opacity: 0;
        transform: scale(0) rotate(-10deg);
      }
      50% {
        opacity: 1;
        transform: scale(1.3) rotate(3deg);
      }
      70% {
        transform: scale(0.95) rotate(-2deg);
      }
      85% {
        transform: scale(1.05) rotate(1deg);
      }
      100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }
    
    @media (max-width: 768px) {
      .price-top {
        display: none;
      }
      .price-top-img {
        display: block;
      }
      .price-top-sp,
      .price-top-sp2 {
        display: none;
      }
      .price-bottom {
        animation: expandRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards;
      }
      .price-detail {
        font-size: 3.5vw;
        animation: textSlideIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.3s forwards;
      }
      .price-amount {
        font-size: 12vw;
        animation: pricePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2.5s forwards;
      }
    }
    
    @media (min-width: 769px) {
      .price-top-sp,
      .price-top-sp2 {
        display: none;
      }
    }
    
    #flash-canvas {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 200;
    }
    
    .pasha-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 200;
    }
    
    .pasha-text {
      position: absolute;
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      writing-mode: vertical-rl;
      text-shadow: 
        0 0 10px rgba(255,255,255,0.8),
        0 0 20px rgba(255,255,255,0.6),
        0 0 30px rgba(255,255,255,0.4),
        2px 2px 4px rgba(0,0,0,0.3);
      opacity: 0;
      animation: pashaAppear 0.8s ease-out forwards;
      white-space: nowrap;
    }
    
    @keyframes pashaAppear {
      0% {
        opacity: 0;
        transform: rotate(var(--rotate)) scale(1.5);
      }
      20% {
        opacity: 1;
        transform: rotate(var(--rotate)) scale(1);
      }
      80% {
        opacity: 1;
        transform: rotate(var(--rotate)) scale(1);
      }
      100% {
        opacity: 0;
        transform: rotate(var(--rotate)) scale(0.9);
      }
    }
    
    /* ========== 固定お問い合わせボタン ========== */
    .contact-fixed-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #fff;
      border: 2px solid #333;
      border-radius: 8px;
      padding: 15px 25px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.15);
      z-index: 1000;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      flex-direction: column;
    }
    
    .contact-fixed-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }
    
    .contact-fixed-left,
    .contact-fixed-right {
      display: contents;
    }
    
    .contact-fixed-title {
      font-size: 14px;
      font-weight: bold;
      letter-spacing: 0.15em;
      color: #333;
      margin-bottom: 2px;
    }
    
    .contact-fixed-subtitle {
      font-size: 12px;
      font-weight: bold;
      color: #333;
      margin-bottom: 8px;
    }
    
    .contact-fixed-text {
      font-size: 10px;
      color: #666;
      margin-bottom: 3px;
    }
    
    .contact-fixed-highlight {
      font-size: 12px;
      font-weight: bold;
      color: #333;
      margin-bottom: 10px;
    }
    
    .contact-fixed-cta {
      background: #333;
      color: #fff;
      font-size: 12px;
      font-weight: bold;
      font-style: italic;
      padding: 8px 20px;
      border-radius: 4px;
    }
    
    /* ========== スマホ用メインビジュアル ========== */
    .mv-sp {
      display: none;
      width: 100%;
      background: #fff;
      padding: 4vw;
      box-sizing: border-box;
      position: relative;
    }
    
    #flash-canvas-sp {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 100;
    }
    
    .pasha-container-sp {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 101;
      overflow: hidden;
    }
    
    .pasha-text-sp {
      position: absolute;
      font-size: 1.5rem;
      font-weight: bold;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      animation: pashaAppear 0.8s ease-out forwards;
      transform: rotate(var(--rotate, 0deg));
    }
    
    .mv-sp-logo {
      text-align: center;
      margin-bottom: 4vw;
      position: relative;
      z-index: 1;
    }
    
    .mv-sp-logo img {
      width: 45vw;
      height: auto;
    }
    
    .mv-sp-tagline {
      font-size: 3.5vw;
      color: #333;
      font-weight: bold;
      letter-spacing: 0.1em;
      text-align: center;
      margin-top: 2vw;
      font-family: "Noto Sans JP", sans-serif;
    }
    
    .mv-sp-row1 {
      display: flex;
      gap: 2vw;
      margin-bottom: 4vw;
      align-items: stretch;
      position: relative;
      z-index: 1;
    }
    
    .mv-sp-row1-left {
      flex: 0 0 58%;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
    }
    
    .mv-sp-row1-left .mv-sp-slideshow {
      position: relative;
      width: 100%;
      padding-bottom: 133%; /* 縦長画像の比率調整 */
    }
    
    .mv-sp-row1-left .mv-sp-slideshow img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .mv-sp-row1-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 2vw;
    }
    
    .mv-sp-row1-right > div {
      flex: 1;
      min-height: 0;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
    }
    
    .mv-sp-row1-right video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .mv-sp-row1-right .mv-sp-slideshow {
      width: 100%;
      height: 100%;
      position: relative;
      background: #fff;
    }
    
    .mv-sp-row1-right .mv-sp-slideshow img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      position: absolute;
      top: 0;
      left: 0;
    }
    
    .mv-sp-title {
      text-align: center;
      margin-bottom: 2vw;
      position: relative;
      z-index: 1;
    }
    
    .mv-sp-title > img {
      width: 92vw;
      height: auto;
    }
    
    .mv-sp-logo-icon {
      position: absolute;
      top: calc(-2vw + 20px);
      right: 5vw;
      width: 10vw;
      height: 10vw;
      animation: mvLogoSpin 4s linear infinite;
    }
    
    .mv-sp-logo-icon img {
      width: 100%;
      height: 100%;
    }
    
    .mv-sp-accent {
      position: absolute;
      bottom: 10px;
      left: 2vw;
      width: 18vw;
      height: auto;
    }
    
    .mv-sp-accent img {
      width: 100%;
      height: auto;
    }
    
    .mv-sp-price {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-bottom: 4vw;
      margin-top: -30px;
      padding: 0 4vw;
      z-index: 1;
    }
    
    .mv-sp-price img {
      width: 65vw;
      height: auto;
    }
    
    .mv-sp-badge {
      position: absolute;
      left: 4vw;
      width: 18vw;
      height: 18vw;
      background: #1a3366;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .mv-sp-badge-title {
      color: #ffdd00;
      font-size: 4vw;
      font-weight: bold;
      line-height: 1.2;
    }
    
    .mv-sp-badge-text {
      color: white;
      font-size: 2vw;
      line-height: 1.3;
      text-align: center;
    }
    
    .mv-sp-row2 {
      display: flex;
      gap: 2vw;
      margin-bottom: 2vw;
      position: relative;
      z-index: 1;
    }
    
    .mv-sp-row2-left {
      flex: 1;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
    }
    
    .mv-sp-row2-left video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .mv-sp-row2-right {
      flex: 0 0 30vw;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border: 1px solid #ccc;
      box-sizing: border-box;
    }
    
    .mv-sp-row2-right video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .mv-sp-row3 {
      display: flex;
      gap: 2vw;
      height: 60vw;
      position: relative;
      z-index: 1;
    }
    
    .mv-sp-row3-left {
      flex: 0 0 32%;
      display: flex;
      flex-direction: column;
      gap: 2vw;
      height: 100%;
    }
    
    .mv-sp-row3-left > div {
      flex: 1;
      overflow: hidden;
      position: relative;
      border: 1px solid #ccc;
      box-sizing: border-box;
    }
    
    .mv-sp-row3-left .mv-sp-slideshow {
      width: 100%;
      height: 100%;
    }
    
    .mv-sp-row3-left .mv-sp-slideshow img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    
    .mv-sp-row3-right {
      flex: 1;
      overflow: hidden;
      position: relative;
      border: 1px solid #ccc;
      box-sizing: border-box;
    }
    
    .mv-sp-row3-right .mv-sp-slideshow {
      width: 100%;
      height: 100%;
    }
    
    .mv-sp-row3-right .mv-sp-slideshow img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    
    /* スライドショー用 */
    .mv-sp-slideshow {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: #fff;
    }
    
    .mv-sp-slideshow img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transform: translateX(100%);
      z-index: 1;
    }
    
    .mv-sp-slideshow img.active {
      transform: translateX(0);
      z-index: 3;
    }
    
    .mv-sp-slideshow img.slide-out {
      animation: mvSpSlideOut 0.5s ease-out forwards;
      z-index: 2;
    }
    
    .mv-sp-slideshow img.slide-in {
      animation: mvSpSlideIn 0.5s ease-out forwards;
      z-index: 4;
    }
    
    @keyframes mvSpSlideIn {
      from { transform: translateX(100%); }
      to { transform: translateX(0); }
    }
    
    @keyframes mvSpSlideOut {
      from { transform: translateX(0); }
      to { transform: translateX(-100%); }
    }
    
    /* ========== メインビジュアル スマホ対応 ========== */
    @media (max-width: 768px) {
      /* PC用MVを非表示 */
      .mv-container {
        display: none !important;
      }
      
      /* スマホ用MVを表示 */
      .mv-sp {
        display: block;
      }
      
      /* GURIPHOTOロゴスクロール */
      .logo-row {
        top: auto;
        bottom: 0;
      }
      
      /* 固定コンタクトボタン スマホ対応 */
      .contact-fixed-btn {
        bottom: 0;
        left: 10px;
        right: 10px;
        transform: none;
        padding: 10px 15px;
        border: 1px solid #333;
        border-bottom: none;
        border-radius: 8px 8px 0 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: calc(100% - 20px);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      }
      
      .contact-fixed-btn:hover {
        transform: none;
      }
      
      .contact-fixed-title {
        display: block;
        font-size: 12px;
        letter-spacing: 0.2em;
        margin-bottom: 0;
      }
      
      .contact-fixed-subtitle {
        display: block;
        font-size: 11px;
        margin-bottom: 0;
      }
      
      .contact-fixed-text {
        display: none;
      }
      
      .contact-fixed-highlight {
        display: block;
        font-size: 10px;
        margin-bottom: 0;
        font-weight: normal;
        color: #666;
      }
      
      .contact-fixed-cta {
        margin: 0;
        padding: 6px 12px;
        font-size: 10px;
      }
      
      .contact-fixed-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }
      
      .contact-fixed-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
      }
      
      /* ========== マーキー スマホ対応 ========== */
      .marquee-line {
        padding: 6vw 0;
      }
      
      .marquee-text {
        font-size: 5vw;
        padding: 0 3vw;
      }
      
      /* ========== 会社紹介セクション スマホ対応 ========== */
      .section-company {
        height: auto;
        min-height: auto;
        padding: 60px 0 80px 0;
        overflow-x: hidden;
        overflow-y: visible;
      }
      
      .section-company-content {
        padding-top: 5vh;
        overflow: visible;
        height: auto;
      }
      
      .company-catchcopy {
        font-size: 7vw;
        margin-bottom: 3vw;
        line-height: 1.4;
        text-align: center;
      }
      
      .company-catchcopy .sp-br {
        display: block;
      }
      
      .company-logo {
        gap: 3vw;
        margin-bottom: 4vw;
      }
      
      .company-logo-icon {
        height: 15vw;
      }
      
      .company-logo-text {
        height: 10vw;
      }
      
      .company-label {
        font-size: 5vw;
        margin-bottom: 5vw;
      }
      
      .company-label .small-ha {
        font-size: 3.5vw;
      }
      
      .company-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw;
        padding: 0 3vw;
        margin-top: 5vw;
        margin-bottom: 10vw;
        overflow: visible;
      }
      
      .company-card {
        width: 100%;
        border-radius: 3vw;
        overflow: visible;
      }
      
      .company-card-img {
        aspect-ratio: 3 / 4;
        overflow: visible;
      }
      
      .company-card-img > img:first-child {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .company-card-text {
        width: 70px;
        left: 5px;
      }
      
      .company-card:nth-child(2) .company-card-text.text-left {
        top: 5%;
        width: 60px;
        left: 5px;
      }
      
      .company-card:nth-child(2) .company-card-text.text-right {
        right: 5px;
        left: auto;
        width: 60px;
      }
      
      .company-card:nth-child(4) .company-card-text {
        width: 35px;
        right: 5px;
        left: auto;
      }
      
      .company-card-body {
        padding: 3vw;
      }
      
      .company-card-title {
        font-size: 3.5vw;
        padding-bottom: 2vw;
        margin-bottom: 2vw;
      }
      
      .company-card-desc {
        font-size: 2.8vw;
        white-space: normal;
        word-break: break-all;
        text-align: center;
      }
      
      /* 縦マーキー非表示 */
      .marquee-vertical {
        display: none;
      }
      
      /* 下部マーキー非表示 */
      .bottom-marquee {
        display: none;
      }
      
      /* 図形を小さく */
      .company-shapes .shape {
        transform: scale(0.6);
      }
      
      /* ========== 撮影事例（WORKS）スマホ対応 ========== */
      .section-works {
        padding: 6vw 0;
      }
      
      .works-track img {
        width: 25vw;
        height: 16.7vw;
        border-radius: 1vw;
      }
      
      .works-center {
        padding: 5vw 0;
      }
      
      .works-text {
        font-size: 4vw;
        margin-bottom: 2vw;
      }
      
      .works-count {
        font-size: 15vw;
      }
      
      .works-unit {
        font-size: 8vw;
      }
      
      .works-plus {
        font-size: 5vw;
      }
      
      .works-float-img {
        display: none;
      }
      
      /* ========== 撮影ギャラリー スマホ対応 ========== */
      .section-gallery {
        min-height: auto;
        padding: 5vw 0 3vw;
        background: linear-gradient(to bottom, #F07167 0%, #F07167 15vw, #97DAE6 15vw, #97DAE6 100%);
      }
      
      .gallery-logo-icon {
        width: 12vw;
        height: 12vw;
        margin-bottom: 3vw;
      }
      
      .gallery-title {
        font-size: 8vw;
        margin-bottom: 1vw;
      }
      
      .gallery-subtitle {
        font-size: 4vw;
        margin-bottom: 4vw;
      }
      
      .video-gallery {
        padding: 2vw 0;
        padding-left: calc(50% - 18vw);
        gap: 3vw;
      }
      
      .video-item {
        flex: 0 0 36vw;
      }
      
      .video-item video {
        border-radius: 2vw;
      }
      
      .video-item::before {
        border-radius: 2vw;
      }
      
      .video-info-title {
        font-size: 3vw;
      }
      
      .video-info-desc {
        font-size: 2.2vw;
      }
      
      .gallery-accent-img {
        display: none;
      }
      
      /* ========== AIセクション スマホ対応 ========== */
      .section-ai {
        min-height: auto;
        padding: 8vw 5vw;
        padding-bottom: 20vw;
      }
      
      .ai-content {
        flex-direction: column;
        gap: 4vw;
      }
      
      .ai-text-area {
        display: contents;
      }
      
      .ai-title-row {
        order: 1;
        flex-direction: column;
        align-items: center;
        gap: 2vw;
        margin-bottom: 0;
        position: static;
      }
      
      .section-ai {
        position: relative;
      }
      
      .ai-title {
        font-size: 5.5vw;
        text-align: center;
        white-space: nowrap;
      }
      
      .ai-title br {
        display: none;
      }
      
      .ai-float-img {
        position: absolute;
        right: 0;
        top: 8vw;
        width: 20vw;
        height: auto;
      }
      
      .ai-desc {
        order: 2;
        font-size: 3vw;
        text-align: center;
        margin-bottom: 0;
      }
      
      .ai-desc br {
        display: none;
      }
      
      .ai-video-area {
        flex: none;
        width: 100%;
        order: 3;
      }
      
      .ai-video-area video {
        border-radius: 2vw;
      }
      
      .ai-slider-wrapper {
        order: 4;
        padding-bottom: 12vw;
      }
      
      .ai-slide {
        width: 20vw;
        height: 20vw;
      }
      
      .ai-slide img {
        border-radius: 1vw;
      }
      
      .ai-check-area {
        bottom: -2vw;
      }
      
      .ai-check-btn {
        font-size: 3vw;
        padding: 1.5vw 4vw;
        border-radius: 4vw;
      }
      
      .ai-check-float {
        width: 10vw;
        margin-top: -5px;
      }
      
      .ai-note {
        font-size: 2.5vw;
        padding: 0 5vw;
      }
      
      /* ========== TECHNOLOGYセクション スマホ対応 ========== */
      .section-technology {
        margin-top: -15vw;
      }
      
      .technology-header {
        padding: 0 5vw;
      }
      
      .technology-title-en {
        font-size: 12vw;
      }
      
      .technology-content {
        padding: 6vw 5vw 8vw;
      }
      
      .tech-row-top {
        flex-direction: column;
        gap: 5vw;
      }
      
      .tech-text {
        order: -1;
        padding: 0;
      }
      
      .tech-label {
        font-size: 2.5vw;
        margin-bottom: 2vw;
      }
      
      .tech-title {
        font-size: 5vw;
        margin-bottom: 3vw;
      }
      
      .tech-desc {
        font-size: 3vw;
        margin-bottom: 3vw;
      }
      
      .tech-tags {
        gap: 2vw;
      }
      
      .tech-tag {
        font-size: 2.8vw;
      }
      
      .tech-img-1 {
        width: 100%;
        height: 50vw;
      }
      
      .tech-row-bottom {
        flex-direction: row;
        gap: 3vw;
        margin-right: 0;
        margin-top: 5vw;
      }
      
      .tech-img-2,
      .tech-img-3 {
        width: 45vw;
        height: 45vw;
      }
      
      .tech-img {
        border-radius: 3vw;
      }
      
      .tech-img img {
        border-radius: 3vw;
      }
      
      .tech-img-label-name {
        font-size: 3vw;
        padding: 0.5vw 1.5vw;
        border-width: 2px;
      }
      
      .label-name-1 {
        left: 3%;
        bottom: calc(5% + 6vw);
      }
      
      .label-name-2 {
        left: -5%;
        bottom: calc(5% + 6vw);
      }
      
      .label-name-3 {
        left: -5%;
        bottom: calc(5% + 6vw);
      }
      
      .tech-img-label {
        font-size: 2.5vw;
        padding: 0.5vw 1.5vw;
        border-width: 2px;
      }
      
      .label-1 {
        left: 3%;
        bottom: 5%;
      }
      
      .label-2 {
        left: -5%;
        bottom: 5%;
      }
      
      .label-3 {
        left: -5%;
        bottom: 5%;
      }
      
      /* ========== MODELセクション スマホ対応 ========== */
      .section-model {
        margin-top: -8vw;
      }
      
      .model-header {
        padding: 0 5vw;
      }
      
      .model-title-en {
        font-size: 18vw;
      }
      
      .model-content {
        padding: 3vw 0 8vw;
      }
      
      .model-text-area {
        padding: 0 5vw;
      }
      
      .model-title-jp {
        font-size: 4.5vw;
      }
      
      .model-gallery {
        gap: 2vw;
        padding: 0 5vw;
      }
      
      .model-img-tall {
        width: 28vw;
        height: 42vw;
      }
      
      .model-img-wide {
        width: 34vw;
        height: 28vw;
      }
      
      .model-img-square {
        width: 30vw;
        height: 30vw;
      }
      
      /* ========== システムセクション スマホ対応 ========== */
      .section-system {
        min-height: auto;
        padding: 8vw 5vw;
      }
      
      .system-header {
        flex-direction: column;
        align-items: center;
        gap: 4vw;
        margin-bottom: 4vw;
      }
      
      .system-logo {
        align-items: center;
      }
      
      .system-logo-icon {
        width: 10vw;
        height: 10vw;
      }
      
      .system-logo-text {
        font-size: 3.5vw;
      }
      
      .system-catch {
        font-size: 5.5vw;
        text-align: center;
      }
      
      .system-desc {
        font-size: 3vw;
        margin-left: 0;
        text-align: center;
        margin-bottom: 6vw;
      }
      
      .system-desc br {
        display: none;
      }
      
      .system-cards {
        flex-direction: column;
        gap: 6vw;
      }
      
      .system-card {
        flex: none;
        width: 100%;
      }
      
      .system-card-img {
        border-radius: 3vw;
      }
      
      .system-card-num {
        font-size: 5vw;
        bottom: 2vw;
        left: 2vw;
      }
      
      .system-card-label {
        font-size: 3.5vw;
        padding: 2vw 3vw;
        margin-top: 3vw;
        border-radius: 1vw;
      }
      
      .system-card-desc {
        font-size: 3vw;
        margin-top: 2vw;
      }
      
      /* ========== FLOWセクション スマホ対応 ========== */
      .section-flow {
        padding: 8vw 4vw;
      }
      
      .flow-logo-icon {
        width: 12vw;
        height: 12vw;
        margin-bottom: 2vw;
      }
      
      .flow-title {
        font-size: 7vw;
      }
      
      .flow-subtitle {
        font-size: 3.5vw;
      }
      
      .flow-steps {
        flex-wrap: wrap;
        gap: 4vw 3vw;
      }
      
      .flow-step {
        flex: 0 0 44vw;
        border-radius: 3vw;
        padding: 4vw 3vw 3vw;
      }
      
      .flow-step-num {
        font-size: 2.5vw;
        padding: 0.8vw 2.5vw;
        top: -2vw;
      }
      
      .flow-step-icon {
        width: 18vw;
        height: 18vw;
        margin: 2vw auto;
      }
      
      .flow-step-title {
        font-size: 3.5vw;
        margin-bottom: 1vw;
      }
      
      .flow-step-desc {
        font-size: 2.8vw;
      }
      
      .flow-arrow {
        display: none;
      }
      
      /* ========== CONTACTセクション スマホ対応 ========== */
      .section-contact {
        padding: 8vw 5vw 12vw;
        text-align: center;
      }
      
      .contact-vertical-wrapper {
        display: none;
      }
      
      .contact-pickup-label {
        position: relative;
        right: auto;
        top: auto;
        display: inline-block;
        font-size: 3vw;
        padding: 2vw 4vw;
        margin-bottom: 4vw;
        border-radius: 2vw;
      }
      
      .contact-catch {
        font-size: 5vw;
        margin-bottom: 2vw;
      }
      
      .contact-free {
        font-size: 7vw;
      }
      
      .contact-title {
        font-size: 6vw;
        margin-bottom: 4vw;
      }
      
      .contact-btn {
        font-size: 4vw;
        padding: 3vw 10vw;
        margin-bottom: 5vw;
      }
      
      .contact-info {
        flex-direction: column;
        gap: 3vw;
        margin-bottom: 4vw;
      }
      
      .contact-label {
        font-size: 3vw;
      }
      
      .contact-number {
        font-size: 7vw;
      }
      
      .contact-staff {
        font-size: 3.5vw;
      }
      
      .staff-name {
        font-size: 5vw;
      }
      
      /* ========== Q&Aセクション スマホ対応 ========== */
      .section-qa {
        padding: 8vw 4vw;
      }
      
      .qa-logo-icon {
        width: 12vw;
        height: 12vw;
        margin-bottom: 2vw;
      }
      
      .qa-title {
        font-size: 7vw;
      }
      
      .qa-subtitle {
        font-size: 3.5vw;
      }
      
      .qa-list {
        grid-template-columns: 1fr;
        gap: 3vw;
      }
      
      .qa-item {
        border-radius: 2vw;
      }
      
      .qa-question {
        gap: 3vw;
        padding: 3vw 4vw;
      }
      
      .qa-q {
        font-size: 3.5vw;
        width: 7vw;
        height: 7vw;
      }
      
      .qa-question p {
        font-size: 3.2vw;
      }
      
      .qa-answer {
        gap: 3vw;
        padding: 3vw 4vw;
      }
      
      .qa-a {
        font-size: 3.5vw;
        width: 7vw;
        height: 7vw;
      }
      
      .qa-answer p {
        font-size: 3vw;
      }
      
      /* ========== お問い合わせフォームセクション スマホ対応 ========== */
      .section-contact-form {
        padding: 8vw 4vw;
      }
      
      .phone-title {
        font-size: 3.5vw;
        gap: 2vw;
        margin-bottom: 3vw;
      }
      
      .phone-bar {
        height: 4vw;
      }
      
      .phone-number {
        font-size: 7vw;
        margin-bottom: 2vw;
      }
      
      .phone-mobile-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1vw;
        margin-bottom: 3vw;
      }
      
      .phone-number-mobile {
        font-size: 5vw;
      }
      
      .phone-staff {
        font-size: 3.5vw;
      }
      
      .phone-desc {
        font-size: 3vw;
        margin-bottom: 1vw;
      }
      
      .phone-time {
        font-size: 3vw;
      }
      
      .contact-top-row {
        margin-bottom: 6vw;
      }
      
      .form-row {
        flex-direction: column;
        gap: 3vw;
      }
      
      .form-group {
        gap: 1.5vw;
      }
      
      .form-group label {
        font-size: 3.5vw;
        gap: 2vw;
      }
      
      .required {
        font-size: 2.5vw;
        padding: 0.5vw 1.5vw;
        border-radius: 1vw;
      }
      
      .form-group input,
      .form-group textarea {
        padding: 3vw;
        font-size: 3.5vw;
        border-radius: 2vw;
      }
      
      .contact-form {
        gap: 4vw;
      }
      
      .form-submit {
        font-size: 4vw;
        padding: 3.5vw 10vw;
        margin-top: 2vw;
      }
      
      /* ========== 画像モーダル スマホ対応 ========== */
      .img-modal-close {
        width: 12vw;
        height: 12vw;
        font-size: 6vw;
        top: 4vw;
        right: 4vw;
      }
    }

/* ========== Plugin & Custom Styles (from functions.php) ========== */
/* Smash Balloon デフォルトボタン非表示 */
#sb_instagram .sbi_follow_btn,
#sb_instagram .sbi_load_btn,
#sb_instagram #sbi_load,
#sb_instagram .sbi_follow_btn a {
    display: none !important;
}

/* Instagram Feed スライドアニメーション */
.section-instagram {
    padding: 80px 0 !important;
    text-align: center;
}

.section-instagram #sb_instagram {
    overflow: hidden !important;
    padding: 30px 0 !important;
}

.section-instagram #sbi_images {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 25px !important;
    animation: instaSlide 40s linear infinite !important;
    width: max-content !important;
}

.section-instagram .sbi_item {
    flex: 0 0 280px !important;
    width: 280px !important;
}

.section-instagram .sbi_photo {
    width: 280px !important;
    height: 280px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.section-instagram .sbi_photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

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

/* 新しいインスタボタン */
.insta-btn-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(131, 58, 180, 0.4);
}

.insta-btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.6);
}

.insta-btn-new span {
    transition: transform 0.3s ease;
}

.insta-btn-new:hover span {
    transform: translateX(5px);
}

/* ========== PC用フッターインスタ ========== */
.footer-right {
    width: 18vw !important;
}

.footer-right #sb_instagram {
    width: 100% !important;
    height: auto !important;
}

.footer-right #sbi_images {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
    gap: 5px !important;
    animation: none !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
}

.footer-right .sbi_item {
    aspect-ratio: 1 !important;
    width: 100% !important;
    height: auto !important;
    flex: none !important;
}

.footer-right .sbi_item:nth-child(n+7) {
    display: none !important;
}

.footer-right .sbi_photo {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 !important;
    border-radius: 3px !important;
    overflow: hidden !important;
}

.footer-right .sbi_photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* ========== MW WP Form スタイリング ========== */
.mw_wp_form {
    max-width: 100%;
}

.mw_wp_form table {
    width: 100%;
    border-collapse: collapse;
}

.mw_wp_form th,
.mw_wp_form td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.mw_wp_form th {
    width: 30%;
    background: #f8f8f8;
    font-weight: bold;
    vertical-align: top;
}

.mw_wp_form th strong {
    display: inline-block;
    background: #F39800;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 8px;
}

.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.mw_wp_form input[type="text"]:focus,
.mw_wp_form input[type="email"]:focus,
.mw_wp_form input[type="tel"]:focus,
.mw_wp_form textarea:focus {
    outline: none;
    border-color: #F39800;
}

.mw_wp_form textarea {
    min-height: 150px;
    resize: vertical;
}

.mw_wp_form .example {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

/* ラジオボタン配置修正 */
.mw_wp_form .mwform-radio-field {
    display: block !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    text-indent: 0 !important;
}

.mw_wp_form .mwform-radio-field label {
    display: inline-flex !important;
    align-items: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer;
}

.mw_wp_form .mwform-radio-field input[type="radio"] {
    position: relative !important;
    margin: 3px 10px 0 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    vertical-align: top !important;
}

.mw_wp_form .mwform-radio-field-text,
.mw_wp_form .mwform-radio-field span:not(:first-child) {
    line-height: 1.5;
    vertical-align: top;
}

/* ボタンを中央揃え */
.mw_wp_form form > p,
.mw_wp_form > p {
    text-align: center !important;
}

.mw_wp_form .con_btn,
.mw_wp_form input[type="submit"] {
    display: inline-block;
    background: linear-gradient(135deg, #F39800, #ff6b35);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 18px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(243, 152, 0, 0.4);
}

.mw_wp_form .con_btn:hover,
.mw_wp_form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(243, 152, 0, 0.6);
}

.mw_wp_form .back_btn {
    display: inline-block;
    background: #999;
    color: #fff;
    font-size: 16px;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-right: 15px;
    transition: all 0.3s;
}

.mw_wp_form .back_btn:hover {
    background: #777;
}

/* ステップ表示 */
.mw_wp_form .contact_second {
    margin-bottom: 30px;
}

.mw_wp_form .contact_second ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.mw_wp_form .contact_second li {
    padding: 12px 25px;
    background: #ddd;
    border-radius: 5px;
    color: #999;
    font-weight: bold;
    transition: all 0.3s;
}

.mw_wp_form .contact_second li strong {
    margin-right: 5px;
    background: none;
    color: inherit;
    padding: 0;
}

/* 入力画面でアクティブ */
.mw_wp_form_input .contact_second .first_step {
    background: #F39800;
    color: #fff;
    box-shadow: 0 3px 10px rgba(243, 152, 0, 0.4);
}

/* 確認画面でアクティブ */
.mw_wp_form_confirm .contact_second .second_step {
    background: #4CAF50;
    color: #fff;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.4);
}

/* 完了画面でアクティブ */
.mw_wp_form_complete .contact_second .third_step {
    background: #2196F3;
    color: #fff;
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.4);
}

.mw_wp_form .contact_third {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.8;
}

/* 電話番号リンク */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

a[href^="tel:"]:hover {
    text-decoration: underline;
}

/* オープニングスキップ用 */
.opening.skip-animation {
    display: none !important;
}

.main-visual.skip-animation {
    opacity: 1 !important;
    visibility: visible !important;
}

#colorWipe.skip-animation {
    display: none !important;
}

body.skip-opening {
    overflow: visible !important;
    overflow-x: hidden !important;
}

/* ========== スマホ対応 ========== */
@media (max-width: 768px) {
    /* メインインスタ */
    .section-instagram .sbi_item,
    .section-instagram .sbi_photo {
        width: 180px !important;
        height: 180px !important;
        flex: 0 0 180px !important;
    }
    
    .section-instagram #sbi_images {
        gap: 15px !important;
    }
    
    .insta-btn-new {
        padding: 14px 35px;
        font-size: 14px;
    }
    
    /* Page Topボタン */
    .back-to-top {
        position: absolute !important;
        top: -8vw !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
    }
    
    .back-to-top img {
        height: 15vw !important;
        width: auto !important;
    }
    
    .back-to-top:hover {
        transform: translateX(-50%) translateY(-5px) !important;
    }
    
    /* フッター縦並び */
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 20px !important;
        padding-top: 50px !important;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        text-align: center !important;
    }
    
    .footer-catch {
        width: 100% !important;
        text-align: center !important;
        font-size: 6vw !important;
        line-height: 1.5 !important;
        margin-top: 20px !important;
        margin-bottom: 40px !important;
    }
    
    .footer-logo {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 40px !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .footer-logo img {
        width: 70vw !important;
        max-width: 300px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    .footer-contact,
    .footer-address {
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .footer-contact p,
    .footer-address p {
        font-size: 4.5vw !important;
        line-height: 1.8 !important;
    }
    
    .footer-center {
        order: 4 !important;
        margin-top: 25px !important;
    }
    
    .footer-map {
        width: 100% !important;
        height: 250px !important;
    }
    
    /* スマホ用フッターインスタ */
    .footer-right {
        width: 100% !important;
        order: 5 !important;
        margin-top: 30px !important;
    }
    
    .footer-right #sb_instagram {
        width: 100% !important;
        height: auto !important;
    }
    
    .footer-right #sbi_images {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
    gap: 5px !important;
    animation: none !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    }
    
    .footer-right .sbi_item {
    aspect-ratio: 1 !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 !important;
    }
    
    .footer-right .sbi_photo {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 !important;
    }
    
    /* MW WP Form スマホ */
    .mw_wp_form th,
    .mw_wp_form td {
        display: block;
        width: 100%;
    }
    
    .mw_wp_form th {
        background: none;
        padding-bottom: 5px;
        border-bottom: none;
    }
    
    .mw_wp_form .contact_second ul {
        flex-direction: row;
        gap: 5px;
    }
    
    .mw_wp_form .contact_second li {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .mw_wp_form .con_btn,
    .mw_wp_form input[type="submit"] {
        width: 100%;
        padding: 15px;
    }
    
    .mw_wp_form .back_btn {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* ========== Q&A Chat Styles ========== */
.qa-chat-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 9998;
}

.qa-chat-btn img {
  width: 200px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.qa-chat-btn:hover img {
  transform: scale(1.05);
}

.qa-chat-popup {
  position: fixed;
  right: -400px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  max-height: 600px;
  background: #fff;
  border-radius: 15px 0 0 15px;
  box-shadow: -5px 0 30px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: right 0.4s ease;
  overflow: hidden;
}

.qa-chat-popup.active {
  right: 0;
}

.qa-chat-header {
  position: relative;
  padding: 0;
}

.qa-chat-header img {
  width: 100%;
  height: auto;
  display: block;
}

.qa-chat-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255,255,255,0.8);
  border: none;
  color: #333;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
}

.qa-chat-body {
  padding: 15px;
  max-height: 500px;
  overflow-y: auto;
}

.qa-chat-intro {
  background: #f0f0f0;
  padding: 12px 15px;
  border-radius: 15px 15px 15px 0;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.qa-chat-questions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qa-chat-q-btn {
  background: #fff;
  border: 2px solid #F39800;
  color: #F39800;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.qa-chat-q-btn:hover {
  background: #F39800;
  color: #fff;
}

.qa-chat-answer {
  display: none;
  margin-top: 15px;
}

.qa-chat-answer.show {
  display: block;
}

.qa-chat-answer-box {
  background: #87CEEB;
  color: #333;
  padding: 15px;
  border-radius: 15px 15px 0 15px;
  font-size: 14px;
  line-height: 1.7;
}

.qa-chat-back {
  margin-top: 10px;
  background: #f0f0f0;
  border: none;
  color: #666;
  padding: 8px 15px;
  border-radius: 15px;
  font-size: 12px;
  cursor: pointer;
}

.qa-chat-back:hover {
  background: #e0e0e0;
}

@media (max-width: 768px) {
  .qa-chat-btn {
    top: auto;
    bottom: 100px;
    width: 50px;
    height: 50px;
    background: #F39800;
    border-radius: 50% 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .qa-chat-btn img {
    display: none;
  }
  
  .qa-chat-btn::after {
    content: "?";
    color: #fff;
    font-size: 24px;
    font-weight: bold;
  }
  
  .qa-chat-popup {
    width: 90vw;
    max-width: 350px;
    max-height: 70vh;
    right: -100%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 15px;
  }
  
  .qa-chat-popup.active {
    right: 5vw;
  }
  
  .qa-chat-body {
    max-height: calc(70vh - 100px);
  }
}

/* ========== SEO: visually-hidden ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== プライバシーポリシーチェックボックス ========== */
.privacy-check {
    text-align: center;
    margin: 25px 0 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.privacy-check label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
}

.privacy-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #F39800;
    cursor: pointer;
}

.privacy-check a {
    color: #F39800;
    text-decoration: underline;
    font-weight: bold;
}

.privacy-check a:hover {
    color: #ff6b35;
}

/* お問い合わせセクション高さ調整 */
.section-contact-form {
    padding: 2.5vw 3vw !important;
}

.mw_wp_form table {
    margin-bottom: 15px;
}

.mw_wp_form th,
.mw_wp_form td {
    padding: 10px 15px !important;
}

@media (max-width: 768px) {
    .privacy-check {
        margin: 20px 0;
        padding: 15px;
    }
    
    .privacy-check label {
        font-size: 14px;
    }
    
    .section-contact-form {
        padding: 5vw 4vw !important;
    }
}
