@charset "UTF-8";

/* ==========================================================================
  Reset
  ========================================================================== */
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,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-style: normal;
  vertical-align: baseline;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

img {
  font-size: 0;
  line-height: 0;
}

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

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

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

del {
  text-decoration: line-through;
}

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

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

fieldset,
img {
  line-height: 0;
  vertical-align: top;
}

hr {
  display: none;
}

input,
select {
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

html,
body {
  width: 100%;
  height: 100%;
}

ul,
li {
  list-style: none;
}

b {
  font-weight: bold;
}

iframe {
  border: none;
  outline: none;
}

/* ==========================================================================
  Animation
  ========================================================================== */
.anim-fadeout {
  -webkit-animation: fadeIn 0.2s 0.2s both ease-out;
  animation: fadeIn 0.2s 0.2s both ease-out;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }

  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }

  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}

.anim-fadein {
  opacity: 0;
}

.anim-fadein.is-show {
  -webkit-animation: fadeIn 0.8s 0.2s both ease-out;
  animation: fadeIn 0.8s 0.2s both ease-out;
}

@keyframes fadeIn {
  0% {
    transform: translate(0, 30px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.anim-slidein-l {
  opacity: 0;
}

.anim-slidein-l.is-show {
  -webkit-animation: slideInL 0.8s 0.2s both ease-out;
  animation: slideInL 0.8s 0.2s both ease-out;
}

@-webkit-keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.anim-slidein-r {
  opacity: 0;
}

.anim-slidein-r.is-show {
  -webkit-animation: slideInR 0.8s 0.2s both ease-out;
  animation: slideInR 0.8s 0.2s both ease-out;
}

@-webkit-keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* ==========================================================================
  Base
  ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  background: #fff;
}

body {
  color: #000;
  font-size: 1.6em;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, "Times New Roman", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; */
  font-family: "Times New Roman";
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media screen and (min-width: 751px) {
  body {
    min-width: 1024px;
  }
}

@media screen and (max-width: 750px) {
  body {
    font-size: 1.4em;
  }
}

img {
  width: 100%;
  height: auto;
}

::-moz-selection {
  background: #333;
  color: #fff;
}

::selection {
  background: #333;
  color: #fff;
}

.pc {
  display: block;
}

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

.sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .sp {
    display: block;
  }
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover img {
  opacity: 0.8;
}

@media screen and (min-width: 751px) {

  a:hover,
  a img {
    transition: 0.2s linear;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: bold;
}

.serif {
  /* font-family: "Noto Serif Display", serif; */
  font-family: "Times New Roman";
  font-weight: bolder;
}

.jp {
  /* font-family: "Noto Serif JP", serif; */
  font-family: "Times New Roman";
  font-weight: 500;
  letter-spacing: 0;
}

.header {
  background: rgba(255, 255, 255, 0.85);
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  height: 6.25vw;
  max-height: 80px;
  padding: 0vw 2.109375vw 0vw 2.109375vw;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 1280px) {
  .header {
    padding: 0px 27px 0px 27px;
  }
}

.header__logo {
  width: 23.4375vw;
  max-width: 300px;
  padding-top: 2px;
}

.header__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header__link {
  display: block;
  padding: 0vw 1.171875vw 0vw 1.171875vw;
  text-decoration: none !important;
  font-size: 1.5625vw;
}

@media screen and (min-width: 1280px) {
  .header__link {
    padding: 0px 15px 0px 15px;
  }
}

@media screen and (min-width: 1280px) {
  .header__link {
    font-size: 20px;
  }
}

.header__btn {
  display: none;
}

.header img {
  width: 100%;
}

@media screen and (max-width: 750px) {
  .header {
    display: block;
    background: transparent;
    height: auto;
    padding: 0;
  }

  .header .header-sp {
    position: relative;
    padding: 0 5.33333333vw;
    width: 100vw;
    background: white;
    height: 16vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #ccc;
  }

  .header__logo {
    width: 60vw;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    line-height: 1;
  }

  .header__nav {
    left: 0;
    top: 80px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    height: 50vh;
    transition: all 0.3s ease-out;
    position: absolute;
    background: white;
  }

  .header__nav.on {
    opacity: 1;
  }

  .header__btn {
    display: flex;
    width: 8vw;
    height: 6.66666667vw;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    right: 5%;
    z-index: 999;
  }

  .header__btn span {
    display: block;
    width: 100%;
    height: 1.06666667vw;
    border-radius: 0.53333333vw;
    background: #0080BE;
    position: relative;
    transition: all 0.3s ease-out;
  }

  .header__btn.on span:nth-child(2) {
    opacity: 0;
  }

  .header__btn.on span:nth-child(1) {
    top: 2.8vw;
    transform: rotate(45deg);
  }

  .header__btn.on span:nth-child(3) {
    top: -2.8vw;
    transform: rotate(-45deg);
  }

  .header__list {
    display: block;
    text-align: center;
  }

  .header__item {
    width: 100vw;
  }

  .header__item a {
    display: block;
    margin: 0 auto 10.66666667vw auto;
  }

  .header__link {
    display: block;
    padding: 0vw 1.171875vw 0vw 1.171875vw;
    text-decoration: none !important;
    font-size: 16px;
  }
}

@media screen and (max-width: 750px) and (min-width: 1280px) {
  .header__link {
    padding: 0px 15px 0px 15px;
  }
}

@media screen and (max-width: 750px) and (min-width: 1280px) {
  .header__link {
    font-size: 20px;
  }
}

.footer {
  display: block !important;
}

.footer__wrap-nav {
  background: #D6D6D6;
  position: relative;
  padding: 3.125vw 0vw 3.125vw 0vw;
}

@media screen and (min-width: 1280px) {
  .footer__wrap-nav {
    padding: 40px 0px 50px 0px;
  }
}

.footer__pagetop {
  position: absolute;
  top: 0;
  right: 0;
}

.footer__pagetop a {
  width: 3.203125vw;
  max-width: 41px;
  display: block;
  padding: 2.734375vw 2.734375vw 2.734375vw 2.734375vw;
}

@media screen and (min-width: 1280px) {
  .footer__pagetop a {
    padding: 35px 35px 35px 35px;
  }
}

.footer__platinum {
  width: 12.5vw;
  max-width: 160px;
  margin: 0vw auto 1.5625vw auto;
}

@media screen and (min-width: 1280px) {
  .footer__platinum {
    margin: 0px auto 20px auto;
  }
}

.footer__star {
  width: 1.40625vw;
  max-width: 18px;
  margin: 0vw auto 2.1875vw auto;
}

@media screen and (min-width: 1280px) {
  .footer__star {
    margin: 0px auto 28px auto;
  }
}

.footer__nav {
  text-align: center;
  margin: 0;
  padding: 0;
}

.footer__item {
  display: inline-block;
  font-size: 1.71875vw;
  margin: 0vw 1.5625vw 0vw 1.5625vw;
}

@media screen and (min-width: 1280px) {
  .footer__item {
    font-size: 22px;
  }
}

@media screen and (min-width: 1280px) {
  .footer__item {
    margin: 0px 20px 0px 20px;
  }
}

.footer__link {
  text-decoration: none !important;
}

.footer__wrap-logo {
  padding: 2.734375vw 0vw 3.125vw 0vw;
}

@media screen and (min-width: 1280px) {
  .footer__wrap-logo {
    padding: 35px 0px 40px 0px;
  }
}

.footer__logo {
  width: 23.4375vw;
  max-width: 300px;
  margin: 0vw auto 0.78125vw auto;
}

@media screen and (min-width: 1280px) {
  .footer__logo {
    margin: 0px auto 10px auto;
  }
}

.footer__copy {
  /* font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
  sans-serif; */
  font-family: "Times New Roman";
  text-align: center;
  font-size: 0.78125vw;
}

@media screen and (min-width: 1280px) {
  .footer__copy {
    font-size: 10px;
  }
}

@media screen and (max-width: 750px) {
  .footer__wrap-nav {
    padding: 30px 0 0;
  }

  .footer__wrap-nav .footer__nav li {
    width: 60%;
    padding-bottom: 30px;
  }

  .footer__pagetop {
    position: absolute;
    top: auto;
    bottom: 5.33333333vw;
    right: auto;
    left: 50%;
    margin-left: -4.13333333vw;
  }

  .footer__pagetop a {
    width: 8.26666667vw;
    padding: 0;
  }

  .footer__platinum {
    width: 38.4vw;
    margin-bottom: 3.33333333vw;
  }

  .footer__star {
    width: 5.33333333vw;
    margin-bottom: 6.66666667vw;
  }

  .footer__star img {
    width: 100%;
  }

  .footer__item {
    font-size: 4vw;
    margin: 0 0.5em;
  }

  .footer__wrap-logo {
    padding: 5.33333333vw 0;
  }

  .footer__logo {
    width: 73.33333333vw;
    margin-bottom: 1.33333333vw;
  }

  .footer__copy {
    font-size: 2.66666667vw;
  }
}

/* ==========================================================================
Layout
========================================================================== */
#container {
  width: 100%;
  overflow: hidden;
}

/* FlexBox */
.l-flex {
  flex-wrap: wrap;
  display: flex;
}

.l-flex-aligncenter {
  align-items: center;
}

.l-flex-justcenter {
  justify-content: center;
}

.l-flex-justbetween {
  justify-content: space-between;
}

.recipe__misosoup-sub {
  margin: 80px 0px 0px 0px;
}

.recipe__misosoup-sub .sp {
  display: none;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

sub {
  font: 1rem "Fira Sans", sans-serif;
}

/* ------------------------------
mv
------------------------------ */
@media screen and (min-width: 751px) {
  .mv {
    background-image: url(../images/mv-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 45vw;
    max-height: 1000px;
  }

  .mv .mv__ttl {
    width: 50%;
    margin: 0 auto;
    padding-top: 100px;
  }
}

@media screen and (max-width: 750px) {
  .mv {
    background-image: url(../images/mv-bg-sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 130vw;
  }

  .mv .mv__ttl {
    width: 82%;
    margin: 0 auto;
    padding-top: 90px;
  }
}

/* ------------------------------
nutrients
------------------------------ */
@media screen and (min-width: 751px) {
  .nutrients {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/nutrients-bg.jpg);
  }

  .nutrients .nutrients__body {
    width: 95%;
    max-width: 1228px;
    margin: 0 auto;
    position: relative;
    margin: 30px auto 60px;
  }

  .nutrients .nutrients__body .nutrients__ttl {
    width: 60%;
    position: absolute;
    top: 5%;
    left: 20%;
    margin: 0 auto;
  }

  .nutrients .nutrients__links {
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
  }

  .nutrients .nutrients__info {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 750px) {
  .nutrients {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/nutrients-bg.jpg);
  }

  .nutrients .nutrients__body {
    width: 95%;
    margin: 0 auto;
    position: relative;
    margin: 100px auto 30px;
  }

  .nutrients .nutrients__body .nutrients__ttl {
    width: 100%;
    position: absolute;
    top: -9%;
    left: 0%;
    margin: 0 auto;
  }

  .nutrients .nutrients__links {
    display: block;
    width: 70%;
    margin: 0 auto;
  }

  .nutrients .nutrients__info {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
}

/* ------------------------------
arrange recipe
------------------------------ */
@media screen and (min-width: 751px) {
  .recipe {
    border-top: 8px solid #958027;
    background: url(../images/recipe-bg-kirakira.png) no-repeat left top/100% auto, url(../images/bg-pat.png) repeat left top/100px 100px;
    padding-bottom: 50px;
  }

  .recipe .recipe__ttl {
    margin: 0 auto;
    width: 60%;
    padding: 50px 0 10px;
  }

  .recipe .recipe__des {
    font-size: 2rem;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
  }
}

@media screen and (max-width: 750px) {
  .recipe {
    border-top: 4px solid #958027;
    background: url(../images/recipe-bg-kirakira.png) no-repeat left top/100% auto, url(../images/bg-pat.png) repeat left top/50px 50px;
    padding-bottom: 20px;
  }

  .recipe .recipe__ttl {
    margin: 0 auto;
    width: 95%;
    padding: 20px 0 10px;
  }

  .recipe .recipe__des {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
  }
}

/* ------------------------------
アンカーリンク
------------------------------ */
@media screen and (min-width: 751px) {
  .recipe__anc {
    margin: 30px auto 150px;
    max-width: 900px;
  }

  .recipe__anc nav {
    flex-wrap: wrap;
  }

  .recipe__anc nav>div {
    width: 50%;
  }

  .recipe__anc nav>div a {
    display: block;
  }

  .recipe__anc nav>div img {
    width: 100%;
    height: auto;
  }
}

/* アンカーリンクSP */
@media screen and (max-width: 750px) {
  .recipe__anc nav {
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 60px;
  }

  .recipe__anc nav>div {
    width: 80%;
  }
}

/* ------------------------------
毎日レシピ
------------------------------ */
@media screen and (min-width: 751px) {
  .recipe__subttl {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 55%;
  }

  .recipe__subttl img {
    position: absolute;
    top: -80px;
    right: 0;
  }

  .mainichirecipe {
    border: 30px solid;
    background: #fff;
    max-width: 1000px;
    margin: 20px auto 150px;
  }

  .mainichirecipe .recipe__blkttl {
    width: 60%;
    margin: 0 auto;
    padding-top: 80px;
  }

  .mainichirecipe .recipe__blkttl2 {
    width: 90%;
    margin: 0 auto;
  }

  .recipe-det__cnts-orange {
    -o-border-image: url(../images/border-orange.png) 33.4%/30px 30px repeat;
    border-image: url(../images/border-orange.png) 33.4%/30px 30px repeat;
  }

  .recipe__friends {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 40px 30px;
    overflow: hidden;
  }

  .recipe__friends p {
    overflow: hidden;
    font-size: 1.8rem;
    line-height: 1.6;
  }

  .recipe__friends p strong {
    font-weight: bolder;
  }

  .recipe__friends p .txt-right {
    float: right;
  }

  .recipe__friends img {
    float: right;
    display: block;
    width: 310px;
    height: auto;
    margin-left: 20px;
  }
}

@media screen and (max-width: 750px) {
  .recipe__subttl {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 70%;
  }

  .recipe__subttl img {
    position: absolute;
    top: -50px;
    right: 0;
  }

  .mainichirecipe {
    border: 20px solid;
    background: #fff;
    margin: 20px 5px 80px;
  }

  .mainichirecipe .recipe__blkttl {
    width: 100%;
    margin: 0 auto;
    padding-top: 30px;
  }

  .mainichirecipe .recipe__blkttl2 {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0 10px;
  }

  .recipe-det__cnts-orange {
    -o-border-image: url(../images/border-orange.png) 33.4%/20px 20px repeat;
    border-image: url(../images/border-orange.png) 33.4%/20px 20px repeat;
  }

  .recipe__friends {
    width: auto;
    margin: 0 auto;
    padding: 20px 5px;
  }

  .recipe__friends p {
    font-size: 13px;
    line-height: 1.5;
  }

  .recipe__friends p .txt-right {
    float: right;
  }

  .recipe__friends img {
    padding: 0 0 10px;
  }
}

@media screen and (min-width: 751px) {
  .recipe__cnts .recipe__list {
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
  }

  .recipe__cnts .recipe__item {
    width: 30%;
    max-width: 300px;
    margin: 0 auto 35px;
    text-align: center;
  }

  .recipe__cnts .recipe__item .btn {
    display: block;
    margin: 0 auto;
    position: relative;
  }

  .recipe__cnts .recipe__item .btn-back {
    margin: 0 auto;
    width: 50%;
    max-width: 320px;
    padding: 10px 10px 10px 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: #d85322;
    border-radius: 4px;
  }

  .recipe__cnts .recipe__item .btn-back::before {
    content: "";
    display: block;
    position: absolute;
    width: 0.3em;
    height: 0.3em;
    top: 0;
    right: 9%;
    bottom: 0;
    left: auto;
    margin: auto auto auto 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-315deg);
  }

  .recipe__cnts .recipe__cookexe {
    text-align: right;
    padding: 0 20px 20px 0;
  }
}

@media screen and (max-width: 750px) {
  .recipe__cnts .recipe__list {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }

  .recipe__cnts .recipe__item {
    width: 49%;
    margin: 0 auto 10px;
    text-align: center;
  }

  .recipe__cnts .recipe__item .btn {
    display: block;
    margin: 0 auto;
    position: relative;
  }

  .recipe__cnts .recipe__item .btn-back {
    margin: 0 auto;
    width: 70%;
    padding: 5px 5px 5px 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: #d85322;
    border-radius: 4px;
  }

  .recipe__cnts .recipe__item .btn-back::before {
    content: "";
    display: block;
    position: absolute;
    width: 0.3em;
    height: 0.3em;
    top: 0;
    right: 9%;
    bottom: 0;
    left: auto;
    margin: auto auto auto 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-315deg);
  }

  .recipe__cnts .recipe__cookexe {
    text-align: right;
    padding: 0 20px 20px 0;
  }
}

/* ------------------------------
レシピ名
------------------------------ */
.name {
  text-align: center;
  margin: 10px 0 20px;
  letter-spacing: -0.1em;
}

.name span {
  display: inline-block;
  padding: 0 10px 8px 10px;
  font-size: 1.9rem;
  line-height: 1.3;
  background: url(../images/name-bg-ribbon.png) center bottom no-repeat;
  background-size: 100% 80%;
}

@media screen and (max-width: 750px) {
  .name {
    text-align: center;
    margin: 5px 0 10px;
    letter-spacing: -0.1em;
  }

  .name span {
    display: inline-block;
    padding: 0 0px 8px 0px;
    font-size: 1.2rem;
    line-height: 1.3;
    background: url(../images/name-bg-ribbon.png) center bottom no-repeat;
    background-size: 100% 80%;
  }
}

/* ------------------------------
電子レンジの簡単ルール
------------------------------ */
.recipe-rule {
  max-width: 900px;
  margin: 50px auto;
  background: #f8f0ec;
  border-radius: 10px;
  overflow: hidden;
}

.recipe-rule .acrd-btn {
  background: #d85322;
  border-radius: 10px 10px 0 0;
  position: relative;
  cursor: pointer;
}

.recipe-rule .acrd-btn::before,
.recipe-rule .acrd-btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  top: 0;
  bottom: 0;
  right: 15px;
  left: 0;
  margin: auto 0 auto auto;
}

.recipe-rule .acrd-btn::before {
  transform: rotateX(0);
}

.recipe-rule .acrd-btn::after {
  transform: rotate(90deg);
  transition: transform 0.25s ease-out;
}

.recipe-rule .acrd-btn.is-active::after {
  transform: rotate(0);
}

.recipe-rule .acrd-btn img {
  width: 60%;
  margin: 0 auto;
  padding: 15px 0 0;
  display: block;
}

.recipe-rule .rule-details {
  padding: 30px 40px 0;
}

.recipe-rule .rule-details .rule-block {
  padding-bottom: 30px;
  font-size: 1.8rem;
  line-height: 1.5;
}

.recipe-rule .rule-details .rule-block h4 {
  color: #d85322;
  font-size: 2rem;
  padding-bottom: 10px;
  font-weight: bolder;
}

.recipe-rule .rule-details .rule-block h4 span {
  background: #dd754e;
  padding: 8px 13px;
  line-height: 2;
  color: #fff;
  border-radius: 50px;
  margin-right: 10px;
  font-weight: 900;
}

.recipe-rule .rule-details .rule-block p {
  padding-left: 50px;
  line-height: 1.5;
}

.recipe-rule .rule-details .rule-block .more-details-ttl {
  margin-top: 20px;
  margin: 20px 0 10px;
  font-weight: bold;
}

.recipe-rule .rule-details .rule-block .more-details-ttl span {
  padding: 0 10px;
  font-weight: bolder;
  background: linear-gradient(transparent 10%, #edd0c6 60%);
}

.recipe-rule .rule-details .rule-block .rule-time {
  background: #fff;
  margin: 20px 0 0 50px;
  width: 90%;
  border: 1px solid #000;
}

.recipe-rule .rule-details .rule-block .rule-time th {
  border: 1px solid #000;
}

.recipe-rule .rule-details .rule-block .rule-time tr {
  border: 1px solid #000;
}

.recipe-rule .rule-details .rule-block .rule-time td {
  border: 1px solid #000;
  text-align: center;
}

.recipe-rule .rule-details .rule-block .rule-time .black {
  background: #000;
  color: #fff;
}

@media screen and (max-width: 750px) {
  .recipe-rule {
    margin: 0 auto;
    background: #f8f0ec;
    border-radius: 10px;
    overflow: hidden;
  }

  .recipe-rule .acrd-btn {
    background: #d85322;
    border-radius: 10px 10px 0 0;
    position: relative;
    cursor: pointer;
  }

  .recipe-rule .acrd-btn::before,
  .recipe-rule .acrd-btn::after {
    content: "";
    position: absolute;
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    top: 0;
    bottom: 0;
    right: 15px;
    left: 0;
    margin: auto 0 auto auto;
  }

  .recipe-rule .acrd-btn::before {
    transform: rotateX(0);
  }

  .recipe-rule .acrd-btn::after {
    transform: rotate(90deg);
    transition: transform 0.25s ease-out;
  }

  .recipe-rule .acrd-btn.is-active::after {
    transform: rotate(0);
  }

  .recipe-rule .acrd-btn img {
    width: 80%;
    margin: 0 auto;
    padding: 10px 0 5px;
    display: block;
  }

  .recipe-rule .rule-details {
    padding: 10px 10px 0;
  }

  .recipe-rule .rule-details .rule-block {
    padding-bottom: 20px;
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .recipe-rule .rule-details .rule-block h4 {
    color: #d85322;
    font-size: 1.4rem;
    padding-bottom: 5px;
    font-weight: bolder;
  }

  .recipe-rule .rule-details .rule-block h4 span {
    background: #dd754e;
    padding: 2px 6px;
    line-height: 2;
    color: #fff;
    border-radius: 50px;
    margin-right: 5px;
    font-weight: 900;
  }

  .recipe-rule .rule-details .rule-block p {
    padding-left: 5px;
    line-height: 1.5;
  }

  .recipe-rule .rule-details .rule-block .more-details-ttl {
    margin-top: 20px;
    margin: 20px 0 10px;
    font-weight: bold;
  }

  .recipe-rule .rule-details .rule-block .more-details-ttl span {
    padding: 0 10px;
    font-weight: bolder;
    background: linear-gradient(transparent 10%, #edd0c6 60%);
  }

  .recipe-rule .rule-details .rule-block .rule-time {
    background: #fff;
    margin: 10px auto 0;
    width: 90%;
    border: 1px solid #000;
  }

  .recipe-rule .rule-details .rule-block .rule-time th {
    border: 1px solid #000;
  }

  .recipe-rule .rule-details .rule-block .rule-time tr {
    border: 1px solid #000;
  }

  .recipe-rule .rule-details .rule-block .rule-time td {
    border: 1px solid #000;
    text-align: center;
  }

  .recipe-rule .rule-details .rule-block .rule-time .black {
    background: #000;
    color: #fff;
  }
}

.recipe__banner {
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .recipe__banner {
    width: 90%;
    margin: 20px auto 30px;
  }
}

/* ------------------------------
村上 祥子先生プロフィール
------------------------------ */
.recipe__profile {
  max-width: 900px;
  margin: 50px auto;
  overflow: hidden;
}

.recipe__profile .recipe__profile__inner {
  display: flex;
  justify-content: space-between;
}

.recipe__profile .recipe__profile__inner .recipe__profile__img {
  width: 26%;
}

.recipe__profile .recipe__profile__inner .recipe__profile__img h5 {
  font-size: 2.6rem;
  text-align: center;
  padding: 20px 0 5px;
}

.recipe__profile .recipe__profile__inner .recipe__profile__img h5 small {
  font-size: 1.6rem;
}

.recipe__profile .recipe__profile__inner .recipe__profile__img h6 {
  line-height: 1.5;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.recipe__profile .recipe__profile__inner .recipe__profile__txt {
  width: 72%;
  line-height: 1.5;
}

.recipe__profile .recipe__profile__inner .profile-btn {
  background: #d85322;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 5px;
}

.recipe__profile .recipe__profile__inner .profile-btn a {
  color: #fff;
}

@media screen and (max-width: 750px) {
  .recipe__profile {
    margin: 0 auto;
  }

  .recipe__profile .recipe__profile__inner {
    display: block;
  }

  .recipe__profile .recipe__profile__inner .recipe__profile__img {
    width: 90%;
    margin: 0 auto;
  }

  .recipe__profile .recipe__profile__inner .recipe__profile__img img {
    width: 60%;
    margin: 0 auto;
    display: block;
  }

  .recipe__profile .recipe__profile__inner .recipe__profile__img h5 {
    font-size: 1.8rem;
    text-align: center;
    padding: 20px 0 5px;
  }

  .recipe__profile .recipe__profile__inner .recipe__profile__img h5 small {
    font-size: 1.6rem;
  }

  .recipe__profile .recipe__profile__inner .recipe__profile__img h6 {
    line-height: 1.5;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
  }

  .recipe__profile .recipe__profile__inner .recipe__profile__txt {
    width: 100%;
    margin: 20px auto 0;
    line-height: 1.5;
  }

  .recipe__profile .recipe__profile__inner .profile-btn {
    width: 80%;
    margin: 0 auto;
    background: #d85322;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
  }

  .recipe__profile .recipe__profile__inner .profile-btn a {
    color: #fff;
  }
}

/* ------------------------------
飾りのオブジェ
------------------------------ */
.recipe-obj {
  display: block;
  margin: 0 auto;
  position: relative;
}

.recipe-obj .recipe-deco-lt {
  position: absolute;
  left: -3%;
  top: -230px;
  width: 24%;
}

.recipe-obj .recipe-deco-rt {
  position: absolute;
  right: -6%;
  top: -230px;
  width: 28%;
}

.recipe-obj .recipe-deco-photo {
  position: absolute;
  left: -14px;
  top: -150px;
  width: 23%;
}

@media screen and (max-width: 750px) {
  .recipe-obj {
    display: block;
    margin: 0 auto;
    position: relative;
  }

  .recipe-obj .recipe-deco-lt {
    position: absolute;
    left: -5%;
    top: -240px;
    width: 18%;
  }

  .recipe-obj .recipe-deco-rt {
    position: absolute;
    right: -9%;
    top: -140px;
    width: 22%;
  }

  .recipe-obj .recipe-deco-photo {
    position: absolute;
    left: -20px;
    top: -80px;
    width: 24%;
    z-index: 2;
  }
}

/* ------------------------------
あったかほっこりレシピ
------------------------------ */
@media screen and (min-width: 751px) {
  .attakarecipe {
    border: 30px solid;
    background: #fff;
    max-width: 1000px;
    margin: 0 auto 100px;
  }

  .attakarecipe .recipe__cnts {
    padding-top: 50px;
  }

  .attakarecipe .recipe__cnts .btn-back {
    background: #dc1d3e;
  }

  .recipe-det__cnts-red {
    -o-border-image: url(../images/border-red.png) 33.4%/30px 30px repeat;
    border-image: url(../images/border-red.png) 33.4%/30px 30px repeat;
  }
}

@media screen and (max-width: 750px) {
  .attakarecipe {
    border: 20px solid;
    background: #fff;
    margin: 0 5px 80px;
  }

  .attakarecipe .recipe__cnts {
    padding-top: 20px;
  }

  .attakarecipe .recipe__cnts .btn-back {
    background: #dc1d3e;
  }

  .recipe-det__cnts-red {
    -o-border-image: url(../images/border-red.png) 33.4%/20px 20px repeat;
    border-image: url(../images/border-red.png) 33.4%/20px 20px repeat;
  }
}

/* ------------------------------
毎日飲みたい ! おみそ汁レシピ
------------------------------ */
@media screen and (min-width: 751px) {
  .misosoup-recipe {
    border: 30px solid;
    background: #fff;
    max-width: 1000px;
    margin: 0 auto 100px;
  }

  .misosoup-recipe .recipe-banner {
    background: url(../images/recipe-bg-misosoup.png);
    background-size: contain;
  }

  .misosoup-recipe .recipe__list {
    padding-top: 30px;
  }

  .misosoup-recipe .recipe__list .btn-back {
    background: #e1963b;
  }

  .recipe-det__cnts-yellow {
    -o-border-image: url(../images/border-yellow.png) 33.4%/30px 30px repeat;
    border-image: url(../images/border-yellow.png) 33.4%/30px 30px repeat;
  }
}

@media screen and (max-width: 750px) {
  .misosoup-recipe {
    border: 20px solid;
    background: #fff;
    margin: 0 5px 80px;
  }

  .misosoup-recipe .recipe-banner {
    background: url(../images/recipe-bg-misosoup.png);
    background-size: contain;
  }

  .misosoup-recipe .recipe__list {
    padding-top: 30px;
  }

  .misosoup-recipe .recipe__list .btn-back {
    background: #e1963b;
  }

  .recipe-det__cnts-yellow {
    -o-border-image: url(../images/border-yellow.png) 33.4%/20px 20px repeat;
    border-image: url(../images/border-yellow.png) 33.4%/20px 20px repeat;
  }
}

/* ------------------------------
食物繊維入りレシピ
------------------------------ */
@media screen and (min-width: 751px) {
  .klg-recipe {
    border: 30px solid;
    background: #fff;
    max-width: 1000px;
    margin: 0 auto 100px;
  }

  .klg-recipe .recipe-banner {
    background: url(../images/recipe-bg-kelloggs.png);
    background-size: contain;
  }

  .klg-recipe .recipe__list {
    padding-top: 30px;
  }

  .klg-recipe .recipe__list .btn-back {
    background: #9c9280;
  }

  .recipe-det__cnts-gray {
    -o-border-image: url(../images/border-gray.png) 33.4%/30px 30px repeat;
    border-image: url(../images/border-gray.png) 33.4%/30px 30px repeat;
  }
}

@media screen and (max-width: 750px) {
  .klg-recipe {
    border: 20px solid;
    background: #fff;
    max-width: 1000px;
    margin: 0 5px 80px;
  }

  .klg-recipe .recipe-banner {
    background: url(../images/recipe-bg-kelloggs.png);
    background-size: contain;
  }

  .klg-recipe .recipe__list {
    padding-top: 30px;
  }

  .klg-recipe .recipe__list .btn-back {
    background: #9c9280;
  }

  .recipe-det__cnts-gray {
    -o-border-image: url(../images/border-gray.png) 33.4%/20px 20px repeat;
    border-image: url(../images/border-gray.png) 33.4%/20px 20px repeat;
  }
}

/* ------------------------------
バナー
------------------------------ */
@media screen and (min-width: 751px) {
  .recipe-banner {
    margin: 0 auto;
    padding-top: 75px;
  }

  .recipe-banner img {
    width: 87%;
    margin: 0 auto;
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .recipe-banner {
    margin: 0 auto;
    padding-top: 30px;
  }

  .recipe-banner img {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}

.sec {
  background:
    url(../images/sec_bar.png) no-repeat center top / 100% auto,
    url(../images/sec_bar.png) no-repeat center bottom / 100% auto
  ;
  background-color: #fefaef;
}
/* ------------------------------
ストーリー,商品詳細
------------------------------ */
@media screen and (min-width: 751px) {

  .story,
  .product {
    /* background-repeat: repeat;
    background-position: center top;
    background-size: contain; */
    max-width: 1000px;
    margin: 0 auto 50px;
    box-shadow: 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .story .section__frame,
  .product .section__frame {
    width: 900px;
    margin: 0 auto;
  }

  .story__ttl,
  .product__ttl {
    width: 50%;
    margin: 0 auto;
    padding: 50px 0 0;
  }
}

@media screen and (max-width: 750px) {

  .story,
  .product {
    /* background-repeat: repeat;
    background-position: center top;
    background-size: contain; */
    margin: 0 auto 30px;
    box-shadow: 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
    font-size: 1.3rem;
    line-height: 1.5;
    width: 95%;
  }

  .story__ttl,
  .product__ttl {
    width: 70%;
    margin: 0 auto;
    padding: 20px 0 0;
  }
}

/* ------------------------------
ストーリー
------------------------------ */
@media screen and (min-width: 751px) {
  .story {
    /* background-image: url(../images/story-bg.jpg); */
    text-align: center;
  }

  .story__copy_wrap {
    position: relative;
  }
  .story__copy_wrap .story__copy {
    font-size: 2.5rem;
    line-height: 1.6;
    color: #958027;
    font-weight: bolder;
    padding: 10px 0 30px;
    text-decoration: underline;
    text-underline-offset: 5px;
  }

  .story .story__des {
    padding: 0 40px;
  }

  .story .story__des.story__des-space {
    font-size: 1.6rem;
  }

  .story .story__des-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }

  .story .story__des-photo p {
    width: 140px;
  }

  .story .story__des-photo img {
    width: 100%;
  }

  .story .story__des-photo-l {
    padding: 0 20px;
  }

  .story .story__voice {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
  }

  .story .story__voice-item {
    width: 48%;
  }

  .story .story__arrow {
    width: 60%;
    display: block;
    margin: 30px auto 0;
  }

  .story .story__tech-frame {
    border: 30px solid;
    -o-border-image: url(../images/border-blueline.png) 33.4%/30px 30px repeat;
    border-image: url(../images/border-blueline.png) 33.4%/30px 30px repeat;
    background: #fff8e4;
    margin: 30px 0;
  }

  .story .story__tech-frame .story__tech-ttl {
    width: 80%;
    margin: 0 auto;
    padding: 40px 0 20px;
  }

  .story .story__tech-frame .story__tech-list {
    display: flex;
    justify-content: space-between;
    max-width: 840px;
    margin: 0 auto;
  }

  .story .story__tech-frame .story__tech-list .story__tech-item {
    width: 32%;
    background: #fff;
    padding: 10px;
    margin-bottom: 20px;
  }

  .story .story__tech-frame .story__tech-list .story__tech-item .story__tech-item-ttl {
    color: #0080bd;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
  }

  .story .story__tech-frame .story__tech-list .story__tech-item .story__tech-item-body {
    padding: 10px;
    font-size: 1.6rem;
    text-align: justify;
  }

  .story .story__ttl-underline {
    color: #0080bd;
    font-size: 3.2rem;
    font-weight: bolder;
    padding-top: 30px;
  }

  .story .story__history {
    width: 95%;
    margin: 0 auto;
    padding: 20px 0 50px;
  }
}

@media screen and (max-width: 750px) {
  .story {
    background-color: #fffaf0;
    /* background-image: url(../images/story-sp-bg.jpg);
    background-size: cover; */
    text-align: center;
  }

  .story .story__copy {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #958027;
    font-weight: bolder;
    text-decoration: underline;
    text-underline-offset: 5px;
    width: 90%;
    margin: 20px auto 0;
  }

  .story .story__des {
    padding: 0 20px;
  }

  .story .story__des-photo {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px auto;
    position: relative;
  }

  .story .story__des-photo p {
    width: 35%;
  }
  .story .story__des-photo img {
    width: 100%;
  }

  .story .story__des-photo .story__des-photo-l {
    padding: 0 20px;
  }

  .story .story__des-photo .story__des-photo-r {

  }

  .story .story__voice {
    display: block;
  }

  .story .story__voice-item {
    width: 80%;
    margin: 10px auto 0;
  }

  .story .story__arrow {
    width: 90%;
    display: block;
    margin: 20px auto 0;
  }

  .story .story__tech-frame {
    border: 10px solid;
    -o-border-image: url(../images/border-blueline.png) 33.4%/20px 20px repeat;
    border-image: url(../images/border-blueline.png) 33.4%/20px 20px repeat;
    background: #fff8e4;
    margin: 30px 10px;
  }

  .story .story__tech-frame .story__tech-ttl {
    width: 95%;
    margin: 0 auto;
    padding: 20px 0 20px;
  }

  .story .story__tech-frame .story__tech-list {
    display: block;
  }

  .story .story__tech-frame .story__tech-list .story__tech-item {
    width: 95%;
    margin: 0 auto;
    background: #fff;
    padding: 10px;
    margin-bottom: 15px;
  }

  .story .story__tech-frame .story__tech-list .story__tech-item .story__tech-item-ttl {
    color: #0080bd;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
  }

  .story .story__tech-frame .story__tech-list .story__tech-item .story__tech-item-body {
    padding: 10px;
    font-size: 1.3rem;
  }

  .story .story__ttl-underline {
    color: #0080bd;
    font-size: 2rem;
    font-weight: bolder;
    padding-top: 30px;
  }

  .story .story__history {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0 30px;
  }
}

/* ------------------------------
商品詳細
------------------------------ */
@media screen and (min-width: 751px) {
  .product {
    /* background-image: url(../images/product-bg.jpg); */
  }

  .product .product__des {
    width: 90%;
    margin: 0 auto;
  }

  .product .product__ttl-txt {
    font-size: 3rem;
    text-align: center;
    color: #7a601d;
    padding: 30px 0;
  }

  .product .product__ttl-txt {
    display: flex;
    align-items: center;
    /* 垂直中心 */
    justify-content: center;
    /* 水平中心 */
  }

  .product .product__ttl-txt:before,
  .product .product__ttl-txt:after {
    border-top: 2px solid;
    content: "";
    width: 9em;
    /* 線の長さ */
  }

  .product .product__ttl-txt:before {
    margin-right: 1em;
    /* 文字の右隣 */
  }

  .product .product__ttl-txt:after {
    margin-left: 1em;
    /* 文字の左隣 */
  }

  .product .product__product-list {
    display: flex;
    justify-content: space-between;
  }

  .product .product__product-list .product__product-item {
    width: 48%;
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0.1em 0.1em 1em rgba(149, 129, 39, 0.1647058824);
  }

  .product .product__product-list .product__product-item .product__product-head {
    width: 95%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #958027;
  }

  .product .product__product-list .product__product-item .product__product-head .product__product-img {
    width: 70%;
    margin: 20px auto;
  }

  .product .product__product-list .product__product-item .product__product-body {
    width: 95%;
    margin: 0 auto;
    padding: 20px 0;
  }

  .product .product__product-list .product__product-item .product__product-table th,
  .product .product__product-list .product__product-item .product__product-table td {
    font-weight: 400;
    width: 50%;
    padding: 5px 0;
    line-height: 1.1;
    font-size: 1.4rem;
  }

  .product .product__product-list .product__product-item .product__product-table td span {
    font-size: 1.2rem;
  }

  .product .product__product-list .product__product-item .prodcut-btn {
    background: #958027;
    width: 90%;
    font-weight: bolder;
    margin: 0 auto 10px;
    font-size: 2.3rem;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
  }

  .product .product__product-list .product__product-item .prodcut-btn a {
    color: #fff;
  }

  .product .product__wrap {
    font-size: 1.6rem;
    padding: 30px;
  }

  .product .product__wrap .product__ttl-small {
    padding: 10px 0 10px;
  }

  .product .product__wrap .product-small {
    font-size: 1.4rem;
    padding-top: 10px;
  }

  .product .product__allergen {
    display: flex;
    text-align: center;
  }

  .product .product__allergen .product__allergen-left {
    background: #000;
    color: #fff;
    padding: 10px;
  }

  .product .product__allergen .product__allergen-right {
    background: #fff;
    padding: 10px;
    border: 1px solid #000;
  }

  .product .caution {
    color: #ff0000;
  }
}

@media screen and (max-width: 750px) {
  .product {
    /* background-image: url(../images/product-sp-bg.jpg);
    background-size: cover; */
    padding-bottom: 30px;
  }

  .product .product__des {
    width: 95%;
    margin: 0 auto;
  }

  .product .product__ttl-txt {
    font-size: 1.8rem;
    text-align: center;
    color: #7a601d;
    padding: 20px 0;
  }

  .product .product__ttl-txt {
    display: flex;
    align-items: center;
    /* 垂直中心 */
    justify-content: center;
    /* 水平中心 */
  }

  .product .product__ttl-txt:before,
  .product .product__ttl-txt:after {
    border-top: 1px solid;
    content: "";
    width: 3em;
    /* 線の長さ */
  }

  .product .product__ttl-txt:before {
    margin-right: 1em;
    /* 文字の右隣 */
  }

  .product .product__ttl-txt:after {
    margin-left: 1em;
    /* 文字の左隣 */
  }

  .product .product__product-list {
    display: block;
  }

  .product .product__product-list .product__product-item {
    width: 90%;
    margin: 0 auto 10px;
    background: #fff;
    padding: 10px 10px;
    box-shadow: 0.1em 0.1em 1em rgba(149, 129, 39, 0.1647058824);
  }

  .product .product__product-list .product__product-item .product__product-head {
    width: 95%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #958027;
  }

  .product .product__product-list .product__product-item .product__product-head .product__product-img {
    width: 60%;
    margin: 10px auto;
  }

  .product .product__product-list .product__product-item .product__product-body {
    width: 95%;
    margin: 0 auto;
    padding: 10px 0;
  }

  .product .product__product-list .product__product-item .product__product-table th,
  .product .product__product-list .product__product-item .product__product-table td {
    font-weight: 400;
    width: 50%;
    padding: 5px 0;
    line-height: 1.1;
    font-size: 1.4rem;
  }

  .product .product__product-list .product__product-item .product__product-table td span {
    font-size: 1.3rem;
  }

  .product .product__product-list .product__product-item .prodcut-btn {
    background: #958027;
    width: 90%;
    font-weight: bolder;
    margin: 0 auto 10px;
    font-size: 1.6rem;
    text-align: center;
    padding: 8px 10px;
    border-radius: 5px;
  }

  .product .product__product-list .product__product-item .prodcut-btn a {
    color: #fff;
  }

  .product .product__wrap {
    font-size: 1.3rem;
    padding: 10px;
  }

  .product .product__wrap .product__ttl-small {
    padding: 10px 0 10px;
    font-size: 3vw;
  }

  .product .product__wrap .product-small {
    font-size: 1.3rem;
    padding-top: 15px;
  }

  .product .product__wrap .product__seibun-frame-item {
    width: 90%;
    margin: 0 auto;
  }

  .product .product__allergen {
    display: flex;
    text-align: center;
  }

  .product .product__allergen .product__allergen-left {
    background: #000;
    color: #fff;
    padding: 5px;
  }

  .product .product__allergen .product__allergen-right {
    background: #fff;
    padding: 5px;
    border: 1px solid #000;
  }

  .product .caution {
    color: #ff0000;
  }
}

/*# sourceMappingURL=style.css.map */