@charset "UTF-8";
/*****
* Foundation 基礎
*****/
/** variables **/
/** breakPoint **/
/*** background ***/
/*** text ***/
/*** rank ***/
/*** border ***/
/*** opacity ***/
/*** other ****/
@font-face {
  font-family: "Honoka";
  src: url("../font/font_1_ant-kaku.woff"),
    url("../font/font_1_ant-kaku.ttf") format("ttf");
}

@font-face {
  font-family: "Hiragino kaku";
  font-weight: 300;
  src: url("../font/NotoSansJP-Light.woff") format("woff"),
    url("../font/NotoSansJP-Light.otf") format("otf");
}

@font-face {
  font-family: "Hiragino kaku";
  font-weight: 600;
  src: url("../font/NotoSansJP-Bold.woff") format("woff"),
    url("../font/NotoSansJP-Bold.otf") format("otf");
}

@font-face {
  font-family: "AGaramond-SemiboldItalic";
  src: url("../font/AGaramond-SemiboldItalic.woff") format("woff"),
    url("../font/AGaramond-SemiboldItalic.otf") format("woff");
}

@font-face {
  font-family: "Sail";
  src: url("../font/Sail-Regular.woff") format("woff"),
    url("../font/Sail-Regular.ttf") format("woff");
}

/** mixin **/
/*** 701px~1280px ***/
/*** 640px~700px ***/
/** base **/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  /* transform: scale(0.8);
  -moz-transform: scale(0.8);
  -webkit-transform: scale(0.8); */
  transform-origin: 0 0;
  background-color: #fff;
  color: #333;
  font-size: 12px;

  /* font-feature-settings: "palt"; */
  /* overflow-y: scroll; */
  /* position: relative; */
  -ms-overflow-style: none;
  -webkit-print-color-adjust: exact;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  font-family: "Hiragino kaku";
  font-weight: 300;
}
img {
  width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  background: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

ul {
  list-style: none;
}

button {
  padding: 0;
}

button:focus {
  outline: 0;
}

input:focus,
select:focus {
  outline: 0;
}

a {
  color: inherit;
  cursor: pointer;
  display: block;
}

*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

body::-webkit-scrollbar {
  display: none;
}

a:hover {
  opacity: 0.7;
}

.js_preload * {
  transition: none !important;
}

h1,
h2 {
  font-family: "Honoka";
}

@media only screen and (max-width: 700px) {
  article {
    margin-top: 20px;
  }
}

/** function **/
/*****
* Layout
*****/
.l-wrapper {
  margin: 0 auto;
  padding: 0 8.59375vw;
}
section.p-recipeDetail__side {
  padding-left: 3%;
}
@media only screen and (max-width: 700px) {
  .l-wrapper {
    padding: 0 4.28571vw;
    max-width: 640px;
  }
}

@media screen and (min-width: 701px) {
  .l-wrapper {
    max-width: 1060px;
  }
}

@media screen and (min-width: 701px) and (max-width: 1279px) {
  .l-wrapper {
    padding: 0 8.59375vw;
    margin: 0;
    max-width: 100%;
  }
}

@media only screen and (min-width: 640px) and (max-width: 700px) {
  .l-wrapper {
    padding: 0 4.28571vw;
    margin: 0;
    max-width: 100%;
  }
}

.l-header {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 700px) {
  .l-header {
    height: 103px;
    margin-top: 12px;
  }
}

@media screen and (min-width: 701px) {
  .l-header {
    font-size: 16px;
    height: 68px;
    margin-top: 17px;
  }
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
  .l-header {
    margin-top: 5px;
    height: 125px;
  }
}

@media only screen and (max-width: 700px) {
  .l-header__sprite__logo {
    max-width: 215px;
    width: 61.42857vw;
  }
}

@media screen and (min-width: 701px) {
  .l-header__sprite__logo {
    max-width: 308px;
    width: 24.0625vw;
  }
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
  .l-header__sprite__logo {
    max-width: 250px;
    width: 71.42857vw;
  }
}

.l-header__sprite__searchIcon {
  cursor: pointer;
  left: 6px;
  position: absolute;
  transform: translate(0, -50%);
  top: 50%;
}

@media only screen and (max-width: 700px) {
  .l-header__sprite__searchIcon {
    max-width: 31.5px;
    width: 9vw;
  }
}

@media screen and (min-width: 701px) {
  .l-header__sprite__searchIcon {
    max-width: 37px;
    width: 2.89062vw;
  }
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
  .l-header__sprite__searchIcon {
    max-width: 31.5px;
    width: 9vw;
  }
}

.l-header__search input {
  width: 100%;
}

.l-header__pc {
  display: none;
}

.l-header__pc__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
  .l-header__pc {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .l-header__pc {
    display: none;
  }
}

.l-header__sp {
  display: none;
}

.l-header__sp__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 701px) {
  .l-header__sp {
    display: none;
  }
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
  .l-header__sp {
    padding: 12px 0;
    display: block;
    width: 100%;
  }
}

.l-header__search {
  position: relative;
}

.l-header__search__input {
  background-color: #fafafa;
  border: 1px solid #707070;
  border-radius: 30px;
  font-size: 16px;
  width: 100%;
}

@media screen and (min-width: 701px) {
  .l-header__search {
    max-width: 290px;
    width: 22.65625vw;
  }
}

@media screen and (min-width: 701px) and (min-width: 701px) {
  .l-header__search {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 701px) and (min-width: 701px) and (max-width: 1279px) {
  .l-header__search {
    font-size: 0.7875rem;
  }
}

@media screen and (min-width: 701px) {
  .l-header__search__input {
    height: 4vw;
    max-height: 44px;
    padding-left: 4vw;
  }
}

@media only screen and (max-width: 700px) {
  .l-header__search {
    margin-top: 11px;
    font-size: 15px;
  }
  .l-header__search__input {
    height: 44px;
    padding-left: 50px;
  }
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
  .l-header__search {
    width: 100%;
    max-width: none;
    margin-top: 11px;
    font-size: 15px;
  }
  .l-header__search__input {
    height: 44px;
    padding-left: 50px;
  }
}

.l-header__nav {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 0 1.17188vw;
}

@media screen and (min-width: 701px) {
  .l-header__nav {
    font-size: 1rem;
  }
}

@media screen and (min-width: 701px) and (max-width: 1279px) {
  .l-header__nav {
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 701px) {
  .l-header__nav .current {
    position: relative;
  }
  .l-header__nav .current::before {
    background-color: #aa9346;
    bottom: -8px;
    content: "";
    height: 3px;
    position: absolute;
    width: 100%;
  }
}

.l-header__nav__item + .l-header__nav__item {
  padding-left: 1vw;
}

@media screen and (max-width: 1150px) {
  .l-header__nav {
    font-size: 13px;
  }
}

.l-footer {
  max-width: 100%;
  padding: 0;
  background-color: #aa9346;
  text-align: center;
}

@media screen and (min-width: 701px) {
  .l-footer {
    margin-top: 55px;
  }
}

.l-footer__top {
  display: none;
}

.l-footer__top__list {
  white-space: nowrap;
  width: fit-content;
  padding-right: 10px;
}

@media only screen and (max-width: 700px) {
  .l-footer__top {
    max-width: 270px;
    width: 77.14286vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 7.5px 0;
    font-size: 14px;
    line-height: 1.8;
  }
  .l-footer__top__list {
    display: flex;
  }
  .l-footer__top__list::after {
    content: "|";
    padding: 0 11px;
  }
  .l-footer__top__list:nth-child(3)::after,
  .l-footer__top__list:nth-child(5)::after {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .l-footer__top {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 44px;
  }
  .l-footer__top__list {
    padding: 0 3%;
  }
  .l-footer__top__list + .l-footer__top__list {
    border-left: 1px solid #fff;
  }
}

.l-footer__middle {
  background-color: #947e34;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 700px) {
  .l-footer__middle {
    height: 80px;
    line-height: 2.2;
  }
  .l-footer__middle__logo {
    max-width: 326px;
    width: 46vw;
  }
}

@media screen and (min-width: 701px) {
  .l-footer__middle {
    padding: 20px;
  }
  .l-footer__middle__logo {
    max-width: 300px;
    width: 23.4375vw;
  }
}

.l-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
}

@media only screen and (max-width: 700px) {
  .l-footer__bottom {
    height: 40px;
    font-size: 8px;
  }
}

@media screen and (min-width: 701px) {
  .l-footer__bottom {
    font-size: 10px;
    height: 34px;
  }
}

.l-recipeImage {
  display: block;
  position: relative;
  height: auto;
}

.l-recipeImage--list {
  height: 100%;
  display: block;
  position: relative;
}

.l-recipeImage__fav {
  cursor: pointer;
  position: absolute;
  top: 0;
  z-index: 1;
}

.l-recipeImage__fav__star {
  position: absolute;
  width: 20px;
  zoom: 2.1;
  transform: translate(35%, 38%);
}

@media only screen and (max-width: 700px) {
  .l-recipeImage__fav {
    left: 5vw;
    zoom: 0.5;
  }
}

@media screen and (min-width: 701px) {
  .l-recipeImage__fav {
    zoom: 0.5;
    left: 7%;
  }
}

.l-recipeImage__kind {
  bottom: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.l-recipeImage__kind__icon {
  display: inline-block;
  width: 50px;
}

.l-recipeImage__img {
  max-height: 187.5px;
  max-width: 250px;
  width: 17.4vw;
  height: 13vw;
}

@media only screen and (max-width: 700px) {
  .l-recipeImage__img {
    width: 44vw;
    height: 33vw;
    max-width: 309px;
  }
}

.l-input--confirm {
  font-weight: bold;
}

.l-input__error {
  color: #ff0000;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  margin-right: 5px;
  text-align: left;
}

@media only screen and (max-width: 700px) {
  .l-input__error {
    font-size: 13px;
  }
}

.l-input__error--border {
  border: 1px solid #ff0000 !important;
  margin-bottom: 5px;
}

.l-input__st {
  line-height: 2.5;
}

@media screen and (min-width: 701px) {
  .l-input__st .l-input__columns {
    margin: 10px 0 5px 0;
  }
}

.l-input__content dl + dl {
  margin-top: 20px;
}

.l-input__content dt .require::after {
  content: "必須";
  color: #ff0000;
  margin-left: 5px;
}

@media only screen and (max-width: 700px) {
  .l-input__content dt {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;
    font-size: 16px;
  }
}

.l-input__content dd {
  margin-top: 10px;
  text-align: left;
  font-size: 16px;
}

@media only screen and (max-width: 700px) {
  .l-input__content dd {
    width: 100%;
  }
}

.l-input__content dd input[type="text"],
.l-input__content dd input[type="number"],
.l-input__content dd input[type="password"],
.l-input__content dd select {
  background-color: #fafafa;
  border: 1px solid #707070;
  border-radius: 10px;
  height: 40px;
  padding: 0 5px;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

.l-input__content dd input[type="text"]:focus,
.l-input__content dd input[type="number"]:focus,
.l-input__content dd input[type="password"]:focus,
.l-input__content dd select:focus {
  background-color: #eee6ca;
}

.l-input__box + .l-input__box {
  margin-top: 20px;
  padding-top: 20px;
}

.l-input__boxTitle {
  text-align: left;
  margin-bottom: 25px;
}

.l-input__boxTitle--title {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #707070;
  padding-bottom: 10px;
}

@media only screen and (max-width: 700px) {
  .l-input__boxTitle--title {
    font-size: 22px;
  }
}

.l-input__boxTitle--note {
  font-size: 13px;
  margin-top: 15px;
  line-height: 1.5;
}

.l-input__btnWrap {
  text-align: center;
  margin-top: 40px;
}

.l-input__logoutWrap {
  text-align: center;
  margin-top: 20px;
}

.l-input__logoutWrap .l-input__negaBtn {
  margin-top: 0;
}

.l-input__posiBtn {
  background-color: #aa9346;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  height: 50px;
  width: 200px;
}

.l-input__posiBtn:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 700px) {
  .l-input__posiBtn {
    height: 40px;
    font-size: 15px;
  }
}

.l-input__negaBtn {
  background-color: #333;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  margin-left: 10px;
  height: 50px;
  width: 200px;
}

.l-input__negaBtn:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 700px) {
  .l-input__negaBtn {
    height: 40px;
    margin-left: 0;
    font-size: 16px;
    margin-top: 15px;
  }
}

@media screen and (min-width: 701px) {
  .l-input__columns {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
  }
  .l-input__columns--check {
    display: flex;
    align-items: center;
    margin: 25px 0;
  }
  .l-input__columns dl {
    width: 49%;
  }
  .l-input__columns dl + dl {
    margin-top: 0;
  }
  .l-input__columns input + input {
    margin-left: 10px;
  }
  .l-input__columns > input {
    margin-right: 5px;
  }
  .l-input__3columns {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
  }
  .l-input__3columns dl {
    width: 30%;
  }
  .l-input__3columns dl + dl {
    margin-top: 0;
  }
  .l-input__half {
    width: 50% !important;
  }
}

@media only screen and (max-width: 700px) {
  .l-input__3columns,
  .l-input__columns {
    margin-top: 20px;
  }
  .l-input__3columns + dl,
  .l-input__columns + dl {
    margin-top: 20px;
  }
  .l-input__columns--sp .l-input__columns {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
  }
  .l-input__columns--sp .l-input__columns dl {
    width: 49%;
  }
  .l-input__columns--sp .l-input__columns dl + dl {
    margin-top: 0;
  }
  .l-input__columns--sp .l-input__columns input + input {
    margin-left: 10px;
  }
  .l-input__columns--sp .l-input__columns > input {
    margin-right: 5px;
  }
}

.l-input__noteBox {
  margin-top: 20px;
  text-align: center;
  line-height: 1.5;
}

.l-input__noteLink {
  color: #aa9346;
  display: inline-block;
  text-align: center;
  text-decoration: underline;
}

/*****
* Object
*****/
/** Component **/
.c-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.c-columns__box__title {
  text-align: left;
}

@media only screen and (max-width: 700px) {
  .c-columns__box {
    max-width: 309px;
    width: 44vw;
  }
  .c-columns__box__title {
    margin-top: 9px;
    font-size: 15px;
  }
  .c-columns__box:nth-child(n + 3) {
    margin-top: 15px;
  }
}

@media screen and (min-width: 701px) {
  .c-columns__box__empty {
    max-width: 250px;
    width: 19.53125vw;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .c-columns__box:nth-child(n + 5) {
    margin-top: 28px;
  }
  .c-columns__box__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    margin-top: 12px;
    max-width: 250px;
    width: 17.4vw;
    line-height: 1.5em;
  }
}

.c-columnRank {
  margin-bottom: 2px;
  text-align: left;
}

.c-columnRank .gold {
  color: #aa9346;
}

.c-columnRank .silver {
  color: #b6bbb6;
}

.c-columnRank .bold {
  color: #985034;
}

.c-columnRank__icon {
  max-width: 25px;
  width: 7.14286vw;
  display: inline-block;
  margin-bottom: 2px;
}

.c-columnRank__text {
  color: #707070;
  display: inline-block;
}

.c-columnRank__text__number {
  font-family: adobe-garamond-pro, serif;
  font-weight: 600;
  font-style: italic;
  margin-right: 2px;
}

@media only screen and (max-width: 700px) {
  .c-columnRank__text {
    font-size: 17px;
  }
  .c-columnRank__text__number {
    font-size: 27px;
  }
}

@media screen and (min-width: 701px) {
  .c-columnRank__text {
    font-size: 22px;
  }
  .c-columnRank__text__number {
    font-size: 34px;
  }
}

@media only screen and (max-width: 700px) {
  .c-column {
    max-width: 644px;
    width: 92vw;
  }
  .c-column__box:nth-child(n + 2) {
    margin-top: 13.5px;
  }
  .c-column__box__title {
    margin-top: 7.5px;
    font-size: 15px;
  }
}

@media screen and (min-width: 701px) {
  .c-column {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-column__box {
    max-width: 346px;
    width: 27.03125vw;
  }
  .c-column__box__title {
    font-size: 14px;
    margin-top: 12px;
    text-align: left;
  }
}

@media only screen and (max-width: 700px) {
  .c-fullColumns-padding {
    padding: 0 4.28571vw;
  }
}

@media screen and (min-width: 701px) {
  .c-fullColumns-padding {
    margin: 0 auto;
    max-width: 1060px;
  }
}

@media screen and (min-width: 701px) and (min-width: 701px) and (max-width: 1279px) {
  .c-fullColumns-padding {
    padding: 0 8.59375vw;
    margin: 0;
    max-width: none;
    width: 100%;
  }
}

.c-columnIndex__list {
  display: flex;
  border-bottom: 1px solid #b3b3b3;
}

.c-columnIndex__list__kindIcon {
  bottom: 0;
}

.c-columnIndex__list__link {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.c-columnIndex__list__link__img {
  width: 17.4vw;
  height: 13vw;
}

@media screen and (min-width: 701px) {
  .c-columnIndex__list__link__img {
    max-height: 187.5px;
    max-width: 250px;
  }
}

@media only screen and (max-width: 700px) {
  .c-columnIndex__list__link__img {
    width: 44vw;
    height: 33vw;
  }
}

@media only screen and (max-width: 700px) {
  .c-columnIndex__list {
    padding: 12px 0;
  }
  .c-columnIndex__list__link__description {
    padding-left: 3.42857vw;
  }
}

@media screen and (min-width: 701px) {
  .c-columnIndex__list {
    padding: 20px 0;
  }
  .c-columnIndex__list__link__description {
    padding-left: 1.32812vw;
  }
}

.c-columnIndex__pager {
  text-align: center;
}

.c-2columns2line {
  max-width: 520px;
  width: 40.625vw;
  padding: 0 2.03125vw;
  border: 1px solid #ebe2c5;
  padding-bottom: 20px;
  padding-top: 20px;
}

@media screen and (min-width: 1500px) {
  .c-2columns2line {
    padding: 20px 25px;
  }
}

.c-2columns2line__title {
  font-size: 26px;
}

.c-2columns2line__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
}

.c-2columns2line__list__box {
  max-width: 225px;
  width: 17.57812vw;
}

.c-2columns2line__list__box__title {
  font-size: 13px;
  margin-top: 10px;
}

.c-2columns2line__list__box:nth-child(n + 3) {
  margin-top: 20px;
}

.c-categoryList {
  display: flex;
  flex-wrap: wrap;
  color: #333;
  line-height: 1.2;
}

@media only screen and (max-width: 700px) {
  .c-categoryList {
    border-top: 2px solid #eee6ca;
    font-size: 15px;
  }
  .c-categoryList__box {
    border-bottom: 2px solid #eee6ca;
    width: 50%;
  }
  .c-categoryList__box:nth-child(n + 1) {
    border-right: 2px solid #eee6ca;
  }
  .c-categoryList__box__img {
    display: none;
  }
  .c-categoryList__box__text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3.125vw;
    padding: 14px 12px 13px;
  }
  .c-categoryList__box__text::after {
    border-top: 2px solid #aa9346;
    border-right: 2px solid #aa9346;
    content: "";
    display: inline-block;
    height: 10px;
    transform: rotate(45deg);
    width: 10px;
    margin-top: 2px;
  }
  .c-categoryList__box__text span {
    text-align: left;
    width: 100%;
  }
}

@media screen and (min-width: 701px) {
  .c-categoryList {
    border-left: 1px solid #eee6ca;
    border-top: 1px solid #eee6ca;
    font-size: 14px;
  }
  .c-categoryList__box {
    border-bottom: 1px solid #eee6ca;
    border-right: 1px solid #eee6ca;
    width: 14.28%;
  }
  .c-categoryList__box a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5625vw;
    height: 100%;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .c-categoryList__box__text {
    margin-left: 0.5vw;
    text-align: left;
    width: 61%;
  }
  .c-categoryList__box__img {
    width: 30px;
  }
}

.c-categoryList__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: #aa9346;
  color: #fff;
  text-align: center;
  width: 100%;
}

.c-arrowButton {
  background-color: #fff;
  border: 1px solid #aa9346;
  color: #aa9346;
  font-family: "hiragino kaku";
  font-weight: 600;
}

.c-arrowButton__text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-arrowButton__text__arrow {
  max-width: 19px;
  width: 5.42857vw;
  display: inline-block;
  margin-left: 10px;
}

@media only screen and (max-width: 700px) {
  .c-arrowButton {
    padding: 11px 0;
    width: 100%;
  }
}

@media screen and (min-width: 701px) {
  .c-arrowButton {
    display: inline-block;
    padding: 13px 0 11px;
    width: 200px;
  }
  .c-arrowButton:hover {
    background-color: #947e34;
    color: #fff;
    opacity: 1;
  }
  .c-arrowButton:hover .c-arrowButton__text::after {
    border-color: #fff;
  }
}

.c-hamburgerMenu {
  transition: 0;
}

.c-hamburgerMenu__checkbox {
  display: none;
}

.c-hamburgerMenu__bg {
  background-color: #333;
  height: 100%;
  opacity: 0.9;
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  z-index: 10;
}

.c-hamburgerMenu__icon {
  max-width: 45px;
  width: 12.85714vw;
  background-color: #333;
  display: block;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 11;
}

.c-hamburgerMenu__icon__border,
.c-hamburgerMenu__icon__border::before,
.c-hamburgerMenu__icon__border::after {
  max-width: 25px;
  width: 7.14286vw;
  background-color: #fff;
  border-radius: 10px;
  bottom: 0;
  display: inline-block;
  height: 3px;
  margin: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.c-hamburgerMenu__icon__border::before,
.c-hamburgerMenu__icon__border::after {
  content: " ";
}

.c-hamburgerMenu__icon__border::before {
  top: 16px;
}

.c-hamburgerMenu__icon__border::after {
  top: -16px;
}

.c-hamburgerMenu__content {
  color: #fff;
  position: fixed;
  right: -100%;
  text-align: center;
  top: 11vw;
  width: 100vw;
  z-index: 10;
}

.c-hamburgerMenu__content__list {
  max-width: 250px;
  width: 71.42857vw;
  margin: 0 auto;
  padding: 8px 0 7px;
  position: relative;
}

.c-hamburgerMenu__content__list + .c-hamburgerMenu__content__list {
  border-top: 1px solid #fff;
}

.c-hamburgerMenu__content__list__text {
  display: inline-block;
  position: relative;
}

.c-hamburgerMenu__content__list__text::before {
  border-top: 10px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
  left: -15px;
  position: absolute;
  top: 2px;
}

.c-hamburgerMenu__checkbox:checked
  ~ .c-hamburgerMenu__icon
  .c-hamburgerMenu__icon__border {
  background: transparent;
}

.c-hamburgerMenu__checkbox:checked
  ~ .c-hamburgerMenu__icon
  .c-hamburgerMenu__icon__border::before {
  transform: rotate(-45deg);
  top: 0;
}

.c-hamburgerMenu__checkbox:checked
  ~ .c-hamburgerMenu__icon
  .c-hamburgerMenu__icon__border::after {
  transform: rotate(45deg);
  top: 0;
}

.c-hamburgerMenu__checkbox:checked ~ .c-hamburgerMenu__bg {
  right: 0;
}

.c-hamburgerMenu__checkbox:checked ~ .c-hamburgerMenu__content {
  right: 0;
}

.c-hamburgerMenu .c-hamburgerMenu__icon__border,
.c-hamburgerMenu .c-hamburgerMenu__icon__border::before,
.c-hamburgerMenu .c-hamburgerMenu__icon__border::after,
.c-hamburgerMenu .c-hamburgerMenu__bg,
.c-hamburgerMenu .c-hamburgerMenu__content {
  transition: all 0.7s;
}

.c-pageScroll {
  transition: all 0.7s;
  background-color: #333;
  border: none;
  border-radius: 100%;
  bottom: 20px;
  color: #fff;
  opacity: 0;
  position: fixed;
  right: 25px;
  z-index: 5;
}

.c-pageScroll__text {
  font-family: Sail;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  transform: translate(0, 35%);
}

.c-pageScroll__text::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: inline-block;
  height: 10px;
  transform: rotate(45deg);
  width: 10px;
}

.c-pageScroll__text::after {
  top: -17%;
  left: 50%;
  position: absolute;
  right: 50%;
  transform: rotate(-45deg) translateX(-60%);
}

@media only screen and (max-width: 700px) {
  .c-pageScroll {
    max-width: 46px;
    width: 13.14286vw;
    font-size: 15px;
  }
}

@media screen and (min-width: 701px) {
  .c-pageScroll {
    max-width: 65px;
    width: 5.07812vw;
    font-size: 19px;
  }
}

.c-sideCategoryNav {
  font-size: 15px;
}

.c-sideCategoryNav__list {
  color: #aa9346;
}

.c-sideCategoryNav__list + .c-sideCategoryNav__list {
  border-top: 1px solid #fff;
}

.c-sideCategoryNav__list__name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.7s;
  padding-left: 2.34375vw;
  padding-right: 1.17188vw;
  background-color: #ebe5cb;
  color: #aa9346;
  padding-bottom: 8px;
  padding-top: 10px;
}

.c-sideCategoryNav__list__name:nth-child(2n + 1) {
  background-color: #f5efdd;
}

.c-sideCategoryNav__icon__pulas {
  max-width: 12px;
  width: 0.9375vw;
  background-color: #947e34;
  display: inline-block;
  height: 2px;
  position: relative;
}

.c-sideCategoryNav__icon__pulas::after {
  max-width: 12px;
  width: 0.9375vw;
  background-color: #947e34;
  content: "";
  display: inline-block;
  height: 2px;
  position: absolute;
  transform: rotate(90deg);
}

.c-sideCategoryNav__icon__minus {
  max-width: 12px;
  width: 0.9375vw;
  background-color: #947e34;
  display: inline-block;
  height: 2px;
}

.c-sideCategoryNav__subCategory {
  color: #333;
  display: none;
}

.c-sideCategoryNav__subCategory__link {
  display: flex;
  align-items: center;
  padding-left: 2.34375vw;
  background-color: #fffdf2;
  padding-bottom: 8px;
  padding-top: 10px;
}

.c-sideCategoryNav__subCategory__link__icon {
  display: inline-block;
  margin-right: 1vw;
  width: 11px;
}

.c-sideCategoryNav__subCategory__link__text {
  max-width: 155px;
  width: 12.10938vw;
}

.c-sideCategoryNav__subCategory__link:nth-child(2n + 1) {
  background-color: #fffefb;
}

.c-sideCategoryNav__subCategory__link + .c-sideCategoryNav__subCategory__link {
  border-top: 1px solid #f1e9d3;
}

.c-sideCategoryNav__current .c-sideCategoryNav__list__name {
  font-size: 20px;
  background-color: #947e34;
  color: #fff;
  padding: 10px 0 8px 0;
  text-align: center;
}

.c-sideCategoryNav__current .c-sideCategoryNav__subCategory {
  display: block;
}

.c-breadcrumb {
  display: none;
}

@media only screen and (max-width: 700px) {
  .c-breadcrumb {
    font-size: 0.75rem;
  }
}

@media only screen and (min-width: 640px) and (max-width: 700px) {
  .c-breadcrumb {
    font-size: 0.825rem;
  }
}

.c-breadcrumb__list {
  display: inline-block;
  position: relative;
}

.c-breadcrumb__list > * {
  display: inline-block;
}

.c-breadcrumb__list__arrow {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  display: inline-block;
  height: 7px;
  right: -11px;
  position: absolute;
  top: 4.5px;
  transform: rotate(45deg) translateY(-50%);
  width: 7px;
}

.c-breadcrumb__list + .c-breadcrumb__list {
  padding-left: 20px;
}

@media only screen and (max-width: 700px) {
  .c-breadcrumb__pc {
    display: none !important;
  }
  .c-breadcrumb__list__arrow {
    top: 6px;
  }
}

@media screen and (min-width: 701px) {
  .c-breadcrumb {
    font-size: 14px;
    margin-top: 20px;
  }
  .c-breadcrumb__sp {
    display: none !important;
  }
}

.c-tab {
  border-collapse: collapse;
  font-size: 0;
  font-weight: 600;
}

.c-tab__area {
  display: flex;
  align-items: center;
}

.c-tab__area__box {
  padding-top: 4px;
  white-space: nowrap;
}

@media only screen and (max-width: 700px) {
  .c-tab__area {
    height: 40px;
    text-align: center;
    width: 100%;
  }
  .c-tab__area__box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b3b3b3;
    border-right: none;
    border-collapse: collapse;
    font-size: 15px;
    height: 100%;
    width: 50%;
  }
  .c-tab__area__box + .c-tab__area__box {
    border-right: 1px solid #b3b3b3;
  }
  .c-tab__area__box__icon {
    max-width: 15px;
    width: 4.28571vw;
    display: inline-block;
    margin-right: 5px;
  }
}

@media screen and (min-width: 701px) {
  .c-tab__area {
    border-bottom: 1px solid #b3b3b3;
    border-left: 1px solid #b3b3b3;
    height: 35px;
  }
  .c-tab__area__box {
    max-width: 190px;
    width: 14.84375vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #b3b3b3;
    border-top: 1px solid #b3b3b3;
    font-size: 16px;
    text-align: center;
    height: 100%;
  }
  .c-tab__area__box__icon {
    width: 1.3vw;
    display: inline-block;
    margin-right: 5px;
  }
}

.c-tab__select {
  position: relative;
  color: #cb000a;
}

.c-tab__select::before {
  -o-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
  background-color: #cb000a;
  border-bottom: none;
  content: "";
  height: 2px;
  position: absolute;
  width: 100%;
}

@media only screen and (max-width: 700px) {
  .c-tab__select::before {
    height: 4.5px;
    border: 1px solid #cb000a;
    left: -1px;
    top: -1px;
  }
}

@media screen and (min-width: 701px) {
  .c-tab__select::before {
    border: 1px solid #cb000a;
    left: -1px;
    top: -1px;
  }
}

.c-tab__content {
  display: none;
}

.c-tab__content__select {
  display: block;
}

.c-topCategoryNav {
  display: flex;
  flex-wrap: wrap;
  color: #333;
  font-size: 14px;
  line-height: 1.2;
  border-top: 2px solid #eee6ca;
}

.c-topCategoryNav__box {
  border-bottom: 2px solid #eee6ca;
  width: 50%;
}

.c-topCategoryNav__box:nth-child(n + 1) {
  border-right: 2px solid #eee6ca;
}

.c-topCategoryNav__box__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.125vw;
  padding: 14px 12px 13px;
}

.c-topCategoryNav__box__text::after {
  border-top: 2px solid #aa9346;
  border-right: 2px solid #aa9346;
  content: "";
  display: inline-block;
  height: 10px;
  transform: rotate(45deg);
  width: 10px;
  margin-top: 2px;
}

.c-topCategoryNav__box__text span {
  text-align: left;
  width: 100%;
}

.c-topCategoryNav__current {
  background-color: #e0d8ad;
}

.c-topCategoryNav__moreButton {
  padding: 7.5px 0;
  background-color: #aa9346;
  color: #fff;
  font-size: 13px;
  text-align: center;
  width: 100%;
}

.c-pager {
  display: inline-block;
  margin: 0 auto;
  position: relative;
  text-align: center;
  /* 現在位置 */
}

.c-pager__box {
  border: 1px solid #ccc;
  display: inline-block;
}

.c-pager__box__link {
  display: table-cell;
  vertical-align: middle;
}

.c-pager__current {
  background-color: #4d4d4d;
  border: 1px solid #4d4d4d;
  color: #fff;
}

.c-pager__arrow__left,
.c-pager__arrow__right {
  bottom: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 700px) {
  .c-pager {
    height: 23px;
    font-size: 13px;
  }
  .c-pager__box + .c-pager__box {
    margin-left: 5px;
  }
  .c-pager__box__link {
    max-width: 23px;
    width: 6.57143vw;
    height: 23px;
  }
  .c-pager__arrow__left {
    border-bottom: 5px solid transparent;
    border-right: 5px solid #4d4d4d;
    border-top: 5px solid transparent;
    left: -10px;
  }
  .c-pager__arrow__right {
    border-bottom: 5px solid transparent;
    border-left: 5px solid #4d4d4d;
    border-top: 5px solid transparent;
    right: -10px;
  }
}

@media screen and (min-width: 701px) {
  .c-pager {
    font-size: 14px;
  }
  .c-pager__box + .c-pager__box {
    margin-left: 10px;
  }
  .c-pager__box__link {
    height: 24px;
    width: 24px;
  }
  .c-pager__arrow__left {
    border-bottom: 5px solid transparent;
    border-right: 10px solid #4d4d4d;
    border-top: 5px solid transparent;
    left: -15px;
  }
  .c-pager__arrow__right {
    border-bottom: 5px solid transparent;
    border-left: 10px solid #4d4d4d;
    border-top: 5px solid transparent;
    right: -15px;
  }
}

.c-pageTitle__text {
  font-weight: 400 !important;
}

@media only screen and (max-width: 700px) {
  .c-pageTitle__text {
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
  }
}

@media screen and (min-width: 701px) {
  .c-pageTitle__text {
    font-size: 28px;
    text-align-last: left;
  }
}

.c-pageTitle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.c-pageTitle__icon__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 100% 100%;
}

.c-pageTitle__icon__title {
  font-weight: 400;
}

.c-pageTitle__icon__title__sprite {
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 700px) {
  .c-pageTitle__icon {
    height: 177.5px;
  }
  .c-pageTitle__icon__wrap {
    max-width: 345px;
    width: 98.57143vw;
    height: 156.5px;
  }
  .c-pageTitle__icon__title {
    font-size: 32px;
  }
  .c-pageTitle__icon__title__sprite {
    height: 50px;
    margin-bottom: -10px;
  }
}

@media screen and (min-width: 701px) {
  .c-pageTitle__icon__wrap {
    max-width: 360px;
    width: 28.125vw;
    height: 156.5px;
  }
  .c-pageTitle__icon__title {
    font-size: 32px;
  }
  .c-pageTitle__icon__title__sprite {
    height: 50px;
    width: auto;
  }
}

.c-star {
  display: block;
  color: #fbd10a;
  top: 22px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 0px;
  height: 0px;
  border-right: 15px solid transparent;
  border-bottom: 10px solid #fbd10a;
  border-left: 15px solid transparent;
  -moz-transform: rotate(35deg);
  -webkit-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  -o-transform: rotate(35deg);
}

.c-star:before {
  border-bottom: 11px solid #fbd10a;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  height: 0;
  width: 0;
  top: -8px;
  left: -9px;
  display: block;
  content: "";
  -webkit-transform: rotate(-35deg);
  -moz-transform: rotate(-35deg);
  -ms-transform: rotate(-35deg);
  -o-transform: rotate(-35deg);
}

.c-star:after {
  position: absolute;
  display: block;
  color: #fbd10a;
  top: 0px;
  left: -15px;
  width: 0px;
  height: 0px;
  border-right: 15px solid transparent;
  border-bottom: 10px solid #fbd10a;
  border-left: 15px solid transparent;
  -webkit-transform: rotate(-70deg);
  -moz-transform: rotate(-70deg);
  -ms-transform: rotate(-70deg);
  -o-transform: rotate(-70deg);
  content: "";
}

.c-imageFavLabel {
  width: 70px;
  position: relative;
}

.c-imageFavLabel:hover {
  opacity: 0.7;
}

.js_message {
  position: absolute;
  width: 50%;
  background-color: #000;
  opacity: 0.7;
  text-align: center;
  border-radius: 10px;
  top: 40vw;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto;
  z-index: 5;
}

.js_message p {
  padding: 50px 0;
  color: #fff;
}

.c-infoTitle {
  background-image: url("../images/page_title_bg/info.jpg");
  background-size: cover;
  margin-top: 20px;
}

@media only screen and (max-width: 700px) {
  .c-infoTitle {
    margin-top: 15px;
  }
}

.c-infoTitle__wrapper {
  background-image: url("../images/page_title_bg/page_title_wrap_pc.png");
}

@media only screen and (max-width: 700px) {
  .c-infoTitle__wrapper {
    background-image: url("../images/page_title_bg/page_title_wrap_sp.png");
  }
}

/** Project **/
.p-siteTop {
  text-align: center;
}

.p-siteTop p {
  line-height: 1.5;
}

.p-siteTop__contentTitle {
  display: inline-block;
  font-weight: 400;
  position: relative;
}

.p-siteTop__contentTitle::before {
  background-color: #aa9346;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  right: 50%;
  transform: translateX(-50%);
}

.p-siteTop__titleImg {
  margin: 0 auto 20px;
  width: 110px;
}

@media only screen and (max-width: 700px) {
  .p-siteTop__titleImg {
    margin: 0 auto 15px;
    width: 50%;
  }
}

.p-siteTop__description {
  font-weight: 300;
  line-height: 1.5;
}

@media only screen and (max-width: 700px) {
  .p-siteTop {
    margin-top: 10px;
  }
  .p-siteTop section + section {
    margin-top: 22.5px;
  }
  .p-siteTop__contentTitle {
    padding-bottom: 5px;
    font-size: 30px;
    letter-spacing: 5px;
  }
  .p-siteTop__contentTitle::before {
    max-width: 120px;
    width: 34.28571vw;
  }
  .p-siteTop__description {
    margin: 12.5px 0 18.5px;
    font-size: 16px;
  }
}

@media screen and (min-width: 701px) {
  .p-siteTop {
    margin-top: 0;
  }
  .p-siteTop section + section {
    margin-top: 45px;
  }
  .p-siteTop section:last-child {
    margin-bottom: -45px;
  }
  .p-siteTop__contentTitle {
    font-size: 30px;
    letter-spacing: 3px;
    padding-bottom: 12px;
  }
  .p-siteTop__contentTitle::before {
    max-width: 150px;
    width: 11.71875vw;
  }
  .p-siteTop__description {
    font-size: 16px;
    margin: 20px 0 30px;
  }
}

.p-siteTop__spMainVisual {
  max-width: 100%;
  padding: 0;
  margin-bottom: 20px;
}

@media screen and (min-width: 701px) {
  .p-siteTop__spMainVisual {
    display: none;
  }
}

.p-siteTop__pcMainVisual {
  max-width: 100%;
  padding: 0;
  margin-bottom: 40px;
}

@media only screen and (max-width: 700px) {
  .p-siteTop__pcMainVisual {
    display: none;
  }
}

.p-siteTop__popularityRecipe {
  max-width: 100%;
  padding: 0;
  padding: 23px 0;
  background: url("../images/popularityRecipe_bg.jpg") no-repeat;
  background-size: cover;
}

.p-siteTop__popularityRecipe__wrapper {
  margin: 0 1vw;
  background-size: 100% 100%;
}

@media only screen and (max-width: 700px) {
  .p-siteTop__popularityRecipe__wrapper {
    padding-bottom: 18px;
    background: url("../images/popularityRecipe_wrapper_sp.png") no-repeat;
    background-size: 100% 100%;
  }
  .p-siteTop__popularityRecipe__pc {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .p-siteTop__popularityRecipe {
    padding: 40px 0;
  }
  .p-siteTop__popularityRecipe__wrapper {
    background-image: url("../images/popularityRecipe_wrapper_pc.png");
    padding-bottom: 37px;
  }
  .p-siteTop__popularityRecipe__sp {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .p-siteTop__columnImg {
    max-width: 300px;
    width: 23.4375vw;
    height: 15vw;
    max-height: 190px;
  }
}

@media only screen and (max-width: 700px) {
  .p-siteTop__category {
    max-width: 100%;
    padding: 0;
  }
}

.p-siteTop__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
  color: #fff;
  height: 100px;
}

@media screen and (min-width: 701px) {
  .p-siteTop__sns a {
    width: 16%;
  }
}

.p-siteTop__sns a + a {
  margin-left: 20px;
}

.p-siteTop__sns span {
  margin-top: 2px;
}

@media only screen and (max-width: 700px) {
  .p-siteTop span {
    margin-top: 4px;
  }
}

.p-siteTop__banner__link {
  display: inline-block;
}

@media only screen and (max-width: 700px) {
  .p-siteTop__banner__link {
    width: 100%;
  }
}

@media only screen and (max-width: 700px) {
  .p-siteTop__banner__img {
    width: 80%;
  }
}

@media screen and (min-width: 701px) {
  .p-siteTop__banner__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-siteTop__banner__link + .p-siteTop__banner__link {
    margin-left: 15px;
  }
  .p-siteTop__banner__text {
    font-size: 14px;
  }
}

@media only screen and (max-width: 700px) {
  .p-siteTop__banner {
    margin-bottom: 20px;
  }
  .p-siteTop__banner__link + .p-siteTop__banner__link {
    margin-top: 10px;
  }
  .p-siteTop__banner__text {
    font-size: 13px;
  }
}

.p-recipesIndex {
  width: 100%;
}

.p-recipesIndex__title {
  font-weight: 400;
  text-align: center;
}

.p-recipesIndex__title__sprite {
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 700px) {
  .p-recipesIndex__pc {
    display: none;
  }
  .p-recipesIndex__category {
    margin-top: 20px;
    background-color: #fefae5;
  }
  .p-recipesIndex__title {
    font-size: 30px;
  }
  .p-recipesIndex__title__sprite {
    height: 50px;
    margin: 5px auto 10px;
    width: auto;
  }
  .p-recipesIndex__content__displayNum {
    margin-top: 7px;
    font-size: 12px;
  }
}

@media screen and (min-width: 701px) {
  .p-recipesIndex > * {
    display: flex;
    justify-content: space-between;
  }
  .p-recipesIndex__content__displayNum {
    font-size: 12px;
    margin-top: 15px;
  }
  .p-recipesIndex__title {
    font-size: 30px;
    margin-top: 117px;
  }
  .p-recipesIndex__title__icon {
    width: 67px;
    display: block;
    margin: 0 auto 15px;
  }
  .p-recipesIndex__wrapBg {
    background-image: url("../images/page_title_bg/ranking_title_bg.png");
    height: 0;
    max-width: none;
    padding-bottom: 120px;
    width: 100%;
  }
  .p-recipesIndex__sp {
    display: none;
  }
  .p-recipesIndex__categoryList {
    max-width: 250px;
    width: 19.53125vw;
    vertical-align: top;
  }
  .p-recipesIndex__content {
    max-width: 780px;
    width: 60.9375vw;
    padding-left: 20px;
  }
}

.p-recipesIndex__description {
  color: #4d4d4d;
  overflow: hidden;
  font-weight: 400;
  max-height: 130px;
}

.p-recipesIndex__description > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-recipesIndex__description__recipeName {
  font-weight: 600;
}

@media only screen and (max-width: 700px) {
  .p-recipesIndex__description__recipeName {
    margin-bottom: 10px;
    font-size: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-top: 5px;
  }
}

@media screen and (min-width: 701px) {
  .p-recipesIndex__description__recipeName {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 15px;
  }
}

.p-recipesIndex__description__num__kcal::after {
  content: "kcal";
  margin-left: 2px;
}

.p-recipesIndex__description__num__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}

.p-recipesIndex__description__num__text
  + .p-recipesIndex__description__num__text {
  margin-left: 10px;
}

.p-recipesIndex__description__num__text__icon {
  display: inline-block;
  margin-right: 2px;
}

@media only screen and (max-width: 700px) {
  .p-recipesIndex__description__num__text {
    font-size: 15px;
  }
  .p-recipesIndex__description__num__text__icon {
    max-width: 9px;
    width: 2.57143vw;
  }
}

@media screen and (min-width: 701px) {
  .p-recipesIndex__description__num__text {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .p-recipesIndex__description__num__text__icon {
    width: 11px;
  }
}

.p-recipesIndex__description__text {
  line-height: 1.5;
}

@media only screen and (max-width: 700px) {
  .p-recipesIndex__description__text {
    height: 50px;
    font-size: 18px;
    margin-top: 5px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
  }
}

@media screen and (min-width: 701px) {
  .p-recipesIndex__description__text {
    font-size: 15px;
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 700px) {
  .p-recipesIndex__description__material {
    display: none;
  }
}

.p-columnDetail__content section + section,
.p-columnDetail--static__title section + section {
  border-top: 1px solid #e6e6e6;
}

@media screen and (min-width: 701px) {
  .p-columnDetail > * {
    display: flex;
    justify-content: space-between;
  }
  .p-columnDetail__sp {
    display: none;
  }
  .p-columnDetail__content,
  .p-columnDetail--static__title {
    max-width: 743px;
    width: 58.04688vw;
  }
  .p-columnDetail__content__description {
    font-size: 13px;
    padding: 25px 0;
  }
  .p-columnDetail__content__mainVisual {
    max-height: 460px;
    max-width: 745px;
  }
  .p-columnDetail__category {
    max-width: 250px;
    width: 19.53125vw;
  }
}

@media only screen and (max-width: 700px) {
  .p-columnDetail__pc {
    display: none;
  }
  .p-columnDetail__content,
  .p-columnDetail--static__title {
    width: 100%;
  }
  .p-columnDetail__content__description {
    padding: 12.5px 0;
    font-size: 15px;
  }
  .p-columnDetail__category {
    margin-top: 5px;
    background-color: #fffdfa;
  }
}

.p-columnDetail__area {
  line-height: 1.8;
  width: 100%;
}

.p-columnDetail__area + .p-columnDetail__area {
  border-top: 1px solid #b3b3b3;
}

.p-columnDetail__area__title {
  background-color: #c4b276;
  color: #fff;
  padding-left: 15px;
  position: relative;
}

.p-columnDetail__area__title::before {
  bottom: 50%;
  content: "";
  border-bottom: 5px solid transparent;
  border-left: 10px solid #fff;
  border-top: 5px solid transparent;
  height: 0;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}

.p-columnDetail__area__text {
  padding-bottom: 20px;
}

.p-columnDetail__area__notation {
  display: inline-block;
}

@media only screen and (max-width: 700px) {
  .p-columnDetail__area + .p-columnDetail__area {
    padding: 13px 0;
  }
  .p-columnDetail__area__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .p-columnDetail__area__img {
    width: 100%;
  }
  .p-columnDetail__area__notation {
    margin-bottom: 20px;
    font-size: 13px;
  }
}

@media screen and (min-width: 701px) {
  .p-columnDetail__area + .p-columnDetail__area {
    padding-top: 20px;
  }
  .p-columnDetail__area__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .p-columnDetail__area__img {
    max-width: 300px;
    width: 23.4375vw;
  }
  .p-columnDetail__area__notation {
    font-size: 14px;
  }
}

@media only screen and (max-width: 700px) {
  .p-columnDetail__list + .p-columnDetail__list {
    margin-top: 10px;
  }
}

@media screen and (min-width: 701px) {
  .p-columnDetail__list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .p-columnDetail__list__img {
    max-width: 300px;
    width: 23.4375vw;
  }
  .p-columnDetail__list__text {
    max-width: 417px;
    width: 32.57812vw;
  }
}

.p-columnDetail--static__content {
  margin: 0 auto;
}

.p-columnDetail--static__title {
  margin-left: auto;
  margin-right: auto;
  padding: 0 !important;
}

.p-columnDetail--static__link {
  color: #aa9346;
  display: inline-block;
  text-decoration: underline;
}

.p-columnDetail__relate {
  width: 100%;
}

.p-columnDetail__adminImg {
  width: 50%;
  padding-right: 15px;
  box-sizing: content-box;
}

@media only screen and (max-width: 700px) {
  .p-columnDetail__adminImg {
    width: 100%;
    padding-right: 0;
    padding-bottom: 15px;
  }
}

.p-columnDetail__none {
  display: inline-block;
  margin: 50px auto 0;
}

@media only screen and (max-width: 700px) {
  .p-columnDetail__none {
    margin-bottom: 50px;
  }
}

.p-columnsIndex__titleBg {
  background-image: url("../images/page_title_bg/column.jpg");
  background-size: cover;
}

@media only screen and (max-width: 700px) {
  .p-columnsIndex__pc {
    display: none;
  }
  .p-columnsIndex__wrapBg {
    background-image: url("../images/page_title_bg/page_title_wrap_sp.png");
  }
  .p-columnsIndex__titleIcon {
    margin-bottom: 10px !important;
  }
}

@media screen and (min-width: 701px) {
  .p-columnsIndex__flex {
    display: flex;
    justify-content: space-between;
  }
  .p-columnsIndex__sp {
    display: none !important;
  }
  .p-columnsIndex__wrapBg {
    background-image: url("../images/page_title_bg/page_title_wrap_pc.png");
  }
  .p-columnsIndex__content {
    max-width: 743px;
    width: 58.04688vw;
  }
  .p-columnsIndex__content__topics .p-columnsIndex__description {
    max-width: none;
    width: 100%;
  }
}

@media screen and (min-width: 701px) {
  .p-columnsIndex__content__link {
    border-bottom: 1px solid #e6e6e6;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
  }
  .p-columnsIndex__content__link__img {
    max-width: 350px;
    width: 27.34375vw;
  }
}

.p-columnsIndex__description {
  line-height: 1.7;
}

.p-columnsIndex__description__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Hiragino kaku";
}

@media only screen and (max-width: 700px) {
  .p-columnsIndex__description {
    padding: 0 3.57143vw;
  }
  .p-columnsIndex__description__title {
    margin: 5px 0;
    font-size: 23px;
  }
  .p-columnsIndex__description__text {
    margin-bottom: 10px;
    font-size: 15px;
  }
}

@media screen and (min-width: 701px) {
  .p-columnsIndex__description {
    max-width: 360px;
    width: 28.125vw;
  }
  .p-columnsIndex__description__title {
    font-size: 22px;
  }
  .p-columnsIndex__description__text {
    font-size: 15px;
  }
}

.p-columnsIndex--static__content {
  margin: 0 auto;
}

.p-ranking__titleBg {
  background-image: url("../images/page_title_bg/ranking.jpg");
  background-size: cover;
}

.p-ranking__content__title {
  font-weight: 400;
  text-align: center;
}

.p-ranking__content__title__sprite {
  display: block;
  margin: 0 auto 5px;
}

@media only screen and (max-width: 700px) {
  .p-ranking__pc {
    display: none;
  }
  .p-ranking__wrapBg {
    background-image: url("../images/page_title_bg/page_title_wrap_sp.png");
  }
  .p-ranking__content__title {
    margin-bottom: 13px;
    font-size: 26px;
  }
  .p-ranking__content__title__sprite {
    max-width: 36px;
    width: 10.28571vw;
  }
  .p-ranking__content + .p-ranking__content {
    margin-top: 47.5px;
  }
  .p-ranking__content:last-of-type {
    margin-bottom: 27px;
  }
}

@media screen and (min-width: 701px) {
  .p-ranking__sp {
    display: none;
  }
  .p-ranking__wrapBg {
    background-image: url("../images/page_title_bg/page_title_wrap_pc.png");
  }
  .p-ranking__content__title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .p-ranking__content__title__sprite {
    max-width: 40px;
    width: 3.125vw;
  }
  .p-ranking__content:nth-child(n + 3) {
    margin-top: 25px;
  }
  .p-ranking__2columns {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.p-recipeDetail {
  line-height: 1.25;
}

.p-recipeDetail__topColumn {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.p-recipeDetail__content__title__text {
  white-space: nowrap;
}

.p-recipeDetail__content__title__text::before {
  border-left: 1px solid #aa9346;
  content: "";
  margin-left: 10px;
  padding-left: 10px;
}

.p-recipeDetail__recipeName {
  line-height: 1.5;
}

@media only screen and (max-width: 700px) {
  .p-recipeDetail__pc {
    display: none !important;
  }
  .p-recipeDetail__content__title {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-recipeDetail__content__title__text {
    white-space: nowrap;
  }
  .p-recipeDetail section + section {
    margin-top: 15px;
  }
}
.p-recipeDetail__sp {
  display: none !important;
}
.p-recipeDetail__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 701px) {
  .p-recipeDetail__recipeName {
    max-width: 570px;
    width: 44.53125vw;
  }
  .p-recipeDetail__flex {
    display: flex;
    justify-content: space-between;
  }
  .p-recipeDetail__content {
    max-width: 700px;
    width: 54.6875vw;
  }
  .p-recipeDetail__content__title {
    display: flex;
    align-items: center;
  }
  .p-recipeDetail__side {
    max-width: 281px;
    width: 21.95312vw;
  }
}

.p-recipeDetail__titleSprite__step,
.p-recipeDetail__titleSprite__material,
.s-sns-facebook,
.s-sns-twitter {
  display: none;
}

.p-recipeDetail__titleSprite__recipe {
  display: block;
}

@media only screen and (max-width: 700px) {
  .p-recipeDetail__titleSprite__step {
    max-width: 15px;
    width: 4.28571vw;
  }
  .p-recipeDetail__titleSprite__material {
    max-width: 20px;
    width: 5.71429vw;
  }
  .p-recipeDetail__titleSprite__recipe {
    max-width: 50px;
    width: 14.28571vw;
  }
}

@media screen and (min-width: 701px) {
  .p-recipeDetail__titleSprite__step {
    max-width: 25px;
    width: 1.95312vw;
  }
  .p-recipeDetail__titleSprite__material {
    max-width: 35px;
    width: 2.73438vw;
  }
  .p-recipeDetail__titleSprite__recipe {
    max-width: 50px;
    width: 3.90625vw;
  }
}

.p-recipeDetail__recommend {
  max-width: 100%;
  padding: 0;
  background-color: #fffdf2;
  line-height: 1;
  margin-top: 45px;
  padding: 30px 0 40px;
}

.p-recipeDetail__recommend__title {
  font-size: 30px;
  text-align: center;
  padding-bottom: 25px;
}

.p-recipeDetail__recommend__relateTitle {
  font-weight: 600;
  font-size: 18px;
}

.p-recipeDetail__frameWrap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.p-recipeDetail__frameWrap__movie {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-recipeDetail__mainVisual__slide {
  position: relative;
}

.p-recipeDetail__mainVisual__slide__left {
  transform: translateY(-50%) rotate(-135deg);
}

@media only screen and (max-width: 700px) {
  .p-recipeDetail__mainVisual__slide__left {
    left: 10px;
  }
}

@media screen and (min-width: 701px) {
  .p-recipeDetail__mainVisual__slide__left {
    left: 20px;
  }
}

.p-recipeDetail__mainVisual__slide__right {
  transform: translateY(-50%) rotate(45deg);
}

@media only screen and (max-width: 700px) {
  .p-recipeDetail__mainVisual__slide__right {
    right: 10px;
  }
}

@media screen and (min-width: 701px) {
  .p-recipeDetail__mainVisual__slide__right {
    right: 20px;
  }
}

.p-recipeDetail__mainVisual__slide__arrow {
  bottom: 50%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: inline-block;
  height: 18px;
  position: absolute;
  top: 50%;
  width: 18px;
}

.p-recipeDetail__mainVisual__image {
  width: 100%;
  height: 41vw;
  max-width: 700px;
  max-height: 525px;
}

@media only screen and (max-width: 700px) {
  .p-recipeDetail__mainVisual__image {
    height: 68vw;
  }
}

.p-recipeDetail__mainVisual__subImage {
  display: none;
  justify-content: space-between;
}

.p-recipeDetail__mainVisual__subImage__list {
  width: 18%;
}

.p-recipeDetail__recipe__title {
  display: none;
}

.p-recipeDetail__recipe__title__wrap {
  border-bottom: 1px solid #aa9346;
  display: inline-block;
  margin: 0 auto 10px;
  padding-bottom: 10px;
}

.p-siteTop__banner__wrap {
  display: none;
}

@media only screen and (max-width: 700px) {
  .p-recipeDetail__recipe__description {
    font-size: 18px;
  }
}

@media screen and (min-width: 701px) {
  .p-recipeDetail__recipe {
    margin-bottom: 40px;
  }
  .p-recipeDetail__recipe__description {
    font-size: 14px;
  }
}

.p-recipeDetail__sns {
  display: none;
}

.p-recipeDetail__sns__favorite,
.p-recipeDetail__sns__facebook,
.p-recipeDetail__sns__twitter {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  line-height: 1;
  width: 32%;
}

.p-recipeDetail__sns__favorite {
  background-color: #aa9346;
}

.p-recipeDetail__sns__favorite__icon {
  margin-right: 5px;
}

.p-recipeDetail__sns__facebook {
  background-color: #3b5999;
}

.p-recipeDetail__sns__twitter {
  background-color: #1d8dee;
}

@media only screen and (max-width: 700px) {
  .p-recipeDetail__sns__favorite,
  .p-recipeDetail__sns__facebook,
  .p-recipeDetail__sns__twitter {
    font-size: 14px;
    padding: 10px 5px;
  }
  .p-recipeDetail__sns__favorite__icon,
  .p-recipeDetail__sns__facebook__icon,
  .p-recipeDetail__sns__twitter__icon {
    max-width: 15px;
    width: 4.28571vw;
    margin-right: 5px;
  }
  .p-recipeDetail__sns__text {
    margin-top: 4px;
  }
  .p-recipeDetail__sns__favorite__icon {
    margin-bottom: 1px;
  }
}

@media screen and (min-width: 701px) {
  .p-recipeDetail__sns {
    margin-bottom: 25px;
    width: 88%;
  }
  .p-recipeDetail__sns__favorite,
  .p-recipeDetail__sns__facebook,
  .p-recipeDetail__sns__twitter {
    font-size: 12px;
    height: 35px;
  }
  .p-recipeDetail__sns__favorite__icon,
  .p-recipeDetail__sns__facebook__icon,
  .p-recipeDetail__sns__twitter__icon {
    max-width: 20px;
    width: 1.5625vw;
    margin-right: 5px;
  }
}

.p-recipeDetail__material {
  border: 1px solid #ebe2c5;
}

.p-recipeDetail__material__title {
  color: #aa9346;
}

.p-recipeDetail__material__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f1e1;
  padding: 5px 20px;
}

.p-recipeDetail__material__line:nth-of-type(2n) {
  background-color: #fff;
}

@media only screen and (max-width: 700px) {
  .p-recipeDetail__material {
    padding: 0 3.42857vw;
    padding-bottom: 15px;
  }
  .p-recipeDetail__material__title {
    font-size: 22px;
    text-align: center;
  }
  .p-recipeDetail__material__num {
    font-size: 13px;
    text-align: center;
  }
  .p-recipeDetail__material__line {
    font-size: 15px;
  }
}

@media screen and (min-width: 701px) {
  .p-recipeDetail__material {
    padding: 15px;
  }
  .p-recipeDetail__material__title {
    font-size: 20px;
    padding-bottom: 5px;
  }
  .p-recipeDetail__material__num {
    font-size: 13px;
    padding-bottom: 5px;
  }
  .p-recipeDetail__material__line {
    font-size: 14px;
  }
}

.p-recipeDetail__steps {
  counter-reset: num 0;
}

.p-recipeDetail__steps__title {
  border-bottom: 1px solid #aa9346;
  color: #aa9346;
}

.p-recipeDetail__steps__list {
  padding-top: 10px;
}

.p-recipeDetail__steps__list::first-line {
  line-height: 1;
}

.p-recipeDetail__steps__list__line {
  display: flex;
  font-size: 12px;
  padding: 5px 0;
}

.p-recipeDetail__steps__list__line::before {
  color: #aa9346;
  content: counter(num) "";
  counter-increment: num 1;
  font-family: "AGaramond-SemiboldItalic";
  font-weight: 600;
  line-height: 1;
}

@media only screen and (max-width: 700px) {
  .p-recipeDetail__steps__title {
    font-size: 22px;
    text-align: center;
  }
  .p-recipeDetail__steps__list {
    font-size: 15px;
  }
  .p-recipeDetail__steps__list__line {
    border-bottom: 1px solid #e6e6e6;
  }
  .p-recipeDetail__steps__list__line::before {
    font-size: 30px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 701px) {
  .p-recipeDetail__steps__title {
    font-size: 22px;
  }
  .p-recipeDetail__steps__list__line + .p-recipeDetail__steps__list__line {
    border-top: 1px solid #e6e6e6;
  }
  .p-recipeDetail__steps__list__line::before {
    font-size: 34px;
    padding-right: 40px;
  }
}

.p-recipeDetail__tag__title {
  margin-bottom: 8px;
  font-weight: 400;
  text-align: center;
}

@media only screen and (max-width: 700px) {
  .p-recipeDetail__tag__title {
    margin-top: 20px;
    font-size: 22px;
  }
}

@media screen and (min-width: 701px) {
  .p-recipeDetail__tag__title {
    font-size: 30px;
    margin: 0 auto;
  }
}

.p-recipeDetail__tagList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
  width: 100%;
}

.p-recipeDetail__tagList__item {
  background-color: #aa9346;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  padding: 2px 5px;
}

@media only screen and (max-width: 700px) {
  .p-recipeDetail__tagList {
    font-size: 14px;
  }
  .p-recipeDetail__tagList__item {
    padding: 3px 10px 1px;
    width: 30%;
  }
  .p-recipeDetail__tagList__item + .p-recipeDetail__tagList__item {
    margin-left: 3%;
  }
  .p-recipeDetail__tagList__item:nth-child(3n + 1) {
    margin-left: 0;
  }
  .p-recipeDetail__tagList__item:nth-child(n + 4) {
    margin-top: 10px;
  }
  .p-recipeDetail__tagList__item__link {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media screen and (min-width: 701px) {
  .p-recipeDetail__tagList {
    font-size: 15px;
    margin-top: -10px;
  }
  .p-recipeDetail__tagList__item {
    margin-top: 10px;
    padding: 3px 20px 1px;
  }
  .p-recipeDetail__tagList__item + .p-recipeDetail__tagList__item {
    margin-left: 10px;
  }
}

.js_recipe_fav {
  cursor: pointer;
}

.js_recipe_fav:hover {
  opacity: 0.7;
}

.p-recipeDetail__eiyo {
  word-break: break-all;
}

.p-recipeDetail__eiyo--title {
  padding-top: 5px;
}

.p-recipeDetail__eiyo--cont {
  padding-top: 5px;
}

.p-recipeDetail__graf {
  border: 1px solid #ebe2c5;
  box-sizing: border-box;
  padding: 8px;
  width: 100%;
}

.p-recipeDetail__graf__list {
  background-color: #fff;
  padding: 4px 20px;
}

.p-recipeDetail__graf__list:nth-child(2n) {
  background-color: #f7f1e1;
}

.p-recipeDetail__graf--title,
.p-recipeDetail__graf--cont {
  box-sizing: border-box;
  display: inline-block;
  width: 48.5%;
}

.p-recipeDetail__graf--title {
  vertical-align: top;
}

.p-recipeDetail__graf--cont {
  word-break: break-all;
}

.p-recipeDetail__graf--g,
.p-recipeDetail__graf--kcal {
  text-align: right;
}

.p-recipeDetail__graf--g::after {
  content: "g";
}

.p-recipeDetail__graf--kcal::after {
  content: "kcal";
}

.p-recipeDetail__subImg {
  width: 9.6vw;
  height: 7.2vw;
}

@media only screen and (max-width: 700px) {
  .p-recipeDetail__subImg {
    width: 16vw;
    height: 12vw;
  }
}

.p-recipeDetail__banner {
  margin-top: 15px;
}

.p-recipeDetail__banner__text {
  font-size: 12px;
  text-align: center;
}

.p-categoriesList__imgWrapper {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 700px) {
  .p-categoriesList__content {
    max-width: 100%;
    padding: 0;
  }
  .p-categoriesList__pc {
    display: none;
  }
  .p-categoriesList__titleBg {
    background-image: url("../images/page_title_bg/category_sp.jpg");
    background-size: contain;
  }
  .p-categoriesList__wrapBg {
    background-image: url("../images/page_title_bg/page_title_wrap_sp.png");
  }
}

@media screen and (min-width: 701px) {
  .p-categoriesList__sp {
    display: none;
  }
  .p-categoriesList__titleBg {
    background-image: url("../images/page_title_bg/category_pc.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%, 99%;
    margin-bottom: 20px;
  }
  .p-categoriesList__wrapBg {
    height: 12.8vw;
  }
}

.p-categoriesList__category {
  border-bottom: 1px solid #ebe2c5;
}

.p-categoriesList__category:first-of-type {
  border-top: 1px solid #ebe2c5;
}

.p-categoriesList__category__name {
  font-weight: 600;
}

.p-categoriesList__category__img {
  display: inline-block;
  margin-right: 25px;
}

@media screen and (min-width: 701px) {
  .p-categoriesList__category {
    display: flex;
  }
}

@media only screen and (max-width: 700px) {
  .p-categoriesList__category > * {
    padding: 20px 0;
    display: flex;
    align-items: center;
    padding-left: 25px;
  }
  .p-categoriesList__category__name {
    font-size: 20px;
  }
  .p-categoriesList__category__img {
    width: 50px;
  }
}

@media screen and (min-width: 701px) {
  .p-categoriesList__category {
    padding: 30px 0 20px;
  }
  .p-categoriesList__category__name {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .p-categoriesList__category__img {
    width: 80px;
    margin: 20px 50px 20px 20px;
  }
}

.p-categoriesList__subCategory__name {
  background-color: #fefae5;
  border: 1px solid #ebe2c5;
  display: inline-block;
  font-size: 15px;
  margin-bottom: 10px;
}

@media screen and (min-width: 701px) {
  .p-categoriesList__subCategory__name {
    padding: 4px 8px 2px;
  }
}

.p-search {
  width: 100%;
}

.p-search__title {
  font-weight: 400;
  text-align: center;
}

.p-search__title__sprite {
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 700px) {
  .p-search__pc {
    display: none;
  }
  .p-search__category {
    margin-top: 20px;
    background-color: #fefae5;
  }
  .p-search__title {
    font-size: 30px;
  }
  .p-search__title__sprite {
    max-width: 80px;
    width: 22.85714vw;
  }
  .p-search__content__displayNum {
    margin-top: 7px;
    font-size: 12px;
  }
}

@media screen and (min-width: 701px) {
  .p-search > * {
    display: flex;
    justify-content: space-between;
  }
  .p-search__content__displayNum {
    font-size: 12px;
    margin-top: 15px;
  }
  .p-search__title {
    font-size: 30px;
    margin-top: 117px;
  }
  .p-search__title__icon {
    margin-bottom: 5px;
  }
  .p-search__wrapBg {
    background-image: url("../images/page_title_bg/ranking_title_bg.png");
    height: 0;
    max-width: none;
    padding-bottom: 120px;
    width: 100%;
  }
  .p-search__sp {
    display: none;
  }
  .p-search__categoryList {
    max-width: 250px;
    width: 19.53125vw;
    vertical-align: top;
  }
  .p-search__content {
    max-width: 780px;
    width: 60.9375vw;
    padding-left: 20px;
  }
}

.p-search__description {
  color: #4d4d4d;
  font-weight: 400;
}

.p-search__description > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-search__description__recipeName {
  font-weight: 600;
}

@media only screen and (max-width: 700px) {
  .p-search__description__recipeName {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 701px) {
  .p-search__description__recipeName {
    margin-bottom: 15px;
  }
}

.p-search__description__num__kcal::after {
  content: "kcal";
  margin-left: 2px;
}

.p-search__description__num__time::after {
  content: "分";
  margin-left: 2px;
}

.p-search__description__num__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}

.p-search__description__num__text + .p-search__description__num__text {
  margin-left: 10px;
}

.p-search__description__num__text__icon {
  display: inline-block;
}

@media only screen and (max-width: 700px) {
  .p-search__description__num__text__icon {
    max-width: 9px;
    width: 2.57143vw;
  }
}

@media screen and (min-width: 701px) {
  .p-search__description__num__text {
    margin-bottom: 5px;
  }
  .p-search__description__num__text__icon {
    width: 11px;
  }
}

.p-search__description__text {
  line-height: 1.5;
}

@media only screen and (max-width: 700px) {
  .p-search__description__text {
    height: 50px;
    margin-top: 5px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
  }
}

@media screen and (min-width: 701px) {
  .p-search__description__text {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 700px) {
  .p-search__description__material {
    display: none;
  }
}

.p-register {
  margin-top: 20px;
}

.p-register__wrapper {
  margin: 30px auto 40px;
}

@media only screen and (max-width: 700px) {
  .p-register__wrapper {
    padding: 0 4.28571vw;
    max-width: 640px;
  }
}

@media screen and (min-width: 701px) {
  .p-register__wrapper {
    max-width: 850px;
  }
}

@media screen and (min-width: 701px) and (max-width: 1279px) {
  .p-register__wrapper {
    padding: 0 8.59375vw;
    margin: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }
}

@media only screen and (min-width: 640px) and (max-width: 700px) {
  .p-register__wrapper {
    padding: 0 4.28571vw;
    margin: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }
}

.p-register__titleBg {
  background-image: url("../images/page_title_bg/mypage.jpg");
  background-size: cover;
}

.p-register__wrapBg {
  background-image: url("../images/page_title_bg/page_title_wrap_pc.png");
}

@media only screen and (max-width: 700px) {
  .p-register__wrapBg {
    background-image: url("../images/page_title_bg/page_title_wrap_sp.png");
  }
}

.p-register__compBox {
  text-align: center;
}

.p-register__compTitle {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
}

.p-register__compText {
  font-size: 20px;
  margin-top: 15px;
}

.p-register__compBtn {
  background-color: #aa9346;
  color: #fff;
  padding: 10px 20px;
}

.p-register--mypage__btn {
  margin: 20px 0 0 0;
}

@media only screen and (max-width: 700px) {
  .p-register--mypage__btn {
    margin: 5px 0 0 0;
  }
}

.p-mypage {
  margin-top: 40px;
}

.p-mypage__content {
  margin-bottom: 20px;
}

.p-mypage__titleBg {
  background-image: url("../images/page_title_bg/mypage.jpg");
  background-size: cover;
  background-position: top right;
}

.p-mypage__wrapBg {
  background-image: url("../images/page_title_bg/page_title_wrap_pc.png");
}

@media only screen and (max-width: 700px) {
  .p-mypage__wrapBg {
    background-image: url("../images/page_title_bg/page_title_wrap_sp.png");
  }
}

.p-mypage__posiBtn--submit,
.p-mypage__posiBtn {
  background-color: #aa9346;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  height: 50px;
  width: 200px;
}

.p-mypage__posiBtn--submit:hover,
.p-mypage__posiBtn:hover {
  opacity: 0.7;
}

.p-mypage__posiBtn {
  margin: 0 auto;
  line-height: 50px;
}

.p-mypage--login__box {
  border: 1px solid #aa9346;
  text-align: center;
  vertical-align: top;
  padding: 20px 0;
  margin-bottom: 30px;
}

@media only screen and (max-width: 700px) {
  .p-mypage--login__box {
    padding: 20px 5%;
  }
}

.p-mypage--login__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}

.p-mypage--login__text {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.p-mypage--login__note {
  text-decoration: underline;
  margin-top: 20px;
  font-size: 13px;
}

.p-mypage--login dl {
  margin: 0 auto;
  width: 55%;
}

@media only screen and (max-width: 700px) {
  .p-mypage--login dl {
    width: 100%;
  }
}

.p-mypage--login dl + dl {
  margin-top: 20px;
}

.p-mypage--login dt {
  text-align: left;
  margin: 0 0 10px 5px;
}

.p-mypage--login dd {
  text-align: left;
}

.p-mypage--login dd input[type="email"],
.p-mypage--login dd input[type="password"] {
  background-color: #fafafa;
  border: 1px solid #707070;
  border-radius: 10px;
  height: 40px;
  padding: 0 5px;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

.p-mypage--login dd input[type="email"]:focus,
.p-mypage--login dd input[type="password"]:focus {
  background-color: #eee6ca;
}

.p-mypage--favorite__titleBg {
  background-size: cover;
  background-position: center;
  background-image: url("../images/page_title_bg/favorite_pc.jpg");
}

@media only screen and (max-width: 700px) {
  .p-mypage--favorite__titleBg {
    background-position: right;
    background-image: url("../images/page_title_bg/favorite_sp.jpg");
  }
}

@media only screen and (max-width: 700px) {
  .p-mypage--favorite__pc {
    display: none;
  }
  .p-mypage--favorite__wrapBg {
    background-image: url("../images/page_title_bg/page_title_wrap_sp.png");
  }
}

@media screen and (min-width: 701px) {
  .p-mypage--favorite__sp {
    display: none;
  }
  .p-mypage--favorite__wrapBg {
    background-image: url("../images/page_title_bg/page_title_wrap_pc.png");
  }
}

.p-policy {
  counter-reset: number 0;
  margin-top: 55px;
  line-height: 1.7;
}

.p-policy__title {
  border-bottom: 1px solid #aa9346;
  border-top: 1px solid #aa9346;
  padding: 15px 0 15px 10px;
  font-size: 20px;
  font-weight: bold;
}

.p-policy__title::before {
  counter-increment: number 1;
  content: counter(number) ".";
  margin-right: 15px;
}

.p-policy__section {
  margin-top: 30px;
}

.p-policy__section dd {
  margin-top: 20px;
  padding: 0 20px;
}

.p-policy__list,
.p-policy__list--num {
  font-weight: bold;
  margin: 20px 0;
  padding-left: 20px;
}

.p-policy__list li,
.p-policy__list--num li {
  padding-left: 30px;
}

.p-policy__list--num {
  counter-reset: listNum 0;
  padding-left: 1em;
  text-indent: -1.3em;
}

.p-policy__list--num li::before {
  counter-increment: listNum 1;
  content: counter(listNum) ".";
  margin-right: 5px;
}

.p-term {
  margin-top: 55px;
  line-height: 1.7;
}

.p-term__title {
  border-bottom: 1px solid #aa9346;
  border-top: 1px solid #aa9346;
  padding: 15px 0 15px 10px;
  font-size: 20px;
  font-weight: bold;
}

.p-term__subtitle {
  border-bottom: 1px solid #aa9346;
  border-top: 1px solid #aa9346;
  padding: 15px 0 15px 10px;
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
}

.p-term h1 {
  margin-bottom: 30px;
}

.p-term h3 {
  margin-top: 30px;
}

.p-term ol {
  margin-left: 24px;
}

.p-company {
  margin-top: 55px;
  line-height: 1.7;
}

.p-company__title {
  text-align: center;
  padding: 15px 0 15px 10px;
  font-size: 20px;
  font-weight: bold;
}

.p-company__table tr:not(:last-child) {
  border-width: 1px 0px;
  border-color: #aa9346;
  border-style: solid;
  padding-top: 15px;
  padding-bottom: 15px;
}

.p-company__table th {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
}

.p-company__table td {
  padding-top: 15px;
  padding-bottom: 15px;
}

.p-company__table ol {
  margin-left: 24px;
}

.p-contact textarea:focus {
  outline: 0;
}

.p-contact__form {
  border: 1px solid #aa9346;
  text-align: center;
  padding: 20px 0;
  margin: 30px auto;
}

.p-contact__form__error {
  text-align: center;
}

.p-contact__form dl {
  margin: 0 auto 20px;
  width: 55%;
}

@media only screen and (max-width: 700px) {
  .p-contact__form dl {
    width: 80%;
    line-height: 1.3;
  }
}

.p-contact__form dl dt {
  text-align: left;
  margin-bottom: 20px;
}

@media only screen and (max-width: 700px) {
  .p-contact__form dl dt {
    margin-bottom: 10px;
  }
}

.p-contact__form dl dd {
  text-align: left;
}

.p-contact__form dl dd input:focus,
.p-contact__form dl dd textarea:focus {
  background-color: #eee6ca;
}

.p-contact__form dl dd input {
  background-color: #fafafa;
  border: 1px solid #707070;
  border-radius: 10px;
  height: 40px;
  padding: 0 5px;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

.p-contact__form dl dd textarea {
  background-color: #fafafa;
  border: 1px solid #707070;
  border-radius: 10px;
  height: 400px;
  padding: 8px;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

@media only screen and (max-width: 700px) {
  .p-contact__form dl dd textarea {
    height: 200px;
  }
}

.p-contact__check {
  display: flex;
  align-items: center;
}

.p-contact__check input {
  width: auto !important;
  margin-right: 10px;
}

.p-contact__check label {
  line-height: 1.2;
}

.p-contact__posiBtn {
  background-color: #aa9346;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  height: 50px;
  width: 200px;
}

.p-contact__posiBtn:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 700px) {
  .p-contact__posiBtn {
    height: 40px;
    font-size: 15px;
  }
}

.p-contact-confirm__title {
  text-align: center;
  padding: 15px 0 15px 10px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
}

.p-contact-confirm__form {
  text-align: center;
  margin: 30px auto;
}

.p-contact-confirm__til {
  text-align: center;
  padding: 15px 0 15px 10px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
}

.p-contact-confirm__val {
  border-top: 1px solid #aa9346;
  padding-top: 20px;
}

.p-contact-confirm__posiBtn {
  background-color: #aa9346;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  height: 50px;
  width: 200px;
  margin-top: 40px;
}

.p-contact-confirm__posiBtn:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 700px) {
  .p-contact-confirm__posiBtn {
    height: 40px;
    font-size: 15px;
  }
}

.p-contact-confirm__negaBtn {
  background-color: #333;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  margin-top: 40px;
  margin-left: 10px;
  height: 50px;
  width: 200px;
}

.p-contact-confirm__negaBtn:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 700px) {
  .p-contact-confirm__negaBtn {
    height: 40px;
    margin-left: 0;
    font-size: 16px;
    margin-top: 15px;
  }
}

.p-contact-finish__title {
  text-align: center;
  font-size: 30px;
  margin: 200px auto;
}

@media only screen and (max-width: 700px) {
  .p-contact-finish__title {
    font-size: 25px;
    margin: 100px auto;
    line-height: 1.3;
  }
}

.p-contact-finish__posiBtn {
  background-color: #aa9346;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  height: 50px;
  width: 200px;
  text-align: center;
  margin: 0 auto;
  line-height: 50px;
}

.p-contact-finish__posiBtn:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 700px) {
  .p-contact-finish__posiBtn {
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    margin-bottom: 100px;
  }
}

.p-error {
  padding: 140px 0 100px;
}

@media only screen and (max-width: 700px) {
  .p-error {
    padding: 140px 0;
  }
}

.p-error__term {
  color: #4d4d4d;
  font-weight: bold;
  font-size: 30px;
}

@media only screen and (max-width: 700px) {
  .p-error__term {
    font-size: 20px;
  }
}

.p-error__term--status {
  border-bottom: 5px solid #aa9346;
  padding: 10px 0;
}

.p-error__term--message {
  display: block;
  margin-top: 40px;
}

@media only screen and (max-width: 700px) {
  .p-error__term--message {
    margin-top: 25px;
  }
}

.p-faq {
  counter-reset: headingNum 0;
  margin-top: 55px;
  line-height: 1.7;
}

.p-faq__box + .p-faq__box {
  margin-top: 20px;
}

.p-faq__inner {
  counter-reset: queNum 0;
  margin: 15px 0;
  padding: 0 10px;
}

.p-faq__title {
  border-bottom: 1px solid #aa9346;
  border-top: 1px solid #aa9346;
  padding: 15px 0 15px 10px;
  font-size: 20px;
  font-weight: bold;
}

.p-faq__title:before {
  counter-increment: headingNum 1;
  content: counter(headingNum) ".";
}

.p-faq__link {
  color: #aa9346;
  display: inline-block;
}

.p-faq__link:hover {
  text-decoration: underline;
}

.p-faq__content {
  padding: 0 10px;
}

.p-faq__content + .p-faq__content {
  margin-top: 20px;
}

.p-faq__content--question {
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 1rem;
  text-indent: -1.7rem;
}

.p-faq__content--question:before {
  counter-increment: queNum 1;
  content: "（" counter(queNum) "）";
}

@media screen and (min-width: 701px) {
  .p-faq__content--answer {
    padding-left: 1rem;
  }
}

.p-columnDetail__topColumn {
  display: flex;
  justify-content: space-between;
  padding: 3% 0;
}

@media only screen and (max-width: 700px) {
  .p-columnDetail__topColumn {
    display: block;
  }
}

.p-columnDetail__topColumn .c-pageTitle__text {
  width: 65%;
}

@media only screen and (max-width: 700px) {
  .p-columnDetail__topColumn .c-pageTitle__text {
    width: 100%;
  }
}

.p-columnDetail__topColumn .p-columnDetail__sns__pacth {
  width: 35%;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  justify-content: center;
}

@media only screen and (max-width: 700px) {
  .p-columnDetail__topColumn .p-columnDetail__sns__pacth {
    width: 100%;
    padding-top: 2%;
  }
}

.p-columnDetail__topColumn
  .p-columnDetail__sns__pacth
  .p-recipeDetail__sns__twitter {
  margin-left: 2%;
}

/** Utility **/
.hiragino_kaku {
  font-family: "Hiragino kaku";
}

.honoka {
  font-family: "Honoka";
}

.whnrp {
  white-space: nowrap;
}

.dib {
  display: inline-block;
}

.db {
  display: block;
}

.dn {
  display: none;
}

.bn {
  border: none;
}

.tac {
  text-align: center;
}

@media screen and (min-width: 701px) {
  .is-sp {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .mt5 {
    margin-top: 5px;
  }
}

@media only screen and (max-width: 700px) {
  .mt5 {
    margin-top: 2.5px;
  }
}

@media screen and (min-width: 701px) {
  .mt10 {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 700px) {
  .mt10 {
    margin-top: 5px;
  }
}

@media screen and (min-width: 701px) {
  .mt15 {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 700px) {
  .mt15 {
    margin-top: 7.5px;
  }
}

@media screen and (min-width: 701px) {
  .mt20 {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 700px) {
  .mt20 {
    margin-top: 10px;
  }
}

@media screen and (min-width: 701px) {
  .mt25 {
    margin-top: 25px;
  }
}

@media only screen and (max-width: 700px) {
  .mt25 {
    margin-top: 12.5px;
  }
}

@media screen and (min-width: 701px) {
  .mt30 {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 700px) {
  .mt30 {
    margin-top: 15px;
  }
}

@media screen and (min-width: 701px) {
  .mt35 {
    margin-top: 35px;
  }
}

@media only screen and (max-width: 700px) {
  .mt35 {
    margin-top: 17.5px;
  }
}

@media screen and (min-width: 701px) {
  .mt40 {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 700px) {
  .mt40 {
    margin-top: 20px;
  }
}

@media screen and (min-width: 701px) {
  .mt45 {
    margin-top: 45px;
  }
}

@media only screen and (max-width: 700px) {
  .mt45 {
    margin-top: 22.5px;
  }
}

@media screen and (min-width: 701px) {
  .mt50 {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 700px) {
  .mt50 {
    margin-top: 25px;
  }
}

@media screen and (min-width: 701px) {
  .mt60 {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 700px) {
  .mt60 {
    margin-top: 30px;
  }
}

@media screen and (min-width: 701px) {
  .mb5 {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 700px) {
  .mb5 {
    margin-bottom: 2.5px;
  }
}

@media screen and (min-width: 701px) {
  .mb10 {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 700px) {
  .mb10 {
    margin-bottom: 5px;
  }
}

@media screen and (min-width: 701px) {
  .mb15 {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 700px) {
  .mb15 {
    margin-bottom: 7.5px;
  }
}

@media screen and (min-width: 701px) {
  .mb20 {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 700px) {
  .mb20 {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 701px) {
  .mb25 {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 700px) {
  .mb25 {
    margin-bottom: 12.5px;
  }
}

@media screen and (min-width: 701px) {
  .mb30 {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 700px) {
  .mb30 {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 701px) {
  .mb35 {
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 700px) {
  .mb35 {
    margin-bottom: 17.5px;
  }
}

@media screen and (min-width: 701px) {
  .mb40 {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 700px) {
  .mb40 {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 701px) {
  .mb45 {
    margin-bottom: 45px;
  }
}

@media only screen and (max-width: 700px) {
  .mb45 {
    margin-bottom: 22.5px;
  }
}

@media screen and (min-width: 701px) {
  .mb50 {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 700px) {
  .mb50 {
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 701px) {
  .mb60 {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 700px) {
  .mb60 {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 701px) {
  .ml5 {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 700px) {
  .ml5 {
    margin-left: 2.5px;
  }
}

@media screen and (min-width: 701px) {
  .ml10 {
    margin-left: 10px;
  }
}

@media only screen and (max-width: 700px) {
  .ml10 {
    margin-left: 5px;
  }
}

@media screen and (min-width: 701px) {
  .ml15 {
    margin-left: 15px;
  }
}

@media only screen and (max-width: 700px) {
  .ml15 {
    margin-left: 7.5px;
  }
}

@media screen and (min-width: 701px) {
  .ml20 {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 700px) {
  .ml20 {
    margin-left: 10px;
  }
}

@media screen and (min-width: 701px) {
  .ml25 {
    margin-left: 25px;
  }
}

@media only screen and (max-width: 700px) {
  .ml25 {
    margin-left: 12.5px;
  }
}

@media screen and (min-width: 701px) {
  .ml30 {
    margin-left: 30px;
  }
}

@media only screen and (max-width: 700px) {
  .ml30 {
    margin-left: 15px;
  }
}

@media screen and (min-width: 701px) {
  .ml35 {
    margin-left: 35px;
  }
}

@media only screen and (max-width: 700px) {
  .ml35 {
    margin-left: 17.5px;
  }
}

@media screen and (min-width: 701px) {
  .ml40 {
    margin-left: 40px;
  }
}

@media only screen and (max-width: 700px) {
  .ml40 {
    margin-left: 20px;
  }
}

@media screen and (min-width: 701px) {
  .ml45 {
    margin-left: 45px;
  }
}

@media only screen and (max-width: 700px) {
  .ml45 {
    margin-left: 22.5px;
  }
}

@media screen and (min-width: 701px) {
  .ml50 {
    margin-left: 50px;
  }
}

@media only screen and (max-width: 700px) {
  .ml50 {
    margin-left: 25px;
  }
}

@media screen and (min-width: 701px) {
  .ml60 {
    margin-left: 60px;
  }
}

@media only screen and (max-width: 700px) {
  .ml60 {
    margin-left: 30px;
  }
}

@media screen and (min-width: 701px) {
  .mr5 {
    margin-right: 5px;
  }
}

@media only screen and (max-width: 700px) {
  .mr5 {
    margin-right: 2.5px;
  }
}

@media screen and (min-width: 701px) {
  .mr10 {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 700px) {
  .mr10 {
    margin-right: 5px;
  }
}

@media screen and (min-width: 701px) {
  .mr15 {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 700px) {
  .mr15 {
    margin-right: 7.5px;
  }
}

@media screen and (min-width: 701px) {
  .mr20 {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 700px) {
  .mr20 {
    margin-right: 10px;
  }
}

@media screen and (min-width: 701px) {
  .mr25 {
    margin-right: 25px;
  }
}

@media only screen and (max-width: 700px) {
  .mr25 {
    margin-right: 12.5px;
  }
}

@media screen and (min-width: 701px) {
  .mr30 {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 700px) {
  .mr30 {
    margin-right: 15px;
  }
}

@media screen and (min-width: 701px) {
  .mr35 {
    margin-right: 35px;
  }
}

@media only screen and (max-width: 700px) {
  .mr35 {
    margin-right: 17.5px;
  }
}

@media screen and (min-width: 701px) {
  .mr40 {
    margin-right: 40px;
  }
}

@media only screen and (max-width: 700px) {
  .mr40 {
    margin-right: 20px;
  }
}

@media screen and (min-width: 701px) {
  .mr45 {
    margin-right: 45px;
  }
}

@media only screen and (max-width: 700px) {
  .mr45 {
    margin-right: 22.5px;
  }
}

@media screen and (min-width: 701px) {
  .mr50 {
    margin-right: 50px;
  }
}

@media only screen and (max-width: 700px) {
  .mr50 {
    margin-right: 25px;
  }
}

@media screen and (min-width: 701px) {
  .mr60 {
    margin-right: 60px;
  }
}

@media only screen and (max-width: 700px) {
  .mr60 {
    margin-right: 30px;
  }
}

.pt-25px {
  padding-top: 25px;
}

.pt-50px {
  padding-top: 50px;
}

.pb-10px {
  padding-bottom: 10px;
}

/** Sprite **/
.s-searchIcon {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  height: auto;
  background-image: url("../images/sprite.png");
  background-size: 300.78125% 272.65625%;
  background-position: 0% 0%;
}

.s-searchIcon:after {
  content: "";
  display: block;
  padding-top: 100%;
}

.s-rank-gold {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  height: auto;
  background-image: url("../images/sprite.png");
  background-size: 458.33333% 536.92308%;
  background-position: 100% 0%;
}

.s-rank-gold:after {
  content: "";
  display: block;
  padding-top: 77.38095%;
}

.s-rank-silver {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  height: auto;
  background-image: url("../images/sprite.png");
  background-size: 458.33333% 536.92308%;
  background-position: 100% 33.4507%;
}

.s-rank-silver:after {
  content: "";
  display: block;
  padding-top: 77.38095%;
}

.s-rank-bold {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  height: auto;
  background-image: url("../images/sprite.png");
  background-size: 458.33333% 536.92308%;
  background-position: 47.50831% 55.6338%;
}

.s-rank-bold:after {
  content: "";
  display: block;
  padding-top: 77.38095%;
}

.s-button-arrow {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  height: auto;
  background-image: url("../images/sprite.png");
  background-size: 566.17647% 1246.42857%;
  background-position: 94.95268% 59.19003%;
}

.s-button-arrow:after {
  content: "";
  display: block;
  padding-top: 41.17647%;
}

.s-image-pic {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  height: auto;
  background-image: url("../images/sprite.png");
  background-size: 340.70796% 311.60714%;
  background-position: 0% 66.66667%;
}

.s-image-pic:after {
  content: "";
  display: block;
  padding-top: 99.11504%;
}

.s-image-movie {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  height: auto;
  background-image: url("../images/sprite.png");
  background-size: 340.70796% 311.60714%;
  background-position: 58.08824% 0%;
}

.s-image-movie:after {
  content: "";
  display: block;
  padding-top: 99.11504%;
}

.s-ranking-icon {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  height: auto;
  background-image: url("../images/sprite.png");
  background-size: 1040.54054% 969.44444%;
  background-position: 20.11494% 95.84665%;
}

.s-ranking-icon:after {
  content: "";
  display: block;
  padding-top: 97.2973%;
}

.s-fav-label {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  height: auto;
  background-image: url("../images/sprite.png");
  background-size: 962.5% 712.2449%;
  background-position: 0% 100%;
}

.s-fav-label:after {
  content: "";
  display: block;
  padding-top: 122.5%;
}

.s-fav-star {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  height: auto;
  background-image: url("../images/sprite.png");
  background-size: 1750% 1661.90476%;
  background-position: 82.92011% 75.60976%;
}

.s-fav-star:after {
  content: "";
  display: block;
  padding-top: 95.45455%;
}
/*# sourceMappingURL=app.css.map */

/*20250916追加*/
#step-sp,
#eiyo-sp,
#recipeDetail__tag-sp,
.l-recipeImage__fav,
.p-siteTop__spMainVisual,
.p-siteTop__category,
.p-siteTop__sns,
.p-footer__category__patch {
  display: none;
}
