@charset "UTF-8";

.visual {
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url(../../img/top-guest.jpg);
    background-size: cover;
    background-position: center;
}

.page-title {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    z-index: 20;
}

.filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #00000040;
    z-index: 10;

}

.page-wrapper h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.page-wrapper p {
    text-align: start;
    margin-bottom: 40px;
    letter-spacing: 1px;
    line-height: 1.2rem;
}

.page-wrapper img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    margin-bottom: 24px;
}

.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 90%;
    margin: 0 auto;
    max-width: 600px;
}

.rental-costum,
.make-up {
    margin-bottom: 120px;
}

.question-answer {
    background-color: #9c9c9c;
    padding: 12px;
    font-size: 0.8rem;
}

.question-answer h5 {
    width: 95%;
    margin: 0 auto;
    font-size: 0.8rem;
    line-height: 1.5rem;
    background-color: #fff;
}

.question-answer .last {
    margin-bottom: 12px;
}

.question-answer-inner {
    width: 95%;
    margin: 0 auto;
    text-align: start;
}

.accordion {
    position: relative;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #fff;
}

.toggle-icon::before {
    content: "－";
    font-size: 1rem;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.toggle-icon.click::before {
    content: "＋";
}

.answer {
    display: none;
    padding: 10px;
    margin-bottom: 12px;
    border-top: none;
    border-radius: 0 0 10px 10px;
    background-color: #fff;
}