/*----------------------
halloween/index
------------------------
1. hw
2. index_recipe-ttl
3. recipe
4. story
5. recipe_page
6. index_party
------------------------*/

/*--------------------------------
 hw
--------------------------------*/

.hw {
  background: linear-gradient(45deg, #0000ff, #ff0000, #ffff00);
  background-size: 500% 500%;
  opacity: 1;
  animation: animation_011 10s ease infinite;
}

@keyframes animation_011 {
  0% {
    background-position:0% 50%;
  }
  50% {
    background-position:100% 50%;
  }
  100% {
    background-position:0% 50%;
  }

}

.hw {
  height: 600px;/*0916_700px*/
  position: relative;
  overflow: hidden;
  padding: 10px 0 0;
}

@media screen and (max-width: 64em) {
  .hw {
    background-size: 1200px auto;
  }
}

@media screen and (max-width: 48em) {
  .hw {
    height: 100%;
  }
}

.hw::after {
  content: '';
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 80px;
  background: url(../img/hw_bg_foot.png) repeat-x center bottom;
  bottom: 0;
}
.hw-container {
  height: 100%;
  position: relative;
  background: url(../img/hw_bg_star.png) no-repeat center 10px;
}

.hw-container::before, .hw-container::after {
  content: '';
  display: block;
  position: absolute;
  top: 15%;/*25%*/
  width: 258px;/*285px*/
  height: 499px;/*319px*/
  z-index: 2;
  transition: all .5s ease;
}

@media screen and (max-width: 35.5em) {
  .hw-container::before, .hw-container::after {
    /*top: 30%;*/
    display: none;
  }
}

.hw-container::before {
  left: 50%;
  background: url(../img/hw_left2.png) no-repeat left bottom, url(../img/hw_left1.png) no-repeat right top;
  transform: translateX(-183%);
}

@media screen and (max-width: 35.5em) {
  .hw-container::before {
    background-size: contain,contain;
    height: auto;
    width: 32%;
    padding: 40% 0 0;
  }
}

.hw-container::after {
  right: 50%;
  background: url(../img/hw_right2.png) no-repeat right bottom, url(../img/hw_right1.png) no-repeat left top;
  transform: translateX(183%);
}

@media screen and (max-width: 35.5em) {
  .hw-container::after {
    background-size: contain,contain;
    height: auto;
    width: 32%;
    padding: 40% 0 0;
  }
}

.hw-inner {
  position: relative;
  padding: 0px 0 0;
  max-width: 940px;
  margin: 0 auto;
  height: 100%;
  text-align: center;
  background: url(../img/hw_house.png) no-repeat 34% 97.4%;
}

.hw-inner::before {
  content: '';
  position: absolute;
  right: 10%;/*2.95%*/
  background: url(../img/hw_obake2.png) no-repeat;
  background-size: contain;
  width: 13.2%;
  padding: 13.2% 0 0;
  transition: opacity .7s;
  animation: jello 7s infinite 7s;
}

.hw-inner::after {
  content: '';
  position: absolute;
  left: 25%;/*4.5%*/
  background: url(../img/hw_pumpkin2.png) no-repeat;
  background-size: contain;
  width: 18%;/*13.2%*/
  padding: 0 0 15%;
  transition: opacity .7s;
  animation: jello 7s infinite 7s;
  top:70%;/*0916_75%*/
}


@media screen and (max-width: 35.5em) {
  .hw-inner::before {
    opacity: 0;
  }
  .hw-inner::after {
  width: 100%;
  padding: 0 0 15%;/*0916_0 0 10%*/ 
  }
}

@media screen and (max-width: 768px) {
  .hw-inner {
    background-size: 48%;
    padding: 5% 5.25% 32%;
  }
}

.hw-head, .hw-read, .hw-ttl {
  position: relative;
  z-index: 3;
}

.hw h1{margin:0;}

.hw-bats {
  position: absolute;
  z-index: 1;
}

.hw-bats img {
  width: 100%;
}

.hw-bats1 {
  width: 128px;/*91px*/
  left: 52%;/*50%*/
  top: 5%;/*0916_10%*/
  margin: 0 0 0 -400px;
  transform: rotate(25deg);
  animation-delay: .7s;
}

.hw-obake {
  left: 55%;/*60%*/
  width: 7%;
  bottom: 15%;/*0916_12%*/
  transform: translateX(0%);
  animation-delay: .5s;
}

@media screen and (max-width: 48em) {
  .hw-obake {
    width: 20%;
  }
}

.hw-bats2 {
  right: 50%;
  width: 128px;
  top: 32%;
  margin: 0 -600px 0 0;
}

@keyframes bgspin {
  from {
    transform: translate(-50%, 0) rotate(0deg);
  }
  to {
    transform: translate(-50%, 0) rotate(360deg);
  }
}

/*--------------------------------
index-ttl
--------------------------------*/

.index-ttl {
  position: relative;
  text-align: center;
  font-size: 24px;
color: #5f1985;
font-weight: normal;
}

@media screen and (max-width: 860px) {
.index-ttl {
    width: 90%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
  }
}

.index-ttl::before, .index-ttl::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  height: 90px;
  background: url(../img/recipe_ttl_pkn.png) no-repeat center center;
  background-size: contain;
  animation: swing 3s infinite 3s;
}

@media screen and (max-width: 860px) {
.index-ttl::before, .index-ttl::after {
    width: 10%;
    height: auto;
    padding: 10% 0 0;
  }
}

.index-ttl:after {
  transform: rotateY(180deg);
}

.index-ttl img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 1rem;
}

@media screen and (max-width: 860px) {
.index-ttl img {
    max-width: 70%;
  }
}

/*--------------------------------
recipe
--------------------------------*/
.recipe {
  position: relative;
  background: url(../img/bg_pattern.png) #f8b62b;
  padding: 30px 0 0;
  z-index: 1;
}

.recipe::before {
  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background-image: linear-gradient(315deg, #f8b62b 25%, transparent 25%), linear-gradient(45deg, #f8b62b 25%, transparent 25%);
  background-size: 14px 100%;
  position: absolute;
  left: 0;
  top: -24px;
}

.recipe-wrapper {
  position: relative;
  overflow: hidden;
}

.recipe-wrapper::after {
  content: '';
  display: block;
  width: 632px;
  height: 243px;
  position: absolute;
  left: 50%;
  bottom: 104px;
  transform: translateX(-134%);
}

.recipe-inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  padding: 0 0px 164px;
}

@media screen and (max-width: 35.5em) {
 .recipe-inner {
  padding: 0 0px 164px;
}
  }


.recipe-inner::after {
  content: '';
  display: block;
  width: 100%;
  height: 146px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/recipe_bg_footer.png) repeat-x center bottom;
}

.recipe-inner .container{
  padding-right: 0;
  padding-left: 0;
}

.recipe-ttl {
  position: relative;
  text-align: center;
  font-size: 24px;
color: #ff3300;/*#5f1985*/
font-weight: normal;
background: rgba(255,255,255,.9);
margin: 10px 16px;
}

@media screen and (max-width: 860px) {
  .recipe-ttl {
    width: 90%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
  }
}

.recipe-ttl::before, .recipe-ttl::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  height: 90px;
  background: url(../img/recipe_ttl_pkn.png) no-repeat center center;
  background-size: contain;
  animation: swing 3s infinite 3s;
}

@media screen and (max-width: 860px) {
  .recipe-ttl::before, .recipe-ttl::after {
    width: 10%;
    height: auto;
    padding: 10% 0 0;
  }
}

.recipe-ttl:after {
  transform: rotateY(180deg);
}

.recipe-ttl img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 1rem;
}

@media screen and (max-width: 860px) {
  .recipe-ttl img {
    max-width: 70%;
  }
}
.read{margin-top: 20px; margin-bottom: 20px; font-size: 16px; background:#faf5e9;
padding: 10px;border-radius: 6px;}

.recipe-comment {
  margin: 5.65% 0 0;
  padding: 0;
  color: #fff;
  background:  url(../img/recipe_bg_bottom.png) no-repeat 94% 88% #2f1f1b/*faf5e9*/;
  border-radius: 6px;
  padding: 20px 0px 0px;
}

@media screen and (max-width: 48em) {
  .recipe-comment {
    padding: 8.25% 3%;
  }
}

@media screen and (max-width: 35.5em) {
  .recipe-comment {
    padding: 5.25% 3%;
  }
}

/*.recipe-img {background: #faf5e9;}
.recipe-img a:hover {opacity: .6;}*/

.recipe-img img{
    transition: 0.2s;
}

.recipe-img img:hover{
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    transform: rotate(3deg);
}

.recipe-comment_ttl {
  font-size: 1.8rem;
  text-align: center;
  margin: 0 0 1rem;
}

.recipe-comment_ttl a{color: #ff3300;}

@media screen and (max-width: 48em) {
  .recipe-comment_ttl {
    font-size: 1.3rem;
  }
}

.recipe-comment_txt {
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.8;
  min-height: 12.5rem;
}

@media screen and (max-width: 48em) {
  .recipe-comment_txt {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 35.5em) {
  .recipe-comment_txt {
    min-height: inherit;
  }
}

/**/
.recipe_ttl {
    padding: 0.5em 0.5em;
    margin: 2em 0.6em 0;
    background: #fff;
    box-shadow: 0px 0px 0px 10px #fff;
    border: dashed 2px #ff6600;
}
.recipe_ttl p {
    margin: 0; 
    padding: 0;
}

.recipe_ttl {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 600;
}

.recipe_ttl a{color: #ff3300;}
.recipe_ttl a:hover{text-decoration: none; color: #ff9900;}

.recipe_red{color: #ff3300;  text-decoration: none;}
.recipe_white{color: #fff;  text-decoration: underline;}

@media screen and (max-width: 35.5em) {
.recipe_ttl {
  font-size: 1.3rem;
}
  }

/*--------------------------------
story　
--------------------------------*/
.story {
  background: linear-gradient( rgba(248,182,43, .5),rgba(251,183,51, .2) ) fixed, url(../img/bg_pattern_star.png) repeat;
  
  padding: 30px 0 0;
  color: #000000;
}

.story a{ color: #ff3300; font-weight: 600;}

.story-ttl {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 1.4rem;
  position: relative;
  font-weight: bold;
}

.story-read {
  text-align: left;
  font-size: 16px;
  margin: 0 auto 40px;
  width: 75.2%;
}

@media screen and (max-width: 35.5em) {
.story-read {
  margin: 0 auto 20px;
  width: 90%;
}
}

.story-inner {
  overflow: hidden;
  position: relative;
  padding: 0 0 150px;
}

.story-inner::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0px;
  left: 40%;
  width: 260px;
  height: 148px;
  margin: 0 auto 0;
  background: url(../img/story_bg_obake.png) no-repeat;
  background-size: contain;
  z-index: 2;
  animation: shake 4s infinite 1s;
}

@media screen and (max-width: 35.5em) {
.story-inner::after {
  left: 15%;
}
}

/*--------------------------------
bnr_pumpkin
--------------------------------*/
.bnr_pumpkin{ background: #ff6600; padding: 30px 0; }

.bnr_pumpkin a:hover {opacity: .6;}


/*--------------------------------
recipe_page
--------------------------------*/
.breadcrumb {background: none; margin:0; padding: 0;}
.breadcrumb li{display: inline-block;}
.breadcrumb a {color: #444;}

.recipe_page {
  position: relative;
  background: url(../img/bg_pattern.png) #f8b62b;
  padding: 10px 0 0;
  z-index: 1;
}

.recipe-guide {
  margin-top: 10px;
  color: #fff;
  background:  url(../img/recipe_bg_bottom.png) no-repeat 94% 88% #2f1f1b/*faf5e9*/;
  border-radius: 6px;
  padding: 10px 0px 10px 30px;
}

@media screen and (max-width: 48em) {
  .recipe-guide {
   padding: 8.25% 0 8.25% 8.25%;
  }
}

@media screen and (max-width: 35.5em) {
  .recipe-guide {
    padding: 5.25% 0 5.25% 5.25%;
  }
}

.recipe-guide_ttl {
  font-size: 1.8rem;
  text-align: left;
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 2;
}

.recipe-guide_ttl span{font-size: 1.2rem; font-weight: 400;}

.recipe-guide_ttl a{color: #ff3300;}

@media screen and (max-width: 48em) {
  .recipe-guide_ttl {
    font-size: 1.6rem;
  }
}

.recipe-guide_txt {
  padding: 0 30px 0 0;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.8;
  min-height: 14.5rem;
  text-align: left;
}

.recipe-guide_txt span{font-weight: 400;font-size: 1.2rem;}

@media screen and (max-width: 48em) {
  .recipe-guide_txt {
    padding: 0 0 0 0;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 35.5em) {
  .recipe-guide_txt {
    padding: 0 0 0 0;
    min-height: inherit;
  }
}

/*作り方*/

.recipe-field {
  margin-top: 10px;
  padding: 0;
  color: #2f1f1b;
  background:  url(../img/recipe_bg_bottom2.png) no-repeat 97% 88% #faf5e9/*2f1f1b*/;
  border-radius: 6px;
  padding: 20px 20px 10px 30px;
}

@media screen and (max-width: 48em) {
  .recipe-field {
    padding: 8.25% 0 8.25% 8%;
  }
}

@media screen and (max-width: 35.5em) {
  .recipe-field {
    padding: 5.25% 0 5.25% 1.5%;
  }
}

.recipe-field_ttl {
  font-size: 1.8rem;
  text-align: left;
  margin: 0 0 1rem;
}

.recipe-field_ttl a{color: #ff3300;}

@media screen and (max-width: 48em) {
  .recipe-field_ttl {
    font-size: 1.6rem;
  }
}

.recipe-field_txt {
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  min-height: 14.5rem;
  text-align: left;
}

@media screen and (max-width: 48em) {
  .recipe-field_txt {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 35.5em) {
  .recipe-field_txt {
    min-height: inherit;
  }
}

.smp_mini img{ width: 100%; height: auto; margin-top: 0;}

@media screen and (max-width: 48em) {
  .smp_mini img {
    width: 50%; height: auto; margin-top: 20px;
  }
}

@media screen and (max-width: 35.5em) {
  .smp_mini img {
    width: 50%; height: auto; margin-top: 20px;
  }
}

.recipe-field_point {
  padding: 0;
  margin: 10px 0 0;
  font-size: 1.4rem;
  line-height: 1.8;
  min-height: 14.5rem;
  text-align: center;
}

@media screen and (max-width: 48em) {
  .recipe-field_point  {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 35.5em) {
  .recipe-field_point  {
    min-height: inherit;
  }
}

.ppl a {color: #5f1985; font-weight: 600;}
.ppl a:hover {color: #7e4a9a; font-weight: 600; text-decoration: none;}

.story .col-sm-4{padding-left: 10px; padding-right: 10px; margin-bottom: 30px;}

@media screen and (max-width: 48em) {
.story .col-sm-4{padding-left: 4px; padding-right: 4px;margin-bottom: 20px;}
}

/**/
.story .recipe_ttl {
    padding: 0.5em 0.5em;
    margin: 1em 0.6em 0;
    background: #fff;
    box-shadow: 0px 0px 0px 10px #fff;
    border: dashed 2px #ff6600;
}
.story .recipe_ttl p {
    margin: 0; 
    padding: 0;
}

.story .recipe_ttl {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 600;
}

.story .recipe_ttl a{color: #ff3300;}
.story .recipe_ttl a:hover{text-decoration: none; color: #ff9900;}

@media screen and (max-width: 35.5em) {
.story .recipe_ttl {
  padding: 0.1em;
  margin: 1em 0.2em 0;
  box-shadow: 0px 0px 0px 5px #fff;
  font-size: 1.2rem;
}
  }


/*index_party*/
#rect {
    position: absolute;
    left:-50px;
    top:50px;
    padding:10px 0px;
    text-align:center;
    color:#fff;
}

#content{
    /*min-height: 550px;*/ 
    position: relative;
}
.fuwafuwa{
    position: absolute;    
    top:-350px;
    left:30%;}

#content img{width: 100px;}

@media screen and (max-width: 48em) {
  .fuwafuwa{
    position: absolute;    
    top:-200px;
    left:10%;
}
   #content img{width: 100px;}
}

@media screen and (max-width: 35.5em) {
  .fuwafuwa{
    position: absolute;    
    top:-140px;
    left:30%;
}
  #content img{width:80px;}
}


