@charset "utf-8";

/* Guidebook Page Styles */

.guidebook-wrapper {
    font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.guidebook-wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* Hero Section */
.guidebook-hero {
    background-color: #fef263;
    /* Yellow background */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guidebook-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, #f0e65d 25%, transparent 25%, transparent 75%, #f0e65d 75%, #f0e65d),
        linear-gradient(45deg, #f0e65d 25%, transparent 25%, transparent 75%, #f0e65d 75%, #f0e65d);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

.guidebook-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.guidebook-hero h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.guidebook-hero .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* Intro Section */
.guidebook-intro {
    background-color: #d65f92;
    /* Pink background */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.guidebook-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fef263;
    /* Yellow text */
    font-weight: bold;
}

.guidebook-intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.guidebook-intro .highlight-box {
    border: 3px solid #fff;
    border-radius: 50px;
    padding: 20px 40px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Subtitle Box */
.guidebook-subtitle-box {
    border: 3px solid #fff;
    border-radius: 20px;
    padding: 20px;
    display: inline-block;
    margin-bottom: 20px;
    max-width: 800px;
}

.guidebook-subtitle-box p {
    margin-bottom: 0;
    font-weight: bold;
    line-height: 1.4;
}


.guidebook-subtitle-box p:first-child {
    margin-bottom: 10px;
}

/* Message Box */
.message-box {
    margin-top: 40px;
}

.message-box h3 {
    font-size: 1.8rem;
    color: #fef263;
    /* Yellow text */
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .message-box h3 {
        font-size: 1.4rem;
    }
}


/* Content Section */
.guidebook-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.guidebook-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.guidebook-flex>* {
    flex: 1;
    min-width: 300px;
}

.guidebook-comic img {
    border: 5px solid #fef263;
    border-radius: 10px;
}

.guidebook-checkpoints {
    background: #fff9c4;
    /* Light yellow */
    padding: 30px;
    border-radius: 15px;
}

.guidebook-checkpoints h3 {
    color: #d65f92;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #d65f92;
    padding-bottom: 10px;
    display: inline-block;
}

.guidebook-checkpoints ul {
    list-style: none;
    padding: 0;
}

.guidebook-checkpoints li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.guidebook-checkpoints li::before {
    content: "✔";
    color: #d65f92;
    position: absolute;
    left: 0;
    top: 0;
}

/* Footer Info */
.guidebook-footer-info {
    background: #f9f9f9;
    padding: 40px;
    border-top: 5px solid #d65f92;
    margin-top: 60px;
}

.guidebook-book-details {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.guidebook-book-info h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.guidebook-price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #d65f92;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .guidebook-hero h1 {
        font-size: 1.8rem;
    }

    .guidebook-intro h2 {
        font-size: 1.5rem;
    }

    .guidebook-book-details {
        flex-direction: column;
        text-align: center;
    }
}