@charset "UTF-8";

:root {
    --base_primary: #3f3f3f;
    --base_secondary: #F0F0F0;
    --separate: #757575;
    --base_white: #ffffff;
    --base_red: #D0111B;
    --main_color: #EC6C1C;
    --main-width: 92%;
    --max-width: 940px;
}

.area-contents {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
}

.main-title {
    font-size: 1.5rem;
    color: var(--base_primary);
    position: relative;
    font-weight: 500;
    width: var(--main-width);
    margin: 20px auto 36px;
    ;
}

.main-title::after {
    content: "RESERVATION";
    position: absolute;
    top: 100%;
    left: 2px;
    margin-top: 5px;
    color: var(--separate);
    font-size: 0.458em;
    font-weight: 400;
}


.event {
    max-width: var(--max-width);
    margin: 0 auto 40px;
}

.event-image {
    width: 100%;
    height: auto;
}


@media screen and (min-width: 768px) {
    .main-title {
        text-align: center;
        font-size: 2.313rem;
        margin: 30px auto 56px;
        letter-spacing: 0.01em;
    }

    .main-title::after {
        left: calc(50% + 2px);
        transform: translateX(-50%);
        font-size: 1rem;
        margin-top: 10px;
        letter-spacing: 0.04em;
    }

    .event {
        margin-bottom: 100px;
    }
}

.heading-2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--base_primary);
    text-align: center;
    margin: 0 auto 20px;
    width: var(--main-width);
    max-width: var(--max-width);
}

.keyword-inner {
    width: var(--main-width);
    max-width: var(--max-width);
    margin: 0 auto 40px;
}

.keyword-title {
    font-size: 0.875rem;
    color: var(--base_primary);
    margin-bottom: 10px;
    font-weight: 400;
}

.search-box {
    position: relative;
    margin: 0 auto 10px;
}

.search-keyword {
    width: 100%;
    height: 40px;
    padding: 0 10px 0 40px;
    font-size: 0.875rem;
    border: 1px solid var(--separate);
    border-radius: 10px;
    box-sizing: border-box;
    display: block;
}

.search-box::before {
    content: "";
    position: absolute;
    display: block;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("../images/search_01.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
    z-index: 2;
    pointer-events: none;
}

a.search-map-link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--main_color);
    margin-top: 10px;
    position: relative;
    border: 2px solid var(--main_color);
    border-radius: 10px;
    height: 40px;
}


@media screen and (max-width: 767px) {
    .search-box-outer {
        display: contents;
    }

    .search-btn {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .heading-2 {
        font-size: 1.625rem;
        margin-bottom: 34px;
        text-align: left;
    }

    .keyword-inner {
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        padding: 38px 20px 30px;
    }

    .keyword-title {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }

    .search-keyword {
        font-size: 1rem;
        height: 58px;
        padding: 0 15px 0 46px;
    }

    .search-box::before {
        left: 16px;
    }

    a.search-map-link {
        width: 333px;
        height: 60px;
        margin: 20px auto 0;
    }

    .search-box-outer {
        display: flex;
        gap: 16px;
    }

    .search-box {
        width: 100%;
    }

    .search-btn {
        display: block;
        width: 183px;
        height: 58px;
        background-color: var(--main_color);
        color: var(--base_white);
        font-size: 1.25rem;
        border: none;
        border-radius: 10px;
        cursor: pointer;
    }

    .search-btn:hover {
        opacity: 0.8;
    }
}

.service-inner {
    background-color: var(--base_secondary);
    padding-block: 13px 30px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--base_primary);
    text-align: center;
    margin: 0 auto 20px;
    width: var(--main-width);
    max-width: var(--max-width);
}

p.service-text,
label.service-text {
    font-size: 0.875rem;
    color: var(--base_primary);
    width: var(--main-width);
    max-width: var(--max-width);
    margin: 0 auto 10px;
    display: block;
    line-height: normal;
}

.brand-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    row-gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    width: var(--main-width);
    max-width: var(--max-width);
    margin: 0 auto 20px;
}

.brand-list-item {
    width: 46.38%;
}

.brand-button {
    display: block;
    width: 100%;
    height: 80px;
    background-color: var(--base_white);
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.brand-button:hover {
  background-color: #FFF7E2;
} 

@media screen and (min-width: 768px) {
    .service-inner {
        padding-block: 40px 60px;
    }

    .service-title {
        font-size: 1.625rem;
        margin-bottom: 34px;
        text-align: left;
    }

    p.service-text,
    label.service-text {
        font-size: 1.25rem;
        margin-bottom: 24px;
        width: 88.51%;
    }

    .service-search-wrapper {
        background-color: var(--base_white);
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        width: var(--main-width);
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 38px 0px 43px;
    }

    .brand-list {
        width: 88.51%;
    }

    .brand-list-item {
        width: 31.73%;
    }

    .brand-button {
        box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
        border: 1px solid var(--base_secondary);
        height: 95px;
        padding-block: 1rem;
    }

    .brand-image {
        height: -webkit-fill-available;
        display: block;
        width: 100%;
        object-fit: contain;
    }
}

.service-select {
    width: var(--main-width);
    max-width: var(--max-width);
    height: 40px;
    padding: 0 10px;
    font-size: 0.875rem;
    border: 1px solid var(--separate);
    border-radius: 10px;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    background: url(/images/arrow_drop_down.svg) no-repeat right 17px center;
    background-size: 10px 5px;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .service-select {
        height: 58px;
        font-size: 1rem;
        padding: 0 22px;
        background: url(/images/arrow_drop_down_pc.svg) no-repeat right 22px center;
        background-size: 21px 18px;
    }
}

.store-list-container {
    display: none;
}

.store-list-container.active {
    display: block;
}

.store-list-container {
    width: var(--main-width);
    max-width: var(--max-width);
    margin: 0 auto 40px;
    padding-top: 40px;
}

.results-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--base_primary);
    margin-bottom: 20px;
    text-align: center;
}

.store {
    border-bottom: 1px solid var(--base_secondary);
}

.store-inner {
    position: relative;
    padding-bottom: 20px;
}

.area-name {
    font-weight: 500;
    font-size: 1.25rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--base_primary);
}

.store-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--base_primary);
    margin-bottom: 22px;
}

.store-address dt {
    margin-bottom: 28px;
}

.store-address,
.store-number {
    font-size: 0.875rem;
    color: var(--base_primary);
    display: flex;
}

.store-address dt {
    margin-right: 12px;
    min-width: 56px;
}

.store-number dt {
    margin-right: 12px;
}

a.store-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    font-size: 0.875rem;
    color: var(--base_white);
    width: 46.38%;
    background-color: var(--base_red);
    position: absolute;
    right: 0;
    bottom: 12px;
}

@media screen and (min-width: 768px) {

    .store-list-container-wrapper {
        background-color: var(--base_secondary);
        margin-top: -1px;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }

    .store-list-container {
        padding: 38px 45px 32px;
        background-color: var(--base_white);
        margin-bottom: initial;
    }

    .results-title {
        font-size: 1.625rem;
        text-align: left;
        margin-bottom: 28px;
    }

    .area-name {
        padding-bottom: 14px;
        margin-bottom: 14px;
    }

    .store:last-child {
        border-bottom: none;
    }

    .store-inner {
        padding-bottom: 8px;
    }

    .store-name {
        font-size: 1.25rem;
        margin-bottom: 18px;
    }

    .store-address,
    .store-number {
        font-size: 1rem;
    }

    .store-address dt {
        margin-bottom: 8px;
        min-width: 64px;
    }

    a.store-link {
        height: 41px;
        font-size: 1.25rem;
        width: 167px;
        bottom: 15px;
        right: 18px;
    }
}

.faq {
    width: var(--main-width);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 0 10px;
}

.faq-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--main_color);
    text-align: center;
    margin-bottom: 12px;
}

p.faq-text {
    font-size: 0.75rem;
    color: var(--base_primary);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 8px;
}

.faq-item {
    position: relative;
    border-bottom: 1px solid #ddd;
}

/* 質問部分 */
.faq-question {
    position: relative;
    width: 100%;
    text-align: left;
    font-size: .875rem;
    background: none;
    border: none;
    padding: 1em 2em 1em 2.1em;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 1px;
    color: var(--base_primary);
    transition: margin 0.4s ease;
}

/* Qアイコン画像 */
.faq-question::before {
    content: "";
    position: absolute;
    left: 0.6em;
    top: 50%;
    transform: translateY(-44%);
    width: 10px;
    height: 16px;
    background: url("/images/faq_icon_q.svg") no-repeat center / contain;
}

/* 開閉矢印 */
.faq-question::after {
    content: "";
    position: absolute;
    right: 1.6em;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: translateY(-50%) rotate(45deg);
    /* ＞ */
    transition: transform 0.3s ease;
}

.faq-question.active {
    margin-bottom: 12px;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(-135deg);
    /* 開くと下向きに */
}


/* 答え部分 */
.faq-answer {
    position: relative;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    padding-left: 1.8em;
}

.faq-answer.open {
    max-height: 500px;
    /* 開いたときの高さ */
    opacity: 1;
}

/* Aアイコン画像 */
.faq-answer::before {
    content: "";
    position: absolute;
    left: 0.5em;
    top: 0;
    width: 11px;
    height: 16px;
    background: url("/images/faq_icon_a.svg") no-repeat center / contain;
}

.faq-answer-text {
    margin-bottom: 12px;
    color: var(--base_primary);
}

.faq-answer-text a {
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    .faq {
        padding: 32px 0 63px;
        background-color: var(--base_secondary);
        margin-bottom: 10px;
    }

    .faq-title {
        font-size: 1.625rem;
        margin-bottom: 28px;
        margin-top: initial;
    }

    p.faq-text {
        font-size: 1rem;
        margin-bottom: 36px;
    }

    .faq-list {
        width: 87.02%;
        margin: 0 auto;
    }

    .faq-item {
        background-color: var(--base_white);
        margin-bottom: 15px;
        border: none;
    }

    .faq-item:last-child {
        margin-bottom: 0;
    }

    .faq-question {
        font-size: 1.25rem;
        padding: 16px 2em 16px 67px;
        line-height: 1.5;
    }

    .faq-question::before {
        width: 14px;
        height: 22px;
        left: 34px;
    }

    .faq-question::after {
        width: 10px;
        height: 10px;
        right: 24px;
    }

    .faq-answer {
        padding-left: 67px;
    }

    .faq-answer::before {
        width: 14px;
        height: 22px;
        left: 34px;
    }

    p.faq-answer-text {
        font-size: .875rem;
        margin-bottom: 16px;
    }
}