* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #fff;
            color: #0a0a0a;
            overflow-x: hidden;
        }
        
        h2 {
	color: #333;
}

.center {
	text-align: center;
}

img.border {
	border-radius: 20px;
	border: 1px #ddd solid;
}

header,
.mobile-menu {
	display: none;
}
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 40px;
            background-color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .logo a {
            display: flex;
            align-items: center;
                font-size: 2rem;
                    font-family: 'Muli', sans-serif;
                    text-decoration: none;
                    color: #222;
        }
        .logo a:hover {
	        color: #666;
        }
        
        .logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
	        font-family: 'Muli', sans-serif;
            color: #333;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #4ecdc4;
        }
        
        .cta-button {

    background-color: #4ecdc4;
    color: #0a0a0a;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #ffce3a;
        }
        
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), url('https://img.youtube.com/vi/q8QO35Z7uzw/maxresdefault.jpg');
            background-size: cover;
            background-position: center;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #fff;
        }
        .hero p {
	        color: #fff;
        }
        
        /* loop */
	
	.lp-logo-bar__wrapper span {
	    color: #444;
    margin: 10px auto 0;
    text-align: center;
    font-size: 14px;
    display: block;
	}
	.lp-logo-bar__wrapper {
		    width: 100%;
    border-top: solid 1px #ddd;
    overflow: hidden;
    height: 160px;
    background: #fff;
	}
	.lp-logo-bar__content {
  display: flex;
  flex-wrap: nowrap;
  height: var(--lp-logo-bar-height, 60px);
  pointer-events: none;
  animation: scroll-left 30s linear infinite;
  will-change: transform;
  
}

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

/* top scroll */
#scroll-down {
  display: block;
  position: relative;
  padding-top: 79px;
  text-align: center;
  margin-top: 30px;
}

.arrow-down {
  display: block;
  margin: 0 auto;
  width: 9px;
  height: 40px;
}

.arrow-down:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(135deg);
}

#scroll-title {
  display: block;
  text-transform: uppercase;
  color: #FFF;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 10px #000;
}

#scroll-down::before {
  animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 88px;
  background: #FFF;
  content: " ";
}

@keyframes elasticus {
  0% {
    transform-origin: 0% 0%;
    transform: scale(1, 0);
  }
  50% {
    transform-origin: 0% 0%;
    transform: scale(1, 1);
  }
  50.1% {
    transform-origin: 0% 100%;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: 0% 100%;
    transform: scale(1, 0);
  }
}


/* h1 アニメーション */

.hero h1 {
      display: inline-block;
    }

    .animate-text {
      display: inline-block;
      overflow: hidden;
      white-space: nowrap;
    }

    .animate-text::after {
      content: attr(data-text);
      display: inline-block;
      animation: reveal 2s steps(30, end) forwards;
      color: transparent;
      background: linear-gradient(#fff 0 0) no-repeat;
      background-size: 0% 100%;
      -webkit-background-clip: text;
      background-clip: text;
    }

    @keyframes reveal {
      to {
        background-size: 100% 100%;
      }
    }
    
/* wave text */

.features h2 {
   text-align: center;
    opacity: 0;
      transition: opacity 0.3s ease;
    }

   h2.wave span {
      display: inline-block;
      opacity: 0;
      transform: translateY(10px);
      animation: waveFadeUp 0.6s ease forwards;
    }

    @keyframes waveFadeUp {
      0% {
        opacity: 0;
        transform: translateY(10px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    h2.visible {
      opacity: 1;
    }

/* */
.site-wrapper {
	 width: 100%;
    overflow: hidden;
    height: 262px;
    margin: 50px 0;
}
.site-content {
  display: flex;
  flex-wrap: nowrap;
  height: 262px;
  pointer-events: none;
  animation: scroll-left 30s linear infinite;
  will-change: transform; 
}

.site-content div {
	margin: 0 15px;
}
.site-content div img {
	border-radius: 20px;
	border: solid 1px #ddd;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
    
    /* こんなことできます */
    
    .step-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  width: 720px;
}

.step-list li {
    padding: 7px 0px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.checkmark {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #4ecdc4;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-weight: bold;
  margin-right: 16px;
  flex-shrink: 0;
}

/* */

 
        .testimonials {
            padding: 80px 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .testimonial {
            background-color: rgb(246, 247, 247);
            padding: 40px;
            border-radius: 8px;
            position: relative;
        }
        
        .testimonial h3 {
	        padding-top: 20px;
        }
        .testimonial h3,
        .testimonial p {
	        text-align: center;
        }
        
        .testimonial img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: scale(1);
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px; /* 任意：角を丸く */
}

.testimonial img:hover {
  transform: scale(1.05); /* 拡大率を調整可能 */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* 任意：影追加で立体感 */
}
                
        .link-icon {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: #222;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .features {
            padding: 50px 0px;
        }
        
        .features h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 0 30px;
        }
        
        .feature {
            padding: 30px;
            background-color: rgb(246, 247, 247);
            border-radius: 8px;
            transition: transform 0.3s;
        }
        
        .feature:hover {
            transform: translateY(-10px);
        }
        
        .feature i {
            font-size: 40px;
            color: #ffc107;
            margin-bottom: 20px;
        }
        
        .feature h3 {
            margin-bottom: 15px;
        }
        
        .content-text {
	        width: 800px;
	        margin: 0 auto 30px;
        }
        .content-text p {
	        font-size: 1rem;
	        line-height: 180%;
	        margin-bottom: 20px;
	        color: #444;
        }
 
 
    
/* footer */
        
        .footer {
            padding: 60px 40px 30px;
            background-color: #111;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            margin-right: 30px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 18px;
            color: #fff;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #4ecdc4;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
/* sp menu */

nav {
	display: none !important;
}

.mobile-menu {
	display: inherit;
}
    .header {
	    display: inherit;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 50px;
      background-color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
      z-index: 1000;
    }
    
    .logo {
	    font-family: 'Muli', sans-serif;
      font-size: 20px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #555;
    }
    
    .header-icons {
      display: flex;
      align-items: center;
    }
    
    .search-icon, .menu-icon {
      width: 24px;
      height: 24px;
      cursor: pointer;
      margin-left: 20px;
    }
    
    .search-icon svg, .menu-icon svg {
      width: 100%;
      height: 100%;
    }
    
    .content {
      margin-top: 100px;
      padding: 20px;
    }
    
    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0; /* 右から表示 */
      width: 100%;
      height: 100vh;
      background-color: #fff;
      z-index: 2000;
      transform: translateX(100%); /* 最初は画面外に */
      transition: transform 0.3s ease; /* スムーズな動き */
      display: flex;
      flex-direction: column;
      padding: 20px 0;
    }
    
    .mobile-menu.active {
      transform: translateX(0); /* 表示時は位置をリセット */
    }
    
    .menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
      margin-bottom: 40px;
    }
    
    .close-icon {
      width: 24px;
      height: 24px;
      position: relative;
      cursor: pointer;
    }
    
    .close-icon svg {
      width: 100%;
      height: 100%;
    }
    
    .nav-list {
      list-style: none;
    }
   
    .nav-link {
      display: block;
      padding: 10px 30px;
      color: #000;
      text-decoration: none;
      font-size: 36px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-family: 'Muli', sans-serif;
    }
    
    .nav-link:hover,
    .footer-link:hover
     {
	    font-style: inherit;
	    opacity: .6;
    }
    
    .footer-links {
      line-height: 200%;
      padding: 20px 30px;
    }
    
    .footer-link {
      flex: 0 0 49%;
      margin-bottom: 15px;
      text-decoration: none;
      color: #000;
      font-size: 18px;
      text-transform: uppercase;
      font-weight: 500;
    }
	        
/* */

.hero {
    height: 50vh;
    margin: 50px 0 0;
    }
    .hero h1 {
        font-size: 1.3rem;
    }
	        .cta h2 {
    font-size: 1.4rem;
    }
    
    .fancy img {
	    width: 100%;
	    height: auto;
    }
  
  .content-text {
    width: 100%;
    }
    .step-list {
	    width: 100%;
    }
    
    .step-list li {
	    font-size: .9rem;
	    }
            .testimonials {
              display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
            }
            .testimonials {
    padding: 0px 15px;
    }
            
           .testimonial {
    padding: 15px;
    }
    .testimonial h3 {
    padding-top: 10px;
    font-size: .8rem;
}
.testimonial p {
    font-size: .7rem;
}
.link-icon {
	display: none;
}
            
           .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0;
}
.features h2 {
    font-size: 1.4rem;
    margin-bottom: 30px;
}
            .features {
    padding: 80px 20px;
    text-align: left;
    }
    
    .feature {
    padding: 15px;
    }
    .feature h3 {
    font-size: .9rem;
}
            .feature p {
	            font-size: .9rem;
            }
            .footer-content {
                flex-direction: column;
            }
            
            .footer-column {
                margin-bottom: 30px;
            }
            
           
        }
