.contents ul, ol {
  border: dotted #FF3333 2px;/*ドット 色 太さ*/
  padding: 0.5em 0.5em 0.5em 2em;
}

.contents ul li, ol li {
  line-height: 1.5;
  padding: 0.5em 0;
}

.recipe-box{
    margin:2em 0;
    position: relative;
    padding: 0.5em 1.5em;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
}
.recipe-box:before, .recipe-box:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: black;
}
.recipe-box:before {left: 10px;}
.recipe-box:after {right: 10px;}
.recipe-box p {
    margin: 0; 
    padding: 0;
}

.accordion-box {
    position: relative;
}
.accordion-box label {
    height: 140px; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;

    /* 以下グラデーションは「背景が白」に併せて設定しています */ 
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}
.accordion-box input:checked + label {
    background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box label:after {
    content: "続きをよむ"; /* ラベルの文字 */
    letter-spacing: .05em;
    line-height: 2.5rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #fff;
    background-color: #000;
    width: 18.75rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.accordion-box label:before {
    font-weight: 700;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    background-color: #fff;
    z-index: 1;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.accordion-box input {
    display: none;
}
.accordion-box .accordion-container {
    overflow: hidden;
    height: 200px; /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


.accordion-box input:checked + label {
   display: none ;  /* 閉じるボタンは要らないとき */
}
.accordion-box input:checked + label:after {
    content: "閉じる";
}
.accordion-box input:checked + label:before {
    content: "↑";
}
.accordion-box input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

/*アウトレット表示box*/
.boxred{
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #FFFFFF;
    background: #FF9999;
    border-bottom: solid 6px #FF3333;
    border-radius: 9px;
}
.boxred p {
    margin: 0; 
    padding: 0;
}

/*一括表示*/
table.detail {
   border: 0;
   width:100%;
   background:#ccc;
}

.detail th{
   width:30%;
   background:#EEE;
     padding:7pt;
}

.detail td{
   background:#FFF;
   padding-left:10pt;
}

/*栄養成分表*/
.nutrition table{
   border: 1px solid black;
   width:100%;
}

.nutrition th{
  width:60%;
  padding:7pt;
}

.nutrition td {
    border: none;
}

/*カートへ移動するボタン*/
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #FF3333;
  padding: 20px 30px;
  border-radius: 15px;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #FF9999;
}

#buy{
  padding-top:70px;
}

/*強調box*/
.box25{
    position: relative;
    background: #fff0cd;
    box-shadow: 0px 0px 0px 5px #fff0cd;
    border: dashed 2px white;
    padding: 0.2em 0.5em;
    color: #454545;
    font-size: 16px;
    line-height: 200%;

}
.box25:after{
    position: absolute;
    content: '';
    right: -7px;
    top: -7px;
    border-width: 0 15px 15px 0;
    border-style: solid;
    border-color: #ffdb88 #fff #ffdb88;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}
.box25 p {
    margin: 0; 
    padding: 0;
}

/*キャッチなど太字強調*/
.catchy{
    line-height: 200%;
    font-size: 18px;
    font-weight:bolder;
    padding: 10pt 0;
}

/*タイムテーブル*/
*{
  margin:0;
  padding:0;
  line-height:1.3;
}
/* flex-schedul */
.flex-schedule {
  min-width: 200px;
  max-width: 350px;
  list-style: none;
  margin: 0 auto 0 0;
  box-sizing: border-box;
}

.flex-schedule li {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;

}

.flex-schedule .area {
  padding: 10px;
  display: block;
  width: 100%;
  border-left: 6px solid #5AB2FF;
}

.flex-schedule li .time {
  display: inline-flex;
  justify-content: flex-end;
  flex-basis: 5em;
  max-width: 5em;
  margin-right: 1em;
  margin-top: 30px;
}

.flex-schedule .sch_box {
  position: relative;
  min-height: 1em;
  padding: 1em;
  background: #FFFBDA;
  border-radius: 6px;
}

.flex-schedule .sch_box::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 20px;
  background: #5AB2FF;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.flex-schedule .sch_title {
  font-weight: 700;
}

.flex-schedule .sch_tx {
  font-size: 14px;
  font-weight: normal;
}

/*小見出しアンダーバー*/
.heading01 {
	display: inline;
	background-image: linear-gradient(rgba(0,0,0,0) 70%, #A0DEFF 70%);
}