
.background-color {
   background-color: #fff;
}

.center{
   text-align: center;
}

body {
   color: #480f00;
}

p {
   font-feature-settings: "palt";
   color: #480f00;
}

ul, dl{
   text-align: left;
}

li {
   list-style: none;
}

.pc {
   display: block;
}

.sp {
   display: none;
}

.white {
   color: #fff;
}

#header {
   max-width: 900px;
   margin: 0 auto;
   color: #ffffff;
   box-sizing: border-box;
   margin-bottom: 10px;
}

#header img{
}

.contents{
   max-width: 900px;
   padding: 0 0 20px 0;
   margin: auto;
   margin-bottom: 80px;
}

.contents-inner{
   padding: 30px 20px 50px 20px;
   margin: 0 auto 30px auto;
   background-color: #ffc0cd;
   background-image: linear-gradient(62deg, #ffc0cd 12%, #ffd5dd 88%, #ffbbc4 100%);
}

.flex {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   margin: 0 0 10px 0;
}

.flex p {
   flex: 0.9;
}

.flex li {
   margin: 5px 0;
}


.btn_box {
   margin-bottom: 50px;
}

.buy_btn {
   display: block;
   max-width: 300px;
   margin: 10px auto 0;
   padding: 10px 20px;
   border-radius: 45px;
   background-color: #f57987;
   color: #fff;
   text-align: center;
   transition: 0.3s;
   position: relative;
  z-index: 2;
  will-change: transform, filter;
  transform-style: preserve-3d;
  transition: all .3s ease-out;
}

.buy_btn:hover {
  transform: scale(0.95);
  color: #fff;
}
.buy_btn::before {
  content: "";
  height: 40px;
  display: inline-block;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -5px;
  z-index: -1;
  border-radius: 50px;
  opacity: .8;
  filter: blur(15px);
  transform-style: preserve-3d;
  transition: all .3s ease-out;
}
.buy_btn:hover::before {
  bottom: 0;
  filter: blur(8px);
}
.gradient2,
.gradient2::before {
  background: -moz-linear-gradient(left, #ddbd76 0%, #edcd7e 80%, #edcd7e 100%);
  background: -webkit-linear-gradient(left, #ddbd76 0%, #edcd7e 80%, #edcd7e 100%);
  background: linear-gradient(to right, #ddbd76 0%, #edcd7e 80%, #edcd7e 100%);
}


.recipe_banner {
   margin: 90px 0 100px 0;
}

.h2_ttl{
   border-top: 3px solid #4c2400;
   border-bottom: 3px solid #4c2400;
   color: #4c2400;
   padding: 0.2rem 0;
   margin-bottom: 50px;
}

.bold {
   font-size: 1rem;
   font-weight: bold;
}

.marker {
   background:linear-gradient(transparent 60%, #fdf5b5 60%);
   display: inline-block;
}

.red {
   color: #da3c47;
}

.md {
   font-size: 1.2rem;
   line-height: 1.5rem;
   margin-top: 10px;
}

.h2_ttl{

}

.h3_ttl{

}


.content .content-inner {
   line-height: 2.3rem;
}

.recipe_box {
   background-color: #fff;
   padding: 30px 20px 0px;
   margin-bottom: 50px;
}

.recipe_item {
   width: 48%;
}

.recipe_item_header {
   margin-bottom: 20px;
}

.content .content-inner dl dt{
   padding: 2px 10px;
   border-left: 5px solid #5a322b;
   font-size: 1.6rem;
   font-weight: bold;
   margin: 30px 0 10px;
}



@media screen and (max-width: 480px) {

   .pc {
      display: none;
   }

   .sp {
      display: block;
   }

   .contents {
      width: 100%;
      margin-bottom: 0px;
   }

   .contents-inner{
      width: 100%;
      padding: 30px 10px 50px;
   }

   #header {
      width: 100%;
      margin-bottom: 0;
   }

   .contents-inner p{
      line-height: 1.5rem;
      font-size: 1rem;
   }

   .marker {
      display: inline;
   }

   .h2_ttl {
      font-size: 22px;
      line-height: 2rem;
      color: #4c2400;
      margin-bottom: 20px;
      padding: 0;
   }

   .recipe_box {
      display: block;
      padding-bottom: 1px;
   }

   .recipe_item_header {
       margin-bottom: 10px;
   }

   .recipe_item {
      width: 100%;
      margin-bottom: 50px;
   }


   .btn_box {
       margin-bottom: 20px;
   }

   .flex p {
       flex: 1;
       margin-bottom: 20px;
   }


}






