@charset "UTF-8";

/*///////////////////////
 common
///////////////////////*/
html {
    font-size: 62.5%;
}

body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    color: #222;
    font-size: 14px;
    line-height: 1.6;
}

.pc { display: none; }

@media screen and (min-width: 768px) {
    body {
        font-size: 16px;
        line-height: 2.0;
    }
    .brClear {
        display: none;
    }
    .sp { display: none; }
    .pc { display: block; }
}

/* 背景ありページ用 PC・SP共通  */
.mainBg {
    background: url("../../images/main_bg.png") repeat center top;
}

a:hover {
    opacity: .75;
}
/*///////////////////////
 common - layout
///////////////////////*/
.container {
    padding: 0 30px;
    box-sizing: border-box;
}

@media screen and (min-width: 768px) {
    .container {
        padding: 0;
        max-width: 900px;
        margin: auto;
    }
}

/*///////////////////////
 common - parts
///////////////////////*/
/* お知らせリスト */
#news {
    margin-bottom: 20px;
}
#news:last-of-type {
    margin-bottom: 25px;
}
#news dt {
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1;
}
#news dd {
    padding: 0 0 15px 15px;
    box-sizing: border-box;
}
#news .more {
    text-align: right;
}
@media screen and (min-width: 768px) {
    #news {
        max-width: 850px;
        margin-bottom: 40px;
    }
    #news:last-of-type {
        margin-bottom: 30px;
    }
    #news dt {
        margin-bottom: 15px;
        font-weight: bold;
    }
    #news dd {
        padding: 0 0 45px 45px;
    }
}

/* ボタン */
.btn {
    position: relative;
    display: block;
    color: #222;
    padding: 10px 20px;
    text-align: center;
    border: 1px solid #222;
    border-radius: 10px;
    text-decoration: none;
    transition: .3s;
}
.btn:after {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 15px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    transform: rotate(45deg);
    transition:.3s;
}
.btnBg {
    background: url("../../images/main_bg.png") repeat center top;
}
.btnRed {
    color: #fff!important;
    background: #e84d37;
    border: 1px solid #fff!important;
}
.btnRed:after {
    border-top: 2px solid #fff!important;
    border-right: 2px solid #fff!important;
}
@media screen and (min-width: 768px) {
    .btn {
        width: 330px;
        margin-left: auto;
        margin-right: 0px;
    }
    .btn:after {
        top: calc(50% - 6px);
        width: 10px;
        height: 10px;
    }
    .btnCtr {
        margin-left: auto;
        margin-right: auto;
    }
}

/* reserveボタン */
.reserveBtn {
    display:none;
}
#reserveBtn {
    position: fixed;
    bottom: 30px;
    right: 20px;
}
#reserveBtn img {
    width: 75px;
    height: auto;
}
@media screen and (min-width: 768px) {
    #reserveBtn img {
        width: 110px;
        height: auto;
    }
}

/* メインメニュー */
.headerNav {
    position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100vh;
    padding-top: 70px;
    background-color: #fff;
    transition: all .6s;
    z-index: 20;
    overflow-y: auto;
}
.navList {
    margin-bottom: 40px;
    padding: 0 30px;
    box-sizing: border-box;
}
.navList li a {
    display: block;
    padding: 10px 0;
    font-weight: bold;
    text-decoration: none;
}
.headerNav .snsList ul {
    display: flex;
    padding: 0 30px;
    box-sizing: border-box;
}
.headerNav .snsList li:first-child {
    margin-right: 20px;
}
.headerNav .snsList li i {
    font-size: 30px;
}

.black-bg {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    visibility: hidden;
    transition: all .6s;
}
.nav-open .headerNav { right: 0; }
.nav-open .black-bg { visibility: visible; }

/* ハンバーガーボタン */
#navbtn {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 0;
    outline: none;
    border: none;
    background: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
}
#navbtn::before,
#navbtn::after {
    content : '';
    display: block;
    height: 1px;
    background-color: #222;
    transform: translateY(10px);
    transition: 0.3s ease-in-out;
}
#navbtn::before {
    transform: translateY(-10px);
    box-shadow: 0 10px #222;
}

.nav-open #navbtn::before {
    transform: rotate(-45deg);
    box-shadow: none;
}
.nav-open #navbtn::after {
    transform: rotate(45deg);
    box-shadow: none;
}
.subNav {
    padding: 18px 15px 18px 0;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    background: #fff;
}

@media screen and (min-width: 768px) {
    .mainNav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 60px 0;
        z-index: 1;
    }
    /* メインメニュー */
    .headerNav {
        position: static;
        right: 0;
        top: 0;
        width: 100%;
        height: auto;
        padding-top: 0;
        background-color: transparent;
        overflow-y: hidden;
        display: flex;
        justify-content: center;
    }
    .navList {
        margin-bottom: 0;
        padding: 0;
        display: flex;
        align-items: center;
        margin-right: 70px;
    }
    .navList li:not(:last-child) {
        margin-right: 70px;
    }
    .navList li a {
        padding: 0;
    }
    .headerNav .snsList ul {
        padding: 0;
    }
    .headerNav .snsList li:first-child {
        margin-right: 20px;
    }
    .headerNav .snsList li i {
        font-size: 30px;
    }

    .black-bg {
        display: none;
    }

    /* ハンバーガーボタン */
    #navbtn {
        display: none;
    }
}

/*///////////////////////
 common - contactSec
///////////////////////*/
footer {
    background: #fff;
    padding: 20px 30px;
    box-sizing: border-box;
}
footer .copy {
    text-align: center;
}
footer .copy .sns {
    text-align: center!important;
    padding: 10px 30px 20px;
}
footer .copy .sns ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
footer .copy .sns li:first-child {
    margin-right: 20px;
}
footer .copy .sns li i {
    font-size: 30px;
}
footer .copy .produce {
    display: block;
    padding: 10px 0 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}
footer .copy .produce .logo {
    padding: 10px 0 ;
    text-align: center;
}
footer .copy .produce .logo img {
    width:40%;
}
footer .copy small {
    font-size: 12px;
}
.contactSec {
    text-align: center;
}
.contactSec h2, .contactSec p, .contactSec a {
    margin-bottom: 30px;
}
.contactSec h2 img {
    width: auto;
    height: 15px;
}
.contactSec small {
    font-size: 9px;
}
@media screen and (min-width: 768px) {
    footer {
        padding: 30px 0;
    }
    footer .copy small {
        font-size: 14px;
    }
    footer .copy .sns li i {
        font-size: 40px;
    }
    footer .copy .produce {
        font-size: 20px;
    }
    footer .copy .produce .logo {
        padding: 10px 0 20px;
    }
    footer .copy .produce .logo img {
        width:15%;
    }
    footer .copy .sns li:first-child {
        margin-right: 40px;
    }
    .contactSec {
        max-width: 900px;
        margin: auto;
    }
    .contactSec h2 {
        margin-bottom: 50px;
    }
    .contactSec p {
        margin-bottom: 5px;
        text-align: left;
    }
    .contactSec a {
        margin-bottom: 100px;
    }
    .contactSec h2 img {
        width: auto;
        height: 20px;
    }
    .contactSec small {
        font-size: 14px;
    }
}

/*///////////////////////
 top
///////////////////////*/
.topLogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0 90px;
}
.topLogo .mainLogoText {
    width: auto;
    height: 140px;
    margin-bottom: 50px;
}
.topLogo .mainLogo {
    width: auto;
    height: 180px;
}

/* セクション */
.topSec {
    margin-bottom: 95px;
}
.topSec:last-of-type {
    margin-bottom: 70px;
}

/* セクションタイトル */
.topSec .cntTitle {
    margin-bottom: 30px;
    text-align: center;
}
.topSec .cntTitle h2 {
    margin-bottom: 10px;
}
.topSec .cntTitle h2 img {
    width: auto;
    height: 20px;
}
.topSec .cntTitle h2 .imgHigh {
    width: auto;
    height: 30px;
}
.topSec .cntTitle h3 img {
    width: auto;
    height: 15px;
}

.topSec .lead {
    line-height: 1.9;
    text-align: center;
}
.takeout {
    display: block;
    margin: 25px 25px 0;
    padding: 5px;
    border: 1px solid #e84f3a;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #e84f3a;
}
.logocolor {
    padding: 10px 0;
    font-size: 12px;
    line-height: 1.4;
}
.memo {
    padding: 10px 0;
    font-size: 12px;
    line-height: 1.4;
}

/* menu */
.topMenu .item:first-of-type {
    margin-bottom: 50px;
}
.topMenu .item:last-of-type {
    margin-bottom: 50px;
}
.topMenu .item h4 {
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}
.topMenu .item h5 {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}
.topMenu .item .image {
    position: relative;
    margin-bottom: 20px;
}
.topMenu .item .badge {
    position: absolute;
    top: -55px;
    left: -20px;
    width: 75px;
    height: 75px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 75px;
    border-radius: 50%;
}
.topMenu .item .bgPink { background: #ea99bc; }
.topMenu .item .bgLightpink { background: #f5b090; }
.topMenu .item .price {
    margin-top: 15px;
    font-size: 18px;
    text-align: right;
}
.topMenu .item .price span {
    font-size: 14px;
}

/* shop */
.topSecShop figure {
    margin-bottom: 20px;
    text-align: center;
}
.topSecShop figure img {
    width: auto;
    height: 50px;
}
.topSecShop p {
    margin-bottom: 25px;
}
.topSecShop ul {
    margin-bottom: 20px;
}
.topSecShop li:not(:last-child) {
    margin-bottom: 10px;
}
.topSecShop li i {
    color: #fff;
    width: 20px;
}

/* food */
.foodCard.first {
    margin-top: -15px;
    margin-bottom: 50px;
}
.foodCard.second {
    margin-bottom: 20px;
}
.foodCard figure {
    margin-bottom: 20px;
    text-align: center;
}
.foodCard h3 {
    margin-bottom: 25px;
    text-align: center;
}
.foodCard h3 img {
    width: auto;
    height: 15px;
}
.foodCard figure img {
    width: auto;
    height: 200px;
}
.foodCard .shopLogo {
    margin: 15px 0;
    text-align: center;
}
.foodCard .shopLogo img {
    width: auto;
    height: 38px;
}

/* Profile */
.topSecProfile {
    margin-bottom: 20px;
}
.topSecProfile figure {
    margin-bottom: 30px;
    text-align: center;
}
.topSecProfile figure img {
    width: auto;
    height: 200px;
}
.topSecProfile .name {
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
}

/* Designer */
.topSecDesigner {
    margin-bottom: 15px;
}
.topSecDesigner .logo {
    margin: 30px 0 20px;
    text-align: center;
}
.topSecDesigner .logo img {
    width: auto;
    height: 110px;
}
.topSecDesigner .name {
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .topLogo {
        display: block;
        padding: 195px 0 160px;
        position: relative;
        width: 900px;
        margin: auto;
    }
    .topLogo .mainLogoText {
        height: 280px;
        margin-bottom: 50px;
    }
    .topLogo .mainLogo {
        height: 375px;
    }
    .topLogo p:nth-child(1) {
        position: absolute;
        top: 190px;
        right: 85px;
    }
    .topLogo p:nth-child(2) {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* セクション */
    .topSec {
        margin-bottom: 170px;
    }
    .topSec:last-of-type {
        margin-bottom: 120px;
    }

    /* セクションタイトル */
    .topSec .cntTitle {
        margin-bottom: 45px;
    }
    .topSec .cntTitle h2 {
        margin-bottom: 25px;
    }
    .topSec .cntTitle h2 img {
        width: auto;
        height: 24px;
    }
    .topSec .cntTitle h2 .imgHigh {
        width: auto;
        height: 30px;
    }
    .topSec .cntTitle h3 img {
        width: auto;
        height: 20px;
    }
    .topSec .lead {
        line-height: 2.0;
    }
    .takeout {
        margin: 25px 30% 0;
        padding: 5px;
        font-size: 16px;
    }
    .logocolor {
        padding: 20px 0;
        font-size: 14px;
        line-height: 1.6;
        text-align: right;
    }


    /* menu */
    .topMenu {
        display: flex;
        justify-content: space-between;
    }
    .topMenu .item {
        display: flex;
        flex-direction: column;
        max-width: 380px;
        width: 380px;
    }
    .topMenu .itemInner {
        min-height: 0%;
    }
    .topMenu .item:first-of-type {
        margin-bottom: 0;
    }
    .topMenu .item h4 {
        margin-bottom: 25px;
        font-size: 24px;
        line-height: 1;
    }
    .topMenu .item h5 {
        margin-bottom: 25px;
        font-size: 18px;
        line-height: 1;
    }
    .topMenu .item .badge {
        top: -50px;
        left: -15px;
        width: 80px;
        height: 80px;
        font-size: 15px;
        line-height: 80px;
    }
    .topMenu .item .price {
        margin-top: auto;
        font-size: 20px;
    }
    .topMenu .item .price span {
        font-size: 16px;
    }

    /* shop */
    .topSecShop figure img {
        height: 70px;
    }
    .topSecShop ul {
        margin-bottom: 5px;
    }

    /* food */
    .foodCard.first {
        margin-top: -25px;
        margin-bottom: 95px;
    }
    .foodCard h3 {
        margin-bottom: 30px;
    }
    .foodCard h3 img {
        height: 20px;
    }
    .foodCard figure img {
        height: 280px;
    }
    .foodCard .shopLogo {
        margin: 40px 0 30px;
    }
    .foodCard .shopLogo img {
        height: 65px;
    }

    /* Profile */
    .topSecProfile figure {
        margin-bottom: 40px;
    }
    .topSecProfile figure img {
        height: 280px;
    }
    .topSecProfile .name {
        font-size: 20px;
    }

    /* Designer */
    .topSecDesigner .logo {
        margin: 50px 0 55px;
    }
    .topSecDesigner .logo img {
        height: 200px;
    }
    .topSecDesigner .name {
        font-size: 20px;
    }
}

/*///////////////////////
 reservation
///////////////////////*/
.subCntLogo {
    padding: 65px 0 30px;
    text-align: center;
}
.subCntLogo .subLogo {
    width: auto;
    height: 200px;
}

/* ページタイトル */
.reservationTitle {
    margin-bottom: 30px;
    text-align: center;
}
.reservationTitle h2 {
    margin-bottom: 10px;
}
.reservationTitle h2 img {
    width: auto;
}
.reservationTitle h3 img {
    width: auto;
    height: 15px;
}

/* セクション */
.reservationSec {
    margin-bottom: 35px;
}
.reservationSec:last-of-type {
    margin-bottom: 100px;
}

.reservationSec h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
    line-height: 1;
}
.reservationSec ul {
    margin-bottom: 50px;
}
.reservationSec li {
    display: flex;
    align-items: baseline;
}
.reservationSec li:not(:last-child) {
    margin-bottom: 20px;
}
.reservationSec li p {
    flex: 1;
    font-weight: bold;
}
.reservationSec li i {
    margin-right: 7px;
    color: #00b900;
}
.reservationSec .order {
    font-weight: bold;
}
.reservationSec .tel {
    font-size: 16px;
    font-weight: bold;
}
.deliverySec {
    margin-bottom: 50px;
}
.deliverySec h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
    line-height: 1;
}
.deliverySec .icon {
    margin-top: 15px;
    display: flex;
    flex-wrap:wrap;
}
.deliverySec .icon ul {
    margin-bottom: 50px;
}
.deliverySec .icon li {
    width: calc(100%/4);
    padding:0 5px;
    box-sizing:border-box;
}
.deliverySec .icon li img {
    max-width:100%;
    height: auto;
}
.telephoneSec {
    margin: 0 0 40px;
    padding: 15px;
    text-align: center;
    border: 2px solid #222;
}
.telephoneSec h3 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}
.telephoneSec .number {
    margin: 1em;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}
.telephoneSec .hour {
    margin-top: 2em;
    line-height: 1;
}
.anniversarySec {
    margin-bottom: 0px;
    text-align: center;
}
.anniversarySec img {
    width: 80%;
}
.anniversarySec p {
    margin-top: 1em;
    text-align: left;
}

/* googleMap */
.googleMap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 46%;
    margin: 15px 0 120px;
}
.googleMap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%;
    border-radius: 5px;
}
.lineBtn {
    margin: auto;
    padding: 0 0 20px;
    width: 115px;
    text-align: center;
}
/* 吹き出し */
.balloon {
    position: relative;
    display: inline-block;
    margin: 0 0 25px;
    padding: 10px 15px;
    width: 100%;
    color: #00b900;
    font-weight: bold;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
}
.balloon:before {
    content: "";
    position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #fff;
}

@media screen and (min-width: 768px) {
    .subCntLogo {
        padding: 150px 0 65px;
    }
    .subCntLogo .subLogo {
        width: auto;
        height: 320px;
    }

    /* ページタイトル */
    .reservationTitle {
        margin-bottom: 60px;
    }
    .reservationTitle h2 {
        margin-bottom: 35px;
    }
    .reservationTitle h2 img {
        height: 34px;
    }
    .reservationTitle h3 img {
        height: 25px;
    }

    /* セクション */
    .reservationSec {
        margin-bottom: 70px;
    }
    .reservationSec:last-of-type {
        margin-bottom: 150px;
    }
    .reservationSec h2 {
        padding-bottom: 15px;
        font-size: 16px;
        font-weight: bold;
    }
    .reservationSec ul {
        margin-bottom: 80px;
    }
    .reservationSec .inner {
        max-width: 800px;
        margin: auto;
    }
    .reservationSec .order {
        text-align: center;
    }
    .reservationSec .tel {
        font-size: 20px;
        font-weight: normal;
    }
    .reservationSec .tel span {
        display: inline-block;
    }
    .deliverySec {
        margin-bottom: 70px;
    }
    .deliverySec h2 {
        padding-bottom: 15px;
        font-size: 16px;
        font-weight: bold;
    }
    .deliverySec ul {
        margin-bottom: 80px;
    }
    .deliverySec .icon li {
        padding:0 10px;
    }
    .deliverySec .inner {
        max-width: 800px;
        margin: auto;
    }
    .deliverySec .icon {
        max-width: 400px;
        margin: auto;
        padding-top: 20px;
    }
    .telephoneSec {
        margin: 0 20% 80px;
        padding: 20px;
    }
    .telephoneSec h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    }
    .telephoneSec .number {
    margin: 1em;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    }
    .telephoneSec .hour {
    margin-top: 2em;
    line-height: 1;
    }
    .anniversarySec img {
        width: 40%;
    }
    .anniversarySec p {
        text-align: center;
    }

    /* googleMap */
    .googleMap {
        padding-top: 36.3%;
        margin: 45px 0 220px;
    }
    .lineBtn {
        width: 200px;
        padding: 0 0 40px;
    }
    .balloonBlock {
        text-align: center;
    }
    /* 吹き出し */
    .balloon {
        margin: 0 0 40px;
        padding: 15px 50px;
        width: 440px;
        border-radius: 15px;
        font-size: 18px;
    }
    .balloon:before {
        border: 15px solid transparent;
        border-top: 15px solid #fff;
    }
}

/*///////////////////////
pan - index
///////////////////////*/
.panSec {
    margin-bottom: 110px;
}
.panSec:last-of-type {
    margin-bottom: 85px;
}
.onlineSec {
    margin: 0 0 50px;
    text-align: center;
}
.kamogawalogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 85px 0 60px;
}
.kamogawalogo .mainLogo {
    margin-left: 20px;
    margin-bottom: 80px;
    width: auto;
    height: 245px;
}
.kamogawalogo .mainLogoText {
    text-align: center;
}
.kamogawaCntTitle {
    margin-bottom: 30px;
    text-align: center;
}
.kamogawaCntTitle h2 img {
    width: 85px;
    height: auto;
}
.menuList {
    padding-left: 15px;
    margin-bottom: 25px;
}
.menuList li {
    position: relative;
}
.menuList li::before {
    display: block;
    content: '';
    position: absolute;
    top: 8px;
    left: -8px;
    width: 3px;
    height: 3px;
    background-color: #222;
    border-radius: 100%;
}
.menuList li:not(:last-child) {
    margin-bottom: 30px;
}
.menuList li .name {
    margin-bottom: 15px;
}
.menuList li .price {
    text-align: right;
}
.menuNote {
    text-align: center;
}
.menuNote p {
    display: inline-block;
    background: #000;
    color: #fff;
    font-weight: bold;
}

.addressList {
    margin-bottom: 25px;
}
.addressList li:not(:last-child) {
    margin-bottom: 15px;
}
.addressList li p {
    padding: 0.5em 0 0 1.5em;
}
.addressList li i {
    padding-right: 10px;
    color: #e84d37;
    width: 12px;
    height: auto;
}

@media screen and (min-width: 768px) {
    .panSec {
        margin-bottom: 170px;
    }
    .panSec:last-of-type {
        margin-bottom: 125px;
    }
    .onlineSec {
        margin-bottom: 100px;
    }
    .kamogawalogo {
        padding: 225px 0 100px;
    }
    .kamogawalogo .mainLogo {
        margin-left: 30px;
        margin-bottom: 130px;
        height: 390px;
    }

    .kamogawaCntTitle {
        margin-bottom: 50px;
    }
    .kamogawaCntTitle h2 img {
        width: 105px;
    }

    .menuList {
        margin-bottom: 35px;
        padding-left: 15px;
        line-height: 1;
    }
    .menuList li::before {
        top: 6px;
    }
    .menuList li:not(:last-child) {
        margin-bottom: 40px;
    }
    .menuList li .name {
        margin-bottom: 0;
    }
    .menuList li .price {
        margin-top: -5px;
    }
    .menuNote p {
        padding: 2px 10px;
    }
    .addressList {
        margin-bottom: 25px;
        line-height: 1;
    }
    .addressList li p {
        padding: 1em 0 0 2em;
    }
    .addressList li:not(:last-child) {
        margin-bottom: 20px;
    }
    .addressList li i {
        width: 20px;
    }
}

.black {
    color: #222!important;
}
.red {
    color: #e4411c!important;
}
.b {
    font-weight: bold;
}

/*アコーディオン全体*/
.menu {
    width: 100%;
    padding: 10px 0 20px;
}
.menu input {
    display: none; /*チェックボックスを隠す*/
}
/*バー部分*/
.menu label {
    cursor :pointer;
    display: block;
    text-decoration: none;
    line-height: 1;
    position: relative;
    margin: 0 0 10px;
    padding: 10px;
}
/*開いたときに表示される部分*/
.menu ul {
    margin: 0;
    padding: 0 0 0 1em;
    list-style: none;
    margin-bottom: 1px;
}
.menu li {
    height: 0;
    overflow-y: hidden;
    transition: padding-bottom 0.5s, padding-top 0.5s; /*閉じるときのアニメーション*/
    -webkit-transition: padding-bottom 0.5s, padding-top 0.5s
    -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
    -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
    -o-transition: padding-bottom 0.5s, padding-top 0.5s;
}
    #menu_bar01:checked ~ #links01 li,
    #menu_bar02:checked ~ #links02 li,
    #menu_bar03:checked ~ #links03 li,
    #menu_bar04:checked ~ #links04 li,
    #menu_bar05:checked ~ #links05 li,
    #menu_bar06:checked ~ #links06 li {
    height: auto; /*開いたときに表示されるliの高さ*/
    opacity: 1;
    padding: 10px;
}
 /*開いたときの下の余白*/
    #menu_bar01:checked ~ #links01 li:last-child,
    #menu_bar02:checked ~ #links02 li:last-child,
    #menu_bar03:checked ~ #links01 li:last-child,
    #menu_bar04:checked ~ #links02 li:last-child,
    #menu_bar05:checked ~ #links01 li:last-child,
    #menu_bar06:checked ~ #links02 li:last-child {
    margin-bottom: 20px;
}
.menu li .name {
    font-size: 13px;
    font-weight: bold;
}
.menu li .caption {
    font-size: 12px;
}
.menu li .price {
    margin-bottom: 10px;
    text-align: right;
    font-size: 12px;
}
@media screen and (min-width: 768px) {
    .menu li .name {
        font-size: 15px;
    }
    .menu li .caption {
        font-size: 14px;
    }
    .menu li .price {
        font-size: 14px;
    }
}
/*閉じた状態の矢印描画*/
.menu label:after{
    content:"";
    display:block;
    width:8px;
    height:8px;
    border-top: #222 2px solid;
    border-right: #222 2px solid;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    position:absolute;
    right: 2%;
    top: 0;
    bottom: 15%;
    margin: auto;
}
/*開いた状態の矢印描画*/
.menu input[type=checkbox]:checked + label:after{
    content:"";
    display:block;
    width:8px;
    height:8px;
    border-top: #222 2px solid;
    border-right: #222 2px solid;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position:absolute;
    right: 2%;
    top: 7%;
    bottom: 0;
    margin: auto;
}