@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&display=swap');

#sections {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
}

/* ページ概要 */
#page_sammary {
    margin-top: 64px;
    display: flex;
    flex-wrap: nowrap;
    gap: 80px;
    align-items: start;
}

#page_sammary_text {
    width: 100%;
}

#page_sammary_text p {
    font-size: 16px;
    color: #333333;
    line-height: 200%;
    font-weight: 400;
}

#page_sammary_text p+p {
    margin-top: 40px;
}

#page_sammary_scenario {
    border-radius: 8px;
    border: 2px solid #582a1c;
    padding: 24px;
    margin-top: 20px;
}

#page_sammary_year {
    font-family: "Oswald";
    font-weight: normal;
    font-size: 28px;
    line-height: 100%;
    color: #582a1c;
    margin: 0;
}

#page_sammary_date {
    font-family: "Oswald";
    font-weight: normal;
    font-size: 56px;
    line-height: 100%;
    color: #582a1c;
    margin: 0;
    white-space: nowrap;
}

#page_sammary_date img {
    width: 10px;
    vertical-align: 18px;
    margin: 0 16px;
}

#page_sammary_theme {
    color: #582a1c;
    font-size: 32px;
    font-weight: 400;
    line-height: 100%;
    margin: 0;
    margin-top: 28px;
}

#page_sammary_scenario ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 12px;
    padding-left: 4px;
}

#page_sammary_scenario ul li+li {
    margin-top: 8px;
}

#page_sammary_scenario ul li a {
    color: #3ea3c2;
    transition: opacity 0.3s;
}

#page_sammary_scenario ul li a:hover {
    opacity: 0.6;
}

/* シナリオ概要 */
#scenarios {
    margin-top: 96px;
}

.scenario {
    display: flex;
    flex-wrap: nowrap;
    gap: 60px 40px;
}

.scenario+.scenario {
    margin-top: 120px;
}

.scenario_left {
    width: 280px;
}

.scenario_banner {
    width: 100%;
}

.scenario_menu {
    position: relative;
    margin-top: 60px;
    width: 280px;
    height: 319px;
    padding: 200px 0 0 16px;
    box-shadow: -4px 14px 11px #3333337d;
}

.scenario_menu_title {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 150%;
    letter-spacing: 0.08em;
}

.scenario_menu_price {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 100%;
    letter-spacing: 0;
    margin-top: -8px;
}

.scenario_menu_price span {
    font-family: "Oswald";
    font-size: 32px;
    font-weight: normal;
    margin-right: 4px;
    line-height: 100%;
    vertical-align: -2px;
}

.scenario_menu_label {
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    font-weight: 400;
    color: #f5f4f0;
    width: 171px;
    height: 162px;
    background: url(../images/scenario_coffee.svg);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 54px 0;
    position: absolute;
    top: -64px;
    left: -48px;
}

.scenario_menu_pin {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.scenario table {
    width: 100%;
    border-collapse: collapse;
}

.scenario table td {
    padding: 20px;
    border: 1px solid #33333366;
    color: #333333;
    font-weight: 400;
    line-height: 150%;
}

.scenario table .table_title {
    width: 24.6%;
    background: #582a1c66;
    border-left: none;
    text-align: center;
}

.scenario tr:first-child td {
    border-top: none;
}

.scenario tr:last-child td {
    border-bottom: none;
}

.scenario table .table_text {
    background: #f5f4f066;
    border-right: none;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    #sections {
        max-width: none;
        width: 100%;
        padding: 0 8vw;
    }

    /* ページ概要 */
    #page_sammary {
        margin-top: 80px;
        display: block;
        flex-wrap: initial;
        gap: 0;
        align-items: initial;
    }

    #page_sammary_text {
        width: 100%;
    }

    #page_sammary_text p {
        text-align: center;
    }

    #page_sammary_scenario {
        margin-top: 80px;
        border: none;
        padding: 0;
    }

    #page_sammary_year {
        text-align: center;
        line-height: 125%;
    }

    #page_sammary_date {
        white-space: initial;
        text-align: center;
    }

    #page_sammary_theme {
        text-align: center;
        margin-top: 40px;
    }

    #page_sammary_scenario ul {
        margin-top: 16px;
        text-align: center;
    }

    #page_sammary_scenario ul li+li {
        margin-top: 12px;
    }

    #page_sammary_scenario ul li a {
        transition: opacity 0s;
    }

    #page_sammary_scenario ul li a:hover {
        opacity: 1;
    }

    /* シナリオ概要 */
    .scenario {
        display: block;
        flex-wrap: initial;
        gap: 0;
    }

    .scenario_left {
        width: 100%;
    }

    .scenario_banner {
        width: 100%;
    }

    .scenario_menu {
        margin-top: 40px;
    }

    .scenario table {
        width: 100%;
        margin-top: 60px;
    }

    .scenario table td {
        padding: 16px;
    }

    .scenario table .table_title {
        width: 30%;
    }
}