@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* AOS styles - ensure elements are hidden initially until AOS initializes */
[data-aos] {
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility, transform;
}

[data-aos].aos-animate {
  opacity: 1;
  visibility: visible;
}
/* Inlined from gallerieshub.com/table/dx/newrashiteLP/style.css (no external @import) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100%;
}

body {  
  font-family: 'Noto Sans JP', sans-serif;
  background: url('./images/landing_page/bg.gif') repeat;
  color: #3b3b3b;
  overflow-x: hidden;
  width: 100%;
  line-height: 2rem;
}

a {
  color: #eb50b0;
}

a:hover {
  color: #c22b89;
}

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

.header {
  text-align: center;
  padding: 20px 0;
  display: none;
}

.logo {
  font-size: 32px;
  font-weight: bold;
  color: #00d4ff;
  letter-spacing: 2px;
}

.hero {
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg-video {
  aspect-ratio: 16 / 9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
}

.hero-text-left {
  flex: 1;
  text-align: right;
  padding-right: 40px;
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInLeft 1.5s ease-out 0.5s forwards;
  position: absolute;
  left: -370px;
  z-index: 1;
  transform: translateX(20%);
}

.hero-text-right {
  flex: 1;
  text-align: left;
  padding-left: 40px;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInRight 1.5s ease-out 0.5s forwards;
  position: absolute;
  right: -173px;
  z-index: 1;
  transform: translateX(-20%);
}

.hero-phone {
  flex: 0 0 400px;
  text-align: center;
}

.phone-mockup {
  background: #333;
  border-radius: 30px;
  padding: 10px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  animation: phoneAppear 1s ease-out 1s forwards;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.main-text {
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sub-text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.8;
}

.free-trial {
  font-size: 72px;
  white-space: nowrap;
  font-weight: bold;
  color: #ffffff;
  margin: 6px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.typewriter {
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typing 2s steps(20, end) 2s forwards;
}

.section {
  padding: 40px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.section ul {
  list-style: none;
  width: 70%;
  margin: 0 auto 30px;
  font-size: 1.5rem;
  font-weight: bold;
}

.section ul li {
  margin: 5px 0;
  background-color: #fcfac8;
  padding: 20px;
  border-radius: 10px;
}

.section ul li span {
  color: #eb3eb2;
}

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

.section-title {
  font-size: 28px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 16px;
}

@keyframes slideInFromLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes slideInFromRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .section-title img {
    width: 100% !important;
    height: auto !important;
  }
}

.features {
  text-align: center;
}

.laptop-image {
  max-width: 100%;
  height: auto;
  margin: 40px 0;
  transform: translateY(50px);
  transition: transform 0.8s ease-out;
}

.laptop-image video {
  position: absolute;
  top: 164px;
  left: 335px;
  width: 50%;
  height: 51%;
  object-fit: cover;
}

.laptop-image.visible {
  transform: translateY(0);
}

.girls {
  position: relative;
  width: 100%;
}

.girls img {
  width: 74%;
  position: absolute;
  top: 0;
  z-index: 2;
}

.profiles {
  text-align: center;
}

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

.profile-item {
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease-out;
}

.profile-item.visible {
  opacity: 1;
  transform: scale(1);
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-name {
  font-size: 18px;
  margin-bottom: 5px;
}

.profile-age {
  color: #ccc;
  font-size: 14px;
}

.steps {
  text-align: center;
}

.step-item {
  display: flex;
  align-items: center;
  margin: 40px 0;
  opacity: 0;
  transition: all 0.8s ease-out;
}

.step-item.visible {
  opacity: 1;
}

.step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  background: #ffffff;
  color: #e83eb4;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: solid 2px white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 40px;
  flex-shrink: 0;
}

.step-item h3 {
  font-size: 24px;
  font-weight: bold;
  color: #e83eb4;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: #ffffff;
  text-decoration-thickness: 6px;
  text-underline-offset: 12px;
  line-height: 50px;
}

.step-content {
  flex: 1;
  text-align: left;
}

.step-item:nth-child(even) .step-content {
  text-align: right;
}

.step-image {
  flex: 1;
  text-align: center;
}

.step-image img {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.safety {
  text-align: center;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.safety-item {
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.safety-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.safety-item p {
  margin-top: 10px;
}

.safety-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.testimonials {
  text-align: center;
}

.testimonial-item {
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 15px;
  margin: 20px 0;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.testimonial-name {
  color: #027fd7;
}

.testimonial-item p {
  margin-top: 10px;
}

.testimonial-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-item:nth-child(even) {
  transform: translateX(50px);
}

.testimonial-item:nth-child(even).visible {
  transform: translateX(0);
}

.fixed-button {
  background: linear-gradient(90deg, #c7954b, #f4efb7, #c7954b);
  width: 100%;
  height: 100px;
  padding-top: 16px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  text-align: center;
}

.trial-badge {
  background: #ee1d2e;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
  display: inline-block;
  animation: bounce 2s infinite;
}

.comment {
  display: inline-block;
  padding-left: 10px;
}

.cta-button {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(180deg, #f5f0b8, #c69349);
  color: #43321c;
  padding: 18px 40px;
  border: 2px solid #43321c;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.marquee-text {
  width: 100%;
  height: 30px;
  background-color: #372306;
  overflow: hidden;
  position: fixed;
  bottom: 100px;
  z-index: -1;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes phoneAppear {
  to {
    transform: scale(1);
  }
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

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

@media (max-width: 768px) {
  .header {
    text-align: center;
    padding: 20px 0;
    display: block;
  }

  .container {
    padding: 0 15px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero {
    width: auto;
    height: auto;
    overflow: visible;
  }

  .hero-bg-video {
    display: none;
  }

  .hero-text-left {
    display: none;
  }

  .hero-text-right {
    display: none;
  }

  .hero-phone {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .phone-mockup {
    max-width: 100%;
    width: 100%;
  }

  .main-text {
    font-size: 32px;
  }

  .free-trial {
    font-size: 70px;
  }

  .section {
    padding: 30px 0;
    text-align: center;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .section ul {
    width: 100%;
  }

  .laptop-image video {
    top: 55px;
    left: 115px;
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .step-item {
    flex-direction: column !important;
    text-align: center;
    margin: 30px 0;
  }

  .step-item .step-content {
    text-align: center !important;
    margin: 20px 0;
  }

  .safety-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-item {
    text-align: center;
    margin: 15px 0;
    padding: 20px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 18px;
  }

  .comment {
    padding-left: 85px;
  }

  .marquee-text {
    bottom: 106px;
  }

  .fixed-button {
    background: linear-gradient(90deg, #c7954b, #f4efb7, #c7954b);
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    height: 106px;
    padding-top: 10px;
  }
}

.video-section {
  padding: 0 0 150px 0;
}

.video-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video {
  width: 100%;
}

.copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 40px;
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 90%;
    height: auto;
  }
}

#preview_video {
  width: 100%;
  max-width: 998px;
  height: 560px;
  margin: 0 auto;
}

.preview iframe,
.preview video {
  max-width: 998px !important;
  height: 504px !important;
  object-fit: cover;
}

#preview_video .preview {
  height: calc(100% - 56px) !important;
}

#preview_video .preview_control {
  width: 100%;
  height: 56px;
}

@media (max-width: 480px) {
  #preview_video .preview_control {
    padding: 0 1em;
  }
}

/* Hero section CSS animations */
.hero-content {
  opacity: 0;
  animation: heroFadeUp 0.8s ease-in-out 0s forwards;
}

.hero-text-left {
  opacity: 0;
  transform: translateX(50px);
  animation: heroFadeRight 0.8s ease-out 1.2s forwards;
}

.hero-text-right {
  opacity: 0;
  transform: translateX(-50px);
  animation: heroFadeLeft 0.8s ease-out 1.2s forwards;
}

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

@keyframes heroFadeRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.en .hero-text-right{
  top: 20%;
  left: 53%;
  right: auto;
}
main{
  padding-bottom: 80px;
}
.data-loading{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.features a{
  font-size: 1.2em;
  padding: 0 3px;
}
.girls{
  margin-top: 40px;
}
.comment{
  padding: 5px 10px;
  border-radius: 10px;
  background: #ee1d2e;
  margin-top: 14px;
  color: #fff;
  line-height: 1.4;
  margin-left: 20px;
}
.phone-mockup{
  position: relative;
}
.section ul li{
  margin: 0 0 10px;
}
       
.laptop-image--inner{
  width: 100%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative;
}
.section-title{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.section-title--img{
  position: relative;
  max-width: 100%;
}
.section-title img{
  max-width: 100%; 
}
.section-title--img--abs{
  position: absolute; 
}
.slideLeft{
  animation: slideInFromLeft 1s ease-out forwards;
}
.slideRight{
  animation: slideInFromRight 1s ease-out forwards, float 2s ease-in-out infinite;
}
.laptop-image--inner img{
  width: 100%;
}
.feature-item{
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}
.feature-item::before{
  content: "\F269";
  color: #f00;
  font-size: 30px;
  font-family: "bootstrap-icons";
  line-height: 1;
}
.feature-item br{
  display: none;
}
.girls--img{
  width: 100% !important;
  display: block;
  margin: 0 auto;
  position: absolute;
  z-index: 2;
}

.girls--video{
  position: relative;
  z-index: 1;
}

.step-image--inner{
  width: 300px;
  height: 200px;
  background: #444;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-number{
  margin: 0;
}
.step-item{
  justify-content: center;
} 
.step-item h3 {
  line-height: 1.4;
}
.step-content, .step-image{
  flex: none;
  padding: 0 10px;
}
.step-image{
  margin: 0 20px;
}
.safety-flex{
  display: flex;
  justify-content: center;
  gap: 30px;
  line-height: 1.5;
}
.safety-icon img{
  width: 80px;
  height: 80px;
}
/* Testimonials Slick Slider */
/* Testimonials Slick Slider - horizontal single-row infinite loop */
.testimonials .container{
  max-width: 1300px;
}
.testimonial-items {
  margin: 0 0 20px;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.testimonial-item{
  opacity: 1;
}

.testimonial-items .slick-slide {
  height: auto;
  padding: 10px 0;
  margin: 0 10px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}

.logo-image {
  position: absolute;
  background-size: 100%;
  background-position: top center;
  padding: 5px;
  margin: 10px 10px 0 9px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  outline: none;
  width: calc(100% - 20px);
  height: 40px;
  top: 0;
  left: 0;
  z-index: 100;
}
.logo-image img{
  width: auto;
  height: 100%;
  object-fit: contain;
}

.testimonial-items .slick-list {
  overflow: hidden;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.testimonial-items .slick-track {
  display: flex;
  align-items: stretch;
}

.testimonial-items img{
  max-width: 200px;
  width: 100%;
  margin: 0 auto 10px;
  display: block;
}

.testimonial-items dt{
  font-weight: bold;
  font-size: 1.2em;
  padding: 0 1em;
}

.testimonial-items dt::before{
  content: "\F6B0";
  font-family: "bootstrap-icons";
  font-size: 1.2em;
  margin-right: 10px;
}

.testimonial-items dd {
  padding: 0 30px 20px;
  line-height: 1.6;
  font-size: .9em;
}
.inline-block{
  display: inline-block;
}
.fixed-button{
  height: auto;
  padding: 0;
}
.footer--inner{
  position: relative;
  max-width: 900px;
  height: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.girl-btm{
  position: absolute; 
  right: 0; 
  bottom: 0; 
  height: 200px; 
  z-index: -1;
}

/* Hero video positioning fix for mobile */
.hero-bg-video {
  object-position: top center;
}

.phone-video {
  object-position: top center;
}

@media (max-width: 768px) {
  main{
    padding-top: 40px;
  }
  .hero-phone {
    flex: 0 0 330px;
    height: 70vh;
  }
  .hero-bg-video {
    object-position: top center;
  }
  
  .phone-video {
    object-position: top center;
  }
  .feature-item {
    line-height: 1.2;
  }
  .feature-item br{
    display: block;
  }
  .step-item h3 {
    text-decoration: none;
    margin-bottom: 10px;
  }
  .safety-flex{ 
    flex-direction: column;
  }
  .safety-item{
    padding: 0 10px;
  }
  .comment{
    margin: 14px 10px 0;
  }
  .girl-btm{
    right: auto;
    left: -30px;
  }
}
@media (max-width: 480px) {
  .logo-image{
    margin-left: 10px;
    height: 30px;
  }
  .logo-image img{
    height: 80%;
  }
  .section ul{
    font-size: 1.2em;
  }
  p{
    line-height: 1.6;
  }
  .testimonial-items .slick-slide {
    padding: 10px 0;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .testimonial-items .slick-slide > div {
    margin: 0 10px;
  }
  .testimonials .container {
    padding: 0 10px;
  }
  .testimonial-items .slick-list {
    width: 100% !important;
  }
  .testimonial-items .slick-track {
    width: 100% !important;
  }
}

/* Language Toggle Button */
.language-toggle-button {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  padding: 10px 40px;
  background-color: #ee1d2e;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.language-toggle-button:hover {
  background-color: #870f19;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.language-toggle-button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .language-toggle-button {
    top: 10px;
    right: 10px;
    padding: 5px 10px 7px;
    line-height: 1;
    font-size: 12px;
  }
}
