@charset "UTF-8";
/*
 vendor
-------------------------------------------------- */
/* Slider */
@import url("https://fonts.googleapis.com/css?family=Viga&display=swap");
.slick-slider {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -ms-touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none; }

.slick-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto; }
  .slick-track:before, .slick-track:after {
    display: table;
    content: ""; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  display: none;
  height: 100%;
  min-height: 1px;
  float: left; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("/files/user/images/slickslider/loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  src: url("/files/user/fonts/slickslider/slick.eot");
  src: url("/files/user/fonts/slickslider/slick.eot?#iefix") format("embedded-opentype"), url("/files/user/fonts/slickslider/slick.woff") format("woff"), url("/files/user/fonts/slickslider/slick.ttf") format("truetype"), url("/files/user/fonts/slickslider/slick.svg#slick") format("svg");
  font-family: "slick";
  font-style: normal;
  font-weight: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: 45%;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -45%);
  transform: translate(0, -45%);
  border: none;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: white;
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    opacity: 0.75; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    right: -25px;
    left: auto; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    right: auto;
    left: -25px; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  display: block;
  position: absolute;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center; }
  .slick-dots li {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      display: block;
      width: 20px;
      height: 20px;
      padding: 5px;
      border: 0;
      outline: none;
      background: transparent;
      color: transparent;
      font-size: 0px;
      line-height: 0px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        color: #cccccc;
        font-family: "slick";
        font-size: 40px;
        line-height: 20px;
        text-align: center;
        content: "•"; }
    .slick-dots li.slick-active button:before {
      color: #dc0000;
      opacity: 0.75; }

/*
 foundation
-------------------------------------------------- */
/*
 * mixin用SCSS
 *
 */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }

@keyframes fade-in-flex {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0; }
  100% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1; } }

@-webkit-keyframes fade-in-flex {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: -webkit-box;
    display: flex;
    opacity: 0; }
  100% {
    display: -webkit-box;
    display: flex;
    opacity: 1; } }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  /* 1 */
  margin: 0;
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 1 */
  color: inherit;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/********************************************
		Common
********************************************/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.3; }

dd,
dl,
dt,
label,
ul,
ol {
  margin: 0;
  padding: 0; }

li {
  list-style: none; }

a {
  color: inherit;
  text-decoration: none; }
  a:hover {
    cursor: pointer; }

img {
  width: 100%;
  vertical-align: top; }

html {
  font-size: 100%; }

body,
html {
  width: 100%;
  height: 100%; }

body {
  overflow-x: hidden;
  color: #333333;
  font-family: "Hiragino Kaku Gothic Pro", "Hiragino Sans", Meiryo, "MS PGothic", Arial, sans-serif;
  font-size: 16px; }

button,
input,
optgroup,
select,
textarea {
  color: #333333;
  font-family: inherit; }
  button:focus,
  input:focus,
  optgroup:focus,
  select:focus,
  textarea:focus {
    outline: 0; }

button,
input[type="button"],
input[type="submit"] {
  border: none; }
  button:focus,
  input[type="button"]:focus,
  input[type="submit"]:focus {
    outline: 0; }

iframe {
  vertical-align: top; }

.c-linkBlank::after,
[target="_blank"]:not([class])::after {
  display: inline-block;
  position: relative;
  top: 4px;
  width: 10px;
  height: 10px;
  margin-left: 9px;
  background-image: url(/files/user/assets/images/icon/icon_blank.png?v=1574042419);
  background-repeat: no-repeat;
  background-size: cover;
  content: ""; }

/*
 layout
-------------------------------------------------- */
.p-breadcrumb {
  padding: 10px 0; }
  .p-breadcrumb__list {
    letter-spacing: .14em; }
    .p-breadcrumb__list li {
      position: relative; }
      .p-breadcrumb__list li:not(:first-of-type)::before {
        display: block;
        position: absolute;
        left: 0;
        -webkit-transform: translate(0, -48%) rotate(45deg);
        transform: translate(0, -48%) rotate(45deg);
        border-top: 1px solid #333333;
        border-right: 1px solid #333333;
        content: ""; }

.l-bodyInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background-color: #fff; }

.l-container {
  position: relative; }
  .l-container--huge {
    position: relative;
    width: 100%;
    margin: 0 auto; }
  .l-container--large {
    position: relative; }
  .l-container--middle {
    position: relative; }
  .l-container--single {
    position: relative; }
  .l-container--main {
    position: relative; }
  .l-container--contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .l-container--side {
    float: right; }
  .l-container__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .l-container__col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0; }
    .l-container__col--100 {
      -webkit-box-flex: 1;
      -ms-flex: 1 100%;
      flex: 1 100%; }
    .l-container__col--40 {
      -webkit-box-flex: 1;
      -ms-flex: 1 39%;
      flex: 1 39%; }
      .l-container__col--40-sp {
        -webkit-box-flex: 1;
        -ms-flex: 1 39%;
        flex: 1 39%; }
    .l-container__col--50 {
      -webkit-box-flex: 1;
      -ms-flex: 1 49%;
      flex: 1 49%; }
      .l-container__col--50-sp {
        -webkit-box-flex: 1;
        -ms-flex: 1 49%;
        flex: 1 49%; }
    .l-container__col--auto {
      max-width: 100% !important; }

.p-pageTop {
  z-index: 100;
  position: absolute;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: solid 2px #999999;
  border-radius: 100%;
  background-color: #ffffff;
  text-indent: 100%;
  white-space: nowrap;
  cursor: pointer; }
  .p-pageTop::after {
    display: block;
    position: absolute;
    top: 18px;
    left: 50%;
    width: 11px;
    height: 11px;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    border-top: solid 2px #dc0000;
    border-right: solid 2px #dc0000;
    content: ""; }
  .p-pageTop__outer {
    position: fixed;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }

.p-footer {
  z-index: 1;
  position: relative;
  background-color: #fff; }
  .p-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: solid 1px #cccccc; }
  .p-footerNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .p-footerNav__item {
      line-height: 1.2; }
      .p-footerNav__item:not(:last-child) > a {
        border-right: solid 1px #cccccc; }
      .p-footerNav__item:hover {
        color: #dc0000; }
      .p-footerNav__item > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 100%;
        padding: 8px 0; }
        .p-footerNav__item > a::before {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          background-repeat: no-repeat;
          background-size: contain;
          content: ""; }
      .p-footerNav__item.-home > a::before {
        width: 57px;
        height: 57px;
        background-image: url(/files/user/assets/images/icon/home.svg?v=1574042419); }
      .p-footerNav__item.-home > a:hover::before {
        background-image: url(/files/user/assets/images/icon/home_emphasis.svg?v=1574042419); }
      .p-footerNav__item.-product > a::before {
        width: 57px;
        height: 46px;
        background-image: url(/files/user/assets/images/icon/cheese.svg?v=1574042418); }
      .p-footerNav__item.-product > a:hover::before {
        background-image: url(/files/user/assets/images/icon/cheese_emphasis.svg?v=1574042418); }
      .p-footerNav__item.-recipe > a::before {
        width: 48px;
        height: 52px;
        background-image: url(/files/user/assets/images/icon/recipe.svg?v=1574042420); }
      .p-footerNav__item.-recipe > a:hover::before {
        background-image: url(/files/user/assets/images/icon/recipe_emphasis.svg?v=1574042420); }
      .p-footerNav__item.-about > a::before {
        width: 54px;
        height: 50px;
        background-image: url(/files/user/assets/images/icon/bill.svg?v=1574042421); }
      .p-footerNav__item.-about > a:hover::before {
        background-image: url(/files/user/assets/images/icon/bill_emphasis.svg?v=1574042421); }
      .p-footerNav__item.-customer > a::before {
        width: 61px;
        height: 50px;
        background-image: url(/files/user/assets/images/icon/customer.svg?v=1574042418); }
      .p-footerNav__item.-customer > a:hover::before {
        background-image: url(/files/user/assets/images/icon/customer_emphasis.svg?v=1574042418); }
    .p-footerNavOther {
      line-height: 1; }
      .p-footerNavOther__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .p-footerNavOtherStrong {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .p-footerNavOtherStrong__item > a[target="_blank"]::after {
          -webkit-transform: rotate(0deg) translateY(-50%);
          transform: rotate(0deg) translateY(-50%);
          border: none; }
      .p-footerNavOtherNormal {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
  .p-footerBottom__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100px; }
  .p-footerBottomNipponham img {
    width: 100%;
    height: auto; }

.p-header {
  z-index: 1000;
  position: relative;
  border-bottom: 1px solid #cccccc;
  background-color: #fff; }
  .p-headerLogo {
    background-color: #fff; }
    .p-headerLogo a {
      display: block; }
  .p-headerNav__item.-parent > a {
    position: relative; }
  .p-headerNav__item.-parent.isActive > a {
    position: relative; }
  .p-headerNavChild {
    display: none; }
  .p-headerNavOther__item > a {
    line-height: 1; }
    .p-headerNavOther__item > a[target="_blank"]::after {
      -webkit-transform: rotate(0deg) translateY(-50%);
      transform: rotate(0deg) translateY(-50%);
      border: none; }
  .p-headerSearch {
    padding: 20px 0;
    border-bottom: solid 1px #cccccc; }
    .p-headerSearch__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 0 15px; }
    .p-headerSearch__label {
      margin-bottom: 15px;
      font-size: 13px;
      line-height: 1; }
    .p-headerSearch__form__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
    .p-headerSearch__input {
      width: 100%;
      height: 40px;
      padding: 7px 12px;
      border: solid 2px #dc0000;
      border-radius: 20px;
      font-size: 16px; }
    .p-headerSearch__submit {
      display: block;
      position: absolute;
      top: 0;
      right: -1px;
      width: 40px;
      height: 40px;
      border-radius: 100%;
      background-color: #dc0000;
      background-image: url(/files/user/assets/images/icon/musica-searcher_white.png?v=1574042420);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 19px 20px;
      cursor: pointer; }
      .p-headerSearch__submit > span {
        display: block;
        height: 0;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap; }

.p-headerNavChildPc {
  display: none;
  z-index: 100;
  position: absolute;
  top: 125px;
  height: 210px;
  border-top: 1px solid #cccccc;
  background-color: #fff; }
  .p-headerNavChildPc.isActive {
    display: block; }
  .p-headerNavChildPc__productLink {
    display: block;
    position: absolute;
    margin-top: 30px;
    font-size: 20px;
    line-height: 1; }
    .p-headerNavChildPc__productLink:hover {
      color: #dc0000; }
    .p-headerNavChildPc__productLink::after {
      display: inline-block;
      position: relative;
      top: -1px;
      left: 5px;
      width: 11px;
      height: 11px;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
      border-right: solid 2px #dc0000;
      border-bottom: solid 2px #dc0000;
      content: ""; }
  .p-headerNavChildPc__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0px;
    padding-top: 70px; }
  .p-headerNavChildPc__item {
    width: 195px; }
    .p-headerNavChildPc__item:not(:last-child) {
      border-right: solid 1px #ccc; }
    .p-headerNavChildPc__item > a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      width: 100%;
      height: 100%; }
      .p-headerNavChildPc__item > a:hover {
        color: #dc0000; }
      .p-headerNavChildPc__item > a::before {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background-repeat: no-repeat;
        background-size: contain;
        content: ""; }
    .p-headerNavChildPc__item.-cheese > a::before {
      width: 57px;
      height: 46px;
      background-image: url(/files/user/assets/images/icon/cheese.svg?v=1574042418); }
    .p-headerNavChildPc__item.-cheese > a:hover::before {
      background-image: url(/files/user/assets/images/icon/cheese_emphasis.svg?v=1574042418); }
    .p-headerNavChildPc__item.-kanzume > a::before {
      width: 54px;
      height: 49px;
      background-image: url(/files/user/assets/images/icon/kanzume.svg?v=1574042419); }
    .p-headerNavChildPc__item.-kanzume > a:hover::before {
      background-image: url(/files/user/assets/images/icon/kanzume_emphasis.svg?v=1574042420); }
    .p-headerNavChildPc__item.-freezedry > a::before {
      width: 60px;
      height: 58px;
      background-image: url(/files/user/assets/images/icon/freezedry.svg?v=1574042419); }
    .p-headerNavChildPc__item.-freezedry > a:hover::before {
      background-image: url(/files/user/assets/images/icon/freezedry_emphasis.svg?v=1574042419); }
    .p-headerNavChildPc__item.-binzume > a::before {
      width: 50px;
      height: 52px;
      background-image: url(/files/user/assets/images/icon/binzume.svg?v=1574042421); }
    .p-headerNavChildPc__item.-binzume > a:hover::before {
      background-image: url(/files/user/assets/images/icon/binzume_emphasis.svg?v=1574042418); }
    .p-headerNavChildPc__item.-retort > a::before {
      width: 61px;
      height: 60px;
      background-image: url(/files/user/assets/images/icon/retort.svg?v=1574042420); }
    .p-headerNavChildPc__item.-retort > a:hover::before {
      background-image: url(/files/user/assets/images/icon/retort_emphasis.svg?v=1574042420); }
  .p-headerNavChildPc__close {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 21px;
    height: 21px;
    margin: 0;
    padding: 0;
    background-color: #fff;
    cursor: pointer; }
    .p-headerNavChildPc__close > span {
      display: block;
      height: 0;
      overflow: hidden;
      text-indent: 100%;
      white-space: nowrap; }
    .p-headerNavChildPc__close::before, .p-headerNavChildPc__close::after {
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 27px;
      height: 2px;
      background-color: #dc0000;
      content: ""; }
    .p-headerNavChildPc__close::before {
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg); }
    .p-headerNavChildPc__close::after {
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg); }

.p-headerNavSearchPc {
  display: none;
  z-index: 100;
  position: absolute;
  top: 125px;
  left: 0;
  height: 102px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background-color: #fff; }
  .p-headerNavSearchPc.isActive {
    display: block; }
  .p-headerNavSearchPc__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%; }
  .p-headerNavSearchPc__label {
    margin-right: 20px;
    font-size: 16px;
    line-height: 1; }
  .p-headerNavSearchPc__form__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .p-headerNavSearchPc__input {
    width: 500px;
    height: 40px;
    padding: 7px 12px;
    border: solid 2px #dc0000;
    border-radius: 20px;
    font-size: 16px; }
  .p-headerNavSearchPc__submit {
    position: absolute;
    top: 0;
    right: -1px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #dc0000;
    background-image: url(/files/user/assets/images/icon/musica-searcher_white.png?v=1574042420);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 19px 20px;
    cursor: pointer; }
    .p-headerNavSearchPc__submit > span {
      display: block;
      height: 0;
      overflow: hidden;
      text-indent: 100%;
      white-space: nowrap; }

.p-forBusiness-headerLogo {
  position: relative; }
  .p-forBusiness-headerLogo__title {
    padding: 2px 10px;
    background-color: #005aa5;
    color: #fff;
    letter-spacing: .05em; }

/*
 object
-------------------------------------------------- */
/* component --------------------------- */
.c-bg-borderX, .c-bg-borderY {
  position: relative; }
  .c-bg-borderX::before, .c-bg-borderX::after, .c-bg-borderY::before, .c-bg-borderY::after {
    display: block;
    z-index: 10;
    position: absolute;
    border-radius: 4px;
    background-color: #e3cdc4;
    content: ""; }

.c-bg-borderX.-small {
  color: #5b3627; }

.c-bg-borderY {
  background-color: #fff; }
  .c-bg-borderY::before, .c-bg-borderY::after {
    height: 100%; }

.c-bg-borderArrowBottom {
  display: block;
  z-index: 1;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  content: ""; }

.c-bg-dot {
  position: relative; }
  .c-bg-dot::before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background: url(/files/user/assets/images/recipe/border_dot.png?v=1575277529) repeat-x;
    content: ""; }

.c-blockSubTitle {
  border-bottom: 1px solid #333;
  letter-spacing: 4px;
  line-height: 1.1; }

.c-blockTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.c-buttonMore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  margin-bottom: 10px;
  border: solid 2px #dc0000;
  border-radius: 25px;
  background-color: #dc0000;
  -webkit-box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.25);
  color: #ffffff;
  letter-spacing: 0.8px;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .c-buttonMore::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 11px;
    height: 11px;
    -webkit-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
    border-right: solid 2px #ffffff;
    border-bottom: solid 2px #ffffff;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .c-buttonMore:hover {
    border: solid 2px #dc0000;
    background-color: #ffffff;
    color: #dc0000; }
    .c-buttonMore:hover::after {
      border-right: solid 2px #dc0000;
      border-bottom: solid 2px #dc0000; }

.slick-prev,
.slick-next {
  z-index: 1; }

.slick-prev {
  left: -33px; }

.slick-next {
  right: 9px; }

.slick-prev:before,
.slick-next:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: #fff;
  content: "";
  opacity: 0.7; }

.slick-prev:before {
  background-image: url(/files/user/assets/images/icon/arrow_left.svg?v=1574042420); }

.slick-next:before {
  background-image: url(/files/user/assets/images/icon/arrow_right.svg?v=1574042420); }

.c-sliderCarousel .slick-next,
.c-recipeList .slick-next {
  right: 45px; }

.c-sliderCarousel-column4 .slick-prev:before,
.c-sliderCarousel-column4 .slick-next:before {
  width: 18px;
  height: 28px; }

.c-sliderCarousel-column4 .slick-prev {
  left: -25px; }

.c-sliderCarousel-column4 .slick-next {
  right: -25px; }

.c-sliderCarousel-column4 .slick-prev:before {
  background-image: url(/files/user/assets/images/icon/arrow_left_no-bg.svg?v=1574042420); }

.c-sliderCarousel-column4 .slick-next:before {
  background-image: url(/files/user/assets/images/icon/arrow_right_no-bg.svg?v=1574042420); }

.c-buttonCategory,
.c-buttonPrint {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
  margin-top: 6px;
  padding: 0 16px;
  border: 2px solid #999;
  border-radius: 15px;
  background-color: #fff;
  font-weight: bold;
  letter-spacing: .14em;
  line-height: 1;
  cursor: pointer; }
  .c-buttonCategory:not(:last-of-type),
  .c-buttonPrint:not(:last-of-type) {
    margin-right: 6px; }

.c-buttonBorder {
  position: relative;
  border: 2px solid #dc0000;
  border-radius: 25px;
  background-color: #fff;
  color: #dc0000;
  font-weight: bold;
  text-align: center; }
  .c-buttonBorder:hover {
    background: #dc0000;
    color: #fff; }
  .c-buttonBorder.-fixedSize {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .c-buttonBorder.-arrow::after {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    border-top: 2px solid #dc0000;
    border-right: 2px solid #dc0000;
    content: ""; }
  .c-buttonBorder.-arrow:hover::after {
    border-color: #fff; }
  .c-buttonBorder.-arrowBottom::after {
    top: 48%;
    -webkit-transform: translate(0, -50%) rotate(135deg);
    transform: translate(0, -50%) rotate(135deg); }
  .c-buttonBorder.-arrowBottom.is-open::after {
    top: 52%;
    -webkit-transform: translate(0, -50%) rotate(-45deg);
    transform: translate(0, -50%) rotate(-45deg); }
  .c-buttonBorder[target="_blank"]::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-image: url(/files/user/assets/images/icon/icon_blank-red.svg?v=1574042419); }
  .c-buttonBorder[target="_blank"]:hover::after {
    background-image: url(/files/user/assets/images/icon/icon_blank-white.svg?v=1574042419); }

.c-buttonClose {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  margin: auto;
  border: 2px solid #999;
  border-radius: 20px;
  background-color: #fff;
  font-weight: bold;
  letter-spacing: .14em;
  cursor: pointer; }
  .c-buttonClose::before, .c-buttonClose::after {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    background-color: #dc0000;
    content: ""; }

.c-buttonCopyUrl {
  border-radius: 5px;
  background: url(/files/user/assets/images/icon/copyurl.svg?v=1575006581) no-repeat left 10px center #ccc;
  letter-spacing: 0;
  cursor: pointer; }

.c-buttonBack {
  position: relative;
  margin: auto; }
  .c-buttonBack:hover {
    color: #dc0000; }
  .c-buttonBack::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 15px;
    width: 11px;
    height: 11px;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    border-bottom: solid 2px #dc0000;
    border-left: solid 2px #dc0000;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s; }

.c-copy-result-text {
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s; }

.c-formButton, .c-buttonBack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  border: 2px solid #999;
  border-radius: 20px;
  background-color: #fff;
  font-weight: bold;
  letter-spacing: .14em;
  cursor: pointer; }
  .c-formButton.-emphasis, .-emphasis.c-buttonBack {
    border: 0;
    background-color: #dc0000;
    color: #fff; }
  .c-formButton.-arrow-left::before, .-arrow-left.c-buttonBack::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 15px;
    width: 11px;
    height: 11px;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    border-bottom: solid 2px #dc0000;
    border-left: solid 2px #dc0000;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .c-formButton.-arrow-right::after, .-arrow-right.c-buttonBack::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 11px;
    height: 11px;
    -webkit-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
    border-right: solid 2px #dc0000;
    border-bottom: solid 2px #dc0000;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .c-formButton-disabled {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    border: 2px solid #999;
    border-radius: 20px;
    background-color: #fff;
    font-weight: bold;
    letter-spacing: .14em; }

.c-formSelect {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 2px solid #999;
  background: url(/files/user/assets/images/icon/select.svg?v=1575001951) no-repeat;
  font-weight: bold;
  cursor: pointer; }
  .c-formSelectList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .c-formSelect::-ms-expand {
    display: none; }

.c-formCheckbox {
  position: relative;
  color: #333333;
  font-weight: bold; }
  .c-formCheckboxList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .c-formCheckbox input[type="checkbox"] {
    z-index: 1;
    position: absolute;
    top: 5px;
    left: 5px;
    opacity: 0; }
    .c-formCheckbox input[type="checkbox"] + label {
      display: block;
      padding-left: 30px;
      cursor: pointer; }
      .c-formCheckbox input[type="checkbox"] + label::before {
        display: block;
        z-index: 10;
        position: absolute;
        left: 0;
        width: 20px;
        height: 20px;
        border: 1px solid #999;
        background-color: #fff;
        content: ""; }
    .c-formCheckbox input[type="checkbox"]:checked + label::after {
      display: inline-block;
      z-index: 10;
      position: absolute;
      left: 3px;
      width: 14px;
      height: 8px;
      -webkit-transform: translate(0, -50%) rotate(-45deg);
      transform: translate(0, -50%) rotate(-45deg);
      border-bottom: 3px solid #dc0000;
      border-left: 3px solid #dc0000;
      content: ""; }

.c-conditionalSearch__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%; }
  .c-conditionalSearch__text input[type="text"] {
    width: 100%;
    border: 2px solid #999999;
    font-size: 16px; }

.c-conditionalSearch__select {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%; }
  .c-conditionalSearch__select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border: 2px solid #999999;
    border-radius: 0;
    cursor: pointer; }

.c-conditionalSearch__button > button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 100%;
  padding: 15px;
  border: 2px solid #dc0000;
  border-radius: 28px;
  background: none;
  color: #dc0000;
  font-weight: bold;
  text-align: center;
  cursor: pointer; }
  .c-conditionalSearch__button > button:hover {
    background-color: #dc0000;
    color: #fff; }

.c-heading--lv1 {
  letter-spacing: .14em; }

.c-heading--forBusiness {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 10px;
  background-color: #005aa5;
  color: #fff;
  letter-spacing: .14em; }

.c-heading--borderLeft {
  letter-spacing: .14em; }

.c-heading--borderBottom {
  padding: 0 0 10px;
  border-bottom: 1px solid #333333; }

.c-heading--imageIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .c-heading--imageIcon img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    margin-right: 10px; }

.c-heading--recipe {
  color: #5b3627;
  text-align: center; }
  .c-heading--recipe span {
    display: inline-block;
    position: relative;
    letter-spacing: .14em; }
    .c-heading--recipe span::before, .c-heading--recipe span::after {
      display: inline-block;
      position: absolute;
      content: ""; }
    .c-heading--recipe span::before {
      left: 0;
      background: url("/files/user/assets/images/icon/fork.svg") no-repeat left center; }
    .c-heading--recipe span::after {
      right: 0;
      background: url("/files/user/assets/images/icon/spoon.svg") no-repeat right center; }
  .c-heading--recipe img {
    display: block;
    width: auto;
    margin: 6px auto 0; }

.c-imageText__image {
  text-align: center; }
  .c-imageText__image img {
    width: auto;
    max-width: 100%;
    border-radius: 10px; }

.c-imageText__text p {
  margin: 0 0 10px; }

.c-imageText__text__heading {
  font-weight: bold; }

.c-link {
  color: #005aa5;
  font-weight: bold;
  text-decoration: underline; }
  .c-link:hover {
    text-decoration: none; }
  .c-link i {
    margin-left: .2em;
    color: #999999; }
    .c-link i.-red {
      color: #dc0000; }
    .c-link i.-blue {
      color: #005aa5; }

.c-list-annotation li {
  position: relative;
  padding-left: 20px; }
  .c-list-annotation li::before {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    content: "※"; }

.c-list-faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 2px solid #dc0000; }
  .c-list-faq__item::before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #dc0000;
    color: #fff;
    font-weight: bold;
    content: "Q"; }
  .c-list-faq__item a {
    display: block; }
    .c-list-faq__item a:hover {
      color: #dc0000; }

.c-list-faq__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  cursor: pointer; }
  .c-list-faq__title.-arrow {
    position: relative; }
    .c-list-faq__title.-arrow::after {
      display: block;
      position: absolute;
      top: 50%;
      -webkit-transform: translate(0, -50%) rotate(45deg);
      transform: translate(0, -50%) rotate(45deg);
      border-top: 2px solid #dc0000;
      border-right: 2px solid #dc0000;
      content: ""; }
    .c-list-faq__title.-arrow.-arrowBottom::after {
      -webkit-transform: translate(0, -50%) rotate(135deg);
      transform: translate(0, -50%) rotate(135deg); }
    .c-list-faq__title.-arrow.-arrowBottom.is-open::after {
      -webkit-transform: translate(0, -50%) rotate(-45deg);
      transform: translate(0, -50%) rotate(-45deg); }

.c-list-faq__answer {
  display: none;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  border-top: 2px solid #dc0000;
  background-color: #005aa5; }
  .c-list-faq__answer::before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #dc0000;
    background-color: #fff;
    color: #dc0000;
    font-weight: bold;
    content: "A"; }

.c-list__link {
  display: block; }

.c-list__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.c-list__item {
  display: block; }
  .c-list__item + .c-list__item {
    border-top: 1px solid #999; }
  .c-list__item:last-child {
    padding-bottom: 16px;
    border-bottom: 1px solid #999; }

.c-list__time {
  line-height: 1.4; }

.c-list__subject {
  margin: 0;
  line-height: 1.4; }
  .c-list__link:hover .c-list__subject {
    color: #dc0000; }
  .c-list__subject--accentColor {
    color: #005aa5;
    font-size: 18px;
    letter-spacing: 1.5px; }

@-webkit-keyframes hamburger-top-sp {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-6px) rotate(0deg);
    transform: translateY(-6px) rotate(0deg); } }

@keyframes hamburger-top-sp {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-6px) rotate(0deg);
    transform: translateY(-6px) rotate(0deg); } }

@-webkit-keyframes hamburger-bottom-sp {
  0% {
    -webkit-transform: translateY(0px) rotate(40deg);
    transform: translateY(0px) rotate(40deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(6px) rotate(0deg);
    transform: translateY(6px) rotate(0deg); } }

@keyframes hamburger-bottom-sp {
  0% {
    -webkit-transform: translateY(0px) rotate(40deg);
    transform: translateY(0px) rotate(40deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(6px) rotate(0deg);
    transform: translateY(6px) rotate(0deg); } }

@-webkit-keyframes hamburger-top-close-sp {
  0% {
    -webkit-transform: translateY(-10px) rotate(0deg);
    transform: translateY(-10px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(2px) rotate(-40deg);
    transform: translateY(2px) rotate(-40deg); } }

@keyframes hamburger-top-close-sp {
  0% {
    -webkit-transform: translateY(-10px) rotate(0deg);
    transform: translateY(-10px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(2px) rotate(-40deg);
    transform: translateY(2px) rotate(-40deg); } }

@-webkit-keyframes hamburger-bottom-close-sp {
  0% {
    -webkit-transform: translateY(10px) rotate(0deg);
    transform: translateY(10px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-2px) rotate(40deg);
    transform: translateY(-2px) rotate(40deg); } }

@keyframes hamburger-bottom-close-sp {
  0% {
    -webkit-transform: translateY(10px) rotate(0deg);
    transform: translateY(10px) rotate(0deg); }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-2px) rotate(40deg);
    transform: translateY(-2px) rotate(40deg); } }

.c-menuButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 8100;
  position: absolute;
  top: 14px;
  right: 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 25px;
  height: 36px;
  font-family: Helvetica;
  font-weight: bold;
  letter-spacing: 0.9px;
  cursor: pointer; }
  .c-menuButton__label::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: scale(0.9) translateX(-55%);
    transform: scale(0.9) translateX(-55%);
    color: #e60012;
    font-size: 9px;
    letter-spacing: 0.9px;
    line-height: 1;
    content: "menu"; }
  .isActive .c-menuButton__label::before {
    -webkit-transform: scale(0.9) translateX(-55%);
    transform: scale(0.9) translateX(-55%);
    font-size: 9px;
    letter-spacing: 0.9px;
    content: "close"; }
  .c-menuButton__inner {
    position: relative;
    top: 8px; }
    .c-menuButton__inner > span {
      display: block;
      position: relative;
      width: 25px;
      height: 2px;
      background-color: #e60012;
      -webkit-transition: 0.3s opacity;
      transition: 0.3s opacity; }
  .c-menuButton .top {
    -webkit-animation: hamburger-top-sp 0.5s;
    animation: hamburger-top-sp 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }
  .c-menuButton .middle {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    -webkit-transition: 0.5s opacity;
    transition: 0.5s opacity; }
  .c-menuButton .bottom {
    -webkit-animation: hamburger-bottom-sp 0.5s;
    animation: hamburger-bottom-sp 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }
  .c-menuButton.isActive .middle {
    opacity: 0;
    -webkit-transition: 0.5s opacity;
    transition: 0.5s opacity; }
  .c-menuButton.isActive .top {
    -webkit-animation: hamburger-top-close-sp 0.5s;
    animation: hamburger-top-close-sp 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }
  .c-menuButton.isActive .bottom {
    -webkit-animation: hamburger-bottom-close-sp 0.5s;
    animation: hamburger-bottom-close-sp 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }

.is-overflow-y {
  overflow-y: hidden; }

.c-modal.is-open {
  display: block; }

.c-modal__bg {
  display: none;
  z-index: 9000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); }

.c-modal__contents {
  display: none;
  z-index: 9100;
  position: fixed;
  top: 50%;
  left: 50%;
  max-height: 95%;
  padding: 30px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff; }

.c-modal__contents__item {
  display: none; }
  .c-modal__contents__item.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }

.c-modal__contents__button {
  padding: 5px 10px;
  border: 1px solid #ccc;
  background-color: #eee;
  cursor: pointer;
  -webkit-transition: .4s opacity;
  transition: .4s opacity; }

.c-modal__close {
  z-index: 9200;
  position: absolute;
  top: -20px;
  right: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: .4s opacity;
  transition: .4s opacity; }
  .c-modal__close:before, .c-modal__close:after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    background: #fff;
    content: ""; }
  .c-modal__close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .c-modal__close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }

.c-infoList {
  padding: 0 15px; }
  .c-infoListItem:not(:last-child) {
    margin-bottom: 20px; }
  .c-infoListItem__date {
    margin-right: 15px;
    font-size: 16px; }
  .c-infoListItem__category {
    margin-right: 18px;
    padding: 4px 13px;
    border: solid 2px #a3bdc7;
    line-height: 1;
    text-align: center; }
  .c-infoListItem__subject {
    font-size: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .c-infoListItem:hover .c-infoListItem__subject {
    color: #dc0000; }

.c-operationNoticeList {
  background-color: #f9ebeb; }
  .c-operationNoticeList__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .c-operationNoticeList__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: 1.12px;
    line-height: 1; }
  .c-operationNoticeList__body {
    font-size: 14px;
    letter-spacing: 1.12px; }
    .c-operationNoticeList__body a {
      text-decoration: underline; }
      .c-operationNoticeList__body a[target="_blank"]:not([class])::after {
        display: none; }
    .c-operationNoticeList__body p {
      margin-top: 0;
      margin-bottom: 0; }

.c-overlay {
  display: none;
  z-index: 900;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); }

.c-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.c-pager__item + .c-pager__item {
  margin-left: 5px; }

.c-pager__link {
  display: block;
  min-width: 36px;
  height: 36px;
  border-radius: 6px;
  color: #dc0000;
  line-height: 36px;
  text-align: center; }
  .c-pager__link.is-current, .c-pager__link:hover {
    background-color: #dc0000;
    color: #fff; }

.c-pager__control--double-left .c-pager__link::before, .c-pager__control--double-left .c-pager__link::after, .c-pager__control--double-right .c-pager__link::before, .c-pager__control--double-right .c-pager__link::after, .c-pager__control--single-left .c-pager__link::before, .c-pager__control--single-right .c-pager__link::after {
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-right: solid 2px #dc0000;
  border-bottom: solid 2px #dc0000;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s; }

.c-pager__control--double-left, .c-pager__control--double-right {
  position: relative; }

.c-pager__control--double-left .c-pager__link:hover, .c-pager__control--double-right .c-pager__link:hover {
  background: none;
  color: #dc0000; }

.c-pager__control--single-left {
  position: relative; }

.c-pager__control--single-left .c-pager__link:hover {
  background: none;
  color: #dc0000; }

.c-pager__control--single-right {
  position: relative; }

.c-pager__control--single-right .c-pager__link:hover {
  background: none;
  color: #dc0000; }

.c-pager__control--double-left .c-pager__link::before {
  left: 40%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); }

.c-pager__control--double-left .c-pager__link::after {
  left: 60%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); }

.c-pager__control--single-left .c-pager__link::before {
  left: 50%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); }

.c-pager__control--double-right .c-pager__link::before {
  left: 40%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.c-pager__control--double-right .c-pager__link::after {
  left: 60%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.c-pager__control--single-right .c-pager__link::after {
  left: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.c-sp-pager__count {
  margin: 0 auto;
  text-align: center; }

.c-sp-pager__col2 .c-formButton__outer {
  width: 100%; }

.c-sp-pager__col2 .c-formButton, .c-sp-pager__col2 .c-buttonBack {
  position: relative;
  width: 100%; }

.c-sp-pager .c-formButton__outer + .c-formButton__outer {
  margin-left: 15px; }

.p-recipeSearch__result .c-sp-pager__count {
  background: url(/files/user/assets/images/recipe/bg_paper.png?v=1575277529) no-repeat center;
  color: #5b3627; }

.c-productCategoryItem__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff; }
  .c-productCategoryItem__title:hover {
    color: #dc0000; }
  .c-productCategoryItem__title.-arrow {
    position: relative; }
    .c-productCategoryItem__title.-arrow h2::after {
      display: block;
      position: absolute;
      top: 50%;
      right: 15px;
      width: 10px;
      height: 10px;
      -webkit-transform: translate(0, -50%) rotate(45deg);
      transform: translate(0, -50%) rotate(45deg);
      border-top: 2px solid #dc0000;
      border-right: 2px solid #dc0000;
      content: ""; }
    .c-productCategoryItem__title.-arrowBottom h2::after {
      top: 48%;
      -webkit-transform: translate(0, -50%) rotate(135deg);
      transform: translate(0, -50%) rotate(135deg); }
  .c-productCategoryItem__title img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    height: auto; }
  .c-productCategoryItem__title h2 {
    font-weight: bold; }

.c-productCategoryItem__list li {
  position: relative; }
  .c-productCategoryItem__list li::after {
    display: block;
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    border-top: 2px solid #dc0000;
    border-right: 2px solid #dc0000;
    content: ""; }
  .c-productCategoryItem__list li a:hover {
    text-decoration: underline; }

.c-productList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .c-productListItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .c-productListItem__image {
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .c-productListItem__subject {
      font-size: 18px;
      font-weight: bold;
      letter-spacing: 0.9px;
      text-align: center;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .c-productListItem:hover .c-productListItem__subject {
      color: #dc0000; }
    .c-productListItem:hover .c-productListItem__image {
      opacity: 0.8; }

.c-productSummaryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .c-productSummaryList__item__image {
    border: 1px solid #ededed;
    border-radius: 10px;
    background-color: #fff; }
    .-new .c-productSummaryList__item__image, .-renewal .c-productSummaryList__item__image {
      position: relative; }
      .-new .c-productSummaryList__item__image::before, .-renewal .c-productSummaryList__item__image::before {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 100;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 10px 0 0 0;
        background-color: #fff5be;
        font-weight: bold;
        letter-spacing: .14rem;
        content: ""; }
      .-new .c-productSummaryList__item__image::after, .-renewal .c-productSummaryList__item__image::after {
        display: block;
        z-index: 100;
        position: absolute;
        width: 6px;
        height: 6px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        border: 6px solid transparent;
        border-bottom: 6px solid #fff5be;
        border-left: 6px solid #fff5be;
        content: ""; }
    .-new .c-productSummaryList__item__image::before {
      color: #dc0000;
      content: "新発売"; }
    .-renewal .c-productSummaryList__item__image::before {
      content: "リニューアル"; }
  .c-productSummaryList__item__title {
    font-weight: bold;
    letter-spacing: .14rem;
    text-align: center; }

.c-recipeList {
  z-index: 1; }
  .c-recipeListItem {
    -webkit-transition: color 0.3s, opacity 0.3s;
    transition: color 0.3s, opacity 0.3s; }
    .c-recipeListItem:hover {
      color: #dc0000; }
    .c-recipeListItem__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      border-radius: 10px;
      background-color: #ffffff;
      -webkit-box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.25);
      box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.25); }
    .c-recipeListItem__category {
      position: absolute;
      top: -18px;
      left: 20px;
      padding: 8px 10px 9px;
      background-color: #d97c3d;
      color: #ffffff;
      letter-spacing: 0.8px;
      line-height: 1; }
      .c-recipeListItem__category.-cheese {
        background-color: #d97c3d; }
      .c-recipeListItem__category.-kanzume {
        background-color: #4b7791; }
      .c-recipeListItem__category.-freezedry {
        background-color: #67ae51; }
      .c-recipeListItem__category.-binzume {
        background-color: #ae5191; }
      .c-recipeListItem__category.-retort {
        background-color: #7c694c; }
    .c-recipeListItem:hover .c-recipeListItem__thumbnail {
      opacity: 0.8; }
    .c-recipeListItem__thumbnail {
      overflow: hidden;
      border-radius: 10px;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .c-recipeListItem__subject {
      margin-top: 15px;
      font-weight: bold;
      letter-spacing: 1.44px;
      line-height: 1.3; }
    .c-recipeListItem__summary {
      margin: 0;
      letter-spacing: 0.48px;
      line-height: 1.6; }
  .c-recipeList .slick-list {
    overflow: inherit; }

.c-recipe {
  border-radius: 10px;
  background: url(/files/user/assets/images/recipe/bg_square.png?v=1575277529) repeat;
  -webkit-box-shadow: 0 4px 8px rgba(95, 72, 72, 0.2);
  box-shadow: 0 4px 8px rgba(95, 72, 72, 0.2);
  color: #5b3627; }
  .c-recipe__list.-column2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .c-recipe__list.-column2 li {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
      flex: 0 0 48%; }
  .c-recipe a {
    display: block; }
  .c-recipe__image {
    overflow: hidden;
    border-radius: 10px; }
    .c-recipe__image img {
      border-radius: 10px; }
  .c-recipe__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px 0;
    background: url(/files/user/assets/images/icon/fork_pink.svg?v=1575005303) no-repeat;
    color: #5b3627;
    font-weight: normal;
    letter-spacing: .14em; }
    .c-recipe__title::before {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      height: 37px;
      background: url(/files/user/assets/images/icon/spoon_blue.svg?v=1575005303) no-repeat top left;
      content: ""; }
  .c-recipe__summary {
    margin: 0;
    padding-top: 10px;
    color: #5b3627; }

.c-recipeSeach {
  color: #5b3627; }
  .c-recipeSeach__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .c-recipeSeach__label {
    color: #dc0000;
    font-weight: bold; }
  .c-recipeSeach__form__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .c-recipeSeach__input {
    width: 100%;
    height: 40px;
    padding: 7px 12px;
    border: solid 2px #dc0000;
    border-radius: 20px;
    font-size: 16px; }
  .c-recipeSeach__submit {
    display: block;
    position: absolute;
    top: 0;
    right: -1px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #dc0000;
    background-image: url(/files/user/assets/images/icon/musica-searcher_white.png?v=1574042420);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 19px 20px;
    cursor: pointer; }
    .c-recipeSeach__submit > span {
      display: block;
      height: 0;
      overflow: hidden;
      text-indent: 100%;
      white-space: nowrap; }
  .c-recipeSeach__toggle {
    cursor: pointer; }
  .c-recipeSeach__filter {
    display: none;
    width: 100%;
    margin-top: 30px; }
    .c-recipeSeach__filter__heading {
      padding-left: 30px;
      background: url(/files/user/assets/images/icon/search_recipe.svg?v=1575001951) no-repeat left center;
      background-size: 18px;
      font-weight: bold;
      letter-spacing: .05em; }
    .c-recipeSeach__filter__categoryList {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .c-recipeSeach__filter__categoryList li button {
        width: 100%; }
    .c-recipeSeach__filter__selected__item {
      font-weight: bold;
      line-height: 1.3; }
      .c-recipeSeach__filter__selected__item span {
        color: rgba(91, 54, 39, 0.7); }
    .c-recipeSeach__filter__result {
      font-weight: bold;
      text-align: center; }
      .c-recipeSeach__filter__result span {
        color: #dc0000; }

.c-sliderCarousel-column4__item {
  position: relative;
  cursor: pointer; }
  .c-sliderCarousel-column4__item.c-recipe {
    margin: 0 15px 10px; }
  .c-sliderCarousel-column4__item p {
    margin: 10px 0; }
  .c-sliderCarousel-column4__item__title {
    font-weight: bold;
    letter-spacing: .14rem;
    text-align: center; }
  .c-sliderCarousel-column4__item__image {
    overflow: hidden;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    .c-sliderCarousel-column4__item__image:hover {
      opacity: 0.8; }
    .-noBorder .c-sliderCarousel-column4__item__image > img {
      width: auto;
      max-width: 100%;
      margin: 0 auto;
      border-radius: 10px; }
    .-border .c-sliderCarousel-column4__item__image {
      border: 1px solid #ededed;
      background-color: #fff;
      background-size: 80%; }
      .-border .c-sliderCarousel-column4__item__image:hover {
        background-size: 84%; }
    .-new .c-sliderCarousel-column4__item__image, .-renewal .c-sliderCarousel-column4__item__image {
      position: relative; }
      .-new .c-sliderCarousel-column4__item__image::before, .-renewal .c-sliderCarousel-column4__item__image::before {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 100;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 10px 0 0 0;
        background-color: #fff5be;
        font-weight: bold;
        letter-spacing: .14rem;
        content: ""; }
      .-new .c-sliderCarousel-column4__item__image::after, .-renewal .c-sliderCarousel-column4__item__image::after {
        display: block;
        z-index: 100;
        position: absolute;
        width: 6px;
        height: 6px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        border: 6px solid transparent;
        border-bottom: 6px solid #fff5be;
        border-left: 6px solid #fff5be;
        content: ""; }
    .-new .c-sliderCarousel-column4__item__image::before {
      color: #dc0000;
      content: "新発売"; }
    .-renewal .c-sliderCarousel-column4__item__image::before {
      content: "リニューアル"; }
  .c-sliderCarousel-column4__item:hover::after {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.3);
    content: ""; }
  .c-sliderCarousel-column4__item > a {
    display: block;
    z-index: 10;
    position: relative; }

.c-sliderCarouselOnSubject__item {
  position: relative;
  cursor: pointer; }
  .c-sliderCarouselOnSubject__item img {
    width: 100%; }

.c-sliderCarouselOnSubject__link {
  display: block; }

.c-sliderCarouselOnSubject__link:hover::after {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.3);
  content: ""; }

.c-sliderCarouselOnSubject__inner {
  overflow: hidden;
  border-radius: 10px; }

.c-sliderCarouselOnSubject__subject {
  margin-bottom: 0;
  color: #5b3627; }

.c-sliderCarouselOnSubject .slick-list {
  overflow: inherit; }

.c-sliderCarousel__item {
  position: relative;
  cursor: pointer; }
  .c-sliderCarousel__item > a {
    display: block;
    overflow: hidden;
    border-radius: 15px;
    -webkit-box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.25); }
    .c-sliderCarousel__item > a:hover::after {
      z-index: 1;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background-color: rgba(255, 255, 255, 0.3);
      content: ""; }
  .c-sliderCarousel__item img {
    width: 100%; }

.c-sliderCarousel .slick-list {
  overflow: inherit; }

.c-sliderHero__outer.-top {
  background-image: url(/files/user/assets/images/top/hero_bg.jpg?v=1583480127);
  background-repeat: no-repeat;
  background-size: cover; }

.c-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .c-table dt, .c-table dd {
    border-top: 1px solid #ccc; }
    .c-table dt:last-of-type, .c-table dd:last-of-type {
      border-bottom: 1px solid #ccc; }
  .c-table dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    background-color: #fafafa;
    font-weight: bold; }
  .c-table dd {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }

/* project ----------------------------- */

.p-hoko__anchorList__link {
  display: block;
  position: relative;
  font-weight: bold; }
  .p-hoko__anchorList__link::after {
    -webkit-transform: translate(0, -50%) rotate(-45deg);
    display: block;
    position: absolute;
    top: 46%;
    right: 15px;
    width: 10px;
    height: 10px;
    transform: translate(0, -50%) rotate(-45deg);
    border-bottom: 2px solid #dc0000;
    border-left: 2px solid #dc0000;
    content: ""; }
    .-sp-link .p-hoko__anchorList__link::after {
      -webkit-transform: translate(0, -50%) rotate(-135deg);
      transform: translate(0, -50%) rotate(-135deg); }

.p-hokoTop__pageList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .p-hokoTop__pageList__link {
    display: block; }
    .p-hokoTop__pageList__link-border {
      border: 1px solid #999999; }
    .p-hokoTop__pageList__link > div {
      overflow: hidden;
      border-radius: 10px; }
  .p-hokoTop__pageList__subject {
    margin-bottom: 0;
    font-weight: bold;
    text-align: center; }
  .p-hokoTop__pageList__img {
    border: 1px solid #ededed;
    border-radius: 10px; }

.p-hokoBusiness__block__img {
  position: relative; }

.p-hokoBusiness__block__img > img {
  display: block;
  max-width: 100%;
  margin: 0 auto; }

.p-hokoBusiness__block__img > span {
  display: block;
  position: relative;
  margin-top: 4px;
  text-align: right; }

.p-hokoBusiness__block__subject {
  font-weight: bold; }

.p-hokoHistory__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.p-hokoHistory__block + .p-hokoHistory__block {
  margin-top: 0px; }

.p-hokoHistory__block__year {
  letter-spacing: 3px; }

.p-hokoHistory__block__inner {
  position: relative; }

.p-hokoHistory__block__summary {
  margin-top: 0; }

.p-hokoHistory__block__img.-img-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.p-hokoHistory__block__img img {
  width: auto;
  max-width: 100%; }

.p-hokoTopMsg::after {
  display: block;
  clear: both;
  content: ''; }

.p-hokoTopMsg__name {
  float: right;
  text-align: right; }

.p-hokoTopMsg__name > dd {
  margin-top: 6px; }

.p-hokoOffice__block__hedding {
  font-weight: bold; }

.p-hokoOffice__block__category {
  font-weight: bold; }

.p-hokoOffice__block__address {
  margin: 0; }

.p-hokoOffice__block__col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.p-hokoOffice__block__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 232px;
  border: 2px solid #999;
  border-radius: 25px;
  line-height: 30px; }
  .p-hokoOffice__block__button > a {
    display: block;
    position: relative;
    width: 100%;
    text-align: center; }
    .p-hokoOffice__block__button > a::after {
      top: 0 !important; }

.p-hokoOffice__spec__heading {
  position: relative;
  margin-top: -2px;
  padding: 16px;
  border: 2px solid #999999;
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .14em; }
  .p-hokoOffice__spec__heading::after, .p-hokoOffice__spec__heading::before {
    display: block;
    position: absolute;
    top: 46%;
    right: 15px;
    width: 13px;
    border-bottom: 2px solid #dc0000;
    content: ""; }
  .p-hokoOffice__spec__heading::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  .p-hokoOffice__spec__heading.is-open::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

.p-hokoCsr .p-hokoOffice__spec__heading {
  text-align: center; }

.p-hokoCsr__flexItem__right > img {
  display: block;
  max-width: 100%;
  margin: 0 auto; }

.p-hokoCsr__achievement {
  border: solid 2px #ededed; }

.p-hokoCsr__achievement__title {
  color: #444;
  font-weight: bold; }

.p-hokoCsr__achievement__summary {
  color: #444; }

.p-hokoCsr__achievement__img > img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 0 auto; }

.p-hokoCsr__strongText {
  color: #dc0000; }

.p-hokoCsr__policy__img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  text-align: center; }

.p-hokoCsr__textList > dt {
  font-weight: bold; }
  .p-hokoCsr__textList > dt .-decoration {
    color: #009ee5; }

.p-hokoCsr__table__title {
  margin: 0; }

.p-hokoCsr__table .c-table {
  margin-top: 11px; }

.p-hokoCsr__community__item {
  text-align: center; }
  .p-hokoCsr__community__item > img {
    display: block;
    max-width: 100%; }

.p-hokoCsr__discList > li {
  font-weight: bold;
  list-style-position: inside;
  list-style-type: disc; }
  .p-hokoCsr__discList > li + li {
    margin-top: 3px; }

.p-hokoCsr__bgSummary {
  background-color: #ededed; }

.p-hokoCsr__img {
  text-align: center; }
  .p-hokoCsr__img:not(.-plant) > img {
    border: solid 2px #ededed; }
  .p-hokoCsr__img > img.-border {
    padding: 10px;
    border: solid 2px #ededed; }
  .p-hokoCsr__img > img {
    width: auto;
    max-width: 100%; }

.p-forBusinessContact__block {
  background-color: #fff;
  text-align: center; }
  .p-forBusinessContact__block .c-buttonBorder::after {
    content: ''; }

.p-forBusinessContact__heading {
  margin-bottom: 20px;
  background-position: left center;
  background-repeat: no-repeat;
  font-weight: bold; }
  .p-forBusinessContact__heading.-mail {
    background-image: url(/files/user/assets/images/icon/mail.svg?v=1575005303); }
  .p-forBusinessContact__heading.-tel {
    background-image: url(/files/user/assets/images/icon/tel.svg?v=1575005303); }

.p-forBusinessContact__emphasis {
  margin: 0;
  font-weight: bold; }

.p-forBusinessContact__note {
  margin: 5px 0 0;
  font-weight: bold; }

.p-forBusinessTop__category {
  background: url(/files/user/assets/images/for_business_use/bg_category.png?v=1583803188) no-repeat;
  background-size: cover; }

.p-infoDetail .c-infoListItem__date {
  letter-spacing: 2px; }

.p-infoDetail__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .p-infoDetail__date .c-infoListItem__category {
    text-align: center; }

.p-infoDetail__block > .c-blockSubTitle {
  margin-bottom: 20px; }

.p-infoDetail > .c-formButton, .p-infoDetail > .c-buttonBack {
  position: relative; }

.p-infoDetail__read .-decoration {
  color: #dc0000; }

.p-info__archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.p-info__select > select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #999;
  border-radius: 0;
  background: none;
  cursor: pointer; }

.p-info__button > button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  border: 2px solid #dc0000;
  border-radius: 28px;
  background: none;
  color: #dc0000;
  font-weight: bold;
  text-align: center;
  cursor: pointer; }
  .p-info__button > button:hover {
    background-color: #dc0000;
    color: #fff; }

.p-info .c-pager-wrap {
  margin-top: 30px; }

.p-inquiry-faq p:not([class]) {
  margin: 0; }

.p-inquiry-faq__list {
  border-bottom: 1px solid #999999; }

.p-inquiry-faq__button {
  position: relative;
  margin: auto; }
  .p-inquiry-faq__button:hover {
    color: #dc0000; }
  .p-inquiry-faq__button::after {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    border-top: 2px solid #dc0000;
    border-right: 2px solid #dc0000;
    content: ""; }

.p-inquiry-faqDetail__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .p-inquiry-faqDetail__heading::before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold; }
  .p-inquiry-faqDetail__heading.-question::before {
    background-color: #dc0000;
    color: #fff;
    content: "Q"; }
  .p-inquiry-faqDetail__heading.-answer::before {
    border: 2px solid #dc0000;
    color: #dc0000;
    content: "A"; }

.p-inquiry-faqDetail__image {
  text-align: center; }
  .p-inquiry-faqDetail__image img {
    max-width: 100%;
    border-radius: 10px; }

.p-inquiry p:not([class]) {
  margin: 0; }

.p-inquiry__tel {
  background: url(/files/user/assets/images/icon/tel.svg?v=1575005303) no-repeat left center; }

.p-inquiry__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px; }
  .p-inquiry__buttonList li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%; }

.p-productDetail__feature {
  border-bottom: 1px solid #ccc; }

.p-productDetail__recommend:first-of-type {
  margin-bottom: 80px; }

.p-productDetail__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.p-productDetail__title__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px; }

.p-productDetail__title__category {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto; }

.p-productDetail__mainVisual {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  border: 1px solid #eee;
  border-radius: 10px; }
  .p-productDetail__mainVisual img {
    max-width: 100%;
    border-radius: 10px; }

.p-productDetail__spec p:not([class]) {
  margin: 0; }

.p-productDetail__spec__heading {
  background-color: #fff;
  color: #005aa5;
  font-weight: bold;
  letter-spacing: .14em; }
  .p-productDetail__spec__headingList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

.p-productDetail__spec__subHeading {
  margin-bottom: 10px;
  font-weight: bold; }

.p-productDetail__spec__content .js-tab-target:not(.is-current) {
  display: none; }

.p-productDetail__spec__nutrition {
  margin-top: 10px; }

.p-productDetail__spec__allergy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc; }
  .p-productDetail__spec__allergy li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    text-align: center; }
    .p-productDetail__spec__allergy li:nth-of-type(5n) {
      border-right: 1px solid #ccc; }
    .p-productDetail__spec__allergy li.is-use {
      background-color: #fcebeb;
      font-weight: bold; }

.p-productDetail__slider__item {
  border: 1px solid #eee;
  border-radius: 10px; }
  .p-productDetail__slider__item img {
    max-width: 100%;
    border-radius: 10px; }

.p-productDetail__sliderThumb {
  width: 100%;
  margin-top: 6px; }
  .p-productDetail__sliderThumb__item {
    width: 70px !important;
    height: 52px;
    margin-top: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    outline: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer; }
    .p-productDetail__sliderThumb__item:not(:first-of-type) {
      margin-left: 6px; }
    .p-productDetail__sliderThumb__item.slick-current {
      position: relative;
      border-color: #dc0000; }
      .p-productDetail__sliderThumb__item.slick-current::before {
        display: block;
        z-index: 100;
        position: absolute;
        top: -6px;
        left: 50%;
        width: 6px;
        height: 6px;
        -webkit-transform: translate(-50%, 0) rotate(45deg);
        transform: translate(-50%, 0) rotate(45deg);
        border: 6px solid transparent;
        border-top: 6px solid #dc0000;
        border-left: 6px solid #dc0000;
        content: ""; }
  .p-productDetail__sliderThumb .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0; }

.p-productDetail__sliderNav {
  display: block;
  width: 45px;
  margin: 15px auto;
  padding: 4px 8px;
  background-color: #ededed;
  text-align: center; }

.p-productDetail__summary {
  line-height: 1.8; }
  .p-productDetail__summary__catch {
    display: inline-block;
    background-color: #fff5be;
    font-weight: bold; }
    .p-productDetail__summary__catch.-emphasis {
      color: #dc0000; }
  .p-productDetail__summary__inner:not(:first-of-type) {
    margin-top: 12px; }

.p-recipeDetail {
  background: url(/files/user/assets/images/recipe/bg_square.png?v=1575277529) repeat;
  color: #5b3627; }
  .p-recipeDetail__sns .-copy {
    position: relative; }
  .p-recipeDetail__title {
    position: relative; }
    .p-recipeDetail__title::after {
      display: block;
      position: absolute;
      top: 0;
      left: 20px;
      height: 62px;
      background: url(/files/user/assets/images/icon/fork_pink.svg?v=1575005303) no-repeat;
      background-size: 14px;
      content: ""; }
    .p-recipeDetail__title::before {
      display: block;
      position: absolute;
      left: 0;
      height: 62px;
      background: url(/files/user/assets/images/icon/spoon_blue.svg?v=1575005303) no-repeat top 10px left;
      content: ""; }
  .p-recipeDetail__summary__image img {
    display: block;
    width: auto;
    max-width: 100%;
    border-radius: 10px; }
  .p-recipeDetail__summary__text p {
    margin: 10px 0 0; }
  .p-recipeDetail__summary__table {
    position: relative; }
    .p-recipeDetail__summary__table dt::before {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      content: ""; }
    .p-recipeDetail__summary__table dd {
      font-weight: bold; }
    .p-recipeDetail__summary__table.-time {
      background-color: #f0faee; }
      .p-recipeDetail__summary__table.-time dt::before {
        background: url(/files/user/assets/images/icon/time.svg?v=1575005303) no-repeat center center #7bc770;
        background-size: 17px; }
      .p-recipeDetail__summary__table.-time dd {
        color: #305d11; }
    .p-recipeDetail__summary__table.-calorie {
      background-color: #fff3f3; }
      .p-recipeDetail__summary__table.-calorie dt::before {
        background: url(/files/user/assets/images/icon/calorie.svg?v=1575005303) no-repeat center center #ff8a8a;
        background-size: 14px; }
      .p-recipeDetail__summary__table.-calorie dd {
        color: #931d10; }
    .p-recipeDetail__summary__table.-salt {
      background-color: #eef4f9; }
      .p-recipeDetail__summary__table.-salt dt::before {
        background: url(/files/user/assets/images/icon/salt.svg?v=1575005303) no-repeat center center #67a8de;
        background-size: 14px; }
      .p-recipeDetail__summary__table.-salt dd {
        color: #105184; }
  .p-recipeDetail__summary__note {
    text-align: right; }
  .p-recipeDetail__product__inner {
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 8px rgba(95, 72, 72, 0.2);
    box-shadow: 0 4px 8px rgba(95, 72, 72, 0.2); }
  .p-recipeDetail__product__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: url(/files/user/assets/images/recipe/heading_item_bg.png?v=1575277529) no-repeat left top;
    background-size: contain; }
    .p-recipeDetail__product__heading__outer {
      position: absolute;
      top: -30px;
      left: 0; }
    .p-recipeDetail__product__heading::before {
      display: block;
      background: url(/files/user/assets/images/icon/cooking.svg?v=1575001951) no-repeat left top;
      background-size: contain;
      content: ""; }
  .p-recipeDetail__product__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .p-recipeDetail__product__item__image {
      margin-right: 15px;
      padding: 10px;
      border: 1px solid #ededed;
      border-radius: 10px;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
      .p-recipeDetail__product__item__image:hover {
        opacity: 0.8; }
      .p-recipeDetail__product__item__image img {
        border-radius: 10px; }
    .p-recipeDetail__product__item__title {
      margin: 0; }
  .p-recipeDetail__howto {
    position: relative; }
    .p-recipeDetail__howto::before, .p-recipeDetail__howto::after {
      display: block;
      z-index: 10;
      position: absolute;
      content: ""; }
    .p-recipeDetail__howto::before {
      background: url(/files/user/assets/images/recipe/ribbon_top.png?v=1575277531) no-repeat left top;
      background-size: contain; }
    .p-recipeDetail__howto::after {
      background: url(/files/user/assets/images/recipe/ribbon_bottom.png?v=1575277531) no-repeat right bottom;
      background-size: contain; }
    .p-recipeDetail__howto__subHeading {
      color: #ff8a8a;
      font-weight: bold; }
      .-howto .p-recipeDetail__howto__subHeading {
        margin-top: 0; }
      .-noFlex .p-recipeDetail__howto__subHeading {
        margin-bottom: 10px; }
    .p-recipeDetail__howto__list:not(:last-of-type) {
      margin-bottom: 30px; }
    .p-recipeDetail__howto__list li {
      padding: 15px 0;
      border-bottom: 1px solid #e3cdc4; }
      .p-recipeDetail__howto__list li p {
        margin: 0; }
      .p-recipeDetail__howto__list li a {
        text-decoration: underline; }
        .p-recipeDetail__howto__list li a::after {
          display: inline-block;
          width: 10px;
          height: 10px;
          margin-left: 10px;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          border-top: 2px solid #dc0000;
          border-right: 2px solid #dc0000;
          content: ""; }
    .p-recipeDetail__howto__list.-material {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 15px 0;
      border-bottom: 1px solid #e3cdc4; }
      .p-recipeDetail__howto__list.-material > a {
        text-decoration: underline; }
        .p-recipeDetail__howto__list.-material > a::after {
          display: inline-block;
          width: 10px;
          height: 10px;
          margin-left: 10px;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          border-top: 2px solid #dc0000;
          border-right: 2px solid #dc0000;
          content: ""; }
      .p-recipeDetail__howto__list.-material:not(:last-of-type) {
        margin-bottom: 0; }
      .p-recipeDetail__howto__list.-material div:first-child {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1; }
      .p-recipeDetail__howto__list.-material div:last-of-type {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
        flex: 0 0 100px;
        margin-left: 10px;
        text-align: right; }
      .p-recipeDetail__howto__subHeading ~ .-material:not(.-single-item) {
        position: relative;
        padding-left: 12px; }
        .p-recipeDetail__howto__subHeading ~ .-material:not(.-single-item) > div::before, .p-recipeDetail__howto__subHeading ~ .-material:not(.-single-item) > a::before {
          position: absolute;
          top: 15px;
          left: 0;
          content: '-'; }
    .p-recipeDetail__howto__list.-single-item + .p-recipeDetail__howto__list.-single-item {
      margin-top: 0; }
    .p-recipeDetail__howto__list.-howto li:not(.-noFlex) {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .p-recipeDetail__howto__list.-howto li:not(.-noFlex) h3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25px;
        flex: 0 0 25px; }
  .p-recipeDetail__copy {
    position: relative; }

.p-recipeSearch__data__text {
  color: #e60012;
  font-weight: bold; }

.p-recipeSearch__data__result {
  margin-top: 30px;
  padding-top: 39px;
  border-top: 4px dotted #e3cdc4; }

.p-recipeSearch__data__result .c-recipeSeach__filter__result {
  color: #5b3627; }
  .p-recipeSearch__data__result .c-recipeSeach__filter__result span {
    margin-right: 5px;
    margin-left: 8px; }

.p-recipeSearch__data__result .c-formButton__outer {
  width: auto;
  margin: 0; }

.p-searchResult {
  padding-top: 30px; }
  .p-searchResult .c-pager-wrap {
    margin-bottom: 38px; }
  .p-searchResult .c-pager-wrap ~ .c-pager-wrap {
    margin-top: 41px; }
  .p-searchResult .c-recipe__list.-column3 {
    padding-bottom: 0; }
  .p-searchResult .c-recipe__list.-column2 {
    padding-bottom: 0; }

.p-recipeTop__newest {
  background-image: url(/files/user/assets/images/top/recipe_bg.png?v=1585550551);
  background-repeat: no-repeat;
  background-size: cover; }
  .p-recipeTop__newest .c-recipeListItem__inner {
    background: url(/files/user/assets/images/recipe/bg_square.png?v=1575277529) repeat; }

.p-recipe-hedding {
  padding-bottom: 35px; }

.p-recipe-hedding .slick-prev, .p-recipe-hedding .slick-next {
  top: 39px; }

.p-recruit-top__sliderHero__inner {
  position: relative; }

.p-recruit-top__sliderHero__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.8); }
  .p-recruit-top__sliderHero__text .-top {
    font-weight: bold; }
  .p-recruit-top__sliderHero__text .-heading {
    font-family: 'Viga', sans-serif;
    line-height: 1.2; }
  .p-recruit-top__sliderHero__text .-bottom {
    font-weight: bold; }
  .p-recruit-top__sliderHero__text span {
    color: #dc0000; }

.p-recruit-top__heading {
  text-align: center; }

.p-recruit-top__subHeading {
  display: block;
  color: #dc0000;
  font-family: 'Viga', sans-serif;
  text-align: center; }

.p-recruit-top__nav__item {
  position: relative;
  overflow: hidden; }
  .p-recruit-top__nav__item img {
    width: 100%;
    -webkit-transition: .2s;
    transition: .2s; }
  .p-recruit-top__nav__item:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }

.p-recruit-top__nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%; }
  .p-recruit-top__nav__link::before {
    display: block;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    content: ""; }

.p-recruit-top__nav__title {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: .05em;
  text-align: center; }

.p-recruit { }
  .p-recruit-layout p {
    margin: 0; }
  .p-recruit-header--noMargin {
    margin-bottom: 0 !important; }
  .p-recruit-header__inner {
    height: 100%; }
  .p-recruit-headerLogo img {
    height: auto; }
  .p-recruit-headerLogo a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto !important; }
  .p-recruit-headerLogo__title {
    margin-left: 16px;
    font-family: 'Viga', sans-serif;
    font-weight: bold;
    letter-spacing: .06em; }
  .p-recruit-headerNav__item {
    height: 100% !important; }
    .p-recruit-headerNav__item > a:hover {
      border-bottom: 4px solid #dc0000 !important; }
    .p-recruit-headerNav__item.-parent.isActive > a {
      border-bottom: 4px solid #dc0000 !important; }
  .p-recruit-entry__step li {
    position: relative;
    border: 1px solid #dc0000;
    border-radius: 10px; }
    .p-recruit-entry__step li:not(:first-of-type)::before {
      display: block;
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(135deg);
      transform: translate(-50%, -50%) rotate(135deg);
      border-top: 4px solid #dc0000;
      border-right: 4px solid #dc0000;
      content: ""; }
  .p-recruit-entry__step__heading {
    color: #dc0000; }
  .p-recruit-entry__mypage__heading {
    letter-spacing: .04em; }
  .p-recruit-entry__mypage__button {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .p-recruit-entry__mypage__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .p-recruit-entry__mypage__step li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      z-index: 10;
      position: relative;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      height: 90px;
      color: #fff;
      text-align: center; }
      .p-recruit-entry__mypage__step li:first-child {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 22%; }
      .p-recruit-entry__mypage__step li:not(:first-child) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 26%; }
        .p-recruit-entry__mypage__step li:not(:first-child)::before, .p-recruit-entry__mypage__step li:not(:first-child)::after {
          display: block;
          position: absolute;
          width: 1px;
          height: 90px;
          content: ""; }
        .p-recruit-entry__mypage__step li:not(:first-child)::before {
          z-index: 20;
          top: -15px;
          left: 0;
          border: 60px solid transparent;
          border-left: 20px solid #fff; }
        .p-recruit-entry__mypage__step li:not(:first-child)::after {
          z-index: 30;
          top: 0;
          left: 0;
          border: 45px solid transparent; }
      .p-recruit-entry__mypage__step li:first-child {
        background-color: #fa8d8d; }
      .p-recruit-entry__mypage__step li:nth-of-type(2) {
        background-color: #fb6d6d; }
        .p-recruit-entry__mypage__step li:nth-of-type(2)::after {
          border-left: 14px solid #fa8d8d; }
      .p-recruit-entry__mypage__step li:nth-of-type(3) {
        background-color: #ee3e3e; }
        .p-recruit-entry__mypage__step li:nth-of-type(3)::after {
          border-left: 14px solid #fb6d6d; }
      .p-recruit-entry__mypage__step li:last-child {
        background-color: #dc0000; }
        .p-recruit-entry__mypage__step li:last-child::after {
          border-left: 14px solid #ee3e3e; }
  .p-recruit-message__hr {
    background-color: #f7f5e9; }
    .p-recruit-message__hr__list li:not(:first-child) {
      margin-top: 20px; }
    .p-recruit-message__hr__list li h3 {
      margin-bottom: 10px;
      color: #dc0000;
      font-weight: bold; }
  .p-recruit-job__table dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent; }
  .p-recruit-about__section {
    margin-bottom: 40px; }
  .p-recruit-about__heading--lv3 {
    padding-bottom: 12px;
    font-weight: bold; }
  .p-recruit-about__gallery {
    max-width: 860px;
    margin: 0 auto; }
    .p-recruit-about__gallery__item {
      text-align: center; }
      .p-recruit-about__gallery__item > img {
        display: block;
        max-width: 100%; }
  .p-recruit-about__button {
    display: block;
    width: 300px;
    height: 50px;
    margin: auto;
    margin-top: 80px;
    padding: 0 50px; }
  .p-recruit-about__slider {
    margin-top: 100px; }
  .p-recruit-data {
    margin-top: 75px;
    margin-bottom: 75px;
    padding: 50px;
    padding-top: 0;
    background-color: #f7f5e9;
    text-align: center; }
    .l-container__row .p-recruit-data {
      margin-top: 35px;
      margin-bottom: 35px; }
    .l-container__row .l-container__col--50 {
      max-width: 49%; }
    .p-recruit-data .-marginTop30 {
      margin-top: 30px; }
    .p-recruit-data__pragnant {
      display: block !important;
      max-width: 350px;
      margin: 0 auto; }
    .p-recruit-data__sexIndex {
      width: 100%;
      max-width: 308px; }
    .p-recruit-data__notes {
      font-weight: normal; }
    .p-recruit-data__content {
      text-align: left; }
      .p-recruit-data__content-col {
        padding: 0 30px;
        border-right: 2px solid #bcbab2; }
        .p-recruit-data__content-col:last-child {
          border: none; }
        .p-recruit-data__content-col:only-child {
          border: none; }
        .p-recruit-data__content-col.l-container__col--50 {
          -webkit-box-flex: 1;
          -ms-flex: 1 49%;
          flex: 1 49%; }
        .p-recruit-data__content-col-inner {
          display: inline-block;
          margin: 0 auto; }
          .p-recruit-data__content .l-container__col--50:last-child .p-recruit-data__content-col-inner {
            padding-bottom: 0;
            border: none; }
        .p-recruit-data__content-col-inner-noborder {
          display: inline-block;
          margin: 0 auto; }
      .p-recruit-data__content-product {
        width: 100%;
        margin-bottom: 10px;
        border-bottom: dotted #999999;
        border-width: 3px;
        border-bottom-style: dotted; }
        _:-ms-lang(x), .p-recruit-data__content-product-wrap {
          display: inline-block; }
        .p-recruit-data__content-product .-title {
          padding-top: 25px; }
        .p-recruit-data__content .p-recruit-data__content-product:last-child {
          margin-bottom: 0; }
      .p-recruit-data__content-title {
        color: #dc0000;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        line-height: 1.2em; }
      .p-recruit-data__content-img {
        width: auto;
        max-width: 100%;
        padding-right: 35px;
        float: left; }
        .p-recruit-data__content-img_maxWidth {
          display: block;
          width: auto;
          max-width: 100%;
          margin: 0 auto; }
      .p-recruit-data__content-text {
        display: inline-block;
        font-weight: bold;
        line-height: 1em; }
        .p-recruit-data__content-text.-text01 {
          padding-top: 15px; }
        .p-recruit-data__content-text .center {
          display: block;
          text-align: center; }
        .p-recruit-data__content-text .right {
          display: block;
          text-align: right; }
        .p-recruit-data__content-text .top15 {
          display: block;
          padding-top: 15px; }
        .p-recruit-data__content-text .-paddingBoth {
          padding: 0 3px; }
        .p-recruit-data__content-text .-paddingLeft {
          padding-left: 6px; }
        .p-recruit-data__content-text .-block {
          display: block; }
    .p-recruit-data__section {
      margin-bottom: 30px;
      padding-top: 30px; }
    .p-recruit-data__heading {
      display: inline-block;
      position: relative;
      top: -28px;
      min-width: 144px;
      padding: 10px;
      background: #333333;
      color: #fff;
      letter-spacing: .07em; }
      .p-recruit-data__heading::before {
        position: absolute;
        right: 0%;
        bottom: -11px;
        left: 0;
        width: 10px;
        height: 12px;
        margin: 0 auto;
        -webkit-transform: translate(-5px, 0);
        transform: translate(-5px, 0);
        background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #333 55%);
        content: " "; }
      .p-recruit-data__heading::after {
        position: absolute;
        right: 0%;
        bottom: -10px;
        left: 0;
        width: 10px;
        height: 12px;
        margin: 0 auto;
        -webkit-transform: translate(5px, 0);
        transform: translate(5px, 0);
        background: linear-gradient(140deg, #333333 50%, rgba(0, 0, 0, 0) 55%);
        content: " "; }
    .p-recruit-data__message {
      margin-top: 52px;
      padding: 32px;
      background: #fff;
      text-align: left; }
    .p-recruit-data__img--01, .p-recruit-data__img--02, .p-recruit-data__img--03, .p-recruit-data__img--04, .p-recruit-data__img--05, .p-recruit-data__img--06, .p-recruit-data__img--07, .p-recruit-data__img--08, .p-recruit-data__img--09, .p-recruit-data__img--10, .p-recruit-data__img--11 {
      display: block;
      max-width: 100%;
      margin: 20px auto 0;
      background-image: url("/files/user/assets/images/recruit/recruit-data-vector.png");
      background-size: 100%; }
    .p-recruit-data__img--01 {
      max-width: 823px;
      background-position: 0 14.15%;
      background-size: 107%; }
    .p-recruit-data__img--02 {
      max-width: 779px;
      background-position: 0 24.823529%;
      background-size: 113.350449%; }
    .p-recruit-data__img--03 {
      max-width: 779px;
      background-position: -0 -0.05%;
      background-size: 100%; }
    .p-recruit-data__img--04 {
      max-width: 817px;
      background-position: 0 19.604111%;
      background-size: 108.078335%; }
    .p-recruit-data__img--05 {
      max-width: 284px;
      background-position: 0 53.222537%;
      background-size: 310.915493%; }
    .p-recruit-data__img--06 {
      max-width: 327px;
      background-position: 0 41.622503%;
      background-size: 270.030581%; }
    .p-recruit-data__img--07 {
      max-width: 150px;
      background-position: 0 100%;
      background-size: 588.666667%; }
    .p-recruit-data__img--08 {
      max-width: 185px;
      background-position: 0 76.420455%;
      background-size: 477.297297%; }
    .p-recruit-data__img--09 {
      max-width: 704px;
      background-position: 0 32.445141%;
      background-size: 125.426136%; }
    .p-recruit-data__img--10 {
      max-width: 271px;
      background-position: 0 64.859356%;
      background-size: 325.830258%; }
    .p-recruit-data__img--11 {
      max-width: 160px;
      background-position: 0 88.218508%;
      background-size: 551.875%; }
  .p-recruit-education__graph {
    position: relative;
    margin: 60px 0; }
    .p-recruit-education__graph::before {
      display: inline-block;
      position: absolute;
      top: 4px;
      left: 0;
      border-width: 7.5px 13px 7.5px 0;
      border-style: solid;
      border-color: rgba(0, 0, 0, 0) #dc0000 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); }
    .p-recruit-education__graph::after {
      display: inline-block;
      position: absolute;
      top: 4px;
      left: 23px;
      border-width: 7.5px 0 7.5px 13px;
      border-style: solid;
      border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #dc0000; }
    .p-recruit-education__graph img {
      width: auto; }
    .p-recruit-education__graph--spNote {
      display: none;
      padding-bottom: 15px;
      padding-left: 47px;
      font-size: 15px; }
  .p-recruit-education__heading {
    font-weight: bold; }
    .p-recruit-education__heading--bullet {
      padding: 8px 0 8px 26px;
      background: -webkit-gradient(linear, left top, right top, from(#f15555), to(#f15555));
      background: linear-gradient(to right, #f15555 0%, #f15555 100%);
      background-position: left;
      background-repeat: no-repeat;
      background-size: 16px 8px; }
  .p-recruit-education__col {
    padding-bottom: 40px; }
  .p-recruit-education__bg--grey {
    margin-top: 30px;
    padding: 30px;
    background: #fafafa; }
    .p-recruit-education__bg--grey p {
      margin: 18px 0; }
  .p-recruit-interview {
    margin-top: 35px; }
    .p-recruit-interview__top {
      margin-top: 69px !important; }
      .p-recruit-interview__top__name {
        font-weight: bold; }
        .p-recruit-interview__top__name--sirName {
          padding-left: 15px; }
        .p-recruit-interview__top__list--item a:hover .p-recruit-interview__top__name {
          color: #dc0000; }
      .p-recruit-interview__top__content {
        padding: 20px 17px; }
      .p-recruit-interview__top__detail {
        padding-top: 20px; }
        .p-recruit-interview__top__list--item a:hover .p-recruit-interview__top__detail {
          color: #dc0000; }
      .p-recruit-interview__top__list.-column3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 100px; }
      .p-recruit-interview__top__list--item {
        background: -webkit-gradient(linear, left top, left bottom, from(#dc0000), to(#dc0000));
        background: linear-gradient(to bottom, #dc0000 0%, #dc0000 100%);
        background-position: left;
        background-repeat: no-repeat;
        background-size: 3px 100%; }
      .p-recruit-interview__top__thumbnail {
        max-width: 100%;
        overflow: hidden; }
        .p-recruit-interview__top__thumbnail img {
          width: 100%;
          -webkit-transition: .2s;
          transition: .2s; }
        .p-recruit-interview__top__list--item a:hover img {
          -webkit-transform: scale(1.05);
          transform: scale(1.05); }
  .p-recruit-interviewDetail__banner {
    position: relative;
    height: 100%;
    max-height: 480px;
    margin-bottom: 60px;
    overflow: hidden; }
    .p-recruit-interviewDetail__banner::before {
      display: block;
      z-index: 1;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.15);
      content: ""; }
    .p-recruit-interviewDetail__banner img {
      width: 100%; }
    .p-recruit-interviewDetail__banner--heading {
      display: block;
      z-index: 2;
      position: absolute;
      top: 50%;
      right: 0;
      left: 0;
      width: 100%;
      max-width: 980px;
      margin: 0 auto;
      -webkit-transform: translateY(-40px);
      transform: translateY(-40px);
      color: #fff; }
    .p-recruit-interviewDetail__banner__content {
      position: relative;
      height: 100%; }
  .p-recruit-interviewDetail__intro {
    padding: 20px 0 20px 35px;
    border-left: 4px solid #dc0000; }
    .p-recruit-interviewDetail__intro__name {
      font-weight: bold; }
      .p-recruit-interviewDetail__intro__name--eng {
        padding-left: 29px;
        color: #dc0000; }
      .p-recruit-interviewDetail__intro__name--sirName {
        padding-left: 30px; }
    .p-recruit-interviewDetail__intro__company {
      margin: 0;
      margin-top: 34px; }
    .p-recruit-interviewDetail__intro--year {
      display: block; }
    .p-recruit-interviewDetail__intro__writeup {
      margin: 0;
      margin-top: 47px; }
  .p-recruit-interviewDetail__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 430px;
    height: 75px;
    margin: 0 auto;
    margin-top: 100px;
    padding: 0 30px; }
    .p-recruit-interviewDetail__btn.c-buttonBorder {
      border: 4px solid #dc0000;
      border-radius: 40px; }
      .p-recruit-interviewDetail__btn.c-buttonBorder.-arrow::after {
        width: 15px;
        height: 15px;
        border-top: 3px solid #dc0000;
        border-right: 3px solid #dc0000; }
    .p-recruit-interviewDetail__btn:hover.-arrow::after {
      border-color: #fff; }
  .p-recruit-interviewDetail__description__section {
    margin-top: 95px; }
  .p-recruit-interviewDetail__description__content::after {
    display: block;
    width: 100%;
    clear: both;
    content: ""; }
  .p-recruit-interviewDetail__description__image {
    width: 100%;
    max-width: 490px;
    margin-bottom: 60px; }
    .p-recruit-interviewDetail__description__image.-left {
      margin-right: 60px;
      float: left; }
    .p-recruit-interviewDetail__description__image.-right {
      margin-left: 60px;
      float: right; }
    .p-recruit-interviewDetail__description__image.-center {
      max-width: inherit;
      margin-bottom: 0; }
  .p-recruit-interviewDetail__description__heading {
    margin-bottom: 42px;
    letter-spacing: .15em;
    text-align: center; }
    .p-recruit-interviewDetail__description__heading.-colorRed {
      color: #dc0000; }
  .p-recruit-interviewDetail__description__writeup {
    padding-top: 40px;
    line-height: 36px; }
  .p-recruit-story__container {
    position: relative;
    width: 100%;
    max-width: 1090px;
    margin: 0 auto; }
  .p-recruit-story__flex--row .-order_01 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .p-recruit-story__flex--row .-order_02 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .p-recruit-story__flex--row .-order_03 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-right: 0; }
  .p-recruit-story__flex--row .-order_04 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .p-recruit-story__hero {
    margin-top: 50px;
    background: -webkit-gradient(linear, left top, left bottom, from(#f7f5e9), to(#f7f5e9));
    background: linear-gradient(to bottom, #f7f5e9 0%, #f7f5e9 100%);
    background-position: bottom;
    background-size: 100% 292.5px; }
    .p-recruit-story__hero--heading {
      margin-top: 40px;
      line-height: 1.6em; }
    .p-recruit-story__hero--slogan {
      margin: 0;
      font-size: 20px;
      letter-spacing: .15em; }
    .p-recruit-story__hero--intro {
      max-width: 980px;
      margin: 0;
      padding-top: 61px;
      padding-bottom: 74px;
      letter-spacing: .15em; }
  .p-recruit-story__color--section:nth-of-type(6n+1) .-colorBg {
    background: #42b9cf; }
    .p-recruit-story__color--section:nth-of-type(6n+1) .-colorBg::before {
      background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #42b9cf 55%); }
    .p-recruit-story__color--section:nth-of-type(6n+1) .-colorBg::after {
      background: linear-gradient(140deg, #42b9cf 50%, rgba(0, 0, 0, 0) 55%); }
  .p-recruit-story__color--section:nth-of-type(6n+1) .-colorText {
    color: #42b9cf; }
  .p-recruit-story__color--section:nth-of-type(6n+2) .-colorBg {
    background: #71c03c; }
    .p-recruit-story__color--section:nth-of-type(6n+2) .-colorBg::before {
      background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #71c03c 55%); }
    .p-recruit-story__color--section:nth-of-type(6n+2) .-colorBg::after {
      background: linear-gradient(140deg, #71c03c 50%, rgba(0, 0, 0, 0) 55%); }
  .p-recruit-story__color--section:nth-of-type(6n+2) .-colorText {
    color: #71c03c; }
  .p-recruit-story__color--section:nth-of-type(6n+3) .-colorBg {
    background: #f68122; }
    .p-recruit-story__color--section:nth-of-type(6n+3) .-colorBg::before {
      background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #f68122 55%); }
    .p-recruit-story__color--section:nth-of-type(6n+3) .-colorBg::after {
      background: linear-gradient(140deg, #f68122 50%, rgba(0, 0, 0, 0) 55%); }
  .p-recruit-story__color--section:nth-of-type(6n+3) .-colorText {
    color: #f68122; }
  .p-recruit-story__color--section:nth-of-type(6n+4) .-colorBg {
    background: #9461af; }
    .p-recruit-story__color--section:nth-of-type(6n+4) .-colorBg::before {
      background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #9461af 55%); }
    .p-recruit-story__color--section:nth-of-type(6n+4) .-colorBg::after {
      background: linear-gradient(140deg, #9461af 50%, rgba(0, 0, 0, 0) 55%); }
  .p-recruit-story__color--section:nth-of-type(6n+4) .-colorText {
    color: #9461af; }
  .p-recruit-story__color--section:nth-of-type(6n+5) .-colorBg {
    background: #da6bac; }
    .p-recruit-story__color--section:nth-of-type(6n+5) .-colorBg::before {
      background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #da6bac 55%); }
    .p-recruit-story__color--section:nth-of-type(6n+5) .-colorBg::after {
      background: linear-gradient(140deg, #da6bac 50%, rgba(0, 0, 0, 0) 55%); }
  .p-recruit-story__color--section:nth-of-type(6n+5) .-colorText {
    color: #da6bac; }
  .p-recruit-story__color--section:nth-of-type(6n+6) .-colorBg {
    background: #3763a6; }
    .p-recruit-story__color--section:nth-of-type(6n+6) .-colorBg::before {
      background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #3763a6 55%); }
    .p-recruit-story__color--section:nth-of-type(6n+6) .-colorBg::after {
      background: linear-gradient(140deg, #3763a6 50%, rgba(0, 0, 0, 0) 55%); }
  .p-recruit-story__color--section:nth-of-type(6n+6) .-colorText {
    color: #3763a6; }
  .p-recruit-story__text--seablue {
    color: #42b9cf; }
  .p-recruit-story__text--green {
    color: #71c03c; }
  .p-recruit-story__text--orange {
    color: #f68122; }
  .p-recruit-story__text--purple {
    color: #9461af; }
  .p-recruit-story__text--pink {
    color: #da6bac; }
  .p-recruit-story__text--darkblue {
    color: #3763a6; }
  .p-recruit-story__member {
    margin-top: 69px !important; }
    .p-recruit-story__member__position {
      position: relative;
      margin-bottom: 19px;
      padding: 22px;
      color: #fff; }
      .p-recruit-story__member__position::before {
        position: absolute;
        right: 0%;
        bottom: -11px;
        left: 0;
        width: 10px;
        height: 12px;
        margin: 0 auto;
        -webkit-transform: translate(-5px, 0);
        transform: translate(-5px, 0);
        background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #333333 55%);
        content: " "; }
      .p-recruit-story__member__position::after {
        position: absolute;
        right: 0%;
        bottom: -10px;
        left: 0;
        width: 10px;
        height: 12px;
        margin: 0 auto;
        -webkit-transform: translate(5px, 0);
        transform: translate(5px, 0);
        background: linear-gradient(140deg, #333333 50%, rgba(0, 0, 0, 0) 55%);
        content: " "; }
      .p-recruit-story__member__position.-seablue {
        background: #42b9cf; }
        .p-recruit-story__member__position.-seablue::before {
          background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #42b9cf 55%); }
        .p-recruit-story__member__position.-seablue::after {
          background: linear-gradient(140deg, #42b9cf 50%, rgba(0, 0, 0, 0) 55%); }
      .p-recruit-story__member__position.-green {
        background: #71c03c; }
        .p-recruit-story__member__position.-green::before {
          background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #71c03c 55%); }
        .p-recruit-story__member__position.-green::after {
          background: linear-gradient(140deg, #71c03c 50%, rgba(0, 0, 0, 0) 55%); }
      .p-recruit-story__member__position.-orange {
        background: #f68122; }
        .p-recruit-story__member__position.-orange::before {
          background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #f68122 55%); }
        .p-recruit-story__member__position.-orange::after {
          background: linear-gradient(140deg, #f68122 50%, rgba(0, 0, 0, 0) 55%); }
      .p-recruit-story__member__position.-purple {
        background: #9461af; }
        .p-recruit-story__member__position.-purple::before {
          background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #9461af 55%); }
        .p-recruit-story__member__position.-purple::after {
          background: linear-gradient(140deg, #9461af 50%, rgba(0, 0, 0, 0) 55%); }
      .p-recruit-story__member__position.-pink {
        background: #da6bac; }
        .p-recruit-story__member__position.-pink::before {
          background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #da6bac 55%); }
        .p-recruit-story__member__position.-pink::after {
          background: linear-gradient(140deg, #da6bac 50%, rgba(0, 0, 0, 0) 55%); }
      .p-recruit-story__member__position.-darkblue {
        background: #3763a6; }
        .p-recruit-story__member__position.-darkblue::before {
          background: linear-gradient(40deg, rgba(0, 0, 0, 0) 50%, #3763a6 55%); }
        .p-recruit-story__member__position.-darkblue::after {
          background: linear-gradient(140deg, #3763a6 50%, rgba(0, 0, 0, 0) 55%); }
    .p-recruit-story__member__name {
      margin-top: 15px; }
    .p-recruit-story__member__info {
      margin: 0;
      margin-top: 15px; }
    .p-recruit-story__member__company {
      padding-right: 15px; }
  .p-recruit-story__flexItem__right > img {
    display: block;
    max-width: 100%;
    margin: 0 auto; }
  .p-recruit-story__heading--lv2 {
    margin-bottom: 42px;
    letter-spacing: .15em;
    text-align: center; }
    .p-recruit-story__heading--lv2.-colorRed {
      color: #dc0000; }
  .p-recruit-story__heading--quote {
    display: inline-block;
    position: relative;
    padding: 15px 28px; }
    .p-recruit-story__heading--quote::before {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 28px;
      height: 28px;
      border-top: solid 2px #333333;
      border-left: solid 2px #333333;
      content: ""; }
    .p-recruit-story__heading--quote::after {
      display: block;
      position: absolute;
      right: 0;
      bottom: 0;
      width: 28px;
      height: 28px;
      border-right: solid 2px #333333;
      border-bottom: solid 2px #333333;
      content: ""; }
  .p-recruit-story__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: 2px solid #333333; }
    .p-recruit-story__description::before {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      width: 32px;
      height: 32px;
      margin: 0 auto;
      -webkit-transform: translateY(-51%) rotate(44deg);
      transform: translateY(-51%) rotate(44deg);
      border-right: solid 2px #333333;
      border-bottom: solid 2px #333333;
      background: #fff;
      content: ""; }
    .p-recruit-story__description__section {
      margin-top: 95px; }
      .p-recruit-story__description__section.-order_01 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1; }
      .p-recruit-story__description__section.-order_02 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2; }
      .p-recruit-story__description__section.-order_03 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3; }
      .p-recruit-story__description__section.-order_04 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4; }
    .p-recruit-story__description__content::after {
      display: block;
      width: 100%;
      clear: both;
      content: ""; }
    .p-recruit-story__description__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 35px; }
      .p-recruit-story__description__list--title {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 68px;
        flex: 0 0 68px;
        margin-right: 10px; }
    .p-recruit-story__description__image {
      width: 100%;
      max-width: 400px;
      margin-bottom: 60px; }
      .p-recruit-story__description__image.-left {
        margin-right: 60px;
        float: left; }
      .p-recruit-story__description__image.-right {
        margin-left: 60px;
        float: right; }
      .p-recruit-story__description__image.-center {
        max-width: inherit; }

.p-searchResult__list .c-list__link:hover .c-list__subject {
  color: #333333; }

.p-searchResult__subject {
  font-size: 18px; }
  .p-searchResult__subject span + span {
    position: relative;
    margin-left: 10px;
    padding-left: 10px; }
    .p-searchResult__subject span + span::before {
      position: absolute;
      top: 10px;
      left: 0;
      width: 1px;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      background-color: #005aa5;
      content: ''; }

.p-searchResult__title {
  font-weight: bold; }
  .p-searchResult__title span {
    color: #dc0000;
    font-size: 28px; }

.p-searchResult .c-pager-wrap {
  margin-top: 30px; }

.p-sitemap {
  padding: 90px 0; }
  .p-sitemap__heading {
    position: relative;
    padding-right: 50px !important;
    border-bottom: 1px solid #000; }
    .p-sitemap__heading a:hover {
      color: #005aa5;
      text-decoration: underline; }
    .p-sitemap__heading--arrow::after {
      display: block;
      position: absolute;
      top: 50%;
      right: 30px;
      width: 12px;
      height: 12px;
      -webkit-transform: translate(0, -50%) rotate(45deg);
      transform: translate(0, -50%) rotate(45deg);
      border-top: 2px solid #dc0000;
      border-right: 2px solid #dc0000;
      content: ""; }
    .p-sitemap__heading--underline {
      margin-bottom: 40px;
      padding: 10px 0 10px 0; }
  .p-sitemap__list--arrow {
    padding-left: 20px; }
    .p-sitemap__list--arrow > li {
      display: inline-block;
      position: relative;
      width: 30%;
      padding: 0 10px 10px 25px;
      list-style-type: none; }
      .p-sitemap__list--arrow > li:before {
        position: absolute;
        top: 50%;
        left: 0;
        width: 10px;
        height: 10px;
        -webkit-transform: translate(0, -10px) rotate(45deg);
        transform: translate(0, -10px) rotate(45deg);
        border-top: 2px solid #dc0000;
        border-right: 2px solid #dc0000;
        content: ""; }
      .p-sitemap__list--arrow > li a:hover {
        color: #005aa5;
        text-decoration: underline; }
  .p-sitemap__external-link {
    display: block;
    position: relative; }
    .p-sitemap__external-link::after {
      display: inline-block;
      position: relative;
      top: 0;
      width: 12px;
      height: 12px;
      margin-left: 9px;
      background-image: url(/files/user/assets/images/icon/icon_blank-red.svg?v=1574042419);
      background-repeat: no-repeat;
      background-size: cover;
      content: ""; }
  .p-sitemap__section {
    margin-bottom: 90px; }

.p-terms-layout {
  margin: 40px 0 120px; }
  .p-terms-layout .c-heading--lv1 {
    margin-bottom: 40px; }
  .p-terms-layout .c-heading--lv3 {
    margin-bottom: 40px;
    letter-spacing: .14em; }
  .p-terms-layout .c-heading--lv4 {
    margin-bottom: 10px; }
  .p-terms-layout p {
    margin: 0;
    margin-bottom: 43px;
    padding: 0;
    line-height: 1.9; }
  .p-terms-layout .p-inquiry__tel {
    margin: 10px 0;
    padding-left: 40px; }
  .p-terms-layout .-margin-none {
    margin: 0; }
  .p-terms-layout .-margin-small {
    margin-bottom: 25px; }
  .p-terms-layout .c-list-annotation {
    margin-top: 0; }
  .p-terms-layout .-letter-spacing {
    letter-spacing: .14em; }
  .p-terms-layout .-opacity-none {
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0; }

.p-terms-address {
  margin-bottom: 0 !important;
  letter-spacing: .14em;
  line-height: normal !important; }

.p-terms-regard__name {
  display: block;
  text-align: left;
  }

.p-terms-regard__name > dd {
  margin-top: 6px; }

.p-terms-regard__name::after {
  display: block;
  clear: both;
  content: ''; }

.p-terms-section {
  margin-top: 80px; }
  .p-terms-section--small {
    margin-top: 43px; }

.p-terms__arrow {
  display: inline-block;
  position: relative;
  padding-right: 18px;
  color: #005aa5;
  text-decoration: underline; }
  .p-terms__arrow::after {
    -webkit-transform: translate(0, -50%) rotate(45deg);
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 10px;
    height: 10px;
    transform: translate(0, -50%) rotate(45deg);
    border-top: 2px solid #dc0000;
    border-right: 2px solid #dc0000;
    content: ""; }

.p-terms__underscore {
  border-bottom: 1px solid #000; }

.p-terms-list__decimal {
  padding-left: 20px; }
  .p-terms-list__decimal > li {
    padding-bottom: 10px;
    list-style-type: decimal; }
  .p-terms-list__decimal--bracket {
    counter-reset: list; }
    .p-terms-list__decimal--bracket > li {
      position: relative;
      padding: 0 0 10px 25px;
      list-style-type: none; }
      .p-terms-list__decimal--bracket > li:before {
        position: absolute;
        left: 0;
        content: counter(list) ") ";
        counter-increment: list; }

.p-terms-list__subcontent {
  margin-top: 20px; }
  .p-terms-list__subcontent--inner {
    margin-top: 10px;
    margin-left: 44px; }

.p-terms-list__sublist {
  margin-top: 10px;
  margin-left: 44px; }

.p-topMiddleImage {
  z-index: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background-image: url(/files/user/assets/images/top/parallax_image.png?v=1612917128);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.p-top-parallax-section {
  z-index: 1;
  position: relative;
  background-color: #fff; }
  .p-top-parallax-section:first-of-type {
    padding-bottom: 10px; }

.p-topProduct {
  position: relative;
  overflow: hidden; }
  .p-topProduct::before, .p-topProduct::after {
    display: block;
    z-index: -1;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    content: ""; }
  .p-topProduct::before {
    background-image: url(/files/user/assets/images/top/product_bg_01.jpg?v=1582253897); }
  .p-topProduct::after {
    background-image: url(/files/user/assets/images/top/product_bg_02.jpg?v=1579755700); }

.p-topBlockHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 42px;
  padding-top: 60px;
  letter-spacing: 4px;
  line-height: 1; }
  .p-topBlockHeading::before {
    display: block;
    margin-bottom: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    content: ""; }
  .p-topBlockHeading.-product::before {
    width: 53px;
    height: 43px;
    background-image: url(/files/user/assets/images/icon/cheese_emphasis.svg?v=1574042418); }
  .p-topBlockHeading.-recipe::before {
    width: 42px;
    height: 46px;
    background-image: url(/files/user/assets/images/icon/recipe_emphasis.svg?v=1574042420); }
  .p-topBlockHeading.-info::before {
    width: 46px;
    height: 50px;
    background-image: url(/files/user/assets/images/icon/bell_emphasis.svg?v=1574042421); }

.p-topRecipe {
  position: relative;
  background-image: url(/files/user/assets/images/top/recipe_bg.png?v=1585550551);
  background-repeat: no-repeat;
  background-size: cover; }
  .p-topRecipeImageAbsolute {
    position: absolute; }

/* utility ----------------------------- */
a .c-img-highlight {
  -webkit-transition: 0.3s;
  transition: 0.3s; }

a:hover .c-img-highlight {
  opacity: 0.8; }

.u-content-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.slick-dots {
  width: 100%; }

.u-ma-0 {
  margin: 0px !important; }

.u-mt-0 {
  margin-top: 0px !important; }

.u-mr-0 {
  margin-right: 0px !important; }

.u-mb-0 {
  margin-bottom: 0px !important; }

.u-ml-0 {
  margin-left: 0px !important; }

.u-pa-0 {
  padding: 0px !important; }

.u-pt-0 {
  padding-top: 0px !important; }

.u-pr-0 {
  padding-right: 0px !important; }

.u-pb-0 {
  padding-bottom: 0px !important; }

.u-pl-0 {
  padding-left: 0px !important; }

.u-ma-5 {
  margin: 5px !important; }

.u-mt-5 {
  margin-top: 5px !important; }

.u-mr-5 {
  margin-right: 5px !important; }

.u-mb-5 {
  margin-bottom: 5px !important; }

.u-ml-5 {
  margin-left: 5px !important; }

.u-pa-5 {
  padding: 5px !important; }

.u-pt-5 {
  padding-top: 5px !important; }

.u-pr-5 {
  padding-right: 5px !important; }

.u-pb-5 {
  padding-bottom: 5px !important; }

.u-pl-5 {
  padding-left: 5px !important; }

.u-ma-10 {
  margin: 10px !important; }

.u-mt-10 {
  margin-top: 10px !important; }

.u-mr-10 {
  margin-right: 10px !important; }

.u-mb-10 {
  margin-bottom: 10px !important; }

.u-ml-10 {
  margin-left: 10px !important; }

.u-pa-10 {
  padding: 10px !important; }

.u-pt-10 {
  padding-top: 10px !important; }

.u-pr-10 {
  padding-right: 10px !important; }

.u-pb-10 {
  padding-bottom: 10px !important; }

.u-pl-10 {
  padding-left: 10px !important; }

.u-ma-15 {
  margin: 15px !important; }

.u-mt-15 {
  margin-top: 15px !important; }

.u-mr-15 {
  margin-right: 15px !important; }

.u-mb-15 {
  margin-bottom: 15px !important; }

.u-ml-15 {
  margin-left: 15px !important; }

.u-pa-15 {
  padding: 15px !important; }

.u-pt-15 {
  padding-top: 15px !important; }

.u-pr-15 {
  padding-right: 15px !important; }

.u-pb-15 {
  padding-bottom: 15px !important; }

.u-pl-15 {
  padding-left: 15px !important; }

.u-ma-20 {
  margin: 20px !important; }

.u-mt-20 {
  margin-top: 20px !important; }

.u-mr-20 {
  margin-right: 20px !important; }

.u-mb-20 {
  margin-bottom: 20px !important; }

.u-ml-20 {
  margin-left: 20px !important; }

.u-pa-20 {
  padding: 20px !important; }

.u-pt-20 {
  padding-top: 20px !important; }

.u-pr-20 {
  padding-right: 20px !important; }

.u-pb-20 {
  padding-bottom: 20px !important; }

.u-pl-20 {
  padding-left: 20px !important; }

.u-ma-25 {
  margin: 25px !important; }

.u-mt-25 {
  margin-top: 25px !important; }

.u-mr-25 {
  margin-right: 25px !important; }

.u-mb-25 {
  margin-bottom: 25px !important; }

.u-ml-25 {
  margin-left: 25px !important; }

.u-pa-25 {
  padding: 25px !important; }

.u-pt-25 {
  padding-top: 25px !important; }

.u-pr-25 {
  padding-right: 25px !important; }

.u-pb-25 {
  padding-bottom: 25px !important; }

.u-pl-25 {
  padding-left: 25px !important; }

.u-ma-30 {
  margin: 30px !important; }

.u-mt-30 {
  margin-top: 30px !important; }

.u-mr-30 {
  margin-right: 30px !important; }

.u-mb-30 {
  margin-bottom: 30px !important; }

.u-ml-30 {
  margin-left: 30px !important; }

.u-pa-30 {
  padding: 30px !important; }

.u-pt-30 {
  padding-top: 30px !important; }

.u-pr-30 {
  padding-right: 30px !important; }

.u-pb-30 {
  padding-bottom: 30px !important; }

.u-pl-30 {
  padding-left: 30px !important; }

.u-ma-35 {
  margin: 35px !important; }

.u-mt-35 {
  margin-top: 35px !important; }

.u-mr-35 {
  margin-right: 35px !important; }

.u-mb-35 {
  margin-bottom: 35px !important; }

.u-ml-35 {
  margin-left: 35px !important; }

.u-pa-35 {
  padding: 35px !important; }

.u-pt-35 {
  padding-top: 35px !important; }

.u-pr-35 {
  padding-right: 35px !important; }

.u-pb-35 {
  padding-bottom: 35px !important; }

.u-pl-35 {
  padding-left: 35px !important; }

.u-ma-40 {
  margin: 40px !important; }

.u-mt-40 {
  margin-top: 40px !important; }

.u-mr-40 {
  margin-right: 40px !important; }

.u-mb-40 {
  margin-bottom: 40px !important; }

.u-ml-40 {
  margin-left: 40px !important; }

.u-pa-40 {
  padding: 40px !important; }

.u-pt-40 {
  padding-top: 40px !important; }

.u-pr-40 {
  padding-right: 40px !important; }

.u-pb-40 {
  padding-bottom: 40px !important; }

.u-pl-40 {
  padding-left: 40px !important; }

.u-ma-45 {
  margin: 45px !important; }

.u-mt-45 {
  margin-top: 45px !important; }

.u-mr-45 {
  margin-right: 45px !important; }

.u-mb-45 {
  margin-bottom: 45px !important; }

.u-ml-45 {
  margin-left: 45px !important; }

.u-pa-45 {
  padding: 45px !important; }

.u-pt-45 {
  padding-top: 45px !important; }

.u-pr-45 {
  padding-right: 45px !important; }

.u-pb-45 {
  padding-bottom: 45px !important; }

.u-pl-45 {
  padding-left: 45px !important; }

.u-ma-50 {
  margin: 50px !important; }

.u-mt-50 {
  margin-top: 50px !important; }

.u-mr-50 {
  margin-right: 50px !important; }

.u-mb-50 {
  margin-bottom: 50px !important; }

.u-ml-50 {
  margin-left: 50px !important; }

.u-pa-50 {
  padding: 50px !important; }

.u-pt-50 {
  padding-top: 50px !important; }

.u-pr-50 {
  padding-right: 50px !important; }

.u-pb-50 {
  padding-bottom: 50px !important; }

.u-pl-50 {
  padding-left: 50px !important; }

.u-ma-55 {
  margin: 55px !important; }

.u-mt-55 {
  margin-top: 55px !important; }

.u-mr-55 {
  margin-right: 55px !important; }

.u-mb-55 {
  margin-bottom: 55px !important; }

.u-ml-55 {
  margin-left: 55px !important; }

.u-pa-55 {
  padding: 55px !important; }

.u-pt-55 {
  padding-top: 55px !important; }

.u-pr-55 {
  padding-right: 55px !important; }

.u-pb-55 {
  padding-bottom: 55px !important; }

.u-pl-55 {
  padding-left: 55px !important; }

.u-ma-60 {
  margin: 60px !important; }

.u-mt-60 {
  margin-top: 60px !important; }

.u-mr-60 {
  margin-right: 60px !important; }

.u-mb-60 {
  margin-bottom: 60px !important; }

.u-ml-60 {
  margin-left: 60px !important; }

.u-pa-60 {
  padding: 60px !important; }

.u-pt-60 {
  padding-top: 60px !important; }

.u-pr-60 {
  padding-right: 60px !important; }

.u-pb-60 {
  padding-bottom: 60px !important; }

.u-pl-60 {
  padding-left: 60px !important; }

.u-ma-65 {
  margin: 65px !important; }

.u-mt-65 {
  margin-top: 65px !important; }

.u-mr-65 {
  margin-right: 65px !important; }

.u-mb-65 {
  margin-bottom: 65px !important; }

.u-ml-65 {
  margin-left: 65px !important; }

.u-pa-65 {
  padding: 65px !important; }

.u-pt-65 {
  padding-top: 65px !important; }

.u-pr-65 {
  padding-right: 65px !important; }

.u-pb-65 {
  padding-bottom: 65px !important; }

.u-pl-65 {
  padding-left: 65px !important; }

.u-ma-70 {
  margin: 70px !important; }

.u-mt-70 {
  margin-top: 70px !important; }

.u-mr-70 {
  margin-right: 70px !important; }

.u-mb-70 {
  margin-bottom: 70px !important; }

.u-ml-70 {
  margin-left: 70px !important; }

.u-pa-70 {
  padding: 70px !important; }

.u-pt-70 {
  padding-top: 70px !important; }

.u-pr-70 {
  padding-right: 70px !important; }

.u-pb-70 {
  padding-bottom: 70px !important; }

.u-pl-70 {
  padding-left: 70px !important; }

.u-ma-75 {
  margin: 75px !important; }

.u-mt-75 {
  margin-top: 75px !important; }

.u-mr-75 {
  margin-right: 75px !important; }

.u-mb-75 {
  margin-bottom: 75px !important; }

.u-ml-75 {
  margin-left: 75px !important; }

.u-pa-75 {
  padding: 75px !important; }

.u-pt-75 {
  padding-top: 75px !important; }

.u-pr-75 {
  padding-right: 75px !important; }

.u-pb-75 {
  padding-bottom: 75px !important; }

.u-pl-75 {
  padding-left: 75px !important; }

.u-ma-80 {
  margin: 80px !important; }

.u-mt-80 {
  margin-top: 80px !important; }

.u-mr-80 {
  margin-right: 80px !important; }

.u-mb-80 {
  margin-bottom: 80px !important; }

.u-ml-80 {
  margin-left: 80px !important; }

.u-pa-80 {
  padding: 80px !important; }

.u-pt-80 {
  padding-top: 80px !important; }

.u-pr-80 {
  padding-right: 80px !important; }

.u-pb-80 {
  padding-bottom: 80px !important; }

.u-pl-80 {
  padding-left: 80px !important; }

.u-ma-85 {
  margin: 85px !important; }

.u-mt-85 {
  margin-top: 85px !important; }

.u-mr-85 {
  margin-right: 85px !important; }

.u-mb-85 {
  margin-bottom: 85px !important; }

.u-ml-85 {
  margin-left: 85px !important; }

.u-pa-85 {
  padding: 85px !important; }

.u-pt-85 {
  padding-top: 85px !important; }

.u-pr-85 {
  padding-right: 85px !important; }

.u-pb-85 {
  padding-bottom: 85px !important; }

.u-pl-85 {
  padding-left: 85px !important; }

.u-ma-90 {
  margin: 90px !important; }

.u-mt-90 {
  margin-top: 90px !important; }

.u-mr-90 {
  margin-right: 90px !important; }

.u-mb-90 {
  margin-bottom: 90px !important; }

.u-ml-90 {
  margin-left: 90px !important; }

.u-pa-90 {
  padding: 90px !important; }

.u-pt-90 {
  padding-top: 90px !important; }

.u-pr-90 {
  padding-right: 90px !important; }

.u-pb-90 {
  padding-bottom: 90px !important; }

.u-pl-90 {
  padding-left: 90px !important; }

.u-ma-95 {
  margin: 95px !important; }

.u-mt-95 {
  margin-top: 95px !important; }

.u-mr-95 {
  margin-right: 95px !important; }

.u-mb-95 {
  margin-bottom: 95px !important; }

.u-ml-95 {
  margin-left: 95px !important; }

.u-pa-95 {
  padding: 95px !important; }

.u-pt-95 {
  padding-top: 95px !important; }

.u-pr-95 {
  padding-right: 95px !important; }

.u-pb-95 {
  padding-bottom: 95px !important; }

.u-pl-95 {
  padding-left: 95px !important; }

.u-ma-100 {
  margin: 100px !important; }

.u-mt-100 {
  margin-top: 100px !important; }

.u-mr-100 {
  margin-right: 100px !important; }

.u-mb-100 {
  margin-bottom: 100px !important; }

.u-ml-100 {
  margin-left: 100px !important; }

.u-pa-100 {
  padding: 100px !important; }

.u-pt-100 {
  padding-top: 100px !important; }

.u-pr-100 {
  padding-right: 100px !important; }

.u-pb-100 {
  padding-bottom: 100px !important; }

.u-pl-100 {
  padding-left: 100px !important; }

.u-bg-gray {
  background-color: #fafafa; }

.u-bg-attention {
  background-color: #fffef1; }

.u-ls-14 {
  letter-spacing: .14em; }

.u-ls-0 {
  letter-spacing: 0 !important; }

a:hover .u-hover-color {
  color: #dc0000; }

@media print, screen and (min-width: 1024px) {
    button,
    input,
    optgroup,
    select,
    textarea {
      font-size: 16px; }
    .p-breadcrumb {
      margin-bottom: 30px !important; }
      .p-breadcrumb__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
      .p-breadcrumb__list {
        font-size: 13px; }
          .p-breadcrumb__list li:not(:first-of-type)::before {
            width: 8px;
            height: 8px; }
          .p-breadcrumb__list li:not(:first-of-type)::before {
            top: 48%; }
        .p-breadcrumb__list li:not(:first-of-type) a, .p-breadcrumb__list li:not(:first-of-type) span {
          margin-left: 18px;
          padding: 0 10px; }
        .p-breadcrumb__list li:first-of-type a {
          padding-right: 10px; }
    .l-bodyInner {
      position: relative;
      min-height: 100vh;
      padding-bottom: 325px; }
      .l-container--large {
        max-width: 1200px;
        margin: 0 auto; }
      .l-container--middle {
        width: 1024px;
        margin: 0 auto; }
      .l-container--single {
        width: 980px;
        margin: 0 auto; }
      .l-container--main {
        width: 900px;
        float: left; }
      .l-container--side {
        width: 250px;
        margin-left: 50px; }
    .p-pageTop {
      right: -70px;
      bottom: 112px; }
    .p-footer {
      position: absolute;
      bottom: 0;
      min-width: 100%; }
      .p-footerNav {
        padding: 20px 0; }
        .p-footerNav__item {
          font-size: 16px; }
        .p-footerNav__item {
          width: calc(100% / 5); }
          .p-footerNav__item > a > span {
            margin-top: 18px; }
        .p-footerNavOther {
          padding: 30px 0;
          background-color: #ededed; }
          .p-footerNavOther__inner {
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between; }
          .p-footerNavOtherStrong {
            -webkit-box-align: baseline;
            -ms-flex-align: baseline;
            align-items: baseline; }
          .p-footerNavOtherStrong__item {
            font-size: 14px; }
          .p-footerNavOtherStrong__item {
            font-weight: bold; }
          .p-footerNavOtherStrong__item:not(:last-child) {
            margin-right: 30px; }
          .p-footerNavOtherNormal {
            -webkit-box-align: baseline;
            -ms-flex-align: baseline;
            align-items: baseline; }
          .p-footerNavOtherNormal__item {
            font-size: 14px; }
          .p-footerNavOtherNormal__item {
            margin-left: 20px; }
            .p-footerNavOtherNormal__item:not(:last-child) {
              padding-right: 20px;
              border-right: solid 1px #333; }
      .p-footerBottom__inner {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
    .p-footerBottomCopylight {
      font-size: 12px; }
    .p-footerBottomNipponham {
      width: 195px; }
    .p-header {
      height: 130px;
      border-top: 4px solid #dc0000; }
    .p-header__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .p-headerLogo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        margin-top: 56px; }
        .p-headerLogo a {
          width: 115px; }
    .p-headerNav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      height: 61px;
      margin-top: 64px;
      margin-left: 165px;
      font-size: 18px;
      letter-spacing: 0.9px; }
    .p-headerNav__bg {
      display: none; }
    .p-headerNavProductLink.is-current {
      border-bottom: 3px solid #dc0000; }
    .p-headerNav__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      height: 61px; }
      .p-headerNav__item.is-current {
        border-bottom: 3px solid #dc0000; }
    .p-headerNav__item + .p-headerNav__item {
      margin-left: 19px; }
      .p-headerNav__item.-parent > a::after {
        display: block;
        position: relative;
        top: -4px;
        width: 11px;
        height: 11px;
        margin-top: -2px;
        margin-left: 10px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        border-right: solid 2px #dc0000;
        border-bottom: solid 2px #dc0000;
        content: "";
        -webkit-transition: 0.3s;
        transition: 0.3s; }
      .p-headerNav__item.-parent.isActive > a::after {
        top: 2px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg); }
      .p-headerNav__item.-parent.isActive > a {
        border-bottom: 3px solid #dc0000;
        color: #dc0000; }
    .p-headerNav__item.-search > a {
      width: 17px;
      padding: 0;
      padding-right: 25px;
      padding-left: 25px;
      overflow: hidden;
      background-image: url(/files/user/assets/images/icon/musica-searcher_red.png?v=1574042420);
      background-position: center 5px;
      background-repeat: no-repeat;
      background-size: 17px;
      color: #fff;
      font-size: 0;
      white-space: nowrap; }
    .p-headerNav__item.-search.isActive > a {
      border-bottom: 3px solid #dc0000;
      color: #dc0000; }
    .p-headerNav__item > a {
      font-size: 18px; }
    .p-headerNav__item > a {
      display: block;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      -webkit-box-align: baseline;
      -ms-flex-align: baseline;
      align-items: baseline;
      width: 100%;
      height: 100%;
      padding-right: 15px;
      padding-left: 15px; }
    .p-headerNav__item > a:hover {
      border-bottom: 3px solid #dc0000;
      color: #dc0000; }
    .p-headerNavOther {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: absolute;
      top: 15px;
      right: 0;
      -webkit-box-align: baseline;
      -ms-flex-align: baseline;
      align-items: baseline;
      margin-left: 72px;
      overflow: hidden;
      border: solid 2px #005aa5;
      border-radius: 15px;
      letter-spacing: 0.7px; }
    .p-headerNavOther__item:first-child:not(:last-child) {
      border-right: solid 1px #005aa5; }
    .p-headerNavOther__item:last-child:not(:first-child) {
      border-left: solid 1px #005aa5; }
      .p-headerNavOther__item > a {
        font-size: 12px; }
      .p-headerNavOther__item > a {
        display: block;
        padding: 6px 18px; }
      .p-headerNavOther__item > a:hover {
        background-color: #005aa5;
        color: #fff; }
        .p-headerNavOther__item > a:hover::after {
          background-image: url(/files/user/assets/images/icon/icon_blank_white.png?v=1574042419); }
      .p-headerSearch {
        display: none; }
    .p-headerNavChildPc {
      right: -20px;
      left: -20px; }
    .p-headerNavChildPc::after {
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 100%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      border-bottom: 1px solid #ccc;
      content: ''; }
          .p-headerNavChildPc__item > a::before {
            margin-bottom: 26px; }
      .p-headerNavSearchPc__label {
        font-size: 16px; }
  .p-forBusiness-header {
    border-top: 4px solid #005aa5; }
    .p-forBusiness-headerLogo {
      margin-top: 10px; }
      .p-forBusiness-headerLogo__title {
        font-size: 14px; }
      .p-forBusiness-headerLogo__title {
        position: absolute;
        top: 4px;
        right: -106px; }
  .p-forBusiness-headerNav {
    margin-left: 100px; }
  .c-bg-borderX {
    padding: 6px; }
    .c-bg-borderX.-small {
      width: 610px;
      margin: 40px auto; }
      .c-bg-borderX.-small .c-bg-borderY {
        padding: 25px 35px; }
  .c-bg-borderX::before, .c-bg-borderX::after {
    left: 0;
    width: 100%;
    height: 4px; }
  .c-bg-borderX::before {
    top: 6px; }
  .c-bg-borderX::after {
    bottom: 6px; }
    .c-bg-borderY {
      padding: 50px; }
      .c-bg-borderY::before, .c-bg-borderY::after {
        top: -6px;
        width: 4px;
        height: calc(100% + 12px); }
    .c-bg-borderY::before {
      left: 0; }
    .c-bg-borderY::after {
      right: 0; }
    .c-bg-borderArrowBottom {
      bottom: -40px;
      width: 25px;
      height: 25px;
      border: 25px solid transparent;
      border-right: 25px solid #e3cdc4;
      border-bottom: 25px solid #e3cdc4; }
    .c-bg-dot {
      padding: 60px 0; }
    .c-blockSubTitle {
      font-size: 28px; }
    .c-blockSubTitle {
      margin-top: 37px;
      padding-bottom: 14px;
      padding-bottom: 15px; }
    .c-blockTitle {
      font-size: 32px; }
    .c-blockTitle {
      min-height: 60px;
      padding-left: 30px;
      border-left: 5px solid #dc0000; }
    .c-blockTitle__time + .c-blockTitle {
      margin-top: 15px; }
    .c-buttonCategory,
    .c-buttonPrint {
      font-size: 14px; }
    .c-buttonBorder {
      padding: 0 30px; }
      .c-buttonBorder.-fixedSize {
        font-size: 16px; }
      .c-buttonBorder.-fixedSize {
        width: 230px;
        height: 50px; }
        .c-buttonBorder.-fixedSize:not(:first-of-type) {
          margin-left: 20px; }
      .c-buttonBorder.-arrow::after {
        right: 20px;
        width: 10px;
        height: 10px; }
      .c-buttonBorder[target="_blank"]::after {
        right: 20px;
        width: 12px;
        height: 12px;
        background-size: 12px; }
    .c-buttonClose {
      font-size: 16px; }
    .c-buttonClose {
      width: 180px;
      margin-top: 60px; }
      .c-buttonClose::before {
        right: 13px;
        width: 16px;
        height: 2px; }
      .c-buttonClose::after {
        right: 20px;
        width: 2px;
        height: 16px; }
    .c-buttonCopyUrl {
      font-size: 14px; }
    .c-buttonCopyUrl {
      width: 115px;
      height: 30px;
      padding: 0px 10px 0 30px;
      background-size: 15px; }
    .c-buttonBack {
      width: 180px; }
    .c-copy-result-text {
      z-index: 100;
      position: absolute;
      top: -40px;
      left: 40px;
      padding: 6px 10px 6px 16px;
      border: 3px solid #dc0000;
      border-radius: 25px;
      background-color: #fff;
      font-size: 12px;
      white-space: nowrap; }
    .c-copy-result-text::before, .c-copy-result-text::after {
      bottom: -18px;
      left: 20%; }
    .c-copy-result-text::before {
      z-index: 101;
      position: absolute;
      bottom: -13px;
      margin-left: -15px;
      border: 7px solid transparent;
      border-top: 11px solid #fff;
      content: ""; }
    .c-copy-result-text::after {
      z-index: 100;
      position: absolute;
      margin-left: -15px;
      border: 7px solid transparent;
      border-top: 11px solid #dc0000;
      content: ""; }
    .c-formButton.-fixedSize, .-fixedSize.c-buttonBack {
      width: 230px; }
    .c-formButton__outer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: distribute;
      justify-content: space-around;
      width: 600px;
      margin: auto; }
      .c-formSelectList li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 270px;
        flex: 0 0 270px; }
        .c-formSelectList li:not(:nth-of-type(3n)) {
          margin-right: 29px; }
        .c-formSelectList li:nth-of-type(n+4) {
          margin-top: 20px; }
    .c-formSelect {
      font-size: 16px; }
    .c-formSelect {
      padding: 12px 45px 12px 20px;
      background-position: right 8px center; }
      .c-formCheckboxList li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
        flex: 0 0 200px; }
        .c-formCheckboxList li:not(:nth-of-type(4n)) {
          margin-right: 20px; }
        .c-formCheckboxList li:nth-of-type(n+5) {
          margin-top: 20px; }
    .c-formCheckbox {
      font-size: 16px; }
          .c-formCheckbox input[type="checkbox"] + label::before {
            top: 2px; }
        .c-formCheckbox input[type="checkbox"]:checked + label::after {
          top: 10px; }
  .c-conditionalSearch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .c-conditionalSearch__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .c-conditionalSearch__block {
    width: 400px;
    margin-right: 50px; }
      .c-conditionalSearch__text input[type="text"] {
        padding: 13px 17px; }
    .c-conditionalSearch__select {
      margin-top: 18px; }
      .c-conditionalSearch__select select {
        padding: 13px 17px;
        background: url(/files/user/assets/images/about/arrow.png?v=1577242647) no-repeat center/18px;
        background-position-x: calc(100% - 19px); }
  .c-conditionalSearch__button {
    width: 230px; }
    .c-heading--lv1 {
      font-size: 40px; }
    .c-heading--lv1.-forBusiness {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .c-heading--forBusiness {
      padding: 5px 16px; }
    .c-heading--forBusiness {
      font-size: 18px; }
    .c-heading--borderLeft {
      margin-bottom: 40px;
      padding: 10px 0 10px 30px;
      border-left: 5px solid #dc0000; }
    .c-heading--borderLeft {
      font-size: 32px; }
    .c-heading--borderBottom {
      font-size: 28px; }
    .c-heading--borderBottom {
      margin: 40px 0; }
    .c-heading--borderBottom.-lv2 {
      font-size: 32px; }
      .c-heading--imageIcon img {
        max-height: 35px; }
    .c-heading--recipe {
      margin-bottom: 30px; }
      .c-heading--recipe span {
        font-size: 32px; }
      .c-heading--recipe span {
        padding: 0 60px; }
        .c-heading--recipe span::before, .c-heading--recipe span::after {
          width: 25px;
          height: 37px; }
  .c-imageText {
    margin-bottom: 60px; }
    .c-imageText__image + .c-imageText__image {
      margin-left: 40px; }
  .c-imageText__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-top: 30px; }
    .c-imageText__text__heading {
      font-size: 24px; }
    .c-imageText__text__heading {
      margin-bottom: 20px; }
  .c-imageText.-imageRight, .c-imageText.-imageLeft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .-imageRight .c-imageText__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 490px;
    flex: 0 0 490px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: 50px; }
  .-imageRight .c-imageText__text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .-imageLeft .c-imageText__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 490px;
    flex: 0 0 490px;
    margin-right: 50px; }
  .-imageCenter .c-imageText__text {
    text-align: center; }
  .c-imageText__img-col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .c-imageText__img-col2 .c-imageText__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; }
  .c-list-annotation {
    margin: 40px auto; }
    .c-list-annotation li {
      font-size: 14px; }
    .c-list-annotation li {
      letter-spacing: .14em; }
  .c-list-faq {
    margin-bottom: 40px; }
  .c-list-faq p {
    min-height: 40px;
    letter-spacing: .14em; }
    .c-list-faq__item {
      margin-top: 15px; }
      .c-list-faq__item::before {
        font-size: 28px; }
      .c-list-faq__item::before {
        width: 90px; }
    .c-list-faq__title {
      width: calc(100% - 90px);
      padding: 20px 70px 20px 20px; }
        .c-list-faq__title.-arrow::after {
          right: 20px;
          width: 10px;
          height: 10px; }
      .c-list-faq__answer::before {
        font-size: 28px; }
      .c-list-faq__answer::before {
        top: 24px;
        left: 26px;
        width: 40px;
        height: 40px; }
    .c-list-faq__answer {
      padding: 20px 20px 20px 100px; }
      .c-list__item + .c-list__item {
        margin-top: 16px;
        padding-top: 22px; }
  .c-list__time {
    font-size: 16px; }
  .c-list__time {
    margin-right: 35px; }
    .c-list__subject {
      font-size: 16px; }
    .c-list__subject {
      margin-top: 8px; }
    .c-menuButton {
      display: none; }
    .c-modal__contents {
      max-width: 95%; }
      .c-modal__close:before, .c-modal__close:after {
        width: 20px; }
    .c-infoList {
      margin-bottom: 72px; }
    .c-infoListItem__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .c-infoListItem__date {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .c-infoListItem__category {
        font-size: 14px; }
      .c-operationNoticeList__head {
        font-size: 14px; }
      .c-operationNoticeList__head {
        width: 126px;
        background-color: #b90202;
        color: #ffffff; }
      .c-operationNoticeList__body {
        padding: 10px 20px 9px; }
    .c-pager__link {
      font-size: 14px; }
  .c-productCategoryList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .c-productCategoryList.-forConsumerCategory {
    margin: 40px 0 80px; }
  .c-productCategoryList.-forBusinessCategory {
    margin: 40px 0 80px; }
  .c-productCategoryItem {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px; }
    .c-productCategoryItem:not(:nth-of-type(4n)) {
      margin-right: 20px; }
    .c-productCategoryItem:nth-of-type(n+5) {
      margin-top: 20px; }
    .c-productCategoryItem__title {
      height: 150px;
      padding: 15px 10px;
      border: 2px solid #999;
      border-radius: 10px; }
      .c-productCategoryItem__title img {
        max-height: 80px; }
      .c-productCategoryItem__title h2 {
        font-size: 18px; }
      .c-productCategoryItem__title h2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        letter-spacing: .14em; }
  .c-productCategoryItem__list {
    margin-top: 20px; }
    .c-productCategoryItem__list li {
      margin-top: 8px;
      padding-left: 20px; }
      .c-productCategoryItem__list li::after {
        left: 0; }
    .c-productCategoryItem__list li a {
      font-size: 16px; }
  .-forBusinessTop .c-productCategoryItem__title.-cheese img {
    width: 57px;
    height: 48px; }
  .-forBusinessTop .c-productCategoryItem__title.-kanzume img {
    width: 51px;
    height: 46px; }
  .-forBusinessTop .c-productCategoryItem__title.-freezedry img {
    width: 60px;
    height: 58px; }
  .-forBusinessTop .c-productCategoryItem__title.-frozenfood img {
    width: 72px;
    height: 57px; }
  .-forBusinessTop .c-productCategoryItem__title img {
    margin-top: 10px; }
  .-forBusinessTop .c-productCategoryItem {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 215px;
    flex: 0 0 215px; }
    .-forBusinessTop .c-productCategoryItem:not(:nth-of-type(4n)) {
      margin-right: 40px; }
  .-forBusinessCategory .c-productCategoryItem__title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 50px;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 25px; }
    .c-productList {
      width: 1020px; }
      .c-productListItem {
        min-width: 33.333%;
        max-width: 33.333%;
        margin-bottom: 60px; }
        .c-productListItem:nth-of-type(3n) {
          -webkit-box-pack: end;
          -ms-flex-pack: end;
          justify-content: flex-end; }
        .c-productListItem:nth-of-type(3n-1) {
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
    .c-productSummaryList {
      margin-bottom: 50px; }
    .c-productSummaryList__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 215px;
      flex: 0 0 215px;
      margin-bottom: 40px; }
      .c-productSummaryList__item:not(:nth-of-type(4n)) {
        margin-right: 40px; }
      .c-productSummaryList__item__image {
        padding: 20px; }
          .-new .c-productSummaryList__item__image::before, .-renewal .c-productSummaryList__item__image::before {
            font-size: 16px; }
          .-new .c-productSummaryList__item__image::before, .-renewal .c-productSummaryList__item__image::before {
            height: 30px; }
          .-new .c-productSummaryList__item__image::after, .-renewal .c-productSummaryList__item__image::after {
            top: 24px; }
        .-new .c-productSummaryList__item__image::before {
          width: 80px; }
      .-new .c-productSummaryList__item__image::after {
        left: 33px; }
        .-renewal .c-productSummaryList__item__image::before {
          width: 130px; }
      .-renewal .c-productSummaryList__item__image::after {
        left: 58px; }
      .c-productSummaryList__item__title {
        font-size: 18px; }
      .c-productSummaryList__item__title {
        margin-top: 20px; }
    .c-recipeList {
      position: relative;
      left: 20px;
      width: 1020px;
      margin-right: auto;
      margin-bottom: 135px !important;
      margin-left: auto; }
      .c-recipeListItem {
        margin-right: 40px; }
        .c-recipeListItem__inner {
          padding: 35px 20px 20px 20px; }
        .c-recipeListItem__category {
          font-size: 16px; }
    .c-recipeList .slick-dots {
      margin-top: 30px; }
      .c-recipe__list.-column2 {
        padding-bottom: 100px; }
    .c-recipe__list.-column3 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding-bottom: 100px; }
      .c-recipe__list.-column3 li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
        flex: 0 0 300px; }
        .c-recipe__list.-column3 li:not(:nth-of-type(3n)) {
          margin-right: 40px; }
      .c-recipe a {
        padding: 15px; }
      .c-recipe__title {
        font-size: 18px; }
      .c-recipe__title {
        min-height: 37px;
        padding-left: 40px;
        background-position: top   left 15px;
        background-size: 10px; }
        .c-recipe__title::before {
          width: 10px;
          background-position: top left;
          background-size: 10px; }
      .c-recipe__summary {
        border-top: 4px dotted #e3cdc4; }
    .c-recipe.c-sliderCarousel-column4__item .c-recipe__title, .c-recipe.c-sliderCarousel-column4__item .c-recipe__summary {
      font-size: 14px; }
    .c-recipeSeach {
      padding: 35px 0; }
      .c-recipeSeach__label {
        font-size: 24px; }
      .c-recipeSeach__label {
        margin-right: 45px; }
      .c-recipeSeach__form__inner {
        width: 450px; }
      .c-recipeSeach__toggle {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        margin-left: 40px; }
      .c-recipeSeach__filter {
        margin-bottom: 40px; }
      .c-recipeSeach__filter__inner {
        padding: 50px; }
        .c-recipeSeach__filter__heading {
          font-size: 24px; }
        .c-recipeSeach__filter__heading {
          margin-bottom: 30px; }
        .c-recipeSeach__filter__heading:not(:first-of-type) {
          margin-top: 50px; }
        .c-recipeSeach__filter__categoryList {
          margin-bottom: 10px; }
        .c-recipeSeach__filter__categoryList li {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 150px;
          flex: 0 0 150px;
          margin: 0 20px 20px 0; }
          .c-recipeSeach__filter__categoryList li button {
            font-size: 14px; }
      .c-recipeSeach__filter__selected {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 30px; }
        .c-recipeSeach__filter__selected__item {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 710px;
          flex: 0 0 710px;
          margin-right: 20px;
          padding-bottom: 15px;
          border-bottom: 4px dotted #e3cdc4; }
      .c-recipeSeach__filter__selected button {
        font-size: 14px; }
      .c-recipeSeach__filter__selected button {
        height: 30px; }
        .c-recipeSeach__filter__result {
          font-size: 24px; }
        .c-recipeSeach__filter__result {
          margin: 60px 0 40px; }
          .c-recipeSeach__filter__result span {
            font-size: 28px; }
  .c-sideNavi__hedding {
    letter-spacing: 3px; }
  .c-sideNavi__list:not(.-level2) {
    margin-top: 16px;
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999; }
  .c-sideNavi__list.-level2 {
    border-top: 1px solid #999999; }
  .c-sideNavi__list.-level2 .c-sideNavi__list__link {
    padding-left: 48px; }
  .c-sideNavi__list.-level2 .c-sideNavi__list__link::before {
    left: 24px; }
  .c-sideNavi__list + .c-sideNavi__list {
    border-top: 1px solid #999999; }
  .-level2 .c-sideNavi__list + .c-sideNavi__list {
    border-top: none; }
  .c-sideNavi__list__item + .c-sideNavi__list__item {
    border-top: 1px solid #999999; }
  .c-sideNavi__list__link {
    display: block;
    position: relative;
    margin: 0;
    padding: 16px 5px 17px 29px; }
    .c-sideNavi__list__link .is-current {
      background-color: #fcebeb; }
    .c-sideNavi__list__link:hover {
      background-color: #fcebeb; }
    .is-current > .c-sideNavi__list__link {
      background-color: #fcebeb; }
  .c-sideNavi__list__link:not(p)::before {
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
    left: 3px;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-right: solid 2px #dc0000;
    border-bottom: solid 2px #dc0000;
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .c-sliderCarousel-column4 {
    position: relative;
    width: 930px;
    margin-right: auto;
    margin-left: auto; }
    .c-sliderCarousel-column4__item {
      margin: 0 15px; }
      .c-sliderCarousel-column4__item__title {
        font-size: 18px; }
      .c-sliderCarousel-column4__item__title {
        margin-top: 20px; }
        .-border .c-sliderCarousel-column4__item__image {
          height: 200px; }
          .-new .c-sliderCarousel-column4__item__image::before, .-renewal .c-sliderCarousel-column4__item__image::before {
            font-size: 16px; }
          .-new .c-sliderCarousel-column4__item__image::before, .-renewal .c-sliderCarousel-column4__item__image::before {
            height: 30px; }
          .-new .c-sliderCarousel-column4__item__image::after, .-renewal .c-sliderCarousel-column4__item__image::after {
            top: 24px; }
        .-new .c-sliderCarousel-column4__item__image::before {
          width: 80px; }
      .-new .c-sliderCarousel-column4__item__image::after {
        left: 33px; }
        .-renewal .c-sliderCarousel-column4__item__image::before {
          width: 130px; }
      .-renewal .c-sliderCarousel-column4__item__image::after {
        left: 58px; }
  .c-sliderCarousel-column4 .slick-dots {
    margin-top: 30px; }
  .c-sliderCarouselOnSubject {
    position: relative;
    left: 20px;
    width: 1020px;
    margin-right: auto;
    margin-left: auto; }
    .c-sliderCarouselOnSubject__item {
      margin-right: 36px; }
    .c-sliderCarouselOnSubject__subject {
      font-size: 14px; }
    .c-sliderCarouselOnSubject__subject {
      margin-top: 10px; }
  .c-sliderCarousel {
    position: relative;
    left: 20px;
    width: 1020px;
    margin-right: auto;
    margin-left: auto; }
    .c-sliderCarousel__item {
      margin-right: 40px; }
  .c-sliderCarousel {
    margin-bottom: 155px !important; }
  .c-sliderCarousel .slick-dots {
    margin-top: 30px; }
  .c-sliderHero {
    margin-bottom: 133px !important; }
  .c-sliderHero__item {
    overflow: hidden; }
  .c-sliderHero .slick-dots {
    margin-top: 30px; }
      .c-table dt, .c-table dd {
        font-size: 16px; }
      .c-table dt, .c-table dd {
        min-height: 55px;
        padding: 15px 20px; }
      .c-table dt {
        width: 150px; }
      .c-table dd {
        width: calc(100% - 150px); }
    .c-table.-colum2 {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      width: 450px; }
      .c-table.-colum2:nth-of-type(2n) {
        margin-left: 40px; }
  .p-hoko-layout-main {
    margin-top: 26px;
    margin-bottom: 130px; }
  .p-hoko__anchorList {
    font-size: 16px; }
  .p-hoko__anchorList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 32px;
    margin-bottom: 98px; }
  .p-hoko__anchorList__item {
    width: calc(25% - 15px); }
  .p-hoko__anchorList__item + .p-hoko__anchorList__item {
    margin-left: 20px; }
    .p-hoko__anchorList__link {
      font-size: 16px; }
    .p-hoko__anchorList__link {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 16px 5px 15px;
      border: 2px solid #999999;
      border-radius: 10px;
      text-align: center; }
    .p-hokoTop__pageList {
      margin-bottom: -59px; }
    .p-hokoTop__pageList__item {
      width: calc(33.333% - 26px);
      margin-bottom: 50px; }
    .p-hokoTop__pageList__item + .p-hokoTop__pageList__item:not(:nth-of-type(4)) {
      margin-left: 39px; }
      .p-hokoTop__pageList__subject {
        font-size: 18px; }
      .p-hokoTop__pageList__subject {
        margin-top: 21px; }
  .p-hokoBusiness__block + .p-hokoBusiness__block {
    margin-top: 103px; }
    .p-hokoBusiness__block__img {
      margin-top: 39px; }
    .p-hokoBusiness__block__img > span {
      font-size: 14px; }
    .p-hokoBusiness__block__subject {
      font-size: 24px; }
    .p-hokoBusiness__block__subject {
      margin-top: 39px; }
  .p-hokoBusiness__block__summary {
    margin-top: 19px;
    line-height: 1.7; }
  .p-hokoHistory {
    padding-left: 59px; }
    .p-hokoHistory__block {
      min-height: 100px; }
    .p-hokoHistory__block__year {
      font-size: 24px; }
    .p-hokoHistory__block__year {
      padding-top: 25px; }
    .p-hokoHistory__block__inner {
      margin-left: 27px;
      padding-top: 29px;
      padding-left: 33px; }
    .p-hokoHistory__block__inner::after {
      z-index: 10;
      position: absolute;
      top: 36px;
      left: -3.9px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background-color: #dc0000;
      content: ''; }
  .p-hokoHistory__block__inner::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: #ccc;
    content: ''; }
    .p-hokoHistory__block__summary {
      font-size: 16px; }
    .p-hokoHistory__block__summary {
      margin-bottom: 39px; }
  .p-hokoHistory__block__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 47px; }
  .p-hokoHistory__block__img.-col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .p-hokoHistory__block__img.-img-center {
      min-width: 312px; }
  .p-hokoHistory__block__img__box + .p-hokoHistory__block__img__box {
    margin-left: 40px; }
  .p-hokoHistory__block__img img + .p-hokoHistory__block__img img {
    margin-left: 40px; }
  .p-hokoTopMsg__read {
    font-size: 31px; }
  .p-hokoTopMsg__read {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 453px;
    margin-top: 80px; }
  .p-hokoTopMsg__message {
    margin-top: 40px;
    letter-spacing: 1.5px;
    line-height: 1.9; }
    .p-hokoTopMsg__name {
      margin-top: 9px; }
  .p-hokoTopMsg__name > dt {
    font-size: 24px; }
    .p-hokoTopMsg__name > dd {
      font-size: 16px; }
  .p-hokoCompany__block + .p-hokoCompany__block {
    margin-top: 95px; }
  .p-hokoCompany__block .c-table dt {
    width: 200px; }
  .p-hokoCompany__block .c-table dd {
    width: calc(100% - 200px); }
  .p-hokoCompany__block .c-table dt, .p-hokoCompany__block .c-table dd {
    padding: 27px 20px; }
  .c-blockTitle + .c-table {
    margin-top: 40px; }
  .p-hokoOffice__block + .p-hokoOffice__block {
    margin-top: 99px; }
    .p-hokoOffice__block__hedding {
      font-size: 20px; }
    .p-hokoOffice__block__category {
      font-size: 20px; }
  .p-hokoOffice__block__list {
    margin-top: 39px; }
  .p-hokoOffice__block__item:last-child {
    padding-bottom: 34px;
    border-bottom: 1px solid #ccc; }
  .p-hokoOffice__block__item ~ .p-hokoOffice__block__item {
    margin-top: 40px;
    padding-top: 31px;
    padding-top: 27px;
    border-top: 1px solid #ccc; }
    .-plant .p-hokoOffice__block__item ~ .p-hokoOffice__block__item {
      padding-top: 31px;
      padding-top: 44px;
      border: none; }
    .p-hokoOffice__block__address {
      font-size: 16px; }
    .p-hokoOffice__block__col2 {
      margin-top: 12px; }
  .p-hokoOffice__block__detail {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
  .p-hokoOffice__block__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    min-width: 210px;
    margin-left: 10px; }
    .p-hokoOffice__block__button {
      font-size: 16px; }
    .p-hokoOffice__block__button {
      margin-top: 30px; }
  .p-hokoOffice__block .c-table {
    width: calc(100% - 250px);
    margin-top: 9px; }
  .p-hokoOffice__block .c-table dt {
    width: 200px; }
  .p-hokoOffice__block .c-table dd {
    width: calc(100% - 200px); }
  .p-hokoOffice__block .c-table dt, .p-hokoOffice__block .c-table dd {
    padding: 26px 20px;
    line-height: 1.2; }
  .p-hokoCsr__layout-top1 {
    margin-top: 75px !important; }
  .p-hokoCsr__layout-ma2 {
    margin-top: 74px !important;
    margin-bottom: 33px; }
  .p-hokoCsr__layout-ma3 {
    margin-top: 56px !important; }
  .p-hokoCsr__layout-ma4 {
    margin-top: 72px !important; }
  .p-hokoCsr__layout-ma {
    margin-top: 95px;
    margin-bottom: 86px; }
  .p-hokoCsr__flexItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 37px;
    margin-bottom: 78px; }
  .p-hokoCsr__flexItem__left {
    font-size: 16px; }
  .p-hokoCsr__flexItem__left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 0; }
  .p-hokoCsr__flexItem__right {
    font-size: 16px; }
  .p-hokoCsr__flexItem__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 410px;
    flex: 0 0 410px;
    margin-left: 40px; }
    .p-hokoCsr__achievement {
      width: 750px;
      margin: 29px auto 0;
      margin-top: 26px;
      padding: 26px 28px 31px; }
  .p-hokoCsr__achievement:first-child {
    margin-top: 29px; }
  .p-hokoCsr__achievement + .p-hokoCsr__achievement {
    margin-top: 30px;
    margin-bottom: 102px; }
    .p-hokoCsr__achievement__title {
      font-size: 18px; }
    .p-hokoCsr__achievement__summary {
      font-size: 16px; }
    .p-hokoCsr__achievement__summary {
      margin-top: 22px; }
  .p-hokoCsr__achievement__summary + .p-hokoCsr__achievement__img {
    margin-top: 20px; }
    .p-hokoCsr__strongText {
      font-size: 20px; }
    .p-hokoCsr__strongText {
      margin-top: 36px;
      margin-bottom: 68px; }
  .p-hokoCsr__policy {
    margin-top: 31px;
    margin-bottom: 49px; }
    .p-hokoCsr__textList > dt {
      font-size: 20px; }
    .p-hokoCsr__textList > dt ~ dt {
      margin-top: 30px; }
  .p-hokoCsr__textList > dd {
    font-size: 16px; }
  .p-hokoCsr__textList > dd {
    margin-top: 10px; }
  .p-hokoCsr__table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    margin-bottom: 54px; }
  .p-hokoCsr__table__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc(50% - 20px); }
  .p-hokoCsr__table__block + .p-hokoCsr__table__block {
    margin-left: 40px; }
    .p-hokoCsr__table__title {
      font-size: 18px; }
    .p-hokoCsr__table .c-table dt, .p-hokoCsr__table .c-table dd {
      padding: 17px 20px; }
  .p-hokoCsr__community {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 25px; }
    .p-hokoCsr__community__item {
      width: calc(50% - 20px); }
    .p-hokoCsr__community__item:nth-of-type(n+3) {
      margin-top: 18px; }
    .p-hokoCsr__community__item:nth-of-type(even) {
      margin-left: 40px; }
    .p-hokoCsr__community__item > p {
      font-size: 16px; }
    .p-hokoCsr__community__item > p {
      margin: 15px 0 10px; }
  .p-hokoCsr__discList {
    margin-top: 31px; }
    .p-hokoCsr__bgSummary {
      font-size: 16px; }
    .p-hokoCsr__bgSummary {
      margin-top: 40px;
      padding: 24px 30px 31px; }
    .p-hokoCsr__img.-plant {
      margin-top: 30px; }
    .p-hokoCsr__img:not(.-plant) {
      margin-top: 32px;
      margin-bottom: 70px; }
      .p-hokoCsr__img:not(.-plant) > img {
        padding: 20px; }
  .p-hokoCsr__example {
    margin-top: 100px; }
  .p-hokoCsr__news-list .c-list {
    margin-top: 35px; }
  .p-hokoCsr__button {
    margin-top: 78px; }
  .p-hokoCsr__button .c-buttonBorder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 230px;
    height: 50px; }
  .p-forBusinessContact {
    padding: 60px 0 100px; }
  .p-forBusinessContact__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .p-forBusinessContact__block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 50%;
      margin-top: 20px;
      padding: 40px; }
    .p-forBusinessContact__block:not(:first-of-type) {
      margin-left: 40px; }
    .p-forBusinessContact__heading {
      display: inline-block;
      padding: 2px;
      background-size: contain; }
      .p-forBusinessContact__heading.-mail {
        padding-left: 60px; }
      .p-forBusinessContact__heading.-tel {
        padding-left: 40px; }
    .p-forBusinessContact__emphasis {
      font-size: 28px; }
    .p-forBusinessContact__note {
      font-size: 14px; }
    .p-forBusinessTop__category {
      padding: 60px 0; }
  .p-infoDetail {
    margin-top: 32px;
    margin-bottom: 119px; }
    .p-infoDetail .c-infoListItem__date {
      margin-right: 33px; }
  .p-infoDetail__share {
    display: none; }
    .p-infoDetail__date {
      margin-bottom: 15px; }
      .p-infoDetail__date .c-infoListItem__category {
        min-width: 100px; }
  .p-infoDetail__block {
    margin-top: 91px; }
  .p-infoDetail__box {
    margin-top: 20px;
    margin-bottom: 20px; }
    .p-infoDetail > .c-formButton, .p-infoDetail > .c-buttonBack {
      width: 180px;
      margin: 81px auto 0; }
  .p-infoDetail__read {
    font-size: 16px; }
  .p-infoDetail__read {
    margin-top: 33px; }
  .p-info-layout-main, .p-searchResultLayout-main {
    margin-top: 26px;
    margin-bottom: 130px; }
    .p-info__select > select {
      width: 260px;
      padding: 13px 17px;
      background: url(/files/user/assets/images/about/arrow.png?v=1577242647) no-repeat center/18px;
      background-position-x: calc(100% - 19px); }
  .p-info__select:first-child {
    margin-right: 40px; }
  .p-info__button {
    margin-left: 131px; }
    .p-info__button > button {
      width: 230px;
      padding: 15px; }
  .p-info__button.-info-ma {
    margin-left: 189px; }
  .p-info .c-list {
    margin-top: 57px; }
  .p-info .c-infoListItem__category {
    min-width: 180px; }
  .p-inquiry-faq {
    margin-bottom: 120px;
    letter-spacing: .14em; }
    .p-inquiry-faq p:not([class]) {
      font-size: 16px; }
  .p-inquiry-faq__search {
    margin-top: 60px; }
  .p-inquiry-faq__search__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .p-inquiry-faq__search__inner select {
      width: 260px; }
    .p-inquiry-faq__search__inner button {
      margin-left: 40px;
      cursor: pointer; }
    .p-inquiry-faq__list {
      margin-bottom: 80px;
      padding: 60px 0; }
      .p-inquiry-faq__list .c-list-faq {
        margin-top: 40px; }
    .p-inquiry-faq__button {
      width: 300px; }
      .p-inquiry-faq__button::after {
        right: 20px;
        width: 10px;
        height: 10px; }
  .p-inquiry-faqDetail__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px; }
    .p-inquiry-faqDetail__heading {
      font-size: 32px; }
    .p-inquiry-faqDetail__heading {
      margin-bottom: 30px;
      letter-spacing: .14em; }
      .p-inquiry-faqDetail__heading::before {
        font-size: 24px; }
      .p-inquiry-faqDetail__heading::before {
        width: 40px;
        height: 40px;
        margin-right: 20px;
        padding-left: 5px; }
  .p-inquiry-faqDetail__answer {
    font-size: 16px; }
  .p-inquiry-faqDetail__answer {
    margin: 40px 0 80px;
    padding-left: 60px; }
    .p-inquiry-faqDetail__image {
      margin: 30px auto; }
  .p-inquiry {
    margin-top: 40px;
    letter-spacing: .14em; }
    .p-inquiry p:not([class]) {
      font-size: 16px; }
  .p-inquiry h3 {
    margin: 80px 0 40px;
    letter-spacing: .14em; }
  .p-inquiry__nav {
    margin-bottom: 110px;
    padding: 60px 0; }
  .p-inquiry__navList {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .p-inquiry__navList li .c-productCategoryItem__title {
    height: 130px; }
  .p-inquiry__navList li:not(:last-of-type) {
    margin-right: 60px; }
  .p-inquiry__inner {
    margin: 90px auto; }
    .p-inquiry__tel {
      font-size: 30px; }
    .p-inquiry__tel {
      margin-bottom: 20px;
      padding-left: 40px;
      background-size: 30px; }
      .p-inquiry__tel a {
        pointer-events: none; }
  .p-inquiry__address span {
    font-size: 20px; }
    .p-inquiry__button {
      font-size: 18px; }
    .p-inquiry__button {
      width: 380px; }
      .p-inquiry__buttonList li:not(:first-of-type) {
        margin-top: 20px; }
    .p-productDetail__feature {
      padding: 80px 0 20px; }
    .p-productDetail__recommend:first-of-type {
      padding-top: 60px; }
  .p-productDetail__recommend:not(:first-of-type) {
    margin-top: 80px; }
    .p-productDetail__head {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .p-productDetail__title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-top: -10px;
    margin-bottom: 40px; }
    .p-productDetail__mainVisual {
      margin-bottom: 40px; }
  .p-productDetail__spec {
    margin-top: 70px; }
    .p-productDetail__spec__heading {
      font-size: 16px; }
    .p-productDetail__spec__heading {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 33%;
      flex: 1 1 33%;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      height: 60px;
      border: solid #005aa5;
      border-width: 2px 2px 0 2px;
      border-radius: 20px 20px 0 0;
      cursor: pointer; }
      .p-productDetail__spec__heading.is-current {
        background-color: #005aa5;
        color: #fff; }
      .p-productDetail__spec__heading:not(:first-of-type) {
        margin-left: 10px; }
      .p-productDetail__spec__heading:hover {
        background: #005aa5;
        color: #fff; }
    .p-productDetail__spec__subHeading {
      font-size: 18px; }
    .p-productDetail__spec__subHeading {
      margin-top: 40px; }
  .p-productDetail__spec__info2 {
    margin-top: 100px;
    margin-bottom: -22px; }
  .p-productDetail__spec__content__outer {
    padding: 40px 0;
    border-top: 2px solid #005aa5;
    border-bottom: 2px solid #005aa5; }
    .p-productDetail__spec__nutrition {
      font-size: 16px; }
  .p-productDetail__spec__note {
    font-size: 14px; }
  .p-productDetail__spec__note {
    margin: 40px 0 0; }
    .p-productDetail__spec__allergy {
      font-size: 16px; }
      .p-productDetail__spec__allergy li {
        padding: 16px; }
  .p-productDetail__slider__outer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 450px;
    flex: 0 0 450px;
    margin-right: 40px; }
  .p-productDetail__slider {
    width: 450px; }
    .p-productDetail__sliderNav {
      font-size: 16px; }
    .p-productDetail__summary {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      width: calc(100% - 490px); }
      .p-productDetail__summary__catch {
        font-size: 16px; }
      .p-productDetail__summary__catch {
        padding: 4px 10px; }
        .p-productDetail__summary__catch:not(:first-of-type) {
          margin-left: 10px; }
    .p-productDetail__summary__buttonList {
      margin-top: 40px; }
  .p-productTop__new {
    padding: 50px 0 90px; }
  .p-productTop__categoryList img {
    max-width: 270px; }
  .p-productTop__categoryList .c-productListItem__subject {
    font-size: 24px; }
    .p-recipeDetail {
      padding: 30px 0; }
    .p-recipeDetail__sns {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      margin-bottom: 10px; }
      .p-recipeDetail__sns li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .p-recipeDetail__sns li:not(:first-of-type) {
          margin-left: 10px; }
        .p-recipeDetail__sns li .fb_iframe_widget, .p-recipeDetail__sns li iframe, .p-recipeDetail__sns li img {
          height: 28px; }
      .p-recipeDetail__title {
        margin-bottom: 30px;
        padding-left: 50px; }
        .p-recipeDetail__title::after {
          width: 14px;
          background-position: top 10px left;
          background-size: 14px; }
        .p-recipeDetail__title::before {
          width: 14px;
          background-position: top 10px left;
          background-size: 14px; }
    .p-recipeDetail__summary {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .p-recipeDetail__summary__image {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 620px;
      flex: 0 0 620px;
      margin-right: 40px; }
    .p-recipeDetail__summary__text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 100%; }
      .p-recipeDetail__summary__table {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 6px 20px 6px 55px; }
        .p-recipeDetail__summary__table:not(:first-of-type) {
          margin-top: 5px; }
        .p-recipeDetail__summary__table dt::before {
          width: 40px;
          height: 100%; }
        .p-recipeDetail__summary__table dd {
          font-size: 18px; }
      .p-recipeDetail__summary__note {
        font-size: 16px; }
    .p-recipeDetail__product {
      margin-top: 80px; }
      .p-recipeDetail__product__inner {
        margin-top: 80px;
        padding: 50px; }
      .p-recipeDetail__product__heading {
        font-size: 24px; }
      .p-recipeDetail__product__heading {
        width: 295px;
        height: 65px; }
        .p-recipeDetail__product__heading::before {
          width: 34px;
          height: 34px;
          margin-right: 14px; }
      .p-recipeDetail__product__itemList {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
      .p-recipeDetail__product__itemList li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
        margin-top: 30px; }
        .p-recipeDetail__product__item__image {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 82px;
          flex: 0 0 82px; }
        .p-recipeDetail__product__item__title {
          font-size: 14px; }
      .p-recipeDetail__howto {
        margin: 80px auto 100px; }
        .p-recipeDetail__howto::before {
          top: -40px;
          left: -50px;
          width: 162px;
          height: 128px; }
        .p-recipeDetail__howto::after {
          right: -50px;
          bottom: -40px;
          width: 177px;
          height: 112px; }
      .p-recipeDetail__howto__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
      .p-recipeDetail__howto__block {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: 100%; }
      .p-recipeDetail__howto__block.-material {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 380px;
        flex: 0 0 380px;
        margin-right: 50px;
        margin-bottom: 30px; }
      .p-recipeDetail__howto__heading {
        font-size: 28px; }
      .p-recipeDetail__howto__heading {
        margin-bottom: 10px;
        padding-bottom: 15px;
        border-bottom: 4px dotted #e3cdc4; }
      .-material .p-recipeDetail__howto__heading {
        margin-bottom: 20px; }
        .p-recipeDetail__howto__subHeading {
          font-size: 20px; }
        .p-recipeDetail__howto__subHeading {
          margin-top: 36px; }
        .p-recipeDetail__howto__heading + .p-recipeDetail__howto__subHeading {
          margin-top: 32px; }
        .p-recipeDetail__howto__list li {
          font-size: 14px; }
        .p-recipeDetail__howto__list.-material {
          font-size: 14px; }
      .p-recipeDetail__howto__list.-single-item {
        margin-top: 55px; }
  .p-recipeSearch__data {
    padding-top: 49px; }
    .p-recipeSearch__data__text {
      font-size: 22px; }
    .p-recipeSearch__data__result {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding-top: 39px; }
    .p-recipeSearch__data__result .c-recipeSeach__filter__result {
      margin: 0 40px 0 0; }
    .p-searchResult {
      padding-bottom: 100px; }
    .p-searchResult .c-recipe__list {
      margin-bottom: -35px; }
    .p-searchResult .c-recipe {
      margin-bottom: 35px; }
    .p-recipeTop__newest {
      padding: 50px 0 10px; }
  .p-recipe-hedding__slider {
    margin-top: 40px; }
    .p-recruit-top__sliderHero__inner {
      margin-top: -40px; }
    .p-recruit-top__sliderHero__text {
      width: 620px;
      height: 620px; }
      .p-recruit-top__sliderHero__text .-top {
        font-size: 40px; }
      .p-recruit-top__sliderHero__text .-top {
        margin-top: 40px;
        letter-spacing: .15em; }
      .p-recruit-top__sliderHero__text .-heading {
        font-size: 82px; }
      .p-recruit-top__sliderHero__text .-heading {
        margin: 10px 0 60px;
        letter-spacing: .05em; }
      .p-recruit-top__sliderHero__text .-bottom {
        font-size: 24px; }
      .p-recruit-top__sliderHero__text .-bottom {
        letter-spacing: .15em; }
  .p-recruit-top__inner {
    margin: 100px 0;
    letter-spacing: .05em; }
    .p-recruit-top__heading {
      font-size: 30px; }
    .p-recruit-top__subHeading {
      font-size: 20px; }
    .p-recruit-top__subHeading {
      margin: 5px 0 50px; }
  .p-recruit-top__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .-column2 .p-recruit-top__nav__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      width: 50%;
      max-height: 400px; }
    .-column4 .p-recruit-top__nav__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      width: 25%;
      height: 172px; }
    .p-recruit-top__nav__title {
      font-size: 24px; }
  .p-recruit-top__buttonList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 110px; }
  .p-recruit-top__button {
    font-size: 24px; }
  .p-recruit-top__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 470px;
    height: 80px;
    border-width: 4px;
    border-radius: 40px; }
    .p-recruit-top__button::after {
      right: 30px !important;
      width: 16px !important;
      height: 16px !important;
      border-width: 3px !important; }
  .is-overlay .p-recruit-header__bg {
    z-index: 90;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); }
    .p-recruit {
      font-size: 16px; }
    .p-recruit {
      letter-spacing: .03em; }
    .p-recruit-layout {
      margin: 40px 0 150px; }
    .p-recruit-layout section:not([class]) + section:not([class]) {
      margin-top: 100px; }
    .p-recruit-header {
      z-index: 100;
      height: 70px;
      margin-bottom: 40px;
      border-top: 0 !important; }
      .p-recruit-header__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
    .p-recruit-headerLogo {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      margin-top: 0; }
      .p-recruit-headerLogo img {
        width: 90px;
        padding-top: 10px; }
      .p-recruit-headerLogo a {
        font-size: 16px; }
      .p-recruit-headerLogo__title {
        font-size: 16px; }
    .p-recruit-headerNav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      height: 100%;
      margin: 0; }
      .p-recruit-headerNav__outer {
        height: 100%; }
      .p-recruit-headerNav__item > a {
        font-size: 16px; }
      .p-recruit-headerNav__item > a {
        padding: 20px 10px; }
    .p-recruit-headerNavChildPc {
      top: 69px;
      height: auto;
      padding: 30px 0; }
      .p-recruit-headerNavChildPc__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        .p-recruit-headerNavChildPc__list li {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
          flex: 0 0 25%;
          width: 25%; }
          .p-recruit-headerNavChildPc__list li:nth-of-type(n+5) {
            margin-top: 20px; }
        .p-recruit-headerNavChildPc__list a {
          display: block; }
          .p-recruit-headerNavChildPc__list a::before {
            display: inline-block;
            width: 8px;
            height: 8px;
            margin: 0 10px 2px 0;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            border-right: solid 2px #dc0000;
            border-bottom: solid 2px #dc0000;
            content: ""; }
          .p-recruit-headerNavChildPc__list a:hover {
            color: #dc0000; }
    .p-recruit-footerNav {
      margin-left: auto; }
    .p-recruit-footerLogo {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .p-recruit-footerLogo .-hoko {
      width: 90px;
      margin-right: 30px; }
    .p-recruit-entry__step {
      margin: 70px 0 100px; }
      .p-recruit-entry__step li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 60px;
        padding: 40px; }
        .p-recruit-entry__step li:not(:first-of-type)::before {
          top: -35px;
          width: 20px;
          height: 20px; }
      .p-recruit-entry__step__heading {
        font-size: 24px; }
      .p-recruit-entry__step__heading {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
        flex: 0 0 220px;
        width: 220px;
        padding-right: 20px; }
    .p-recruit-entry__mypage {
      padding-top: 60px;
      border-top: 1px solid #999999; }
      .p-recruit-entry__mypage__button {
        width: 400px;
        height: 50px;
        margin: auto;
        padding: 0 50px;
        line-height: 50px; }
      .p-recruit-entry__mypage__step {
        margin: 60px 0 40px; }
        .p-recruit-entry__mypage__step li {
          font-size: 16px; }
        .p-recruit-entry__mypage__step li {
          padding: 10px 40px; }
      .p-recruit-message__hr {
        padding: 40px; }
        .p-recruit-message__hr__list li h3 {
          font-size: 20px; }
    .p-recruit-job__table dt, .p-recruit-job__table dd {
      padding-top: 30px;
      padding-bottom: 30px; }
      .p-recruit-about__heading--lv3 {
        font-size: 20px; }
      .p-recruit-about__gallery {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 60px; }
        .p-recruit-about__gallery__item {
          width: calc(50% - 20px); }
        .p-recruit-about__gallery__item:nth-of-type(n+3) {
          margin-top: 40px; }
        .p-recruit-about__gallery__item:nth-of-type(even) {
          margin-left: 40px; }
      .p-recruit-about__button {
        font-size: 18px; }
      .p-recruit-about__button {
        line-height: 50px; }
        .p-recruit-data__notes {
          font-size: 16px; }
        .p-recruit-data__content-holiday {
          margin: 45px 0 0 50px; }
            _:-ms-lang(x), .p-recruit-data__content-product-wrap {
              min-width: 450px; }
        .p-recruit-data__content-sales {
          padding-top: 60px; }
          .p-recruit-data__content-title.-size75 {
            font-size: 75px; }
          .p-recruit-data__content-title.-size100 {
            font-size: 100px; }
          .p-recruit-data__content-text .size20 {
            font-size: 20px; }
          .p-recruit-data__content-text .size24 {
            font-size: 24px; }
          .p-recruit-data__content-text .size32 {
            font-size: 32px; }
          .p-recruit-data__content-text .size36 {
            font-size: 36px; }
          .p-recruit-data__content-text .size48 {
            font-size: 48px; }
          .p-recruit-data__content-text .size70 {
            font-size: 70px; }
          .p-recruit-data__content-text .size100 {
            font-size: 100px; }
        .p-recruit-data__heading {
          font-size: 28px; }
        .p-recruit-data__message {
          font-size: 16px; }
      .p-recruit-education__heading {
        font-size: 20px; }
    .p-recruit-faq {
      margin-top: 30px; }
          .p-recruit-interview__top__name {
            font-size: 18px; }
          .p-recruit-interview__top__detail {
            font-size: 16px; }
          .p-recruit-interview__top__list.-column3 li {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 300px;
            flex: 0 0 300px;
            margin-bottom: 58px; }
            .p-recruit-interview__top__list.-column3 li:not(:nth-of-type(3n)) {
              margin-right: 40px; }
        .p-recruit-interviewDetail__banner--heading {
          font-size: 40px; }
        .p-recruit-interviewDetail__intro__name {
          font-size: 30px; }
          .p-recruit-interviewDetail__intro__name--eng {
            font-size: 20px; }
        .p-recruit-interviewDetail__intro__company {
          font-size: 20px; }
        .p-recruit-interviewDetail__intro__writeup {
          font-size: 16px; }
      .p-recruit-interviewDetail__btn {
        font-size: 24px; }
      .p-recruit-interviewDetail__description__heading {
        font-size: 32px; }
      .p-recruit-interviewDetail__description__writeup {
        font-size: 18px; }
    .p-recruit-story__flex--row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .p-recruit-story__hero {
        background-repeat: no-repeat; }
        .p-recruit-story__hero--heading {
          font-size: 32px; }
        .p-recruit-story__hero--slogan {
          padding-top: 145px; }
        .p-recruit-story__hero--intro {
          font-size: 20px; }
      .p-recruit-story__member__list.-column3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 100px; }
        .p-recruit-story__member__list.-column3 li {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 300px;
          flex: 0 0 300px;
          margin-bottom: 58px; }
          .p-recruit-story__member__list.-column3 li:not(:nth-of-type(3n)) {
            margin-right: 40px; }
      .p-recruit-story__member__image {
        width: 300px;
        height: 200px;
        overflow: hidden;
        background: #999999; }
        .p-recruit-story__member__name {
          font-size: 18px; }
    .p-recruit-story__flexItem {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .p-recruit-story__flexItem__left {
      font-size: 16px; }
    .p-recruit-story__flexItem__left {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      margin: 0; }
    .p-recruit-story__flexItem__right {
      font-size: 16px; }
    .p-recruit-story__flexItem__right {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 780px;
      flex: 0 0 780px;
      margin-left: 40px; }
      .p-recruit-story__heading--lv2 {
        font-size: 32px; }
        .p-searchResult__subject span + span::before {
          height: 18px; }
    .p-searchResult__title {
      margin: 60px 0 40px; }
    .p-searchResult__title {
      font-size: 24px; }
  .p-searchResult .c-list {
    margin-top: 57px; }
      .p-sitemap__heading {
        font-size: 32px; }
      .p-terms-layout .c-heading--lv1 {
        font-size: 40px; }
      .p-terms-layout .c-heading--lv3 {
        font-size: 28px; }
      .p-terms-layout .c-heading--lv4 {
        font-size: 20px; }
    .p-terms-layout .notes {
      font-size: 14px; }
    .p-terms-address {
      font-size: 20px; }
    .p-terms-regard__name {
      margin-top: 9px; }
  .p-terms-regard__name > dt {
    font-size: 24px; }
    .p-terms-regard__name > dd {
      font-size: 16px; }
      .p-top-parallax-section:first-of-type {
        margin-bottom: 400px; }
      .p-topProduct::before, .p-topProduct::after {
        background-size: cover; }
      .p-topProduct::before {
        top: -110px;
        left: -300px;
        width: 854px;
        height: 535px; }
      .p-topProduct::after {
        right: -130px;
        bottom: -160px;
        width: 539px;
        height: 531px; }
    .p-topBlockHeading {
      font-size: 40px; }
    .p-topRecipe {
      height: 976px; }
      .p-topRecipeImageAbsolute.-left {
        top: -80px;
        left: -90px; }
      .p-topRecipeImageAbsolute.-right {
        right: -80px;
        bottom: -140px; }
  .c-sliderHero__item img,
  .c-sliderCarousel__item img,
  .c-productListItem img,
  .c-recipeListItem img,
  .c-img-scale-up img {
    display: inline;
    -webkit-transition: 0.2s;
    transition: 0.2s; }
  .c-sliderHero__item:hover img,
  .c-sliderCarousel__item:hover img,
  .c-productListItem:hover img,
  .c-recipeListItem:hover img,
  .c-img-scale-up:hover img {
    -webkit-backface-visibility: hidden;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    backface-visibility: hidden; }
  .c-sliderCarousel__item a {
    display: block;
    overflow: hidden;
    border-radius: 15px; }
  .is-pc {
    display: block !important; }
  .is-sp {
    display: none !important; }
    .slick-dots {
      max-width: 980px; } }

@media screen and (max-width: 1023px) {
    button,
    input,
    optgroup,
    select,
    textarea {
      font-size: 16px; }
    .p-breadcrumb {
      margin-bottom: 20px; }
      .p-breadcrumb__list {
        padding: 0 15px; }
      .p-breadcrumb__list {
        font-size: 10px; }
        .p-breadcrumb__list li {
          display: inline; }
          .p-breadcrumb__list li:not(:first-of-type)::before {
            width: 6px;
            height: 6px; }
          .p-breadcrumb__list li:not(:first-of-type)::before {
            top: 5px; }
        .p-breadcrumb__list li:not(:first-of-type) a, .p-breadcrumb__list li:not(:first-of-type) span {
          margin-left: 10px;
          padding: 0 6px; }
        .p-breadcrumb__list li:first-of-type a {
          padding-right: 6px; }
      .l-container--large {
        width: 100%; }
      .l-container--middle {
        width: 100%; }
      .l-container--single {
        width: 100%; }
      .l-container--main {
        width: 100%; }
    .l-container--sp {
      padding: 0 15px; }
    .p-pageTop {
      right: 10px;
      bottom: 20px; }
        .p-footerNav__item {
          font-size: 12px; }
        .p-footerNav__item {
          width: calc(100% / 4); }
          .p-footerNav__item > a {
            text-align: center; }
            .p-footerNav__item > a::before {
              margin: 16px 0 10px; }
          .p-footerNav__item > a > span {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            min-height: 54px;
            line-height: 1.2; }
        .p-footerNavOther {
          margin-bottom: 20px; }
          .p-footerNavOther__inner {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column; }
          .p-footerNavOtherStrong {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column; }
          .p-footerNavOtherStrong__item {
            font-size: 13px; }
          .p-footerNavOtherStrong__item {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            height: 55px;
            border-bottom: 1px solid #cccccc; }
          .p-footerNavOtherStrong__item > a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            position: relative;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            width: 100%;
            height: 100%;
            padding: 0 15px; }
          .p-footerNavOtherStrong__item > a::after {
            display: block;
            position: absolute;
            top: 50%;
            right: 15px;
            width: 11px;
            height: 11px;
            -webkit-transform: rotate(-45deg) translateY(-50%);
            transform: rotate(-45deg) translateY(-50%);
            border-right: solid 2px #dc0000;
            border-bottom: solid 2px #dc0000;
            content: ""; }
          .p-recruit-footer .p-footerNavOtherStrong__item > a::after {
            right: inherit; }
          .p-footerNavOtherStrong__item:first-child {
            border-top: 1px solid #cccccc; }
          .p-footerNavOtherNormal {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column; }
          .p-footerNavOtherNormal__item {
            font-size: 13px; }
          .p-footerNavOtherNormal__item {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            height: 55px;
            border-bottom: 1px solid #cccccc;
            background-color: #ededed; }
          .p-footerNavOtherNormal__item > a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            position: relative;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            width: 100%;
            height: 100%;
            padding: 0 15px; }
          .p-footerNavOtherNormal__item > a::after {
            display: block;
            position: absolute;
            top: 50%;
            right: 15px;
            width: 11px;
            height: 11px;
            -webkit-transform: rotate(-45deg) translateY(-50%);
            transform: rotate(-45deg) translateY(-50%);
            border-right: solid 2px #333333;
            border-bottom: solid 2px #333333;
            content: ""; }
      .p-footerBottom__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
    .p-footerBottomCopylight {
      font-size: 10px; }
    .p-footerBottomCopylight {
      margin-bottom: 30px;
      letter-spacing: 2px; }
    .p-footerBottomNipponham {
      width: 154px; }
    .p-header {
      height: 60px;
      border-top: 3px solid #dc0000; }
    .p-header__inner {
      height: 100%; }
      .p-headerLogo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 1000;
        position: relative;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        height: 100%; }
        .p-headerLogo a {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: baseline;
          -ms-flex-align: baseline;
          align-items: baseline;
          width: 70px; }
    .isSpMenuActive .p-headerNav__outer {
      display: block; }
    .p-headerNav__outer {
      display: none;
      z-index: 1000;
      position: absolute;
      top: 57px;
      width: 100%;
      background: #fff; }
    .isSpMenuActive .p-headerNav__bg {
      display: block; }
    .p-headerNav__bg {
      display: none;
      z-index: 90;
      position: fixed;
      top: 3px;
      left: 0;
      width: 100%;
      height: 100%; }
    .p-headerNav__item {
      border-bottom: 1px solid #cccccc; }
    .p-headerNav__item > a {
      font-size: 13px; }
    .p-headerNav__item > a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 100%;
      height: 100%;
      padding: 20px 15px;
      line-height: 1; }
    .p-headerNav__item > a::after {
      display: block;
      position: absolute;
      top: 50%;
      right: 15px;
      width: 11px;
      height: 11px;
      -webkit-transform: rotate(-45deg) translateY(-50%);
      transform: rotate(-45deg) translateY(-50%);
      border-right: solid 2px #dc0000;
      border-bottom: solid 2px #dc0000;
      content: ""; }
    .p-headerNavOther__item {
      border-bottom: 1px solid #cccccc; }
      .p-headerNavOther__item > a {
        font-size: 13px; }
      .p-headerNavOther__item > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 20px 15px; }
      .p-headerNavOther__item > a::after {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px;
        width: 11px;
        height: 11px;
        -webkit-transform: rotate(-45deg) translateY(-50%);
        transform: rotate(-45deg) translateY(-50%);
        border-right: solid 2px #dc0000;
        border-bottom: solid 2px #dc0000;
        content: ""; }
          .p-headerNavChildPc__item > a::before {
            margin: 16px 0 10px; }
      .p-headerNavSearchPc__label {
        font-size: 13px; }
  .p-forBusiness-header {
    border-top: 3px solid #005aa5; }
    .p-forBusiness-headerLogo {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      padding: 0 15px; }
      .p-forBusiness-headerLogo__title {
        font-size: 10px; }
      .p-forBusiness-headerLogo__title {
        margin: 0 0 10px 10px; }
    .c-bg-borderX.-small {
      margin: 20px auto 30px; }
      .c-bg-borderX.-small .c-bg-borderY {
        padding: 15px; }
  .c-bg-borderX {
    padding: 8px 0; }
  .c-bg-borderX::before, .c-bg-borderX::after {
    left: -8px;
    width: calc(100% + 16px);
    height: 2px; }
  .c-bg-borderX::before {
    top: 8px; }
  .c-bg-borderX::after {
    bottom: 8px; }
    .c-bg-borderY {
      padding: 30px 10px; }
      .c-bg-borderY::before, .c-bg-borderY::after {
        top: -4px;
        width: 2px;
        height: calc(100% + 8px); }
    .c-bg-borderY::before {
      left: -4px; }
    .c-bg-borderY::after {
      right: -4px; }
    .c-bg-borderArrowBottom {
      bottom: -36px;
      width: 20px;
      height: 20px;
      border: 20px solid transparent;
      border-right: 20px solid #e3cdc4;
      border-bottom: 20px solid #e3cdc4; }
    .c-bg-dot {
      padding-top: 40px;
      padding-bottom: 40px; }
    .c-blockSubTitle {
      font-size: 20px; }
    .c-blockSubTitle {
      margin-top: 27px;
      padding-bottom: 9px; }
    .c-blockSubTitle ~ .c-blockSubTitle {
      margin-top: 50px; }
    .c-blockTitle {
      font-size: 24px; }
    .c-blockTitle {
      min-height: 30px;
      padding-left: 10px;
      border-left: 2px solid #dc0000; }
    .c-buttonCategory,
    .c-buttonPrint {
      font-size: 12px; }
    .c-buttonBorder {
      padding: 10px 20px; }
      .c-buttonBorder.-fixedSize {
        font-size: 14px; }
      .c-buttonBorder.-fixedSize {
        width: 48%;
        letter-spacing: 0; }
        .c-buttonBorder.-fixedSize:not(:first-of-type) {
          margin-left: 1%; }
    .c-buttonBorder.-arrow {
      padding: 10px 20px 10px 10px; }
      .c-buttonBorder.-arrow::after {
        right: 12px;
        width: 8px;
        height: 8px; }
    .c-buttonBorder[target="_blank"] {
      padding: 10px 20px 10px 10px; }
      .c-buttonBorder[target="_blank"]::after {
        right: 12px;
        width: 10px;
        height: 10px;
        background-size: 10px; }
    .c-buttonClose {
      font-size: 14px; }
    .c-buttonClose {
      width: 160px;
      margin: 30px auto 20px; }
      .c-buttonClose::before {
        right: 15px;
        width: 12px;
        height: 2px; }
      .c-buttonClose::after {
        right: 20px;
        width: 2px;
        height: 12px; }
    .c-buttonCopyUrl {
      font-size: 7px; }
    .c-buttonBack {
      width: 165px; }
    .c-formButton.-fixedSize, .-fixedSize.c-buttonBack {
      width: 250px;
      margin: auto; }
    .c-formButton__outer .c-formButton:not(:first-of-type), .c-formButton__outer .c-buttonBack:not(:first-of-type) {
      margin-top: 20px; }
      .c-formSelectList {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
      .c-formSelectList li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%; }
        .c-formSelectList li:nth-of-type(n+3) {
          margin-top: 15px; }
    .c-formSelect {
      font-size: 12px; }
    .c-formSelect {
      padding: 10px 25px 10px 5px;
      background-position: right 4px center;
      background-size: 16px; }
      .c-formCheckboxList {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
      .c-formCheckboxList li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%; }
        .c-formCheckboxList li:nth-of-type(n+3) {
          margin-top: 15px; }
    .c-formCheckbox {
      font-size: 13px; }
    .c-formCheckbox {
      letter-spacing: .03em; }
        .c-formCheckbox input[type="checkbox"]:checked + label::after {
          top: 8px; }
  .c-conditionalSearch__block {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; }
      .c-conditionalSearch__text input[type="text"] {
        padding: 10px 9px; }
    .c-conditionalSearch__select {
      margin-top: 10px; }
      .c-conditionalSearch__select select {
        padding: 10px 9px;
        background: url(/files/user/assets/images/about/arrow.png?v=1577242647) no-repeat center/14px;
        background-position-x: calc(100% - 9px); }
  .c-conditionalSearch__button {
    width: calc(50% - 7.5px);
    margin: 0 auto;
    margin-top: 20px; }
    .c-conditionalSearch__button > button {
      padding: 10px; }
    .c-heading--lv1 {
      font-size: 28px; }
    .c-heading--lv1.-forBusiness:not(.-sp-return) {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .c-heading--forBusiness {
      padding: 3px 14px; }
    .c-heading--forBusiness {
      font-size: 13px; }
    .c-heading--borderLeft {
      margin-bottom: 30px;
      padding: 2px 0 2px 10px;
      border-left: 2px solid #dc0000; }
    .c-heading--borderLeft {
      font-size: 24px; }
    .c-heading--borderBottom {
      font-size: 20px; }
    .c-heading--borderBottom {
      margin: 30px 0 20px; }
    .c-heading--borderBottom.-lv2 {
      font-size: 24px; }
      .c-heading--imageIcon img {
        max-height: 30px; }
    .c-heading--recipe {
      margin-bottom: 20px; }
      .c-heading--recipe span {
        font-size: 24px; }
      .c-heading--recipe span {
        padding: 0 20px 0 22px; }
        .c-heading--recipe span::before, .c-heading--recipe span::after {
          top: 4px;
          width: 15px;
          height: 20px; }
      .c-heading--recipe img {
        max-height: 12px; }
  .c-imageText {
    margin-bottom: 30px; }
    .c-imageText__image + .c-imageText__image {
      margin-top: 40px; }
  .c-imageText__text {
    padding-top: 14px; }
    .c-imageText__text__heading {
      font-size: 19px; }
    .c-imageText__text__heading {
      margin-bottom: 14px; }
  .c-list-annotation {
    margin: 15px auto; }
    .c-list-annotation li {
      font-size: 12px; }
    .c-list-annotation li {
      letter-spacing: .07em; }
  .c-list-faq {
    margin-bottom: 30px; }
  .c-list-faq p {
    letter-spacing: .07em; }
    .c-list-faq__item {
      margin-top: 20px; }
      .c-list-faq__item::before {
        font-size: 16px; }
      .c-list-faq__item::before {
        width: 45px; }
    .c-list-faq__title {
      width: calc(100% - 45px);
      padding: 15px 30px 15px 15px; }
        .c-list-faq__title.-arrow::after {
          right: 12px;
          width: 8px;
          height: 8px; }
      .c-list-faq__answer::before {
        font-size: 14px; }
      .c-list-faq__answer::before {
        top: 15px;
        left: 15px;
        width: 20px;
        height: 20px; }
    .c-list-faq__answer {
      padding: 15px 15px 15px 60px; }
      .c-list__item + .c-list__item {
        margin-top: 14px;
        padding-top: 18px; }
  .c-list__time {
    font-size: 16px; }
    .c-list__subject {
      font-size: 16px; }
    .c-list__subject {
      margin-top: 12px; }
    .c-modal__contents {
      max-width: calc(100% - 30px);
      padding: 30px; }
  .c-modal img {
    max-width: 100%; }
      .c-modal__close:before, .c-modal__close:after {
        width: 20px; }
    .c-infoList {
      margin-bottom: 72px; }
    .c-infoListItem {
      padding-bottom: 15px;
      border-bottom: 1px solid #ededed; }
      .c-infoListItem__date {
        display: inline-block; }
      .c-infoListItem__category {
        font-size: 12px; }
      .c-infoListItem__category {
        display: inline-block; }
      .c-infoListItem__subject {
        /* autoprefixer: off */
        -webkit-box-orient: vertical;
        /* autoprefixer: ignore next */
        -webkit-line-clamp: 2;
        display: -webkit-box !important;
        width: 100%;
        margin-top: 15px;
        overflow: hidden; }
      .c-operationNoticeList__head {
        font-size: 12px; }
      .c-operationNoticeList__head {
        margin-left: 15px;
        color: #b90202;
        font-weight: bold; }
      .c-operationNoticeList__head::after {
        display: block;
        width: 1px;
        height: 60%;
        margin-left: 15px;
        background-color: #b90202;
        content: ""; }
      .c-operationNoticeList__body {
        padding: 10px 15px 9px; }
    .c-pager {
      margin-left: -8px; }
    .c-pager__link {
      font-size: 14px; }
  .c-sp-pager__col2 {
    margin-top: 20px; }
  .c-sp-pager__col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .c-productCategoryList {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .c-productCategoryList.-forConsumerCategory {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .c-productCategoryList__outer {
    display: none; }
    .c-productCategoryList__outer.-forConsumerCategory {
      padding: 15px;
      background-color: #dbe9f6; }
  .c-productCategoryList__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    margin-top: 30px;
    padding: 0 15px;
    border: 2px solid #005aa5;
    background-color: #fff;
    font-weight: bold;
    letter-spacing: .14em; }
    .c-productCategoryList__toggle::before, .c-productCategoryList__toggle::after {
      display: block;
      position: absolute;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%);
      background-color: #dc0000;
      content: ""; }
    .c-productCategoryList__toggle::before {
      right: 15px;
      width: 12px;
      height: 2px; }
    .c-productCategoryList__toggle::after {
      right: 20px;
      width: 2px;
      height: 12px; }
    .c-productCategoryList__toggle.is-open::after {
      display: none; }
    .c-productCategoryItem__title {
      position: relative;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      height: auto;
      padding: 15px 30px 15px 15px;
      border-bottom: 1px solid #ccc; }
      .c-productCategoryItem__title img {
        max-height: 50px; }
      .c-productCategoryItem__title h2 {
        font-size: 13px; }
      .c-productCategoryItem__title h2 {
        letter-spacing: 0; }
  .c-productCategoryItem__list {
    display: none; }
    .c-productCategoryItem__list li {
      border-bottom: 1px solid #ccc;
      background-color: #ededed;
      font-weight: bold; }
      .c-productCategoryItem__list li::after {
        right: 15px; }
    .c-productCategoryItem__list li a {
      font-size: 13px; }
    .c-productCategoryItem__list li a {
      display: block;
      padding: 15px 30px 15px 15px; }
  .-forBusinessTop .c-productCategoryItem .is-open .c-productCategoryItem__title.-arrow::after {
    -webkit-transform: translate(0, -50%) rotate(0deg);
    transform: translate(0, -50%) rotate(0deg);
    border-right: 0; }
  .-forBusinessTop .c-productCategoryItem__title.-cheese img {
    width: 32px;
    height: 26px; }
  .-forBusinessTop .c-productCategoryItem__title.-kanzume img {
    width: 30px;
    height: 26px; }
  .-forBusinessTop .c-productCategoryItem__title.-freezedry img {
    width: 36px;
    height: 34px; }
  .-forBusinessTop .c-productCategoryItem__title.-frozenfood img {
    width: 36px;
    height: 28px; }
  .-forBusinessTop .c-productCategoryItem__title h2 {
    margin-left: 15px; }
  .-forBusinessTop .c-productCategoryItem:first-of-type {
    border-top: 1px solid #ccc; }
  .-forBusinessTop .c-productCategoryItem:nth-of-type(n+3) {
    margin-top: 0; }
  .-forConsumerCategory .c-productCategoryItem {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%; }
    .-forConsumerCategory .c-productCategoryItem:nth-of-type(n+3) {
      margin-top: 15px; }
  .-forConsumerCategory .c-productCategoryItem__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 90px;
    padding: 8px;
    border: 2px solid #999;
    border-radius: 10px; }
    .-forConsumerCategory .c-productCategoryItem__title h2 {
      margin-top: 4px; }
      .c-productListItem {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        min-width: 50%;
        max-width: 50%;
        margin-bottom: 30px; }
      .c-productListItem__inner {
        width: 90%; }
    .c-productSummaryList {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-bottom: 20px; }
    .c-productSummaryList__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
      flex: 0 0 48%;
      margin-bottom: 30px; }
      .c-productSummaryList__item__image {
        padding: 10px; }
          .-new .c-productSummaryList__item__image::before, .-renewal .c-productSummaryList__item__image::before {
            font-size: 12px; }
          .-new .c-productSummaryList__item__image::before, .-renewal .c-productSummaryList__item__image::before {
            height: 25px; }
          .-new .c-productSummaryList__item__image::after, .-renewal .c-productSummaryList__item__image::after {
            top: 16px; }
        .-new .c-productSummaryList__item__image::before {
          width: 64px; }
      .-new .c-productSummaryList__item__image::after {
        left: 25px; }
        .-renewal .c-productSummaryList__item__image::before {
          width: 102px; }
      .-renewal .c-productSummaryList__item__image::after {
        left: 45px; }
      .c-productSummaryList__item__title {
        font-size: 16px; }
      .c-productSummaryList__item__title {
        margin-top: 14px; }
      .c-recipeListItem {
        padding-right: 20px;
        padding-left: 20px; }
        .c-recipeListItem__inner {
          padding: 35px 10px 10px 10px; }
        .c-recipeListItem__category {
          font-size: 14px; }
        .c-recipeListItem .c-recipeListItem__subject.is-sp {
          /* autoprefixer: off */
          -webkit-box-orient: vertical;
          /* autoprefixer: ignore next */
          -webkit-line-clamp: 2;
          display: -webkit-box !important;
          overflow: hidden; }
        .c-recipeListItem .c-recipeListItem__summary.is-sp {
          /* autoprefixer: off */
          -webkit-box-orient: vertical;
          /* autoprefixer: ignore next */
          -webkit-line-clamp: 3;
          display: -webkit-box !important;
          overflow: hidden; }
    .c-recipeList .slick-dots {
      margin-top: 10px; }
      .c-recipe__list.-column2 {
        padding-bottom: 60px; }
    .c-recipe__list.-column3 {
      padding-bottom: 60px; }
      .c-recipe__list.-column3 li:not(:first-of-type) {
        margin-top: 15px; }
      .c-recipe__list.-column3 a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .c-recipe a {
        padding: 12px; }
      .-column3 .c-recipe__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
        flex: 0 0 110px;
        width: 110px;
        height: auto;
        margin-right: 10px; }
      .c-recipe__title {
        font-size: 16px; }
      .c-recipe__title {
        padding-left: 30px;
        background-position: top 5px left 14px;
        background-size: 8px; }
        .c-recipe .c-recipe__title.is-sp {
          /* autoprefixer: off */
          -webkit-box-orient: vertical;
          /* autoprefixer: ignore next */
          -webkit-line-clamp: 2;
          display: -webkit-box !important;
          overflow: hidden; }
        .c-recipe__title::before {
          width: 10px;
          background-position: top 5px left;
          background-size: 8px; }
      .c-recipe__summary {
        border-top: 2px dotted #e3cdc4; }
      .c-recipe .c-recipe__summary.is-sp {
        /* autoprefixer: off */
        -webkit-box-orient: vertical;
        /* autoprefixer: ignore next */
        -webkit-line-clamp: 2;
        display: -webkit-box !important;
        overflow: hidden; }
    .c-recipe.c-sliderCarousel-column4__item .c-recipe__title, .c-recipe.c-sliderCarousel-column4__item .c-recipe__summary {
      font-size: 18px; }
    .c-recipeSeach {
      padding-top: 30px;
      padding-bottom: 30px; }
      .c-recipeSeach__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
      .c-recipeSeach__label {
        font-size: 20px; }
      .c-recipeSeach__label {
        margin-bottom: 20px; }
    .c-recipeSeach__form {
      width: 100%; }
      .c-recipeSeach__toggle {
        width: 250px;
        margin-top: 20px; }
      .c-recipeSeach__filter__inner {
        padding: 30px 10px; }
        .c-recipeSeach__filter__heading {
          font-size: 20px; }
        .c-recipeSeach__filter__heading {
          margin-bottom: 15px; }
        .c-recipeSeach__filter__heading:not(:first-of-type) {
          margin-top: 40px; }
        .c-recipeSeach__filter__categoryList {
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between; }
        .c-recipeSeach__filter__categoryList li {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 48%;
          flex: 0 0 48%;
          margin-bottom: 15px; }
          .c-recipeSeach__filter__categoryList li button {
            font-size: 12px; }
      .c-recipeSeach__filter__selected {
        margin-top: 20px; }
        .c-recipeSeach__filter__selected__item {
          margin-bottom: 15px;
          padding: 5px 0;
          border-bottom: 2px dotted #e3cdc4; }
      .c-recipeSeach__filter__selected button {
        font-size: 12px; }
        .c-recipeSeach__filter__result {
          font-size: 24px; }
        .c-recipeSeach__filter__result {
          margin: 30px 0; }
          .c-recipeSeach__filter__result span {
            font-size: 28px; }
  .c-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .c-share__item {
    margin-left: 12px; }
  .c-share__link {
    display: block;
    width: 30px;
    height: 30px; }
  .c-share__link.-twitter {
    overflow: hidden;
    border-radius: 50%;
    background: #1DA1F2 url(/files/user/assets/images/icon/twitter.png?v=1578281164) no-repeat center/15px; }
  .c-share__link.-facebook {
    background: url(/files/user/assets/images/icon/facebook.png?v=1578281154) no-repeat;
    background-size: 30px; }
      .c-sliderCarousel-column4__item.c-recipe {
        padding: 10px 0 0; }
    .c-sliderCarousel-column4__item {
      padding-right: 20px;
      padding-left: 20px; }
      .c-sliderCarousel-column4__item__title {
        font-size: 16px; }
      .c-sliderCarousel-column4__item__title {
        /* autoprefixer: off */
        -webkit-box-orient: vertical;
        /* autoprefixer: ignore next */
        -webkit-line-clamp: 2;
        display: -webkit-box !important;
        margin-top: 14px;
        overflow: hidden; }
        .-noBorder .c-sliderCarousel-column4__item__title {
          text-align: left; }
        .-border .c-sliderCarousel-column4__item__image {
          max-width: 165px;
          height: 165px; }
          .-new .c-sliderCarousel-column4__item__image::before, .-renewal .c-sliderCarousel-column4__item__image::before {
            font-size: 12px; }
          .-new .c-sliderCarousel-column4__item__image::before, .-renewal .c-sliderCarousel-column4__item__image::before {
            height: 25px; }
          .-new .c-sliderCarousel-column4__item__image::after, .-renewal .c-sliderCarousel-column4__item__image::after {
            top: 16px; }
        .-new .c-sliderCarousel-column4__item__image::before {
          width: 64px; }
      .-new .c-sliderCarousel-column4__item__image::after {
        left: 25px; }
        .-renewal .c-sliderCarousel-column4__item__image::before {
          width: 102px; }
      .-renewal .c-sliderCarousel-column4__item__image::after {
        left: 45px; }
  .c-sliderCarousel-column4 {
    margin-bottom: 50px !important; }
  .c-sliderCarousel-column4 .slick-dots {
    margin-top: 10px; }
    .c-sliderCarouselOnSubject__item {
      padding-right: 20px;
      padding-left: 20px; }
    .c-sliderCarouselOnSubject__subject {
      font-size: 16px; }
    .c-sliderCarouselOnSubject__subject {
      /* autoprefixer: off */
      -webkit-box-orient: vertical;
      /* autoprefixer: ignore next */
      -webkit-line-clamp: 2;
      display: -webkit-box !important;
      margin-top: 15px;
      overflow: hidden; }
  .c-sliderCarouselOnSubject .slick-dots {
    margin-top: 10px; }
    .c-sliderCarousel__item {
      padding-right: 20px;
      padding-left: 20px; }
  .c-sliderCarousel {
    margin-bottom: 50px !important; }
  .c-sliderCarousel .slick-dots {
    margin-top: 10px; }
  .c-sliderHero {
    margin-bottom: 84px !important; }
  .c-sliderHero .slick-dots {
    margin-top: 10px; }
      .c-table dt, .c-table dd {
        font-size: 14px; }
      .c-table dt, .c-table dd {
        padding: 12px; }
      .c-table dt {
        width: 110px; }
      .c-table dd {
        width: calc(100% - 110px); }
  .p-hoko-layout-main {
    margin-top: 21px;
    margin-bottom: 74.5px; }
  .p-hoko__anchorList {
    font-size: 13px; }
  .p-hoko__anchorList.-sp-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .-sp-link .p-hoko__anchorList__item {
    width: calc(50% - 7.5px);
    margin-bottom: 12px; }
  .-tb-list .p-hoko__anchorList__item + .p-hoko__anchorList__item {
    border-top: 1px solid #ccc; }
  .-sp-link .p-hoko__anchorList__item:nth-of-type(even) {
    margin-left: 15px; }
  .-tb-list .p-hoko__anchorList__item:last-child {
    border-bottom: 1px solid #ccc; }
    .p-hoko__anchorList__link {
      font-size: auto/2px; }
    .-sp-link .p-hoko__anchorList__link {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 11px 5px 11px;
      border: 2px solid #999999;
      border-radius: 10px;
      text-align: center; }
    .-tb-list .p-hoko__anchorList__link {
      padding-top: 19px;
      padding-bottom: 16px;
      padding-left: 15px; }
    .p-hokoTop__pageList {
      margin-bottom: -40px; }
    .p-hokoTop__pageList__item {
      width: calc(50% - 8.5px);
      margin-bottom: 34px; }
    .p-hokoTop__pageList__item:nth-of-type(even) {
      margin-left: 17px; }
      .p-hokoTop__pageList__subject {
        font-size: 18px; }
      .p-hokoTop__pageList__subject {
        margin-top: 11.5px; }
  .p-hokoBusiness__block + .p-hokoBusiness__block {
    margin-top: 59px; }
    .p-hokoBusiness__block__img {
      margin-top: 30px; }
    .p-hokoBusiness__block__img > span {
      font-size: 12px; }
    .p-hokoBusiness__block__subject {
      font-size: 19px; }
    .p-hokoBusiness__block__subject {
      margin-top: 20px; }
  .p-hokoBusiness__block__summary {
    margin-top: 9px; }
    .p-hokoHistory__block {
      min-height: 52.5px; }
    .p-hokoHistory__block__year {
      font-size: 16px; }
    .p-hokoHistory__block__year {
      position: relative;
      padding-top: 15px;
      padding-left: 12px;
      font-weight: bold; }
    .p-hokoHistory__block__year::before {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 3px;
      width: 1px;
      background-color: #ccc;
      content: ''; }
    .p-hokoHistory__block__year::after {
      z-index: 10;
      position: absolute;
      top: 25px;
      left: 0px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: #dc0000;
      content: ''; }
    .p-hokoHistory__block__inner {
      margin-left: 10px;
      padding-top: 15px; }
    .p-hokoHistory__block__summary {
      font-size: 14px; }
    .p-hokoHistory__block__summary {
      margin-bottom: 19.5px; }
  .p-hokoHistory__block__img {
    margin-bottom: 23px; }
  .p-hokoHistory__block__img__box + .p-hokoHistory__block__img__box {
    margin-top: 15px; }
  .p-hokoHistory__block__img img + .p-hokoHistory__block__img img {
    margin-top: 26.5px; }
  .p-hokoTopMsg__read {
    font-size: 20px; }
  .p-hokoTopMsg__read {
    margin-top: 34px;
    padding-right: 31px;
    padding-left: 31px; }
  .p-hokoTopMsg__message {
    margin-top: 20px;
    line-height: 1.6; }
    .p-hokoTopMsg__name {
      margin-top: 22px; }
  .p-hokoTopMsg__name > dt {
    font-size: 18px; }
    .p-hokoTopMsg__name > dd {
      font-size: 14px; }
  .p-hokoCompany__block + .p-hokoCompany__block {
    margin-top: 60px; }
  .c-blockTitle + .c-table {
    margin-top: 30px; }
  .p-hokoOffice__block + .p-hokoOffice__block {
    margin-top: 54px; }
    .p-hokoOffice__block__hedding {
      font-size: 19px; }
    .p-hokoOffice__block__category {
      font-size: 24px; }
  .p-hokoOffice__block__list {
    margin-top: 17px; }
  .p-hokoOffice__block__item:last-child.-accordion-item {
    padding-bottom: 0; }
  .p-hokoOffice__block__item.-accordion-item {
    display: none;
    padding-top: 29.5px;
    padding-bottom: 50px; }
    .p-hokoOffice__block__address {
      font-size: 14px; }
    .p-hokoOffice__block__col2 {
      margin-top: 16px; }
    .-accordion-item .p-hokoOffice__block__col2 {
      margin-top: 0; }
  .p-hokoOffice__block__detail {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .p-hokoOffice__block__detail {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; }
  .p-hokoOffice__block__img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    max-width: 215px;
    margin: 0 auto;
    margin-bottom: 20px; }
    .p-hokoOffice__block__button {
      font-size: 14px; }
    .p-hokoOffice__block__button {
      margin: 26px auto 0; }
  .p-hokoOffice__block .c-table {
    margin-top: 45px; }
  .p-hokoCsr > .p-hoko__anchorList {
    margin-bottom: 62px; }
  .p-hokoCsr__layout-ma2 {
    margin-top: 50px !important;
    margin-bottom: 16px; }
  .p-hokoCsr__layout-ma3 {
    margin-top: 13px !important; }
  .p-hokoCsr__layout-ma4 {
    margin-top: 41px !important; }
  .p-hokoCsr__block + .p-hokoCsr__block {
    margin-top: 58px; }
  .p-hokoCsr__flexItem {
    margin-top: 14px; }
  .p-hokoCsr__flexItem__left {
    font-size: 16px; }
  .p-hokoCsr__flexItem__right {
    font-size: 16px; }
  .p-hokoCsr__flexItem__right {
    margin-top: 20.75px; }
    .p-hokoCsr__achievement {
      padding: 21px 12px 26px; }
  .p-hokoCsr__achievement:first-child {
    margin-top: 20px; }
  .p-hokoCsr__achievement + .p-hokoCsr__achievement {
    margin-top: 20px; }
    .p-hokoCsr__achievement__title {
      font-size: 16px; }
    .p-hokoCsr__achievement__summary {
      font-size: 14px; }
    .p-hokoCsr__achievement__summary {
      margin: 8px 0; }
  .p-hokoCsr__achievement__summary + .p-hokoCsr__achievement__img {
    margin-top: 16px; }
  .p-hokoCsr__achievement__img.-min-size > img {
    width: 77%; }
    .p-hokoCsr__strongText {
      font-size: 18px; }
    .p-hokoCsr__strongText {
      margin-top: 19px; }
  .p-hokoCsr__policy {
    margin-top: 19.5px;
    margin-bottom: 25px; }
    .p-hokoCsr__textList > dt {
      font-size: 16px; }
    .p-hokoCsr__textList > dt ~ dt {
      margin-top: 12px; }
  .p-hokoCsr__textList > dd {
    font-size: 14px; }
  .p-hokoCsr__textList > dd {
    margin-top: 2px; }
  .p-hokoCsr__table {
    margin-top: 23px;
    margin-bottom: 24px; }
  .p-hokoCsr__table__block + .p-hokoCsr__table__block {
    margin-top: 26px; }
    .p-hokoCsr__table__title {
      font-size: 16px; }
    .p-hokoCsr__table .c-table dt, .p-hokoCsr__table .c-table dd {
      padding: 11px 15px; }
    .p-hokoCsr__community__item + .p-hokoCsr__community__item {
      margin-top: 28px; }
    .p-hokoCsr__community__item > p {
      font-size: 14px; }
    .p-hokoCsr__community__item > p {
      margin: 7px 0 7px; }
    .p-hokoCsr__bgSummary {
      font-size: 14px; }
    .p-hokoCsr__bgSummary {
      margin-top: 29px;
      padding: 17px 14px 13px; }
    .p-hokoCsr__img.-plant {
      margin-top: 13px; }
    .p-hokoCsr__img:not(.-plant) {
      margin-top: 17px; }
      .p-hokoCsr__img:not(.-plant) > img {
        padding: 12px; }
  .p-hokoCsr__example {
    margin-top: 61px; }
  .p-hokoCsr__example .p-hoko__anchorList {
    margin-top: 28px; }
  .p-hokoCsr__news-list {
    margin-top: 48px; }
  .p-hokoCsr__news-list .c-list {
    margin-top: 23px; }
  .p-hokoCsr__button {
    margin-top: 39px; }
  .p-hokoCsr__button .c-buttonBorder {
    width: 165px; }
  .p-forBusinessContact {
    padding: 30px 15px 60px; }
    .p-forBusinessContact__block {
      padding: 30px 10px; }
      .p-forBusinessContact__block .c-buttonBorder {
        display: block;
        width: 250px;
        margin: auto;
        padding: 12px;
        letter-spacing: .14rem; }
    .p-forBusinessContact__block:not(:first-of-type) {
      margin-top: 10px; }
    .p-forBusinessContact__heading {
      padding-left: 50px;
      background-position: left 10px center;
      text-align: left; }
      .p-forBusinessContact__heading.-mail {
        background-size: 30px; }
      .p-forBusinessContact__heading.-tel {
        padding-bottom: 2px;
        background-size: 24px; }
    .p-forBusinessContact__emphasis {
      font-size: 24px; }
    .p-forBusinessContact__emphasis {
      text-decoration: underline; }
    .p-forBusinessContact__note {
      font-size: 13px; }
  .p-infoDetail {
    margin-top: 56px;
    margin-bottom: 94px; }
    .p-infoDetail .c-infoListItem__date {
      margin-right: 2px; }
  .p-infoDetail__share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 13px; }
  .p-infoDetail__share + .p-infoDetail {
    margin-top: 14px; }
    .p-infoDetail__date {
      margin-bottom: 14.5px; }
      .p-infoDetail__date .c-infoListItem__category {
        min-width: 75px; }
  .p-infoDetail__block {
    margin-top: 36px; }
    .p-infoDetail > .c-formButton, .p-infoDetail > .c-buttonBack {
      width: 165px;
      margin: 41px auto 0; }
  .p-infoDetail__read {
    font-size: 16px; }
  .p-infoDetail__read {
    margin-top: 20px; }
  .p-info-layout-main, .p-searchResultLayout-main {
    margin-top: 21px;
    margin-bottom: 74.5px; }
    .p-info__archive {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-top: 55px; }
  .p-info__select {
    width: calc(50% - 7.5px);
    margin-bottom: 20px; }
    .p-info__select > select {
      width: 100%;
      padding: 10px 9px;
      background: url(/files/user/assets/images/about/arrow.png?v=1577242647) no-repeat center/14px;
      background-position-x: calc(100% - 9px); }
  .p-info__select:first-child {
    margin-right: 15px; }
  .p-info__button {
    width: calc(50% - 7.5px);
    text-align: center; }
    .p-info__button > button {
      width: 100%;
      padding: 10px; }
  .p-info .c-list {
    margin-top: 42px; }
  .p-info .c-infoListItem__category {
    min-width: 123px; }
  .p-inquiry-faq {
    margin-bottom: 70px;
    letter-spacing: .07em; }
    .p-inquiry-faq p:not([class]) {
      font-size: 14px; }
  .p-inquiry-faq__search {
    margin-top: 50px; }
  .p-inquiry-faq__search__inner {
    text-align: center; }
    .p-inquiry-faq__search__inner button {
      margin-top: 30px; }
    .p-inquiry-faq__list {
      margin-bottom: 50px;
      padding: 20px 0 50px; }
    .p-inquiry-faq__button {
      width: 280px; }
      .p-inquiry-faq__button::after {
        right: 12px;
        width: 8px;
        height: 8px; }
  .p-inquiry-faqDetail__head {
    margin-bottom: 40px;
    text-align: right; }
    .p-inquiry-faqDetail__head .c-heading--lv1 {
      text-align: left; }
    .p-inquiry-faqDetail__heading {
      font-size: 19px; }
    .p-inquiry-faqDetail__heading {
      margin-bottom: 15px;
      letter-spacing: .07em; }
      .p-inquiry-faqDetail__heading::before {
        font-size: 12px; }
      .p-inquiry-faqDetail__heading::before {
        width: 20px;
        height: 20px;
        margin-right: 10px; }
  .p-inquiry-faqDetail__answer {
    font-size: 14px; }
  .p-inquiry-faqDetail__answer {
    margin: 15px 0 50px;
    padding-left: 30px; }
    .p-inquiry-faqDetail__image {
      margin: 20px auto; }
  .p-inquiry {
    margin-top: 20px;
    letter-spacing: .07em; }
    .p-inquiry p:not([class]) {
      font-size: 14px; }
  .p-inquiry h3 {
    margin: 50px 0 30px;
    letter-spacing: .07em; }
  .p-inquiry__nav {
    margin-bottom: 60px;
    padding: 40px 0; }
  .p-inquiry__navList li img {
    max-height: 42px;
    margin-bottom: 8px; }
  .p-inquiry__inner {
    margin: 60px auto; }
    .p-inquiry__tel {
      font-size: 23px; }
    .p-inquiry__tel {
      margin-bottom: 16px;
      padding-left: 30px;
      background-size: 22px; }
  .p-inquiry__address span {
    font-size: 16px; }
    .p-inquiry__button {
      font-size: 14px; }
    .p-inquiry__button {
      width: 265px;
      letter-spacing: .05em; }
      .p-inquiry__buttonList li:not(:first-of-type) {
        margin-top: 40px; }
    .p-productDetail__feature {
      padding: 60px 0 20px; }
    .p-productDetail__recommend:first-of-type {
      padding-top: 40px; }
  .p-productDetail__recommend:not(:first-of-type) {
    margin-top: 80px; }
    .p-productDetail__head {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
  .p-productDetail__title {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 20px; }
    .p-productDetail__mainVisual {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3;
      margin-bottom: 20px; }
  .p-productDetail__spec {
    margin-top: 60px; }
      .p-productDetail__spec__headingList {
        display: none; }
    .p-productDetail__spec__heading {
      font-size: 16px; }
    .p-productDetail__spec__heading {
      position: relative;
      margin-top: -2px;
      padding: 16px;
      border: 2px solid #005aa5;
      text-align: center; }
      .p-productDetail__spec__heading::after {
        display: block;
        position: absolute;
        top: 46%;
        right: 15px;
        width: 10px;
        height: 10px;
        -webkit-transform: translate(0, -50%) rotate(-45deg);
        transform: translate(0, -50%) rotate(-45deg);
        border-bottom: 2px solid #005aa5;
        border-left: 2px solid #005aa5;
        content: ""; }
      .p-productDetail__spec__heading.is-open::after {
        top: 54%;
        -webkit-transform: translate(0, -50%) rotate(135deg);
        transform: translate(0, -50%) rotate(135deg); }
    .p-productDetail__spec__subHeading {
      font-size: 16px; }
    .p-productDetail__spec__subHeading {
      margin-top: 30px; }
  .p-productDetail__spec__info2 {
    margin-top: 45px;
    margin-bottom: -18px; }
  .p-productDetail__spec__content__inner {
    padding: 20px 0 40px; }
    .p-productDetail__spec__nutrition {
      font-size: 14px; }
  .p-productDetail__spec__note {
    font-size: 12px; }
    .p-productDetail__spec__allergy {
      font-size: 12px; }
      .p-productDetail__spec__allergy li {
        padding: 10px 2px;
        line-height: 1.2; }
  .p-productDetail__slider__outer {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px; }
    .p-productDetail__sliderNav {
      font-size: 12px; }
    .p-productDetail__summary {
      -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
      order: 4; }
      .p-productDetail__summary__catch {
        font-size: 12px; }
      .p-productDetail__summary__catch {
        padding: 2px 10px; }
        .p-productDetail__summary__catch:not(:first-of-type) {
          margin-left: 8px; }
    .p-productDetail__summary__buttonList {
      margin-top: 20px; }
  .p-productTop__new {
    padding-top: 40px;
    padding-bottom: 70px; }
  .p-productTop__categoryList .c-productListItem__subject {
    font-size: 18px; }
    .p-recipeDetail {
      padding-top: 20px;
      padding-bottom: 20px; }
    .p-recipeDetail__sns {
      width: 180px; }
      .p-recipeDetail__sns li:not(:first-of-type) {
        margin-top: 15px; }
      .p-recipeDetail__sns__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #333333;
        letter-spacing: .05em;
        cursor: pointer; }
        .p-recipeDetail__sns__item img {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 30px;
          flex: 0 0 30px;
          width: 30px;
          margin-right: 15px; }
      .p-recipeDetail__sns__toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 150px;
        height: 40px;
        margin: 15px 0 15px auto;
        border: 2px solid #999;
        border-radius: 20px;
        background-color: #fff;
        font-weight: bold;
        letter-spacing: .14em;
        cursor: pointer; }
        .p-recipeDetail__sns__toggle::after {
          display: block;
          position: absolute;
          top: 48%;
          right: 12px;
          width: 8px;
          height: 8px;
          -webkit-transform: translate(0, -50%) rotate(135deg);
          transform: translate(0, -50%) rotate(135deg);
          border-top: 2px solid #dc0000;
          border-right: 2px solid #dc0000;
          content: ""; }
      .p-recipeDetail__title {
        padding-left: 30px;
        background-position: top 5px left 14px;
        background-size: 8px; }
        .p-recipeDetail__title::after {
          width: 10px;
          background-position: top 5px left;
          background-size: 8px; }
        .p-recipeDetail__title::before {
          width: 10px;
          background-position: top 5px left;
          background-size: 8px; }
      .p-recipeDetail__summary__table__outer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 20px; }
      .p-recipeDetail__summary__table {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33%;
        flex: 0 0 33%;
        padding: 30px 10px 10px;
        text-align: center; }
        .p-recipeDetail__summary__table dt::before {
          width: 100%;
          height: 25px; }
        .p-recipeDetail__summary__table dd {
          font-size: 16px; }
      .p-recipeDetail__summary__note {
        font-size: 12px; }
      .p-recipeDetail__summary__note {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%; }
    .p-recipeDetail__product {
      margin-top: 50px; }
      .p-recipeDetail__product__inner {
        padding: 30px 10px; }
      .p-recipeDetail__product__heading {
        font-size: 19px; }
      .p-recipeDetail__product__heading {
        width: 218px;
        height: 46px; }
        .p-recipeDetail__product__heading::before {
          width: 24px;
          height: 24px;
          margin-right: 8px; }
      .p-recipeDetail__product__itemList li {
        padding: 15px 0; }
        .p-recipeDetail__product__itemList li:not(:first-of-type) {
          border-top: 1px solid #e3cdc4; }
        .p-recipeDetail__product__item__title {
          font-size: 16px; }
      .p-recipeDetail__howto {
        margin: 50px 0; }
        .p-recipeDetail__howto::before {
          top: -10px;
          left: -20px;
          width: 70px;
          height: 64px; }
        .p-recipeDetail__howto::after {
          right: -10px;
          bottom: -20px;
          width: 88px;
          height: 56px; }
      .p-recipeDetail__howto__block.-material {
        margin-bottom: 40px; }
      .p-recipeDetail__howto__heading {
        font-size: 20px; }
      .p-recipeDetail__howto__heading {
        padding: 0 0 10px;
        border-bottom: 2px dotted #e3cdc4; }
      .-material .p-recipeDetail__howto__heading {
        margin-bottom: 15px; }
        .p-recipeDetail__howto__subHeading {
          font-size: 16px; }
        .p-recipeDetail__howto__subHeading {
          margin-top: 29px; }
        .p-recipeDetail__howto__heading + .p-recipeDetail__howto__subHeading {
          margin-top: 19px; }
        .p-recipeDetail__howto__list li {
          font-size: 14px; }
        .p-recipeDetail__howto__list.-material {
          font-size: 14px; }
      .p-recipeDetail__howto__list.-single-item {
        margin-top: 35px; }
  .p-recipeSearch__data {
    padding-top: 32px; }
    .p-recipeSearch__data__text {
      font-size: 16px; }
    .p-recipeSearch__data__result {
      padding-top: 30px; }
    .p-recipeSearch__data__result .c-recipeSeach__filter__result {
      margin: 0; }
    .p-recipeSearch__data__result .c-formButton__outer {
      margin-top: 40px; }
  .p-recipeSearch__data .c-bg-borderArrowBottom {
    bottom: -32px; }
    .p-searchResult {
      padding-bottom: 50px; }
    .p-searchResult .c-sp-pager {
      margin-top: 39px; }
    .p-searchResult .c-recipe__list {
      margin-bottom: -27px; }
    .p-searchResult .c-recipe {
      margin-bottom: 27px; }
    .p-recipeTop__newest {
      padding-top: 30px;
      padding-bottom: 60px; }
  .p-recipe-hedding__slider {
    width: calc(100% - 15px);
    margin: 30px auto 0; }
    .p-recruit-top__sliderHero__inner {
      margin-top: -30px; }
    .p-recruit-top__sliderHero__text {
      width: 40vw;
      min-width: 166px;
      height: 40vw;
      min-height: 166px; }
      .p-recruit-top__sliderHero__text .-top {
        font-size: 11px; }
      .p-recruit-top__sliderHero__text .-top {
        margin-top: 20px;
        letter-spacing: .06em; }
      .p-recruit-top__sliderHero__text .-heading {
        font-size: 22px; }
      .p-recruit-top__sliderHero__text .-heading {
        margin: 4px 0 16px;
        letter-spacing: .05em; }
      .p-recruit-top__sliderHero__text .-bottom {
        font-size: 6px; }
  .p-recruit-top__inner {
    margin: 50px 0;
    letter-spacing: .07em; }
    .p-recruit-top__heading {
      font-size: 24px; }
    .p-recruit-top__subHeading {
      font-size: 12px; }
    .p-recruit-top__subHeading {
      margin: 5px 0 40px; }
  .p-recruit-top__nav.-column4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .-column4 .p-recruit-top__nav__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      width: 50%; }
    .p-recruit-top__nav__title {
      font-size: 20px; }
  .p-recruit-top__buttonList {
    margin-top: 50px; }
  .p-recruit-top__button {
    font-size: 16px; }
  .p-recruit-top__button {
    display: block;
    margin-top: 20px;
    border-width: 3px; }
    .p-recruit {
      font-size: 14px; }
    .p-recruit {
      letter-spacing: .01em; }
    .p-recruit-layout {
      margin: 30px 0 60px; }
    .p-recruit-layout section:not([class]) + section:not([class]) {
      margin-top: 60px; }
    .p-recruit-header {
      margin-bottom: 30px; }
    .p-recruit-headerLogo {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      padding: 0 15px; }
      .p-recruit-headerLogo img {
        width: 70px; }
      .p-recruit-headerLogo a {
        font-size: 16px; }
      .p-recruit-headerLogo a {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: auto; }
      .p-recruit-headerLogo__title {
        font-size: 12.5px; }
      .p-recruit-headerNav__item > a {
        font-size: 13px; }
    .p-recruit-footerLogo .-hoko {
      width: 88px;
      margin: 0 auto 20px; }
      .p-recruit-entry__step li {
        margin-bottom: 40px;
        padding: 15px; }
        .p-recruit-entry__step li:not(:first-of-type)::before {
          top: -25px;
          width: 16px;
          height: 16px;
          border-width: 2px; }
      .p-recruit-entry__step__heading {
        font-size: 19px; }
      .p-recruit-entry__step__heading {
        margin-bottom: 10px;
        text-align: center; }
    .p-recruit-entry__mypage {
      padding-bottom: 40px; }
      .p-recruit-entry__mypage__step {
        margin: 50px 0 15px; }
        .p-recruit-entry__mypage__step li {
          font-size: 11px; }
        .p-recruit-entry__mypage__step li {
          padding: 10px 4px; }
          .p-recruit-entry__mypage__step li:not(:first-child) {
            padding: 10px 4px 10px 24px; }
      .p-recruit-message__hr {
        padding: 30px 10px; }
        .p-recruit-message__hr__list li h3 {
          font-size: 16px; }
    .p-recruit-job__table dt, .p-recruit-job__table dd {
      padding-top: 15px;
      padding-bottom: 15px; }
      .p-recruit-about__heading--lv3 {
        font-size: 16px; }
      .p-recruit-about__gallery {
        margin-top: 30px; }
        .p-recruit-about__gallery__item + .p-recruit-about__gallery__item {
          margin-top: 20px; }
      .p-recruit-about__button {
        font-size: 16px; }
        .p-recruit-data__notes {
          font-size: 12px; }
          .p-recruit-data__content-col {
            padding: 0; }
            .p-recruit-data__content-col.l-container__col--50 {
              -webkit-box-flex: 1;
              -ms-flex: 1 100%;
              flex: 1 100%;
              max-width: inherit;
              border: none;
              text-align: center; }
            .p-recruit-data__content-col-inner {
              padding: 30px 0;
              border-bottom: 2px solid #bcbab2; }
            .p-recruit-data__content-product .-title {
              padding-top: 10px; }
          .p-recruit-data__content-title.-size75 {
            font-size: 50px; }
          .p-recruit-data__content-title.-size100 {
            font-size: 70px; }
          .p-recruit-data__content-text .size20 {
            font-size: 13px; }
          .p-recruit-data__content-text .size24 {
            font-size: 14px; }
          .p-recruit-data__content-text .size32 {
            font-size: 22px; }
          .p-recruit-data__content-text .size36 {
            font-size: 25px; }
          .p-recruit-data__content-text .size48 {
            font-size: 35px; }
          .p-recruit-data__content-text .size70 {
            font-size: 50px; }
          .p-recruit-data__content-text .size100 {
            font-size: 50px; }
        .p-recruit-data__heading {
          font-size: 20px; }
        .p-recruit-data__message {
          font-size: 14px; }
      .p-recruit-education__heading {
        font-size: 16px; }
    .p-recruit-faq {
      margin-top: 40px; }
          .p-recruit-interview__top__name {
            font-size: 16px; }
          .p-recruit-interview__top__content {
            padding: 15px; }
          .p-recruit-interview__top__detail {
            font-size: 14px; }
          .p-recruit-interview__top__detail {
            padding-top: 10px; }
          .p-recruit-interview__top__list.-column3 li {
            width: calc(50% - 20px);
            margin-bottom: 40px; }
            .p-recruit-interview__top__list.-column3 li:not(:nth-of-type(2n)) {
              margin-right: 20px; }
        .p-recruit-interviewDetail__banner--heading {
          font-size: 20px; }
        .p-recruit-interviewDetail__banner--heading {
          margin: 0 15px;
          -webkit-transform: translateY(-20px);
          transform: translateY(-20px); }
      .p-recruit-interviewDetail__intro {
        padding: 15px 0 15px 15px; }
        .p-recruit-interviewDetail__intro__name {
          font-size: 20px; }
          .p-recruit-interviewDetail__intro__name--eng {
            font-size: 11px; }
        .p-recruit-interviewDetail__intro__company {
          font-size: 16px; }
        .p-recruit-interviewDetail__intro__company {
          margin-top: 20px; }
        .p-recruit-interviewDetail__intro__writeup {
          font-size: 16px; }
        .p-recruit-interviewDetail__intro__writeup {
          margin-top: 20px; }
      .p-recruit-interviewDetail__btn {
        font-size: 16px; }
      .p-recruit-interviewDetail__btn {
        width: 100%;
        max-width: 320px;
        height: 50px;
        margin: 45px auto; }
        .p-recruit-interviewDetail__btn.c-buttonBorder {
          border: 3px solid #dc0000; }
          .p-recruit-interviewDetail__btn.c-buttonBorder.-arrow::after {
            right: 15px;
            width: 10px;
            height: 10px;
            border-top: 2px solid #dc0000;
            border-right: 2px solid #dc0000; }
        .p-recruit-interviewDetail__btn:hover.-arrow::after {
          border-color: #fff; }
      .p-recruit-interviewDetail__description__section {
        margin-top: 60px; }
      .p-recruit-interviewDetail__description__image {
        max-width: inherit !important;
        margin: 0 !important;
        margin-bottom: 20px !important;
        float: none !important; }
      .p-recruit-interviewDetail__description__heading {
        font-size: 24px; }
      .p-recruit-interviewDetail__description__heading {
        margin-bottom: 30px; }
      .p-recruit-interviewDetail__description__writeup {
        font-size: 16px; }
      .p-recruit-story__hero {
        margin-top: 40px;
        padding: 30px 0; }
        .p-recruit-story__hero--heading {
          font-size: 28px; }
        .p-recruit-story__hero--heading {
          margin-top: 30px;
          line-height: 1.3em; }
        .p-recruit-story__hero--intro {
          font-size: 16px; }
        .p-recruit-story__hero--intro {
          padding: 0;
          padding-top: 30px; }
      .p-recruit-story__member__list.-column3 {
        padding-bottom: 10px; }
        .p-recruit-story__member__list.-column3 li {
          margin-bottom: 30px; }
          .p-recruit-story__member__list.-column3 li:not(:first-of-type) {
            margin-top: 15px; }
        .p-recruit-story__member__list.-column3 a {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
        .p-recruit-story__member__name {
          font-size: 16px; }
    .p-recruit-story__flexItem__left {
      font-size: 16px; }
    .p-recruit-story__flexItem__right {
      font-size: 16px; }
    .p-recruit-story__flexItem__right {
      margin-top: 30px; }
      .p-recruit-story__heading--lv2 {
        font-size: 24px; }
      .p-recruit-story__heading--lv2 {
        margin-bottom: 30px; }
      .p-recruit-story__description {
        margin: 0 15px;
        padding-top: 75px; }
        .p-recruit-story__description__section {
          margin-top: 60px; }
        .p-recruit-story__description__list {
          margin-bottom: 20px; }
        .p-recruit-story__description__image {
          max-width: inherit !important;
          margin: 0 !important;
          margin-bottom: 20px !important;
          float: none !important; }
    .p-searchResult__title {
      margin: 30px 0; }
  .p-searchResult .c-list {
    margin-top: 42px; }
      .p-sitemap__heading {
        font-size: 24px; }
      .p-terms-layout .c-heading--lv1 {
        font-size: 28px; }
      .p-terms-layout .c-heading--lv3 {
        font-size: 20px; }
      .p-terms-layout .c-heading--lv4 {
        font-size: 16px; }
    .p-terms-layout .notes {
      font-size: 12px; }
    .p-terms-address {
      font-size: 16px; }
    .p-terms-regard__name {
      margin-top: 22px; }
  .p-terms-regard__name > dt {
    font-size: 18px; }
    .p-terms-regard__name > dd {
      font-size: 14px; }
      .p-top-parallax-section:first-of-type {
        margin-bottom: 150px; }
      .p-topProduct::before, .p-topProduct::after {
        background-size: contain; }
      .p-topProduct::before {
        top: 0px;
        left: -100px;
        width: 324px;
        height: 205px; }
      .p-topProduct::after {
        right: -110px;
        bottom: -70px;
        width: 290px;
        height: 290px; }
    .p-topBlockHeading {
      font-size: 25px; }
    .p-topRecipe {
      padding-bottom: 100px; }
      .p-topRecipeImageAbsolute.-left {
        top: -10px;
        left: -45px;
        width: 190px; }
      .p-topRecipeImageAbsolute.-right {
        right: -60px;
        bottom: -80px;
        width: 190px; }
    .p-topRecipe .slick-slider {
      margin-bottom: 70px; }
  .is-pc {
    display: none !important; }
  .is-sp {
    display: block !important; } }

@media print, screen and (min-width: 1023px) {
      .l-container--huge {
        padding-right: 20px;
        padding-left: 20px; } }

@media screen and (max-width: 768px) {
      .l-container__col {
        -webkit-box-flex: 1;
        -ms-flex: 1 100%;
        flex: 1 100%; }
        .l-container__col--40 {
          -webkit-box-flex: 1;
          -ms-flex: 1 100%;
          flex: 1 100%; }
          .l-container__col--40-sp {
            -webkit-box-flex: 1;
            -ms-flex: 1 39%;
            flex: 1 39%; }
        .l-container__col--50 {
          -webkit-box-flex: 1;
          -ms-flex: 1 100%;
          flex: 1 100%; }
          .l-container__col--50-sp {
            -webkit-box-flex: 1;
            -ms-flex: 1 49%;
            flex: 1 49%; }
    .p-headerNav__item.-search > a {
      display: none; }
    .p-headerNavChildPc {
      display: none !important; }
    .p-headerNavSearchPc {
      display: none !important; }
    .c-blockTitle__time + .c-blockTitle {
      margin-top: 14px; }
    .c-copy-result-text {
      position: absolute;
      bottom: -17px;
      left: 46px;
      color: #dc0000;
      font-size: 12px;
      font-weight: bold;
      white-space: nowrap; }
  .c-list__time {
    margin-right: 7px; }
    .is-overflow-y {
      position: fixed; }
    .c-overlay.is-show {
      display: block; }
      .c-recipeListItem {
        padding-right: 7.25px;
        padding-left: 7.25px; }
    .c-sliderCarousel-column4__item {
      padding-right: 7.25px;
      padding-left: 7.25px; }
    .c-sliderCarouselOnSubject__item {
      padding-right: 7.25px;
      padding-left: 7.25px; }
  .c-sliderCarouselOnSubject .slick-dots {
    margin-top: 10px; }
    .c-sliderCarousel__item {
      padding-right: 7.25px;
      padding-left: 7.25px; }
  .p-infoDetail__box {
    margin-top: 15px;
    margin-bottom: 15px; }
      .p-recipeDetail__summary__image img {
        margin: 0 auto; }
        .p-recipeDetail__product__item__image {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 68px;
          flex: 0 0 68px; }
    .p-recruit-footerLogo li {
      margin-bottom: 20px; }
    .p-recruit-footer .p-footerBottom__inner {
      height: auto; }
    .p-recruit-entry__step {
      margin: 30px 0 50px; }
      .p-recruit-about__section {
        margin-bottom: 20px; }
      .p-recruit-data {
        margin-top: 65px;
        margin-bottom: 65px;
        padding: 25px;
        padding-top: 0; }
        .l-container__row .l-container__col--50 {
          max-width: inherit; }
        .p-recruit-data .-marginTop30 {
          margin-top: 15px; }
        .p-recruit-data__sexIndex-left {
          padding-left: 38px; }
        .p-recruit-data__sexIndex-right {
          padding-right: 22px; }
          .p-recruit-data__content-product .l-container__col--40-sp {
            -webkit-box-flex: 1;
            -ms-flex: 1 35%;
            flex: 1 35%; }
          .p-recruit-data__content-product .l-container__col--50-sp {
            -webkit-box-flex: 1;
            -ms-flex: 1 60%;
            flex: 1 60%; }
          .p-recruit-data__content-img {
            padding: 0;
            padding-bottom: 20px;
            float: none; }
          .p-recruit-data__content-img.-img01 {
            -webkit-box-sizing: content-box;
            box-sizing: content-box;
            max-width: 55px;
            padding-right: 20px; }
          .p-recruit-data__content-img.-img02 {
            -webkit-box-sizing: content-box;
            box-sizing: content-box;
            max-width: 140px;
            padding-right: 20px; }
          .p-recruit-data__content-img.-sp100 {
            display: block;
            margin: 0 auto; }
          .p-recruit-data__content-text .left-sp {
            display: block;
            text-align: left; }
          .p-recruit-data__content-text .-spblock {
            display: block; }
        .p-recruit-data__message {
          margin-top: 40px;
          padding: 20px; }
        .p-recruit-data__img--01, .p-recruit-data__img--02, .p-recruit-data__img--03, .p-recruit-data__img--04, .p-recruit-data__img--05, .p-recruit-data__img--06, .p-recruit-data__img--07, .p-recruit-data__img--08, .p-recruit-data__img--09, .p-recruit-data__img--10, .p-recruit-data__img--11 {
          background-image: url("/files/user/assets/images/recruit/recruit-data-vector-sp-2.png"); }
        .p-recruit-data__img--01 {
          max-width: 295px;
          background-position: 0 47.513239%;
          background-size: 100%; }
        .p-recruit-data__img--02 {
          max-width: 285px;
          background-position: 0 0%;
          background-size: 100%; }
        .p-recruit-data__img--03 {
          max-width: 296px;
          background-position: 0 11.68803%;
          background-size: 100.3%; }
        .p-recruit-data__img--04 {
          max-width: 283px;
          background-position: 0 29.936929%;
          background-size: 100%; }
        .p-recruit-data__img--05 {
          max-width: 284px;
          background-position: 0 37.641836%;
          background-size: 99.8%; }
        .p-recruit-data__img--06 {
          max-width: 240px;
          background-position: 0 57.34104%;
          background-size: 120.147773%; }
        .p-recruit-data__img--07 {
          max-width: 110px;
          background-position: 0 92.863921%;
          background-size: 262.555066%; }
        .p-recruit-data__img--08 {
          max-width: 96px;
          background-position: 0 100%;
          background-size: 281.132075%; }
        .p-recruit-data__img--09 {
          max-width: 220px;
          background-position: 0 66.159%;
          background-size: 133.89287%; }
        .p-recruit-data__img--10 {
          max-width: 196px;
          background-position: 0 75.665695%;
          background-size: 146.437346%; }
        .p-recruit-data__img--11 {
          max-width: 134px;
          background-position: 0 85.329999%;
          background-size: 214.588489%; }
      .p-recruit-education__col {
        padding-bottom: 12px; }
      .p-recruit-education__bg--grey {
        padding: 15px; }
      .p-recruit-interviewDetail__banner {
        max-height: 280px; }
        .p-recruit-interviewDetail__banner img {
          width: auto;
          max-height: 280px; }
      .p-recruit-interviewDetail__banner--sp {
        width: 100% !important;
        height: auto;
        max-height: inherit !important; }
      .p-recruit-interviewDetail__description__writeup {
        padding-top: 0; }
        .p-searchResult__subject span + span::before {
          height: 15px; }
    .p-sitemap {
      padding: 40px 0; }
      .p-sitemap__heading {
        margin-bottom: 25px;
        padding-right: 15px !important; }
        .p-sitemap__heading--arrow::after {
          right: 0;
          width: 9px;
          height: 9px; }
        .p-sitemap__heading--underline {
          margin-bottom: 30px; }
      .p-sitemap__list--arrow {
        padding-left: 10px; }
        .p-sitemap__list--arrow > li {
          width: 100%; }
      .p-sitemap__section {
        margin-bottom: 60px; }
      .p-terms-layout p {
        margin-bottom: 25px;
        line-height: 1.6; }
    .p-terms-section {
      margin-top: 60px; }
  .c-recipeListItem__summary.c-recipe__summary {
    -webkit-line-clamp: 3; } }

@media (max-width: 1150px) {
  .p-forBusiness-headerNav {
    margin-left: 0; }
  .p-forBusiness-headerNav a {
    font-size: 16px; } }

@media (max-width: 320px) {
    .c-pager__link {
      min-width: 28px;
      height: 28px;
      line-height: 28px; } }

@media screen and (max-width: 1023px) and (min-width: 1024px) {
    .c-productCategoryList__toggle {
      font-size: 16px; }
    .p-recipeDetail__sns {
      font-size: 14px; }
      .p-recipeDetail__sns__toggle {
        font-size: 16px; } }

@media screen and (max-width: 1023px) and (max-width: 1023px) {
    .c-productCategoryList__toggle {
      font-size: 16px; }
    .p-recipeDetail__sns {
      font-size: 14px; }
      .p-recipeDetail__sns__toggle {
        font-size: 14px; } }

@media print, screen and (min-width: 1024px) and (min-width: 1024px) {
    .c-sideNavi__hedding {
      font-size: 20px; }
    .c-sideNavi__list__link {
      font-size: 15px; } }

@media screen and (min-width: 1024px) and (max-width: 1023px) {
    .c-sideNavi__hedding {
      font-size: 8px; }
    .c-sideNavi__list__link {
      font-size: 8px; } }

@media screen and (max-width: 1009px) {
        .p-recruit-education__graph::before {
          content: " "; }
        .p-recruit-education__graph::after {
          content: " "; }
      .p-recruit-education__graph__scroll {
        overflow-x: scroll;
        overflow-y: hidden; }
        .p-recruit-education__graph--spNote {
          display: block; } }

@media screen and (max-width: 1120px) {
      .p-recruit-story__container {
        margin: 0;
        padding: 0 15px; } }