/* Compiled CSS for Rakuten Mobile Landing Page */

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

html .page-top {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.page-top {
    font-family: "Zen Maru Gothic", sans-serif;
    background-color: #fdfdfd;
    color: #1a1a1a;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    min-height: 100vh;
    width: 100%;
}

/* Typography */
.font-zen-maru {
    font-family: "Zen Maru Gothic", sans-serif;
}

.font-jost {
    font-family: "Jost", sans-serif;
}

.font-black {
    font-weight: 900;
}

.font-bold {
    font-weight: 700;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.leading-normal {
    line-height: 1.4;
}

.leading-relaxed {
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

/* Colors */
.text-white {
    color: #ffffff;
}

.text-black {
    color: #1a1a1a;
}

.bg-white {
    background-color: #fdfdfd;
}

.bg-hero {
    background-color: #f2eacb;
}

.bg-hero-inner {
    background-color: #f7f2df;
}

.bg-yellow {
    background-color: #ffcc00;
}

.bg-red {
    background-color: #bf0000;
}

.bg-red-hover:hover {
    background-color: #a00000;
}

.bg-blue {
    background-color: #0066cc;
}

.bg-blue-light {
    background-color: #cde2f6;
}

.bg-blue-lighter {
    background-color: #f0f7ff;
}

.bg-green {
    background-color: #018643;
}

.bg-green-light {
    background-color: #d0e9dd;
}

.bg-green-lighter {
    background-color: #ecf7f2;
}

.bg-orange {
    background-color: #cc3600;
}

.bg-orange-light {
    background-color: #f6d9cf;
}

.bg-orange-lighter {
    background-color: #fdf4f1;
}

.bg-purple {
    background-color: #4c2c8e;
}

.bg-gray-light {
    background-color: #f8f8f8;
}

.bg-purple-light {
    background-color: #f7f4ff;
}

.text-red {
    color: #bf0000;
}

.text-blue {
    color: #0066cc;
}

.text-green {
    color: #018643;
}

.text-orange {
    color: #cc3600;
}

.text-purple {
    color: #4c2c8e;
}

.text-gray {
    color: #333333;
}

.text-yellow {
    color: #ffcc00;
}

/* Layout */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

/* Flexbox */
.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.flex-1 {
    flex: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Grid */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Spacing */
.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-12 {
    padding: 3rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ms-5 {
    margin-left: 1.25rem;
}

/* Sizing */
.w-full {
    width: 100%;
}

.w-56 {
    width: 14rem;
}

.w-52 {
    width: 13rem;
}

.w-64 {
    width: 16rem;
}

.w-80 {
    width: 20rem;
}

.w-500px {
    width: 500px;
}

.w-600px {
    width: 600px;
}

.w-660px {
    width: 660px;
}

.h-full {
    height: 100%;
}

.h-52 {
    height: 13rem;
}

.min-h-screen {
    min-height: 100vh;
}

.min-h-150 {
    min-height: 37.5rem;
}

.min-h-125 {
    min-height: 31.25rem;
}

.max-w-xs {
    max-width: 20rem;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.size-10 {
    width: 2.5rem;
    height: 2.5rem;
}

.size-12 {
    width: 3rem;
    height: 3rem;
}

.size-full {
    width: 100%;
    height: 100%;
}

/* Positioning */
.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.left-1/2 {
    left: 50%;
}

.transform {
    transform: translateX(0) translateY(0);
}

.translate-x-neg-50 {
    transform: translateX(-50%);
}

.translate-y-neg-50 {
    transform: translateY(-50%);
}

.translate-neg-50 {
    transform: translateX(-50%) translateY(-50%);
}

/* Background */
.bg-center {
    background-position: center;
}

.bg-15per {
    background-position: 15%;
}

.bg-left {
    background-position: left;
}

.bg-25per {
    background-position: 25%;
}

.bg-cover {
    background-size: cover;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-size-custom {
    background-size: 195.07% 100%;
}

/* Borders */
.border-2 {
    border-width: 2px;
}

.border-4 {
    border-width: 4px;
}

.border-t-4 {
    border-top-width: 4px;
}

.border-b-0 {
    border-bottom-width: 0;
}

.border-red {
    border-color: #bf0000;
}

.border-blue {
    border-color: #0066cc;
}

.border-green {
    border-color: #018643;
}

.border-orange {
    border-color: #cc3600;
}

.border-purple {
    border-color: #4c2c8e;
}

.rounded {
    border-radius: 0.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 50rem;
}

.rounded-t-lg {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

/* Shadows */
.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-custom {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

/* Overflow */
.overflow-clip {
    overflow: clip;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

/* Z-index */
.z-10 {
    z-index: 10;
}

/* Opacity */
.opacity-50 {
    opacity: 0.5;
}

/* Transitions */
.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* Whitespace */
.whitespace-nowrap {
    white-space: nowrap;
}

/* List styles */
.list-disc {
    list-style-type: disc;
}

/* Specific component heights */
.h-92 {
    height: 23rem;
}

.h-223 {
    height: 55.75rem;
}

.h-366 {
    height: 91.5rem;
}

.h-225px {
    height: 225px;
}

.h-284 {
    height: 71rem;
}

.h-342 {
    height: 85.5rem;
}

.h-210 {
    height: 52.5rem;
}

.h-146 {
    height: 36.5rem;
}

.h-238 {
    height: 59.5rem;
}

.h-290 {
    height: 72.5rem;
}

/* Specific component widths */
.w-301 {
    width: 75.25rem;
}

.w-315 {
    width: 78.75rem;
}

.w-374 {
    width: 93.5rem;
}

.w-260 {
    width: 65rem;
}

.w-200 {
    width: 50rem;
}

.w-204 {
    width: 51rem;
}

.w-1596 {
    width: 399rem;
}

.w-1280 {
    width: 320rem;
}

/* Specific component heights in px */
.h-366px {
    height: 366px;
}

.h-895px {
    height: 895px;
}

.h-284px {
    height: 284px;
}

.h-342px {
    height: 342px;
}

.h-366px {
    height: 366px;
}

.h-210px {
    height: 210px;
}

.h-146px {
    height: 146px;
}

.h-238px {
    height: 238px;
}

.h-282px {
    height: 282px;
}

.h-290px {
    height: 290px;
}

/* Specific component widths in px */
.w-301px {
    width: 301px;
}

.w-315px {
    width: 315px;
}

.w-295px {
    width: 295px;
}

.w-374px {
    width: 374px;
}

.w-260px {
    width: 260px;
}

.w-200px {
    width: 200px;
}

.w-204px {
    width: 204px;
}

.w-1596px {
    width: 1596px;
}

.w-1280px {
    width: 1280px;
}

/* Button styles */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn.small {
    padding: 0.5rem 1.5rem;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background-color: #bf0000;
    color: #fdfdfd;
}

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

.btn-secondary {
    background-color: #fdfdfd;
    color: #bf0000;
    border: 2px solid #bf0000;
}

.btn-secondary:hover {
    background-color: #bf0000;
    color: #fdfdfd;
}

/* Tab styles */
.tab-button {
    border: 2px solid;
    border-bottom: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
}

.tab-button.active-tab {
    color: white !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tab-content {
    display: block;
}

.tab-content.hidden {
    display: none;
}

.img-hero-family {
    background-position: 91.97% 0%;
    bottom: -20px;
    left: 0;
    width: 132px;
    height: 125px;
}

.img-hero-business {
    bottom: -30px;
    right: -50px;
    width: 147px;
    height: 112px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.to-each-of-you svg,
.to-each-of-you img[src$=".svg"] {
    width: 48px;
    height: 48px;
}

.to-each-of-you .area-icon {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Responsive Design */
@media (min-width: 640px) {
    .btn.small {
        padding: 1rem 1.5rem;
    }
    .to-each-of-you .area-icon {
        display: flex;
        justify-content: center;
        width: auto;
    }
}

@media (min-width: 768px) {
    .img-hero-family {
        background-position: 91.97% 0%;
        bottom: -44px;
        left: 0;
        width: 301px;
        height: 284px;
    }

    .img-hero-business {
        bottom: -44px;
        right: 0;
        width: 295px;
        height: 225px;
    }
}

@media (min-width: 1024px) {
}

/* Accessibility */
button:focus,
a:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .tab-button {
        border-width: 3px;
    }

    button,
    a {
        font-weight: 700;
    }
}

/* Additional utility classes */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.overflow-hidden {
    overflow: hidden;
}

/* Additional responsive classes */
@media (min-width: 1024px) {
    .lg\\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Specific image dimensions for entertainment section */
.h-146px {
    height: 146px;
}

.w-260px {
    width: 260px;
}

.h-238px {
    height: 238px;
}

.w-200px {
    width: 200px;
}

@media (min-width: 768px) {
    .md\\:h-290px {
        height: 290px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
