/*作業用*/
.memo:before{
    content:"メモ";
    background-color: red;
    color: #fff;
    font-size: 10px;
    margin-right: 2px;
}
.memo{
    display: none;
}





/*共通*/
.shop-information{
    max-width: 900px;
    margin: auto;
}
.shop-information a{
    color: #3a5a95 !important;
    text-decoration: underline;
}
.shop-information h2{
    margin: 20px 0 10px 0;
    font-size: 18px;
}
.shop-information ol{
    padding: 0 20px;
}
.shop-information ol li{
    margin-left: 1em;
    list-style: auto;    
}

/*ヘッダ*/
.shop-information .shop-head {
    display: flex;
    align-items: center;
    align-content: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}
.shop-information .shop-head .logo {
    width: 80px;
}
.shop-information .shop-head .logo img{
    width: 100%;
}
.shop-information .shop-head .name{
    font-size: 24px;
}

.shop-information img.banner{
    max-width: 100%;
}

/*テーブル*/
.shop-information .info-table {
    border: 1px;    
    width: fit-content;
    border-collapse:  collapse;
}
.shop-information .info-table tr {
    border-bottom: 1px solid #ddd ;
}

.shop-information .info-table th{
    text-align: left;
    position: relative;
    min-width: 4em;
}

.shop-information .info-table th,
.shop-information .info-table td{
    vertical-align: middle;
    padding: 0.5em;
    word-break: break-all;
}


/*会社情報*/

.shop-information .area-info{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 100px;
}
.shop-information .corporate-info {
    width: fit-content;
    max-width: 60%;
}
/*カレンダー*/
.shop-information .shop-calendar{
    
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: stretch;
    flex-wrap: wrap;
    width: fit-content;
    margin: 20px auto;
}
.shop-information .shop-calendar #shop-calendar>p {
    font-weight: bold;
    font-size: 110%;
    text-align: center;
}
.shop-information .shop-calendar .cal_ui {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.shop-information .shop-calendar .cal_ui input {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
.shop-information .shop-calendar table{
    width: fit-content;
    border-collapse: collapse ;
    border: 1px;
}
.shop-information .shop-calendar td{
    border: 1px solid !important;
    text-align: center;
    vertical-align: middle;
    width: fit-content;
}
.shop-information .shop-calendar td div{
    padding:3px 5px;
}

.shop-information .shop-calendar td .Sipping{
    background-color: #fff84d;
}
.shop-information .shop-calendar .info span.Sipping{
    color: #fff84d;
}
.shop-information .shop-calendar td .Holiday{
    background-color: #ffcbcb;
}
.shop-information .shop-calendar .info span.Holiday{
    color: #ffcbcb;
}

.shop-information .shop-calendar .info{
    width: 100%;
}



/*レビュー*/
.review-detail{
    background-color: #EFEFEF;
    margin: 15px 0;
    padding: 20px;
   }
   .review-detail dd{
    display: flex;
    justify-content: space-between;
       align-items: center;
       align-content: center;
   }
   .review-detail .star_rating{
    font-size: 12px;
   }
   .review-detail .user{
    font-size: 14px;
    font-weight: bold;
   }
   .review-detail .date{
    font-size: 12px;
   }
   .review-detail .item,
   .review-detail .item *{
    font-size: 11px;
   }
   .review-detail .comment{
    padding: 10px 0;
   }