@charset "utf-8";

@import "https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.6.0/remixicon.min.css";
:where([class^="ri-"])::before { content: "\f3c2"; }
body {
    font-family: 'Noto Sans JP', sans-serif;
}
.hero-section {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 100%),
    url('/images/main-bg.png');
    background-size: cover;
    background-position: center right;
}
@media screen and (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.15rem;
    }
    .hero-section p {
        margin-bottom: 25px;
    }
}
.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}
.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
}
.custom-checkbox:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}
.custom-checkbox:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.custom-radio {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
}
.custom-radio:checked {
    border-color: #6366f1;
}
.custom-radio:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #6366f1;
}
.favorite-btn:hover .heart-icon {
    transform: scale(1.2);
    transition: transform 0.2s;
}
.favorite-btn.active .heart-icon {
    color: #ef4444;
    fill: #ef4444;
}
.category-tag {
    transition: all 0.3s ease;
}
.category-tag:hover {
    transform: translateY(-2px);
}
.text-white {
    color:white !important;
}
@media screen and (max-width: 768px) {
	.md:text-left {
        text-align: center;
    }
    section#about div.containe {
        text-align: center;
    }
    .text-xl{
        font-size: 1.25rem !important;
    }
    .text-2xl{
        font-size: 1.5rem !important;
    }
}
section:not(.hero-section, .elementor-section, [data-ppt-blockid="footer1"]) {
    max-width: 1000px;
    margin: auto;
}
span.listing {
    font-weight: 500;
    font-size: 1.1em;
}
span.listing-name {
    max-width: calc(100% - 28px);
}
