@charset "utf-8";

/*スタイルcss*/

html {
    font-size: 62.5%;
}

body {
    border-top: 20px solid #ddd;
    border-bottom: 20px solid #ddd;
    font-size: 1.6rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ W3", sans-serif;
    counter-reset: number 0;
}

body * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*clearfix*/
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clearfix:before {
    content: "";
    display: block;
    clear: both;
}

.clearfix {
    display: block;
}

img {
    border: 0;
    padding: 0px;
    margin: 0px;
    height: auto;
    max-width: 100%;
}

a {
    color: #45AAB8;
    text-decoration: none;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
}

a:hover {
    color: #666;
}

a:active,
a:focus {
    outline: 0;
}


/*flex css*/
.menu_list,
.menu_content,
ul.option_menu {
    display: flex;
    flex-wrap: wrap;
}

.page_container {
    padding: 6rem 0;
    max-width: 840px;
    width: 90%;
    margin: auto;
}


h1.page_title,
.menu_content .title {
    font-family: 'Barlow Condensed', sans-serif;
}


/*===================
page-menu.php
====================*/
h1.page_title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.menu_concept {
    line-height: 1.6;
    letter-spacing: .1rem;
    margin-bottom: 6rem;
}

.menu_box h3 {
    font-size: 2.3rem;
}

.menu_content {
    line-height: 1.6;
    width: 100%;
    padding-bottom: 4rem;
}

.menu_content .title {
    margin: 2rem 0 1.5rem;
    letter-spacing: .2rem;
    padding: .8rem;
    color: #fafafa;
    flex: 0 0 100%;
    width: 100%;
    background: #86bc9e;
    font-size: 2rem;
    border-radius: .5rem;
}

.menu_content .title p {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu_content .title p:before {
    border-top: 1px solid;
    content: "";
    width: 1rem;
    margin-right: 1rem;
}

.menu_content .title p::after {
    border-top: 1px solid;
    content: "";
    width: 1rem;
    margin-left: 1rem;
}

.menu_content .sub_title {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 1.5rem;
    padding: .8rem 0;
    border-bottom: 2px solid #ddd;
    position: relative;
}

.menu_content .sub_title:after {
    content: "";
    display: block;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 25%;
    border-bottom: 2px solid #ad7f61;
}

table.menu_box {
    border-bottom: 1px solid #999;
    width: 100%;
    margin-bottom: 1rem;
}

table.menu_box td {
    padding: 1rem 0;
}

table.menu_box td.menu_sub_text {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #999;
    padding: 0 0 1.5rem;
}

table.menu_box td.menu_title {
    width: 70%;
    font-weight: 700;
}

table.menu_box td.menu_text {
    width: 30%;
    min-width: 300px;
    text-align: right;
}

ul.option_menu {
    margin-bottom: 6rem;
}

ul.option_menu li {
    width: 31%;
    flex: 0 0 31%;
    margin: 0 3.5% 2rem 0;
    line-height: 1.6;
    border-bottom: 1px solid #ccc;
    padding: 1.5rem 0;
    border-radius: .5rem;
}

ul.option_menu li p {
    font-size: 1.4rem;
    line-height: 1.5;
}

ul.option_menu li:nth-child(3n) {
    margin: 0 0 2rem 0;
}

.menu_option_title {
    margin-bottom: 1rem;
    color: #ad7f61;
    letter-spacing: .1rem;
}

.menu_option_title::before {
    counter-increment: number 1;
    content: counter(number) ".";
    font-family: 'Crimson Text', serif;
    font-size: 4rem;
    display: block;
    text-align: center;
}

.menu_sub_title {
    text-align: center;
    flex: 0 0 100%;
    background: #f1f1f1;
}

p.menu_price {
    line-height: 1.8;
}

.menu_u_text {
    margin-bottom: 1.5rem;
}

.pay {
    padding: 1rem;
    border: 1px solid #86bc9e;
    color: #86bc9e;
    margin-bottom: 1.5rem;
}


@media screen and (max-width: 540px) {

    table.menu_box td.menu_title,
    table.menu_box td.menu_text {
        width: 100%;
        min-width: 100%;
        display: block;
    }

    table.menu_box td.menu_text {
        text-align: center;
        font-size: 1.4rem;
        padding: 1rem;
        background: #fafafa;
        margin-bottom: 1rem;
    }
}