@charset "UTF-8";

/* Page Hero */
.page-hero {
    height: 300px;
    background-image: url('../images/reserve/top-img.jpg');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    /* Header height offset */
    position: relative;
    color: #fff;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-inner {
    position: relative;
    text-align: center;
    z-index: 1;
}

.page-title-en {
    font-family: var(--font-en);
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: normal;
}

.page-title-jp {
    font-size: 1rem;
    letter-spacing: 0.05em;
}

/* Breadcrumbs */
.breadcrumbs {
    min-height: 60px;
    padding: 20px 20px;
    font-size: 0.8rem;
    color: #7E7E7E;
    position: relative;
    z-index: 10;
}

.breadcrumbs a {
    text-decoration: underline;
}

/* Reserve Content */
.reserve-content {
    padding: 0 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    background-image: url('../images/main-back-l03.png'), url('../images/main-back-r.png'), url('../images/main-back-r02.png');
    background-position: left top, right top, right bottom;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: auto, auto, auto;
    margin-top: -63px;
    padding-top: 60px;
}
.ighlight-text{
    font-weight: bold;
}
.reserve-intro {
    margin-bottom: 60px;
    line-height: 2;
}

.reserve-intro p {
    margin-bottom: 15px;
}

.highlight-text {
    font-weight: bold;
}
.highlight-text-blue {
    font-weight: bold;
    color: var(--blue-color);
}
/* LINE Reserve Box */
.line-reserve-box {
    border: 1px solid var(--accent-color);
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Double border effect using outline or pseudo element */
.line-reserve-box::before {
    content: "";
    position: absolute;
    top: -11px;
    left: 9px;
    right: 9px;
    bottom: -11px;
    border: 1px solid var(--accent-color);
    pointer-events: none;
}

.line-box-inner {
    position: relative;
    z-index: 1;
}

.line-id-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--blue-color);
}

.line-id-text span {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: normal;
}
.line-id {
    font-weight: bold;
    font-family: var(--font-en);
}

.line-desc {
    margin-bottom: 40px;
    line-height: 2;
    font-size: 0.95rem;
}

.qr-section {
    margin-bottom: 60px;
}

.qr-label {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.btn-line {
    display: block;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    background-color: #06c755;
    /* LINE Green */
    color: #fff;
    padding: 15px 0;
    font-weight: normal;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: opacity 0.3s;
}

.btn-line:hover {
    opacity: 0.8;
}

/* Chat Example */
.chat-example {
    margin-top: 40px;
}

.chat-label {
    width: 80%;
    margin: 0 auto 20px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--accent-color);
    position: relative;
    display: block;
    text-align: center;
    padding: 0 20px;
    opacity: 0.5;
}

.chat-label::before,
.chat-label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 60px);
    height: 0;
    border-top: 1px dashed var(--accent-color);
    opacity: 0.5;
}

.chat-label::before {
    left: 0;
}

.chat-label::after {
    right: 0;
}

.chat-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.chat-images img {
    width: 280px;
    height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        height: 200px;
        margin-top: 60px;
    }

    .page-title-en {
        font-size: 2rem;
    }

    .line-reserve-box {
        padding: 40px 20px;
        margin: 0 15px;
    }

    .chat-images {
        flex-direction: column;
        align-items: center;
    }

    .chat-images img {
        width: 100%;
        max-width: 280px;
    }



    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}