@charset "utf-8";
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.header_menu_remodal-is-locked {
  overflow: hidden;

  -ms-touch-action: none;

      touch-action: none;
}
/* Anti FOUC */
.header_menu_remodal,
[data-hm-remodal-id] {
  display: none;
}
/* Necessary styles of the overlay */
.header_menu_remodal-overlay {
  position: fixed;
  z-index: 1000010;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}
/* Necessary styles of the wrapper */
.header_menu_remodal-wrapper {
  position: fixed;
  z-index: 1000020;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}
.header_menu_remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}
/* Fix iPad, iPhone glitches */
.header_menu_remodal-overlay,
.header_menu_remodal-wrapper {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* Necessary styles of the modal dialog */
.header_menu_remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;

     -moz-text-size-adjust: 100%;

      -ms-text-size-adjust: 100%;

          text-size-adjust: 100%;
}
.header_menu_remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.header_menu_remodal-bg.header_menu_remodal-is-opening,
.header_menu_remodal-bg.header_menu_remodal-is-opened {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
/* Default theme styles of the overlay */
.header_menu_remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}
.header_menu_remodal-overlay.header_menu_remodal-is-opening,
.header_menu_remodal-overlay.header_menu_remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.header_menu_remodal-overlay.header_menu_remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
          animation-name: remodal-overlay-opening-keyframes;
}
.header_menu_remodal-overlay.header_menu_remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
          animation-name: remodal-overlay-closing-keyframes;
}
/* Default theme styles of the wrapper */
.header_menu_remodal-wrapper {
  padding: 10px 10px 0;
}
/* Default theme styles of the modal dialog */
.header_menu_remodal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;

  -webkit-transform: translate3d(0, 0, 0);

          transform: translate3d(0, 0, 0);

  color: #2b2e38;
  background: #fff;
}
.header_menu_remodal.header_menu_remodal-is-opening,
.header_menu_remodal.header_menu_remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.header_menu_remodal.header_menu_remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
          animation-name: remodal-opening-keyframes;
}
.header_menu_remodal.header_menu_remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
          animation-name: remodal-closing-keyframes;
}
/* Vertical align of the modal dialog */
.header_menu_remodal,
.header_menu_remodal-wrapper:after {
  vertical-align: middle;
}
/* Close button */
.header_menu_remodal-close {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}
.header_menu_remodal-close:hover,
.header_menu_remodal-close:focus {
  color: #2b2e38;
}
.header_menu_remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
}
/* Dialog buttons */
.header_menu_remodal-confirm,
.header_menu_remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}
.header_menu_remodal-confirm {
  color: #fff;
  background: #81c784;
}
.header_menu_remodal-confirm:hover,
.header_menu_remodal-confirm:focus {
  background: #66bb6a;
}
.header_menu_remodal-cancel {
  color: #fff;
  background: #e57373;
}
.header_menu_remodal-cancel:hover,
.header_menu_remodal-cancel:focus {
  background: #ef5350;
}
/* Remove inner padding and border in Firefox 4+ for the button tag. */
.header_menu_remodal-confirm::-moz-focus-inner,
.header_menu_remodal-cancel::-moz-focus-inner,
.header_menu_remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}
/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
            transform: none;

    opacity: 1;

    -webkit-filter: blur(0);

            filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
            transform: none;

    opacity: 1;

    -webkit-filter: blur(0);

            filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);

            filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);

            filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .header_menu_remodal {
    max-width: 700px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .header_menu_remodal-overlay {
  background: #2b2e38;
}
.lt-ie9 .header_menu_remodal {
  width: 700px;
}
/* general ----------------------------------------------------------------------------------------------------------------------------- */
.global-header,
.global-footer,
.header_menu_remodal {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow:1px 1px 1px rgba(0,0,0,0.004);
  color: #363636
}
.global-header ul, .global-footer ul, .header_menu_remodal ul {
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 0;
  list-style: none;
}
.global-header p, .global-footer p, .header_menu_remodal p {
  margin-top: auto;
  margin-bottom: auto;
}
.global-header a, .global-footer a, .header_menu_remodal a {
  color: #363636;
  text-decoration: none;
  background-color: transparent;
}
.global-header a:active,
    .global-header a:focus,
    .global-header a:hover,
    .global-footer a:active,
    .global-footer a:focus,
    .global-footer a:hover,
    .header_menu_remodal a:active,
    .header_menu_remodal a:focus,
    .header_menu_remodal a:hover {
  outline: 0;
}
.global-header a:hover, .global-footer a:hover, .header_menu_remodal a:hover {
  opacity: 0.6;
  -ms-filter: "alpha(opacity=60)";
  /* for ie older browsers */
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.global-header a img, .global-footer a img, .header_menu_remodal a img {
  outline: 0;
}
.global-header img, .global-footer img, .header_menu_remodal img {
  vertical-align: bottom;
  max-width: 100%;
  border: 0;
}
.global-header button, .global-footer button, .header_menu_remodal button {
  color: inherit;
  font: inherit;
  margin: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: visible;
  text-transform: none;
}
.global-header button,
  .global-header html input[type="button"],
  .global-header input[type="reset"],
  .global-header input[type="submit"],
  .global-footer button,
  .global-footer html input[type="button"],
  .global-footer input[type="reset"],
  .global-footer input[type="submit"],
  .header_menu_remodal button,
  .header_menu_remodal html input[type="button"],
  .header_menu_remodal input[type="reset"],
  .header_menu_remodal input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
/* utill ----------------------------------------------------------------------------------------------------------------------------- */
#js-mq-detector {
  display: none;
  content: 'pc';
}
.global-header .clearfix:after, .global-footer .clearfix:after, .header_menu_remodal .clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  font-size: 0.1em;
  overflow: hidden;
}
.global-header .sp, .global-footer .sp, .header_menu_remodal .sp {
  display: none;
}
.global-header .pc, .global-footer .pc, .header_menu_remodal .pc {
  display: inherit;
}
@media screen and (max-width: 640px) {
  body {
  }

  /* general ----------------------------------------------------------------------------------------------------------------------------- */
  .global-header,
  .global-footer,
  .header_menu_remodal {
    font-size: 14px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, sans-serif
  }
  .global-header img, .global-footer img, .header_menu_remodal img {
    width: 100%;
  }
  .global-header a, .global-footer a, .header_menu_remodal a {
    text-decoration: none;
  }

  /* util ----------------------------------------------------------------------------------------------------------------------------- */
  #js-mq-detector {
    content: 'sp';
  }

  .global-header .pc, .global-footer .pc, .header_menu_remodal .pc {
    display: none;
  }

  .global-header .sp, .global-footer .sp, .header_menu_remodal .sp {
    display: inherit;
  }
}
/* header ----------------------------------------------------------------------------------------------------------------------------- */
.global-header {
  position: relative;
  min-width: 1012px;
  border-top: 8px solid #e60014;
  z-index: 20
}
.global-header .header_nav {
  background: #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(52%, #ffffff), color-stop(91%, #f8f0da));
  background: linear-gradient(to bottom, #ffffff 52%, #f8f0da 91%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f8f0da', GradientType=0);
}
.global-header .header_nav .inner {
  margin: 0 auto;
  padding: 15px 0;
  width: 1000px;
}
.global-header .header_nav_logo {
  display: block;
  float: left;
}
.global-header .header_nav_logo-mark img {
  vertical-align: middle;
}
.global-header .header_nav_logo-text img {
  vertical-align: middle;
}
.global-header .header_nav_right {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.global-header .header_nav_social.pc {
  margin-right: 22px;
}
.global-header .header_nav_social.pc > li {
  margin-right: 5px;
}
.global-header .header_nav_guide.pc {
  margin-right: 25px;
}
.global-header .header_nav_guide.pc > li {
  margin-right: 45px;
}
.global-header .header_nav_guide.pc > li:last-child {
  margin-right: 0;
}
.global-header .header_menu {
  background: #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #ffffff), to(#fff8cf));
  background: linear-gradient(to bottom, #ffffff 50%, #fff8cf 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#fff8cf', GradientType=0);
}
.global-header .header_menu_list.pc {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: stretch;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  min-width: 1000px;
}
.global-header .header_menu_list.pc > li:first-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-left: none;
}
.global-header .header_menu_list.pc > li:last-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.global-header .header_menu_list.pc > li {
  border-left: 1px solid #c6a36b;
  border-bottom: 3px solid #c6a36b;
}
.global-header .header_menu_list.pc > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #733a17;
  width: 174px;
  height: 45px;
}
.global-header .header_menu_list.pc > .header_menu_list_recipe a,
  .global-header .header_menu_list.pc > .header_menu_list_contest a {
  font-size: 14px;
}
.global-header .header_menu_list.pc > li > a span {
  position: relative;
  display: inline-block;
  background-position: left center;
  background-repeat: no-repeat;
  line-height: 27px;
  z-index: 1;
}
.global-header .header_menu_list_product > a > span {
  padding-left: 32px;
  background-image: url(../images/icon_product.png);
}
.global-header .header_menu_list_recipe > a > span {
  padding-left: 28px;
  background-image: url(../images/icon_recipe.png);
}
.global-header .header_menu_list.pc > .header_menu_list_recipe.is-hover > a {
  color: #fff;
  opacity: 1;
}
.global-header .header_menu_list_recipe {
  position: relative;
}
.global-header .header_menu_list_recipe.has-sub-menu > a:hover {
  opacity: 1;
}
.global-header .header_menu_list_recipe.is-hover > a:after {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 8px;
  right: 8px;
  background-color: #c6a36b;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.global-header .header_menu_list_recipe.is-hover > a > span {
  background-image: url(../images/icon_recipe_hover.png);
}
.global-header .header_menu_list_contest > a > span {
  padding-left: 35px;
  background-image: url(../images/icon_contest.png);
}
.global-header .header_menu_list_news > a > span {
  padding-left: 35px;
  background-image: url(../images/icon_news.png);
}
.global-header .header_menu_list.pc > li > a > img {
  margin-right: 10px;
}
.global-header .header_menu_list_sub_inner {
  position: absolute;
  top: 48px;
  left: -332px;
  width: 1012px;
  height: 0;
  padding: 0 15px;
  background-color: #fff9e3;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  -webkit-transition: height 0.3s, padding 0.3s;
  transition: height 0.3s, padding 0.3s;
  overflow: hidden;
  z-index: 20;
}
.global-header .button-close {
  cursor: pointer;
  padding-left: 28px;
  font-size: 20px;
  color: #733a17;
  background-image: url(../images/icon_menu-close.png);
  background-position: left center;
  background-repeat: no-repeat;
}
.global-header .button-close:hover {
  opacity: 0.6;
}
.global-header .header_menu_list_sub_inner.is-open {
  padding: 20px 15px;
  height: 710px;
  -webkit-transition: height 0.3s, padding 0.3s;
  transition: height 0.3s, padding 0.3s;
}
.global-header .header_menu_list_recipe_head {
  margin-bottom: 30px;
  text-align: right;
}
.global-header .header_menu_list.pc a.recipe-movie {
  margin-right: 50px;
  vertical-align: -5px;
  font-size: 14px;
  color: #733a17;
}
.global-header .recipe-movie img {
  margin-right: 7px;
  vertical-align: -5px;
}
.global-header .header_menu_list_recipe_head .button-close {
  margin-right: 25px;
  vertical-align: top;
}
.global-header .header_menu_list_recipe_body .inner {
  float: left;
  width: 25%;
  height: 600px;
  padding: 0 9px;
  border-right: 2px solid #ddd6ba;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.global-header .header_menu_list_recipe_body .inner:last-child {
  border-right: none;
}
.global-header .header_menu_list_recipe_body ul > li {
  margin-bottom: 17px;
  line-height: 1.3;
}
.global-header .header_menu_list_recipe_body ul > li:last-child {
  margin-bottom: 0;
}
.global-header .header_menu_list_recipe_body ul + ul {
  margin-top: 40px;
}
.global-header .header_menu_list_recipe_body .title {
  line-height: 1;
}
.global-header .header_menu_list_recipe_body .title span {
  font-size: 14px;
  font-weight: bold;
  color: #07b0b1;
}
.global-header .header_menu_list.pc .header_menu_list_recipe_body li a {
  display: block;
  font-size: 14px;
  color: #733a17;
}
.global-header .header_menu_list_recipe_body li img {
  float: left;
}
.global-header .header_menu_list_recipe_body li img + span {
  display: block;
  margin-left: 25px;
}
.global-header .icon-img-left-3 {
  margin-left: -3px;
}
.global-header .icon-img-left-5 {
  margin-left: -5px;
}
.global-header .icon-img-left-8 {
  margin-left: -8px;
}
/* menu overlay ----------------------------------------------------------------------------------------------------------------------------- */
.header_menu_sub-menu_overlay {
  display: block;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 120%;
  height: 0;
  background-color: rgba(47, 53, 48, 0);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.header_menu_sub-menu_overlay.is-show {
  height: 120%;
  background-color: rgba(47, 53, 48, .4);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.header_menu_remodal-overlay,
.header_menu_remodal-wrapper {
  visibility: hidden;
}
@media screen and (max-width: 640px) {
  /* header ----------------------------------------------------------------------------------------------------------------------------- */
  .global-header {
    border-top: none;
    min-width: 0;
    min-height: 62px
  }
  .global-header .header_menu_list.pc {
    display: none;
  }
  .global-header .header_nav_logo {
    margin-top: 4px;
  }
  .global-header .header_nav_logo-mark img {
    width: 33px;
  }
  .global-header .header_nav_logo-text img {
    width: 119px;
  }
  .global-header .header_nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100010;
    width: 100%;
    padding: 13px 0;
    opacity: 1;
    background: #fff;
    overflow: hidden;
    -webkit-transition: padding 0.3s;
    transition: padding 0.3s;
  }
  .global-header .header_nav.is-shrink {
    opacity: 0.9;
    padding: 4px 0;
  }
  .global-header .header_nav .inner {
    padding: 0 10px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .global-header .header_menu_icon.sp {
    cursor: pointer;
    width: 31px;
    height: 36px;
  }

  /* modal menu ----------------------------------------------------------------------------------------------------------------------------- */
  .header_menu_remodal {
    padding: 0;
    background-color: #fff9e3;
    border-radius: 4px
  }
  .header_menu_remodal .button-close {
    margin: 13px 17px 13px auto;
    line-height: 1;
  }
  .header_menu_remodal .button-close {
    cursor: pointer;
    padding-left: 28px;
    font-size: 20px;
    color: #733a17;
    background-image: url(../images/icon_menu-close.png);
    background-position: left center;
    background-repeat: no-repeat;
    display: block;
  }
  .header_menu_remodal .button-close:hover {
    opacity: 0.6;
  }
  .header_menu_remodal .header_menu_remodal_body {
    margin-bottom: 21px;
    border-top: 1px solid #633820;
  }
  .header_menu_remodal .header_menu_remodal_body li {
    border-bottom: 1px solid #633820;
  }
  .header_menu_remodal .header_menu_remodal_body li a {
    display: block;
    padding: 12px 28px;
    text-align: left;
    color: #733a17;
    font-size: 15px;
    font-weight: bold;
  }
  .header_menu_remodal .header_menu_remodal_body li img {
    margin-right: 15px;
    width: 27px;
    height: 27px;
  }
  .header_menu_remodal .header_menu_remodal_social {
    padding: 29px 0;
    background-color: #c9b580;
  }
  .header_menu_remodal .header_menu_remodal_social ul li {
    display: inline-block;
    margin: 0 3px;
    vertical-align: bottom;
    font-size: 0;
  }
  .header_menu_remodal .header_menu_remodal_social ul li a {
    display: block;
    background-color: #fff;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 3px;
  }
  .header_menu_remodal .remodal_icon_instagram {
    width: 23px;
    vertical-align: middle;
  }
  .header_menu_remodal .remodal_icon_youtube {
    width: 29px;
    vertical-align: middle;
  }
  .header_menu_remodal .remodal_icon_facebook {
    width: 26px;
    vertical-align: middle;
  }
  .header_menu_remodal .remodal_icon_twitter {
    width: 28px;
    vertical-align: middle;
  }

  /* menu overlay ----------------------------------------------------------------------------------------------------------------------------- */
  .header_menu_remodal-overlay {
    visibility: visible;
    background-color: rgba(47, 53, 48, .4);
  }

  .header_menu_remodal-wrapper {
    visibility: visible;
    padding-top: 0;
  }
}
/* footer ----------------------------------------------------------------------------------------------------------------------------- */
.global-footer {
  width: 100%;
  min-width: 1012px;
  padding: 0
}
.global-footer .footer_top {
  padding: 20px 0;
  background-color: #99794c;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.global-footer .footer_top-link {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.global-footer .footer_top-link:before {
  display: block;
  content: '';
  margin: 0 auto 14px;
  background-image: url(../images/icon_footer_arrow.png);
  background-position: center top;
  width: 33px;
  height: 19px;
}
.global-footer .footer_nav {
  padding-bottom: 28px;
  background-color: #fff2d6;
}
.global-footer .footer_inner {
  margin: 0 auto;
  padding-top: 40px;
  width: 1000px;
}
.global-footer .footer_left {
  float: left;
  margin-left: 40px;
}
.global-footer .footer_nav_logo {
  float: left;
  margin-right: 23px;
}
.global-footer .footer_nav_logo-mark img {
  width: 32px;
  vertical-align: -6px;
}
.global-footer .footer_nav_logo-text img {
  vertical-align: middle;
}
.global-footer .footer_nav_icon {
  float: left;
}
.global-footer .footer_menu {
  float: left;
  margin-left: 45px;
}
.global-footer .footer_menu_list {
  margin-bottom: 80px;
  width: 441px;
}
.global-footer .footer_menu_list > li {
  float: left;
  margin-right: 25px;
  width: 208px;
  border-bottom: 1px solid #cbb499;
}
.global-footer .footer_menu_list > li:nth-child(even) {
  margin-right: 0;
}
.global-footer .footer_menu_list > li:last-child {
  border-bottom: none;
}
.global-footer .footer_menu_list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #733a17;
  font-size: 14px;
  line-height: 55px;
}
.global-footer .footer_menu_list > li a img {
  margin-left: 16px;
  vertical-align: middle;
}
.global-footer .footer_menu_list > li a span {
  margin-left: 16px;
}
.global-footer .footer_menu_list_recipe,
  .global-footer .footer_menu_list_product {
  margin-top: -15px;
  margin-bottom: 24px;
}
.global-footer .footer-copyright {
  margin-right: 159px;
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 640px) {
  /* footer ----------------------------------------------------------------------------------------------------------------------------- */
  .global-footer {
    min-width: 0
  }
  .global-footer .footer_top {
    padding: 20px 0 30px;
  }
  .global-footer .footer_top-link:before {
    background-image: url(../images/sp/icon_footer_arrow.png);
    background-size: cover;
    width: 33px;
    height: 19px;
  }
  .global-footer .footer_inner {
    padding-top: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .global-footer .footer_left {
    float: none;
    margin-left: 0;
    padding: 33px 0;
    text-align: center;
  }
  .global-footer .footer_nav {
    padding-bottom: 0;
  }
  .global-footer .footer_nav_logo {
    float: none;
    text-align: center;
  }
  .global-footer .footer_nav_logo-mark img {
    margin-right: 7px;
    width: 30px;
  }
  .global-footer .footer_nav_logo-text img {
    width: 136px;
  }
  .global-footer .footer_menu {
    float: none;
    margin-left: 0;
  }
  .global-footer .footer_menu_list {
    width: 100%;
    margin-bottom: 0;
    border-top: 1px solid #633820;
  }
  .global-footer .footer_menu_list > li {
    float: none;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #633820;
  }
  .global-footer .footer_menu_list > li:last-child {
    border-bottom: 1px solid #633820;
  }
  .global-footer .footer_menu_list > li a {
    display: block;
    padding: 13px 40px;
    line-height: 1;
  }
  .global-footer .footer_menu_list > li a img {
    margin-left: 0;
    width: 26px;
  }
  .global-footer .footer_menu_list > .footer_menu_list_product,
    .global-footer .footer_menu_list > .footer_menu_list_recipe {
    float: left;
    margin-top: 0;
    width: 50%;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .global-footer .footer_menu_list > .footer_menu_list_recipe {
    border-right: 1px solid #633820;
  }
  .global-footer .footer_menu_list > .footer_menu_list_product + li {
    clear: both;
  }
  .global-footer .footer_menu_list > .footer_menu_list_product a,
    .global-footer .footer_menu_list > .footer_menu_list_recipe a {
    padding: 17px 0 20px;
  }
  .global-footer .footer_menu_list > .footer_menu_list_product a img,
    .global-footer .footer_menu_list > .footer_menu_list_recipe a img {
    display: block;
    margin: 0 auto 14px;
    width: 34px;
  }
  .global-footer .footer_menu_list > .footer_menu_list_product a span,
    .global-footer .footer_menu_list > .footer_menu_list_recipe a span {
    display: block;
    margin-left: 0;
  }
  .global-footer .footer_menu_list > li a span {
    margin-left: 10px;
  }
  .global-footer .footer-copyright {
    margin: 0;
    padding: 22px 0;
    text-align: center;
    color: #733a17;
  }
}
