﻿@charset "utf-8";
html {
    font-size: 62.5%;
	margin: 0;
	overscroll-behavior-y: none; /* Prevenir bounce effect */
}

body {
    line-height: 1.4;
	background-color:#FFFFFF;
	padding: 0;
	margin: 0;
	overscroll-behavior-y: none; /* Prevenir bounce effect */
}

* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.wrap {
	overflow: hidden;
	max-width: 600px;
	margin: 0 auto;
}

.main {
	max-width: 600px;
	margin: 0 auto;
}


img,
video {
    max-width: 100%;
}

img {
    border-style: none;
	width: 100%;
	height: auto;
}

div {
	line-height: 0;
	max-width: 600px;
	margin: auto;
}



 .container{
        position: relative;
      }
      img{
        width: 100%;
      }




/* Hero Section con botﾃｳn flotante */
.hero {
	position: relative;
	background-image: url("../images/Ai-BOW_LP0.png");
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center top;
	width: 100%;
	padding-bottom: 0; /* Removido padding inferior */
}

.hero_video {
	position: relative;
	width: 100%;
	line-height: 0;
	z-index: 1;
	background-image: url("../images/Ai-BOW_LP02_2.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-bottom: 168.52%; /* Aspect ratio 1080x1820 */
	height: 0;
}

.hero_video video {
	width: 100%;
	height: auto;
	display: block;
}

.hero_video img {
	width: 100%;
	height: auto;
	display: block;
}

.hero_btn {
	position: absolute; /* Cambiado a absolute para superponer */
	bottom: 20px; /* Posicionado en la parte inferior */
	left: 50%; /* Centrado horizontalmente */
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 88%;
	max-width: 530px;
	z-index: 10; /* Por encima del video */
}

.hero_btn_base {
	z-index: 9; /* Botón base (BOTTAN3) debajo de todos */
	pointer-events: none; /* No interfiere con clics */
}

.hero_btn_animated {
	z-index: 10; /* Botón animado (BOTTAN2) */
}

.hero_btn_static {
	z-index: 11; /* Botón estático (BOTTAN1) encima del animado */
	pointer-events: none; /* No interfiere con clics */
}

.hero_btn.hero_btn_base a {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	-webkit-animation: none;
	        animation: none;
}

.hero_btn.hero_btn_base a:hover {
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
}

.hero_btn.hero_btn_base img {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.hero_btn.hero_btn_static a {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	-webkit-animation: none;
	        animation: none;
}

.hero_btn.hero_btn_static a:hover {
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
}

.hero_btn.hero_btn_static img {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

/* Contenedor fixed para los botones duplicados */
.hero_btn_fixed {
	position: fixed;
	bottom: 200px;
	left: 100%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 88%;
	max-width: 530px;
	z-index: 100;
	pointer-events: none;
}

.hero_btn_fixed .hero_btn {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	pointer-events: auto;
}

.hero_btn a {
	display: block;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-animation: poyopoyo 2.5s ease-out infinite;
	        animation: poyopoyo 2.5s ease-out infinite;
}




/* Botﾃｳn fijo flotante en esquina */
.js__fixed_btn {
	width: 100%;
    position: fixed;
    bottom: 0px;
    right: 0px;
    border: none;
    z-index: 100;
	background: rgb(10 10 10 / 50%);
	padding: 1%;
	display: none; /* Oculto por defecto */
	-webkit-animation-name:fadeUpAnime;
	        animation-name:fadeUpAnime;
	-webkit-animation-duration:2.8s;
	        animation-duration:2.8s;
	-webkit-animation-fill-mode:forwards;
	        animation-fill-mode:forwards;
	opacity:0;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

/* Tablet: 480px - 1023px */
@media screen and (min-width: 480px) and (max-width: 1023px){
.js__fixed_btn{
	width: 50%;
	bottom: 0px;
	right: 0px;
	background: rgb(10 10 10 / 50%);
	padding: 1%;
}
}

/* Desktop: 1024px+ */
@media screen and (min-width: 1024px){
.js__fixed_btn{
	width: 26%;
	bottom: 20px;
	right: 20px;
	background: transparent;
	padding: 0;
	-webkit-animation: poyopoyo 2.5s ease-out infinite;
	        animation: poyopoyo 2.5s ease-out infinite;
	opacity: 1;
}
}

/* Animaciﾃｳn sutil del botﾃｳn - efecto de pulsaciﾃｳn */
@-webkit-keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1.0);
            transform: scale(1.0);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1.0);
            transform: scale(1.0);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}






/* Ajustes de enlaces */

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}





@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
                transform: translateX(0%);
    }
}





@keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
                transform: translateX(0%);
    }
}




.nav-items__item:last-child a {
  margin-bottom: 0;
}

/* Efectos hover en desktop */
@media screen and (min-width: 479px){

.hero_btn a:hover,
.nav-items__item a:hover
{
  -webkit-animation: big 0.1s;
          animation: big 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.hero_btn a:active,
.nav-items__item a:active
{
  -webkit-animation: small 0.1s;
          animation: small 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
}

@media screen and (max-width: 479px){

.hero_btn a:active,
.nav-items__item a:active
{
  -webkit-animation: small 0.01s;
          animation: small 0.01s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
}



@-webkit-keyframes big
{
  0% {-webkit-transform: scale(1);transform: scale(1); }
  100% {-webkit-transform: scale(1.1);transform: scale(1.1);}
}



@keyframes big
{
  0% {-webkit-transform: scale(1);transform: scale(1); }
  100% {-webkit-transform: scale(1.1);transform: scale(1.1);}
}

@-webkit-keyframes small
{
  100% {-webkit-transform: scale(0.9);transform: scale(0.9);}
}

@keyframes small
{
  100% {-webkit-transform: scale(0.9);transform: scale(0.9);}
}







@media screen and (min-width: 479px){

.js__fixed_btn:hover
{
  -webkit-animation: big 0.1s;
          animation: big 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.js__fixed_btn:active
{
  -webkit-animation: small 0.1s;
          animation: small 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
}








/* Botﾃｳn fijo en mﾃｳvil - abajo completo */
@media screen and (max-width: 479px) {
.js__fixed_btn {
	width: 100%;
    bottom: 0px;
    right: 0px;
	background: rgb(10 10 10 / 50%);
	padding: 1%;
	display: none; /* Oculto por defecto */
-webkit-animation-name:fadeUpAnime;
        animation-name:fadeUpAnime;
-webkit-animation-duration:2.8s;
        animation-duration:2.8s;
-webkit-animation-fill-mode:forwards;
        animation-fill-mode:forwards;
opacity:0;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}

.hero_btn {
	width: 90%;
	bottom: 2%;
}

.hero_btn_fixed {
	width: 90%;
	bottom: 17%;
	left: 95%;
}
}

/*Ocultar botﾃｳn cuando llega al footer*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
}




@-webkit-keyframes fadeUpAnime{
  from {
    opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  }

  to {
    opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  }
}




@keyframes fadeUpAnime{
  from {
    opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  }

  to {
    opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  }
}









/* Animaciﾃｳn de temblor sutil */
@-webkit-keyframes yureru-j {
    0% {
        -webkit-transform: translate(0px, 2px);
                transform: translate(0px, 2px);
    }
    5% {
        -webkit-transform: translate(0px, -2px);
                transform: translate(0px, -2px);
    }
    10% {
        -webkit-transform: translate(0px, 2px);
                transform: translate(0px, 2px);
    }
    15% {
        -webkit-transform: translate(0px, -2px);
                transform: translate(0px, -2px);
    }
    20% {
        -webkit-transform: translate(0px, 2px);
                transform: translate(0px, 2px);
    }
    25% {
        -webkit-transform: translate(0px, -2px);
                transform: translate(0px, -2px);
    }
    30% {
        -webkit-transform: translate(0px, 0px);
                transform: translate(0px, 0px);
    }
}
@keyframes yureru-j {
    0% {
        -webkit-transform: translate(0px, 2px);
                transform: translate(0px, 2px);
    }
    5% {
        -webkit-transform: translate(0px, -2px);
                transform: translate(0px, -2px);
    }
    10% {
        -webkit-transform: translate(0px, 2px);
                transform: translate(0px, 2px);
    }
    15% {
        -webkit-transform: translate(0px, -2px);
                transform: translate(0px, -2px);
    }
    20% {
        -webkit-transform: translate(0px, 2px);
                transform: translate(0px, 2px);
    }
    25% {
        -webkit-transform: translate(0px, -2px);
                transform: translate(0px, -2px);
    }
    30% {
        -webkit-transform: translate(0px, 0px);
                transform: translate(0px, 0px);
    }
}




@-webkit-keyframes poyoyon2 {
  0%  {
    -webkit-transform: scale(1.0, 1.0) translate(0, 0);
            transform: scale(1.0, 1.0) translate(0, 0);
  }
  15% {
    -webkit-transform: scale(0.98, 0.9) translate(0, 5px);
            transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    -webkit-transform: scale(1.02, 1.0) translate(0, 8px);
            transform: scale(1.02, 1.0) translate(0, 8px);
  }
  50% {-webkit-transform: scale(0.98, 1.05) translate(0, -8px);transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    -webkit-transform: scale(1.0, 0.9) translate(0, 5px);
            transform: scale(1.0, 0.9) translate(0, 5px);
  }
  100% {
    -webkit-transform: scale(1.0, 1.0) translate(0, 0);
            transform: scale(1.0, 1.0) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}




@keyframes poyoyon2 {
  0%  {
    -webkit-transform: scale(1.0, 1.0) translate(0, 0);
            transform: scale(1.0, 1.0) translate(0, 0);
  }
  15% {
    -webkit-transform: scale(0.98, 0.9) translate(0, 5px);
            transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    -webkit-transform: scale(1.02, 1.0) translate(0, 8px);
            transform: scale(1.02, 1.0) translate(0, 8px);
  }
  50% {-webkit-transform: scale(0.98, 1.05) translate(0, -8px);transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    -webkit-transform: scale(1.0, 0.9) translate(0, 5px);
            transform: scale(1.0, 0.9) translate(0, 5px);
  }
  100% {
    -webkit-transform: scale(1.0, 1.0) translate(0, 0);
            transform: scale(1.0, 1.0) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}


@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


/* Secciones */
.section01a,
.section01b,
.section01c,
.section02,
.section03,
.section04,
.section05 {
	width: 100%;
}

/* Section01c - Bonus */
.section01c {
	position: relative;
}

/* Bonus Button */
.bonus_btn {
	width: 100%;
	margin: 0px auto;
	display: block;
}

.bonus_btn a {
	display: block;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.bonus_btn img {
	width: 100%;
	height: auto;
}

/* Efectos hover en desktop para bonus_btn */
@media screen and (min-width: 479px){
	.bonus_btn a:hover {
		-webkit-animation: big 0.1s;
		        animation: big 0.1s;
		-webkit-animation-fill-mode: forwards;
		        animation-fill-mode: forwards;
	}

	.bonus_btn a:active {
		-webkit-animation: small 0.1s;
		        animation: small 0.1s;
		-webkit-animation-fill-mode: forwards;
		        animation-fill-mode: forwards;
	}
}

@media screen and (max-width: 479px){
	.bonus_btn a:active {
		-webkit-animation: small 0.01s;
		        animation: small 0.01s;
		-webkit-animation-fill-mode: forwards;
		        animation-fill-mode: forwards;
	}
}


/* Footer */
.footer{
	width: 100%;
}

/* Footer Button Section */
.footer_btn_section {
	width: 100%;
	position: relative;
	margin: 0;
	min-height: 200px;
}

@media screen and (max-width: 479px) {
	.footer_btn_section{
		min-height: 150px;
	}
}

/* Footer Comﾃｺn para todo el sitio */
.footer-common {
	background-color: #f5f5f5;
	padding: 40px 20px 30px;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	height: 360px;
}

.footer-logo {
	margin-bottom: 25px;
}

.footer-logo img {
	max-width: 250px;
	width: auto;
	height: auto;
}

.footer-links {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
	margin-bottom: 20px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.footer-link {
	font-family: "hiragino-kaku-gothic-pron", "繝偵Λ繧ｮ繝手ｧ偵ざ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
	padding: 5px 10px;
}

.footer-link:hover {
	color: #ff0000;
	text-decoration: underline;
}

.footer-copyright {
	font-family: "hiragino-kaku-gothic-pron", "繝偵Λ繧ｮ繝手ｧ偵ざ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 12px;
	color: #666;
	margin-top: 15px;
}

/* Mobile adjustments para footer */
@media screen and (max-width: 479px) {
	.footer-common {
		padding: 30px 15px 25px;
	}

	.footer-logo img {
		max-width: 200px;
	}

	.footer-links {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		   -moz-box-orient: vertical;
		   -moz-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 10px;
	}

	.footer-link {
		font-size: 13px;
	}

	.footer-copyright {
		font-size: 11px;
	}
}

/* Footer Button */
.footer_btn {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 88%;
	max-width: 530px;
}

.footer_btn_animated {
	z-index: 10; /* Botón animado (BOTTAN2) */
}

.footer_btn_static {
	z-index: 11; /* Botón estático (BOTTAN1) encima del animado */
	pointer-events: none; /* No interfiere con clics */
}

.footer_btn.footer_btn_static a {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	-webkit-animation: none;
	        animation: none;
}

.footer_btn.footer_btn_static a:hover {
	-webkit-transform: none;
	    -ms-transform: none;
	        transform: none;
}

.footer_btn.footer_btn_static img {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.footer_btn a {
	display: block;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.footer_btn img {
	width: 100%;
	height: auto;
}

/* Efectos hover en desktop para footer_btn */
@media screen and (min-width: 479px){
	.footer_btn a:hover {
		-webkit-animation: big 0.1s;
		        animation: big 0.1s;
		-webkit-animation-fill-mode: forwards;
		        animation-fill-mode: forwards;
	}

	.footer_btn a:active {
		-webkit-animation: small 0.1s;
		        animation: small 0.1s;
		-webkit-animation-fill-mode: forwards;
		        animation-fill-mode: forwards;
	}
}

/* Mobile: footer_btn activo */
@media screen and (max-width: 479px){
	.footer_btn a:active {
		-webkit-animation: small 0.01s;
		        animation: small 0.01s;
		-webkit-animation-fill-mode: forwards;
		        animation-fill-mode: forwards;
	}
}

/* Privacy Policy Header */
.privacy-header {
	background-color: #ffffff;
	padding: 60px 20px 50px;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.privacy-header-logo {
	margin-bottom: 40px;
	text-align: left;
}

.privacy-header-logo img {
	max-width: 190px;
	width: 190px;
	height: auto;
}

.privacy-header-title {
	font-family: "acumin-pro", sans-serif;
	font-weight: 900;
	font-size: 43px;
	color: #000;
	margin-bottom: 15px;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.privacy-header-subtitle {
	font-family: "hiragino-kaku-gothic-pron", "繝偵Λ繧ｮ繝手ｧ偵ざ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 600;
	font-size: 24px;
	color: #333;
	letter-spacing: 0.1em;
	line-height: 1.4;
}

/* Mobile adjustments para privacy header */
@media screen and (max-width: 479px) {
	.privacy-header {
		padding: 40px 15px 35px;
	}

	.privacy-header-logo img {
		max-width: 180px;
		width: 180px;
	}

	.privacy-header-title {
		font-size: 32px;
	}

	.privacy-header-subtitle {
		font-size: 18px;
	}
}

/* Privacy Policy Content */
.privacy-content {
	max-width: 600px;
	margin: 0 auto;
	padding: 40px 30px;
	background-color: #ffffff;
	font-family: "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 2.0;
	color: #333;
}

.privacy-intro {
	margin-bottom: 40px;
	text-align: justify;
}

.privacy-notice {
	background-color: #fff9e6;
	border: 2px solid #ffd700;
	padding: 25px 20px;
	margin-bottom: 40px;
	border-radius: 8px;
}

.privacy-notice-title {
	font-family: "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 15px;
	color: #000;
}

.privacy-notice p {
	margin-bottom: 12px;
	line-height: 1.8;
}

.privacy-article {
	margin-bottom: 40px;
}

.privacy-article-title {
	font-family: "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 20px;
	color: #000;
	line-height: 1.6;
}

.privacy-article p {
	margin-bottom: 16px;
	text-align: justify;
}

.privacy-list {
	margin: 20px 0;
	padding-left: 0;
	list-style: none;
}

.privacy-list li {
	margin-bottom: 12px;
	padding-left: 1.5em;
	text-indent: -1.5em;
	line-height: 1.9;
}

.privacy-disclaimer {
	background-color: #f5f5f5;
	padding: 25px 20px;
	margin: 40px 0;
	border-left: 4px solid #666;
}

.privacy-disclaimer-title {
	font-family: "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 15px;
	color: #000;
}

.privacy-contact {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #ddd;
}

.privacy-contact-title {
	font-family: "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 20px;
	color: #000;
}

.privacy-contact-info {
	line-height: 1.8;
}

/* Mobile adjustments */
@media screen and (max-width: 479px) {
	.privacy-content {
		padding: 30px 20px;
		font-size: 13px;
	}

	.privacy-article-title {
		font-size: 15px;
	}

	.privacy-notice-title,
	.privacy-disclaimer-title,
	.privacy-contact-title {
		font-size: 15px;
	}
}

/* Legal Page (Tokuteishou) Styles */
.legal-content {
	max-width: 600px;
	margin: 0 auto;
	padding: 40px 20px;
	background-color: #ffffff;
}

.legal-section {
	margin-bottom: 40px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 30px;
}

.legal-section:first-of-type {
	border-top: 1px solid #ddd;
	padding-top: 30px;
}

.legal-section:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.legal-section.no-border-bottom {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.legal-section.no-border-top {
	border-top: none;
	padding-top: 30px;
}

.legal-row {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 20px;
	line-height: 1.8;
}

.legal-label {
	font-family: "hiragino-kaku-gothic-pron", "繝偵Λ繧ｮ繝手ｧ偵ざ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #000;
	min-width: 140px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	text-align: right;
	padding-right: 20px;
}

.legal-value {
	font-family: "hiragino-kaku-gothic-pron", "繝偵Λ繧ｮ繝手ｧ偵ざ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #333;
	-webkit-box-flex: 1;
	   -moz-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	margin-left: 20px;
}

.legal-value a {
	color: #333;
	text-decoration: none;
}

.legal-value a:hover {
	text-decoration: underline;
}

.legal-important {
	background-color: #f5f5f5;
	width: 80%;
	max-width: 480px;
	margin: 2px auto 60px auto;
	padding: 30px 20px;
}

.legal-important-title {
	font-family: "hiragino-kaku-gothic-pron", "繝偵Λ繧ｮ繝手ｧ偵ざ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: #000;
	margin-bottom: 20px;
}

.legal-important-list {
	font-family: "hiragino-kaku-gothic-pron", "繝偵Λ繧ｮ繝手ｧ偵ざ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #333;
	line-height: 1.8;
	list-style: none;
	padding: 0;
}

.legal-important-list li {
	margin-bottom: 0;
	padding-left: 1em;
	text-indent: -1em;
}

/* Mobile adjustments para legal page */
@media screen and (max-width: 479px) {
	.legal-content {
		padding: 30px 15px;
	}

	.legal-row {
		/* Mantener diseño de dos columnas en móviles */
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		   -moz-box-orient: horizontal;
		   -moz-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		margin-bottom: 20px;
		-webkit-box-align: start;
		   -moz-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}

	.legal-label {
		min-width: 110px; /* Ancho fijo para las etiquetas */
		max-width: 110px;
		padding-right: 10px;
		text-align: right;
		font-size: 12px;
		-ms-flex-negative: 0;
		    flex-shrink: 0;
		word-wrap: break-word;
		white-space: normal;
	}

	.legal-value {
		-webkit-box-flex: 1;
		   -moz-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
		margin-left: 10px;
		font-size: 12px;
		word-wrap: break-word;
		word-break: break-word;
		white-space: normal;
		line-height: 1.6;
	}

	/* Prevenir word break en textos específicos */
	.nowrap {
		white-space: nowrap;
	}

	.legal-important {
		width: 90%;
		padding: 25px 15px;
		margin-bottom: 40px;
	}

	.legal-important-title {
		font-size: 15px;
	}

	.legal-important-list {
		font-size: 13px;
	}
}
