@charset "UTF-8";
/*
  Base
---------------------------------------------- */
html {
  
  box-sizing: border-box;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  height: 100%;
  margin: 0;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1c0e0f;
  letter-spacing: 0.05em;
  background-color: #f9e3cf;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
text-decoration: none;;
}

h1,
h2,
h3,
h4,
h5,
strong {
  margin: 0;
  font-weight: bold;
  font-size: 22px;
}

p {
  margin: 0;
  font-size: 3rem;
}

ul {
  margin: 0;
  padding: 0;
  font-size: 3rem;
  list-style: none;
}

input,
textarea {
  max-width: 100%;
  font-family: inherit;
  font-size: 100%;
}

.sp {
  display: none;
}

.center {
  text-align: center;
}

.kotei{
  z-index: 10;
  position: fixed;
  bottom: 3%;/*自分が固定したい位置(例は上から0pxの位置)*/
  left: 87%;/*自分が固定したい位置(例は左から10pxの位置)*/
  right: 0px;
}

.shoplink {   
    width: 74px;
}


.btn-square-so-pop:active {
  /*押したとき*/
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}



@media screen and (max-width: 768px) {
  header {
    display: block;
    background-image: none;
    height: auto;
  }
  header .sp {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}

header .pc {
    width: 100%;
    margin: 0 auto;
    display: block;}


h2 {
    margin: 2% 0;
}

h3 {
    text-align: center;
}



.pc img{
    width: 70%;
    display: block;
    margin: 0 auto;
    padding: 3%;
}


.img-margin{
    margin: 2% 0;
}


.block-banner {
  text-align: center;
}
.block-inner {
  text-align: center;
}

.w-70{
    width: 70%;
    margin: 0 auto;
}

.w-80{
    width: 80%;
    margin: 0 auto;
}


.w-90{
    width: 90%;
    margin: 0 auto;
}

.textbox {
    width: 80%;
    padding: 2% 4%;
    margin: 3% auto;
    background: #FFF;
    border-radius: 10px;
}
.textbox.ff8 {
    width: 80%;
    padding: 3%;
    margin: 0 auto 5%;
    background: #FFF;
    border-radius: 10px;
}
.textbox.ff8 p{
  font-size: 14px;
}

.textbox.ff8 ul {
  margin-bottom: 20px;
  font-size: 14px;
}
.textbox.ff8 ul:last-child {
  margin-bottom: 0;
}

.textbox.ff8 li {
  font-size: 14px;
}

.textbox ul {
  margin-bottom: 70px;
}
.textbox ul:last-child {
  margin-bottom: 0;
}
.textbox.ff1 {
  font-size: 12px;   
  padding: 5% 10%;
  color: #896878;
  background-color: #ffffff;
}

.ff9 p{
  font-size: 14px;
text-align: center;
}


.ff10 {
  display: block;
    width: 100%;
    margin: 0 auto;
}

.ff10 p{
  font-size: 12px;
}

.ff10 ul {
  margin-bottom: 20px;
  font-size: 12px;
}

.ff10 li {
  font-size: 12px;
}


.footer {
    width: 90%;
  padding: 2% 0 10%;
    margin: 0 auto;

}

.footer p {
    font-size: 16px;
    
}

.mb-0{
 margin: 0 auto;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-2 {
  margin-top: 2%;
}

.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.delay-time04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-time08 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay-time12 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.delay-time16 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.delay-time16-pc {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.delay-time20-pc {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time24-pc {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.delay-time28-pc {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.sp-br{
    display: none; /* SPの改行を隠す */
  }

.app-br {
    display: none; /* SPの改行を隠す */
}
.sp480-br{
    display: none; /* SPの改行を隠す */
}

.mb-0 img{
    width:50%;
}

.block-inner-flex2 {
    max-width: 972px;
    display: flex;
    justify-content: space-between;
    
}

.ff9{
    margin: 2% 0;
}

  .spb{
        display: block;
    }
    .spp{
        display: none;
    }



/* レスポンシブ 768px*/

@media screen and (max-width: 768px) {
    h3 {
      
    }
     .block-topbbanner .sp {
    margin: 0 auto;
  } 
  h2 {
    font-size: 2.7VW;    
    }

  p {
    font-size: 1.4rem;
  }
  ul {
    font-size: 1.4rem;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
              width: 62%;
        margin: 0 auto;   
  }
    .sp img {
        padding-top: 5%
    }

  .block.title {
    padding: 8% px;
  }
  .block.blk img {
    max-width: 100%;
  }
  
  .block-inner p {
    max-width: 400px;
    margin: 0 auto;
    padding-top: 4%;
    font-size: 26px;
  }
  .fadeRight{
      padding-top: 6%;
    }

  .textbox {
    padding: 10% 5%;
    border-radius: 25px;
      width: 100%;
  }
  .textbox.ff8 {
    padding: 10% 5%;
      margin-top:2%;
      width: 100%;
  }
  .textbox.ff8 ul {
    margin-bottom: 20px;
  }
  .textbox.ff8 ul:last-child {
    margin-bottom: 0;
  }
  .textbox ul {
    margin-bottom: 20px;
  }
  .textbox ul:last-child {
    margin-bottom: 0;
  }
  .mb-100 {
    margin-bottom: 0px;
  }
  .mb-120 {
    margin-bottom: 30px;
  }
  .mb-50 {
    margin-bottom: 30px;
  }
  .delay-time16-pc, .delay-time20-pc, .delay-time24-pc, .delay-time28-pc {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .delay-time04-sp {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .delay-time08-sp {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .delay-time12-sp {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .delay-time16-sp {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
  }
  .sp-br {
    display: block; /* SPを改行する */ 
    }
    
  .topimg{
    width: 80%;
    }
 
  .shoplink{
     font-size: 1em;
    }

    .leftimg img{
    width: 20%;
    margin: -13% 5%;
    }
    .leftimg_2 img{
    width: 22%;
    margin: -12% 2%;
    }
    .rightimg img{
    width: 22%;
    margin: -12% 1%;
    }
    .block.ffd{
     padding: 2% 5%;
    }
    .img_size{
    width: 100%;
    margin: 2% 0 0;
    }
     .sp-br {
    display: block; /* SPを改行する */ 
    }


    
}

/* レスポンシブ 480px*/

@media screen and (max-width: 480px) 
{
    h2 {
        font-size: 3.0VW;
    }
    .sp{
        width: 90%;
    }

    .kotei{
  z-index: 10;
  position: fixed;
  bottom: 3%;/*自分が固定したい位置(例は上から0pxの位置)*/
  left: 80%;/*自分が固定したい位置(例は左から10pxの位置)*/
  right: 0px;
}

.shoplink {   
    width: 70px;
}
    
    .block-inner p{
        font-size: 1.2em;
    }

    .img_size_sp{
        width: 100%;
    }
    .block-inner-flex{
        padding-top: 0;
    }

    .font24{
        font-size: 16px;
    }
    .ribbon2{
        width: 66%;
        font-size: 18px
    }
    .leftimg_2 img{
        width: 26%;
    }
    .sp480-br {
    display: block; /* SPを改行する */ 
    }
    .block.ff8{
        padding: 12% 0%;
    }
    .block-inner-flex p{
        padding: 1%;
    }
    .textsub{
        display: block;
    }
    .inline-block_test{
        width: 100%;
    }


    
    .block.ff9{
        padding: 4%;
    }
    .ff9 p{
        font-size: 12px;
    }
    .footer{
        padding: 2% 0 16%;
    }
    .footer p{
        font-size: 12px;
    }
    .titleline{
        font-size: 22px;
    }
    
    .w-100{
        width: 100%;
    }
    .w-90sp{
        width: 90%;
    }
    .spb{
        display: none;
    }
    .spp{
        display: block
    }
}

@media screen and (max-width: 390px) 
{
.app-br {
    display: block; /* SPを改行する */ 
    }
    
.kotei{
  z-index: 10;
  position: fixed;
  bottom: 3%;/*自分が固定したい位置(例は上から0pxの位置)*/
  left: 86%;/*自分が固定したい位置(例は左から10pxの位置)*/
  right: 0px;
}

.shoplink {   
    width: 40px;
}

}

.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/ribbon.png) no-repeat center/ 100px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 100%;
  height: 100px;
  margin-top: 15px;
}
 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
 