@charset "utf-8";

/* *****************************************************************************

  food style

***************************************************************************** */
/* contents */
.contents.-food{
  padding-bottom: 0;
}

/* basic-box */
.basic-box.-food > .-inner{
  max-width: 500px;
}

/* table-food */
.table-food{
  width: 100%;
  margin-top: 3rem;
}
.table-food > thead > tr > th{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #f7931e;
  font-weight: 500;
  border-bottom: 1px solid #c8ccdc;
  vertical-align: middle;
}
.table-food > thead > tr > th:nth-child(1){
  padding-left: 0;
}
.table-food > thead > tr > th:last-child{
  padding-right: 0;
}
.table-food > tbody > tr > th,
.table-food > tbody > tr > td{
  border-bottom: 1px solid #c8ccdc;
  vertical-align: middle;   
}
.table-food > tbody > tr > th{
  padding-top: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #1d2c6b;
  font-weight: 700;
}
.table-food > tbody > tr > td{
  padding: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.75;
}
.table-food > tbody > tr > td:last-child{
  padding-right: 0;
}
.table-food  > thead > tr > th:nth-child(2),
.table-food  > thead > tr > td:nth-child(2),
.table-food  > tbody > tr > th:nth-child(2),
.table-food  > tbody > tr > td:nth-child(2){
  vertical-align: middle;
  text-align: right;
}
.table-food  > thead > tr > th:nth-child(2){
  white-space: nowrap;
}

@media screen and (max-width: 760px){
  /* table-food */
  .table-food{
      margin-top: 2.5rem;
  }
}

/* food-button */
.food-button{
  text-align: center;
}
.food-button > a{
  background-color: #1d2c6b;
  border: 3px solid #1d2c6b;
  color: #ffffff;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 90px;
  border-radius: 9999px;
  display: inline-block;
  font-weight: 700;
  font-size: 2.1rem;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.food-button > a:hover{
  color: #1d2c6b;
  background-color: #ffffff;
}
.food-button > a > span{
  background: url(/assets/images/icon-pdf-white.svg) right center no-repeat;
  background-size: 3.6rem auto;
  display: inline-block;
  line-height: 90px;
  padding-right: 5.5rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.food-button > a:hover > span{
  background: url(/assets/images/icon-pdf-blue.svg) right center no-repeat;
  background-size: 3.6rem auto;
}

@media print, screen and (max-width: 760px){
  /* food-button */
  .food-button > a{
    line-height: 80px;
    font-size: 1.9rem;
  }
  .food-button > a > span{
    background: url(/assets/images/icon-pdf-white.svg) right center no-repeat;
    background-size: 3.2rem auto;
    line-height: 70px;
    padding-right: 4.8rem;
  }
  .food-button > a:hover > span{
    background: url(/assets/images/icon-pdf-blue.svg) right center no-repeat;
    background-size: 3.2rem auto;
  }
}

/* section-gallery */
.section-gallery{
  overflow: hidden;
  margin-bottom: 3rem;
}
.section-gallery *,
.section-gallery ::before,
.section-gallery ::after {
  min-width: auto;
}

@media print, screen and (max-width: 760px){
  /* section-gallery */
  .section-gallery{
    margin-bottom: 1.5rem;
  }
}

/* food-divide */
.food-divide{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.food-divide > .block{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.food-divide > .block > .item{
  line-height: 0;
}
.food-divide > .block > .item > img{
  height: 225px;
  margin: 0 0 0 30px;
  width: auto;
}
.food-divide.-above{
  margin-bottom: 30px;
}
.food-divide.-above.-slide > .block{
  -webkit-animation: imageSliderAbove 75s infinite linear;
  animation: imageSliderAbove 75s infinite linear;
}
.food-divide.-below.-slide > .block{
  -webkit-animation: imageSliderBelow 75s infinite linear;
  animation: imageSliderBelow 75s infinite linear;
}

@media print, screen and (max-width: 1000px){
  /* food-divide */
  .food-divide > .block > .item > img{
    height: 180px;
  }
}

@media print, screen and (max-width: 760px){
  /* food-divide */
  .food-divide > .block > .item > img{
    height: 135px;
    margin-left: 15px;
  }
  .food-divide.-above{
    margin-bottom: 15px;
  }
}

@-webkit-keyframes imageSliderAbove{
  0%{
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100%{
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes imageSliderAbove{
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100%{
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes imageSliderBelow{
  0%{
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100%{
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes imageSliderBelow{
  0%{
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100%{
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
