@charset "UTF-8";
/*  トップ  */
.top_area {
  width: 100%;
  height: 100vh;
  background-image: url(../img/hokka_top.svg);
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 1100px) {
  .top_area {
    background-image: url(../img/hokka_top2.svg);
    margin-top: 60px;
  }
}

@media screen and (max-width: 640px) {
  .top_area {
    background-image: url(../img/hokka_top3.svg);
    margin-top: 0;
  }
}

/*  トップアニメーション  */
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes rotate01 {
  0% {
    transform: rotate(12deg);
  }
  to {
    transform: rotate(-12deg);
  }
}

@keyframes rotate02 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}

.top_area .loop_wrap {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.top_area .loop_wrap ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 12.5vw;
  z-index: 20;
}

.top_area .loop_wrap ul:first-child {
  animation: loop 30s linear infinite;
}

.top_area .loop_wrap ul:nth-child(2) {
  animation: loop2 30s linear infinite;
}

.top_area .loop_wrap ul li img {
  width: 100%;
  height: auto;
  animation: rotate01 500ms linear infinite alternate;
}

.top_area .loop_wrap ul li:nth-child(2n) img {
  animation: rotate01 500ms linear infinite alternate-reverse;
}

.top_area .loop_wrap .rail_wrap {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 12.5vw;
  z-index: 10;
}

.top_area .loop_wrap .rail_wrap ul.gear {
  bottom: auto;
}

.top_area .loop_wrap .rail_wrap ul.gear li {
  width: 70px;
  margin: 0 auto;
}

.top_area .loop_wrap .rail_wrap ul.gear li img {
  animation: rotate02 5s linear infinite;
}

.top_area .loop_wrap .rail_wrap .straight01, .top_area .loop_wrap .rail_wrap .straight02 {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -5px;
  z-index: 10;
}

.top_area .loop_wrap .rail_wrap .straight01 {
  animation: loop 30s linear infinite;
}

.top_area .loop_wrap .rail_wrap .straight02 {
  animation: loop2 30s linear infinite;
}

@media screen and (max-width: 1100px) {
  .top_area .loop_wrap {
    height: 90vh;
  }
  .top_area .loop_wrap ul:first-child {
    animation: loop 30s linear infinite;
  }
  .top_area .loop_wrap ul:nth-child(2) {
    animation: loop2 30s linear infinite;
  }
  .top_area .loop_wrap ul li img {
    width: 110%;
    max-width: 110%;
  }
  .top_area .loop_wrap .rail_wrap ul.gear li img {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .top_area .loop_wrap {
    height: 100vh;
  }
  .top_area .loop_wrap ul {
    width: 200%;
    bottom: 30vw;
  }
  .top_area .loop_wrap ul li img {
    width: 100%;
    max-width: 100%;
  }
  .top_area .loop_wrap .rail_wrap {
    width: 200%;
    bottom: 30vw;
  }
  .top_area .loop_wrap .rail_wrap ul.gear {
    width: 100%;
    bottom: -80px;
  }
  .top_area .loop_wrap .rail_wrap ul.gear li img {
    width: 100%;
    max-width: 100%;
  }
  .top_area .loop_wrap .rail_wrap .straight01, .top_area .loop_wrap .rail_wrap .straight02 {
    width: 200%;
    height: auto;
    position: absolute;
    bottom: -5px;
    z-index: 10;
  }
}

/*  hokkaのお菓子で笑顔をつくろう。  */
.about_area {
  width: 1000px;
  margin: 70px auto 0;
}

.about_area .text01 {
  font-size: 3.6rem;
  font-weight: 400;
  text-align: center;
}

.about_area .text01 img {
  vertical-align: middle;
}

.about_area .text02 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 3;
  text-align: center;
  margin-top: 60px;
}

.about_img {
  width: 1000px;
  margin: 60px auto 0;
  position: relative;
}

.about_img .img01 {
  width: auto;
  height: auto;
  position: absolute;
  top: -100px;
  left: 0;
}

.about_img .img02 {
  width: auto;
  height: auto;
  position: absolute;
  top: -100px;
  right: 0;
}

.about_img .img03 {
  width: 404px;
  height: auto;
  position: relative;
  margin: 0 auto;
  display: block;
}

.tel {
  display: block;
  margin: 75px auto 0;
}

@media screen and (max-width: 1100px) {
  .about_area {
    width: 90%;
  }
  .about_img {
    width: 90%;
  }
  .about_img .img01 {
    width: 150px;
    height: auto;
    left: 0;
  }
  .about_img .img02 {
    width: 150px;
    height: auto;
    right: 0;
  }
}

@media screen and (max-width: 960px) {
  .about_area .text01 {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 2;
  }
  .about_area .text01 img {
    width: 105px;
    height: auto;
    margin-right: 5px;
  }
  .about_area .text02 {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 3;
    text-align: center;
    margin-top: 60px;
  }
  .about_img {
    width: 100%;
    height: 120px;
    margin-top: 0;
    overflow: hidden;
  }
  .about_img .img01 {
    width: 100px;
    height: auto;
    top: 0;
    left: -20px;
  }
  .about_img .img02 {
    width: 100px;
    height: auto;
    top: 0;
    right: -20px;
  }
  .about_img .img03 {
    width: 200px;
    height: auto;
    margin-top: 60px;
  }
}

@media screen and (max-width: 350px) {
  .about_img .img01 {
    width: 80px;
  }
  .about_img .img02 {
    width: 80px;
  }
}

/*  どうしてhokkaは笑顔になれるの？  */
.why_area {
  width: 100%;
  margin-top: 50px;
  padding-bottom: 90px;
  background-color: #FAF3F0;
}

.why_area .text01 {
  font-size: 6.4rem;
  font-weight: bold;
  color: #D90E0E;
  text-align: center;
  padding-top: 120px;
}

.why_area .text01 img {
  vertical-align: middle;
}

.why_area .text02 {
  font-size: 1.9rem;
  font-weight: bold;
  text-align: center;
  margin-top: 24px;
}

.why_area .block {
  width: 85%;
  margin: 90px auto 0;
  display: flex;
  align-items: center;
}

.why_area .block div {
  width: calc(100% - 683px);
  position: relative;
}

.why_area .block .blocktext01 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: #D90E0E;
  margin-top: 130px;
}

.why_area .block .blocktext02 {
  font-size: 1.4rem;
  text-align: justify;
  line-height: 2;
  margin-top: 50px;
}

.why_area .block .smile01 {
  position: absolute;
  left: -50px;
}

.why_area .block .smile02 {
  position: absolute;
  right: -70px;
}

.why_area .block .smile03 {
  position: absolute;
  left: -65px;
}

.why_area .block .smileimg {
  width: 603px;
  height: auto;
}

.why_area .block .smileimg_sp {
  display: none;
}

@media screen and (max-width: 1100px) {
  .why_area .block {
    width: 80%;
  }
  .why_area .block div {
    width: 100%;
  }
  .why_area .block .blocktext01 {
    font-size: 2.4rem;
    margin-top: 80px;
  }
  .why_area .block .blocktext02 {
    margin-top: 30px;
  }
  .why_area .block img {
    width: 300px;
    height: 300px;
  }
  .why_area .block .smile01 {
    width: 150px;
    height: auto;
  }
  .why_area .block .smile02 {
    width: 150px;
    height: auto;
    right: -30px;
  }
  .why_area .block .smile03 {
    width: 150px;
    height: auto;
  }
}

@media screen and (max-width: 960px) {
  .why_area .text01 {
    font-size: 3.2rem;
    padding-top: 50px;
  }
  .why_area .text01 img {
    width: 108px;
    height: auto;
  }
  .why_area .text02 {
    font-size: 1.4rem;
    margin-top: 16px;
  }
  .why_area .block {
    width: 90%;
    margin: 60px auto 0;
    display: block;
  }
  .why_area .block .blocktext01 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-top: 25px;
  }
  .why_area .block .smile01 {
    margin: 30px auto 0;
    position: relative;
    left: 0;
  }
  .why_area .block .smile02 {
    margin: 30px auto 0;
    position: relative;
    right: 0;
  }
  .why_area .block .smile03 {
    margin: 30px auto 0;
    position: relative;
    left: 0;
  }
  .why_area .block .smileimg, .why_area .block .smileimg_sp {
    width: 300px;
    display: block;
    margin: 0 auto;
  }
  .why_area .block .smileimg.sp_none960, .why_area .block .smileimg_sp.sp_none960 {
    display: none;
  }
  .why_area .block div.mgr80 {
    margin-right: 0;
  }
}

/*  みんなのhokka  */
.products_area {
  width: 100%;
  background-color: #CB2727;
  padding-bottom: 60px;
  overflow: hidden;
}

.products_area .text01 {
  font-size: 6.4rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  padding-top: 90px;
}

.products_area .text01 img {
  vertical-align: middle;
  margin-right: 15px;
}

.products_area .text02 {
  font-size: 1.9rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  margin-top: 24px;
}

.products_area .slide_wrap {
  width: 1000px;
  margin: 30px auto 0;
  position: relative;
}

.products_area .slide_wrap #slider {
  padding-top: 100px;
  height: 560px;
}

.products_area .slide_wrap .slick-slide {
  transition: 0.3s ease;
  transform: scale(0.5);
  transform-origin: 50% 50%;
  background-color: #FAF3F0;
  padding: 60px 30px 20px;
  border-radius: 20px;
  position: relative;
}

.products_area .slide_wrap .slick-slide img.slideimg {
  width: 100%;
  height: auto;
}

.products_area .slide_wrap .slick-slide img.smile, .products_area .slide_wrap .slick-slide p {
  display: none;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  margin-top: 15px;
}

.products_area .slide_wrap .slick-slide.slick-slide {
  opacity: 0;
}

.products_area .slide_wrap .slick-slide.slick-active {
  opacity: 1;
}

.products_area .slide_wrap .slick-slide.is-active-next {
  opacity: 1;
  transform: scale(1);
}

.products_area .slide_wrap .slick-slide.is-active-next p {
  display: block;
}

.products_area .slide_wrap .slick-slide.is-active-next img.smile {
  display: block;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.products_area .slide_wrap .slick-current {
  transition: 0.3s ease;
  transform: scale(1);
  transform-origin: 100% 100%;
}

.products_area .slide_wrap .slick-current img.smile {
  display: block;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.products_area .slide_wrap .slick-current img.smile, .products_area .slide_wrap .slick-current p {
  display: block;
}

.products_area .slide_wrap .todetail {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  right: 0;
  width: 210px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 2.5px 4px 0 1px #e59393;
}

.products_area .slide_wrap .todetail span {
  font-size: 1.9rem;
  font-weight: 500;
  color: #D90E0E;
  margin: auto;
}

.products_area .slide_wrap .todetail span:after {
  content: "";
  width: 9px;
  height: 14px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  background: url(../img/arrow_todetail.svg);
}

@media screen and (max-width: 1100px) {
  .products_area .slide_wrap {
    width: 100%;
  }
  .products_area .slide_wrap .todetail {
    right: 50px;
  }
}

@media screen and (max-width: 960px) {
  .products_area .text01 {
    font-size: 3.2rem;
    line-height: 1.5;
    padding-top: 50px;
  }
  .products_area .text01 img {
    width: 110px;
    height: auto;
    margin-right: 0;
  }
  .products_area .text02 {
    font-size: 1.4rem;
    margin-top: 18px;
  }
}

@media screen and (max-width: 640px) {
  .products_area .slide_wrap {
    width: 100%;
  }
  .products_area .slide_wrap #slider {
    padding-top: 100px;
    overflow-x: hidden;
    height: 450px;
  }
  .products_area .slide_wrap .slick-slide {
    transition: 0.3s ease;
    transform: scale(0.8);
    transform-origin: 50% 50%;
    background-color: #FAF3F0;
    padding: 60px 30px 20px;
    border-radius: 20px;
    position: relative;
  }
  .products_area .slide_wrap .slick-slide img.slideimg {
    width: 100%;
    max-width: none;
    height: auto;
  }
  .products_area .slide_wrap .slick-slide img.smile, .products_area .slide_wrap .slick-slide p {
    display: none;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
    margin-top: 15px;
  }
  .products_area .slide_wrap .slick-current {
    transition: 0.3s ease;
    transform: scale(1);
    transform-origin: 100% 100%;
  }
  .products_area .slide_wrap .slick-current img.smile {
    display: block;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .products_area .slide_wrap .slick-current img.smile, .products_area .slide_wrap .slick-current p {
    display: block;
  }
  .products_area .slide_wrap .todetail {
    position: relative;
    display: flex;
    align-items: center;
    top: 0;
    right: 0;
    width: 90%;
    height: 50px;
    margin: 0 auto;
  }
  .products_area .slide_wrap .todetail span {
    font-size: 1.9rem;
    font-weight: 500;
    color: #D90E0E;
    margin: auto;
  }
  .products_area .slide_wrap .todetail span:after {
    content: "";
    width: 9px;
    height: 14px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto 0;
    background: url(../img/arrow_todetail.svg);
  }
}

@media screen and (max-width: 350px) {
  .products_area .slide_wrap #slider {
    height: 400px;
  }
}

/*  Biscuit & Package  */
.bispack_area {
  width: 100%;
  padding-bottom: 60px;
}

.bispack_area .text01 {
  font-size: 6.4rem;
  font-weight: bold;
  color: #D90E0E;
  text-align: center;
  padding-top: 90px;
}

.bispack_area .text02 {
  font-size: 1.9rem;
  font-weight: bold;
  text-align: center;
  margin-top: 24px;
}

.bispack_area .bpimgwrap {
  width: 1092px;
  margin: 0 auto;
  position: relative;
}

.bispack_area .bpimg01 {
  position: absolute;
  top: -50px;
  left: 0;
}

.bispack_area .bpimg02 {
  position: absolute;
  top: -50px;
  right: 0;
}

.bispack_area .bp_wrap {
  display: flex;
  align-items: center;
  margin-top: 60px;
}

.bispack_area .bp_wrap img {
  margin: auto;
}

.bispack_area .bp_wrap img:nth-child(-n+2) {
  margin-right: 0;
}

.bispack_area .bp_wrap img:nth-child(n+4) {
  margin-left: 0;
}

.bispack_area .bp_wrap img:nth-child(3) {
  margin: 0 25px;
}

@media screen and (max-width: 1100px) {
  .bispack_area .bpimgwrap {
    width: 100%;
  }
  .bispack_area .bpimg01 {
    width: 150px;
    height: auto;
    top: 20px;
    left: 30px;
  }
  .bispack_area .bpimg02 {
    width: 150px;
    height: auto;
    top: 20px;
    right: 30px;
  }
  .bispack_area .bp_wrap img:nth-child(-n+2), .bispack_area .bp_wrap img:nth-child(n+4) {
    width: 400px;
    height: auto;
  }
}

@media screen and (max-width: 960px) {
  .bispack_area {
    position: relative;
  }
  .bispack_area .text01 {
    font-size: 3.3rem;
    padding-top: 70px;
  }
  .bispack_area .text02 {
    font-size: 1.4rem;
    margin-top: 18px;
  }
  .bispack_area .bpimgwrap {
    height: 100px;
    overflow: hidden;
    position: absolute;
    top: -25px;
  }
  .bispack_area .bpimg01 {
    width: 90px;
    height: auto;
    top: 0;
    left: -20px;
  }
  .bispack_area .bpimg02 {
    width: 90px;
    height: auto;
    top: 0;
    right: -10px;
  }
  .bispack_area .bp_wrap {
    width: 90%;
    margin: 45px auto 0;
    flex-wrap: wrap;
  }
  .bispack_area .bp_wrap img:nth-child(-n+2), .bispack_area .bp_wrap img:nth-child(n+4) {
    width: 100%;
    height: auto;
  }
  .bispack_area .bp_wrap img:nth-child(3) {
    margin: 30px auto;
  }
}

/*  Price How to Order  */
.priceorder_area {
  width: 100%;
  padding: 76px 0 60px;
  background-color: #FAF3F0;
}

.priceorder_area .price_area, .priceorder_area .order_area {
  width: 1092px;
  margin: 0 auto;
  border-radius: 25px;
  background-color: #ffffff;
  position: relative;
}

.priceorder_area .price_area .pimg, .priceorder_area .order_area .pimg {
  position: absolute;
  top: -20px;
  left: -20px;
}

.priceorder_area .price_area .text01, .priceorder_area .order_area .text01 {
  font-size: 6.4rem;
  font-weight: bold;
  color: #D90E0E;
  text-align: center;
  padding-top: 60px;
}

.priceorder_area .price_area .text02, .priceorder_area .order_area .text02 {
  font-size: 1.9rem;
  font-weight: bold;
  text-align: center;
  margin-top: 24px;
}

.priceorder_area .price_area .tablearea, .priceorder_area .order_area .tablearea {
  width: 886px;
  height: auto;
  margin: 45px auto 0;
}

.priceorder_area .price_area .tablearea .text03, .priceorder_area .order_area .tablearea .text03 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #D90E0E;
}

.priceorder_area .price_area .check_area, .priceorder_area .order_area .check_area {
  width: 90%;
  margin: 60px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.priceorder_area .price_area .check_area.sp_block960, .priceorder_area .order_area .check_area.sp_block960 {
  display: none;
}

.priceorder_area .price_area .check_area p, .priceorder_area .order_area .check_area p {
  display: inline-block;
  margin-bottom: 30px;
}

.priceorder_area .price_area .check_area p:last-child, .priceorder_area .order_area .check_area p:last-child {
  margin-bottom: 60px;
}

.priceorder_area .price_area .check_area p:before, .priceorder_area .order_area .check_area p:before {
  content: "";
  width: 50px;
  height: 50px;
  display: inline-block;
  background: url(../img/check.svg);
  vertical-align: middle;
  margin: 0 25px 5px 0;
}

.priceorder_area .price_area .check_area p span, .priceorder_area .order_area .check_area p span {
  font-size: 1.8rem;
  font-weight: 500;
  display: inline-block;
}

.priceorder_area .price_area .check_area p span:after, .priceorder_area .order_area .check_area p span:after {
  content: "";
  display: block;
  background-color: #CB2727;
  width: 0;
  height: 3px;
  margin-top: 8px;
  transition: 1s;
}

.priceorder_area .price_area .check_area p span.active:after, .priceorder_area .order_area .check_area p span.active:after {
  width: 100%;
}

.priceorder_area .order_area {
  margin-top: 60px;
  padding-bottom: 75px;
  position: relative;
}

.priceorder_area .order_area .oimg {
  position: absolute;
  top: -20px;
  right: -20px;
}

.priceorder_area .order_area .text02 {
  margin-bottom: 50px;
}

.priceorder_area .order_area .howtoblock {
  display: flex;
  width: 80%;
  height: 75px;
  margin: 0 auto 30px;
}

.priceorder_area .order_area .howtoblock .left {
  width: 415px;
  display: flex;
  align-items: center;
  background-color: #D90E0E;
  border: solid 1px #D90E0E;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.priceorder_area .order_area .howtoblock .left p {
  font-weight: 500;
  color: #ffffff;
  margin: auto;
}

.priceorder_area .order_area .howtoblock .left p:first-child {
  width: 140px;
  font-size: 1.8rem;
  font-family: "Montserrat" , sans-serif;
  margin-left: 25px;
  margin-right: 0;
}

.priceorder_area .order_area .howtoblock .left p:first-child span {
  font-size: 3.6rem;
  color: #ffffff;
  vertical-align: middle;
  margin-left: 5px;
}

.priceorder_area .order_area .howtoblock .left p:last-child {
  font-size: 2rem;
  margin-left: 0;
}

.priceorder_area .order_area .howtoblock .right {
  width: 470px;
  display: flex;
  align-items: center;
  border: solid 1px #D90E0E;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.priceorder_area .order_area .howtoblock .right p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #D90E0E;
  margin-left: 30px;
}

@media screen and (max-width: 1100px) {
  .priceorder_area .price_area, .priceorder_area .order_area {
    width: 90%;
    margin: 0 auto;
  }
  .priceorder_area .price_area .pimg, .priceorder_area .order_area .pimg {
    width: 200px;
    height: auto;
    top: 30px;
    left: 50px;
  }
  .priceorder_area .price_area .tablearea, .priceorder_area .order_area .tablearea {
    width: 90%;
  }
  .priceorder_area .order_area {
    margin-top: 60px;
    padding-bottom: 75px;
  }
  .priceorder_area .order_area .oimg {
    width: 200px;
    height: auto;
    top: 30px;
    right: -30px;
  }
}

@media screen and (max-width: 960px) {
  .priceorder_area {
    padding: 50px 0 60px;
  }
  .priceorder_area .price_area, .priceorder_area .order_area {
    background-color: transparent;
  }
  .priceorder_area .price_area .pimg, .priceorder_area .order_area .pimg {
    width: 150px;
    height: auto;
    position: absolute;
    top: -70px;
    left: -30px;
  }
  .priceorder_area .price_area .text01, .priceorder_area .order_area .text01 {
    font-size: 3.3rem;
    padding-top: 0;
  }
  .priceorder_area .price_area .text02, .priceorder_area .order_area .text02 {
    font-size: 1.4rem;
    margin-top: 18px;
  }
  .priceorder_area .price_area .check_area, .priceorder_area .order_area .check_area {
    width: 100%;
    margin: 60px auto 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .priceorder_area .price_area .check_area.sp_none960, .priceorder_area .order_area .check_area.sp_none960 {
    display: none;
  }
  .priceorder_area .price_area .check_area.sp_block960, .priceorder_area .order_area .check_area.sp_block960 {
    display: flex;
  }
  .priceorder_area .price_area .check_area p, .priceorder_area .order_area .check_area p {
    line-height: 2;
  }
  .priceorder_area .price_area .check_area p:before, .priceorder_area .order_area .check_area p:before {
    width: 38px;
    height: 38px;
    margin: 0 15px 0 0;
  }
  .priceorder_area .price_area .check_area p span, .priceorder_area .order_area .check_area p span {
    font-size: 1.6rem;
  }
  .priceorder_area .price_area .check_area p span:last-child, .priceorder_area .order_area .check_area p span:last-child {
    margin-left: 53px;
  }
  .priceorder_area .price_area .check_area p span:last-child.mgl0, .priceorder_area .order_area .check_area p span:last-child.mgl0 {
    margin-left: 0;
  }
  .priceorder_area .price_area .check_area p span:after, .priceorder_area .order_area .check_area p span:after {
    content: "";
    display: block;
    background-color: #CB2727;
    width: 0;
    height: 3px;
    margin-top: 0;
  }
  .priceorder_area .price_area .check_area p span.active:after, .priceorder_area .order_area .check_area p span.active:after {
    width: 100%;
  }
  .priceorder_area .order_area {
    width: 100%;
    margin-top: 60px;
    padding-bottom: 0;
    position: relative;
  }
  .priceorder_area .order_area .oimgwrap {
    position: absolute;
    width: 100%;
    height: 100px;
    overflow: hidden;
    top: -78px;
  }
  .priceorder_area .order_area .oimg {
    width: 120px;
    height: auto;
    position: absolute;
    top: 0;
    right: -15px;
  }
  .priceorder_area .order_area .text02 {
    margin-bottom: 50px;
  }
  .priceorder_area .order_area .howtoblock {
    flex-wrap: wrap;
    width: 90%;
    height: auto;
  }
  .priceorder_area .order_area .howtoblock .left {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0;
    padding: 10px 0;
  }
  .priceorder_area .order_area .howtoblock .left p:first-child {
    width: 110px;
    margin-left: 25px;
    margin-right: 0;
  }
  .priceorder_area .order_area .howtoblock .left p:first-child span {
    font-size: 3rem;
  }
  .priceorder_area .order_area .howtoblock .left p:last-child {
    font-size: 2rem;
    margin-left: 0;
  }
  .priceorder_area .order_area .howtoblock .right {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: #ffffff;
  }
  .priceorder_area .order_area .howtoblock .right p {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-left: 0;
    padding: 25px;
  }
}

@media screen and (max-width: 350px) {
  .priceorder_area .price_area .check_area p:before, .priceorder_area .order_area .check_area p:before {
    width: 25px;
    height: 25px;
    margin: 0 10px 0 0;
  }
  .priceorder_area .price_area .check_area p span, .priceorder_area .order_area .check_area p span {
    font-size: 1.4rem;
  }
  .priceorder_area .price_area .check_area p span:last-child, .priceorder_area .order_area .check_area p span:last-child {
    margin-left: 35px;
  }
  .priceorder_area .order_area .howtoblock .left p:first-child {
    font-size: 1.6rem;
    width: 95px;
    margin-left: 15px;
    margin-right: 0;
  }
  .priceorder_area .order_area .howtoblock .left p:first-child span {
    font-size: 2.3rem;
  }
  .priceorder_area .order_area .howtoblock .left p:last-child {
    font-size: 1.6rem;
  }
  .priceorder_area .order_area .howtoblock .right {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: #ffffff;
  }
  .priceorder_area .order_area .howtoblock .right p {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-left: 0;
    padding: 15px;
  }
}

/*  FAQ よくあるご質問  */
.faq_area {
  width: 100%;
  padding-bottom: 60px;
}

.faq_area .faqimgwrap {
  width: 1092px;
  margin: 0 auto;
  position: relative;
}

.faq_area .faqimgwrap .faqimg01 {
  position: absolute;
  top: 50px;
  left: 0;
}

.faq_area .faqimgwrap .faqimg02 {
  position: absolute;
  top: 80px;
  right: 0;
}

.faq_area .text01 {
  font-size: 6.4rem;
  font-weight: bold;
  color: #D90E0E;
  text-align: center;
  padding-top: 90px;
}

.faq_area .text02 {
  font-size: 1.9rem;
  font-weight: bold;
  text-align: center;
  margin-top: 24px;
}

.faq_area .faqflex {
  width: 1092px;
  margin: 120px auto 0;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #E3E3E3;
  padding-bottom: 55px;
}

.faq_area .faqflex p {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  margin: auto;
  position: relative;
  cursor: pointer;
}

.faq_area .faqflex p span {
  font-size: 1.6rem;
  font-weight: 500;
  color: #D90E0E;
  margin: auto;
}

.faq_area .faqflex p.active {
  text-align: center;
  background-color: #D90E0E;
  border-radius: 25px;
  cursor: default;
}

.faq_area .faqflex p.active span {
  color: #ffffff;
}

.faq_area .faqflex p.active:after {
  content: "";
  width: 4px;
  height: 26px;
  display: block;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/dotted.svg);
}

.faq_area .faqflex_sp {
  display: none;
}

.faq_area .faq_products, .faq_area .faq_nohin, .faq_area .faq_other {
  width: 1092px;
  margin: 0 auto;
}

.faq_area .faq_products .faq_block, .faq_area .faq_nohin .faq_block, .faq_area .faq_other .faq_block {
  margin-top: 50px;
  padding-bottom: 50px;
  border-bottom: solid 1px #E3E3E3;
}

.faq_area .faq_products .faq_block p, .faq_area .faq_nohin .faq_block p, .faq_area .faq_other .faq_block p {
  display: flex;
  align-items: flex-start;
}

.faq_area .faq_products .faq_block p img, .faq_area .faq_nohin .faq_block p img, .faq_area .faq_other .faq_block p img {
  margin: auto;
  margin-top: 0;
  margin-left: 0;
  margin-right: 20px;
}

.faq_area .faq_products .faq_block p span, .faq_area .faq_nohin .faq_block p span, .faq_area .faq_other .faq_block p span {
  width: 1030px;
  margin: auto;
  margin-left: 0;
}

.faq_area .faq_products .faq_block p:first-child, .faq_area .faq_nohin .faq_block p:first-child, .faq_area .faq_other .faq_block p:first-child {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 25px;
}

.faq_area .faq_products .faq_block p:last-child, .faq_area .faq_nohin .faq_block p:last-child, .faq_area .faq_other .faq_block p:last-child {
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 1100px) {
  .faq_area {
    width: 100%;
    padding-bottom: 60px;
  }
  .faq_area .faqimgwrap {
    width: 90%;
    margin: 0 auto;
  }
  .faq_area .faqimgwrap .faqimg01 {
    width: 200px;
    height: auto;
    top: 50px;
    left: 0;
  }
  .faq_area .faqimgwrap .faqimg02 {
    width: 200px;
    height: auto;
    top: 80px;
    right: 0;
  }
  .faq_area .faqflex {
    width: 90%;
    margin: 120px auto 0;
  }
  .faq_area .faq_products, .faq_area .faq_nohin, .faq_area .faq_other {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 960px) {
  .faq_area {
    width: 100%;
    padding-bottom: 60px;
  }
  .faq_area .faqimgwrap {
    width: 90%;
    margin: 0 auto;
  }
  .faq_area .faqimgwrap .faqimg01 {
    width: 120px;
    height: auto;
    top: 30px;
    left: -10px;
  }
  .faq_area .faqimgwrap .faqimg02 {
    width: 120px;
    height: auto;
    top: 50px;
    right: -10px;
  }
  .faq_area .text01 {
    font-size: 3.3rem;
    padding-top: 50px;
  }
  .faq_area .text02 {
    font-size: 1.4rem;
    margin-top: 18px;
  }
  .faq_area .faqflex {
    display: none;
  }
  .faq_area .faqflex_sp {
    width: 90%;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #E3E3E3;
    padding-bottom: 55px;
    position: relative;
  }
  .faq_area .faqflex_sp:after {
    content: "";
    width: 4px;
    height: 26px;
    display: block;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: url(../img/dotted.svg);
  }
  .faq_area .faqflex_sp select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent url(../img/arrow_faq.svg) no-repeat center right 16px/19px 11px;
    font-size: 1.6rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    width: 100%;
    height: 64px;
    background-color: #D90E0E;
    border-radius: 10px;
    padding-left: 20px;
  }
  .faq_area .faqflex_sp select::-ms-expand {
    display: none;
  }
  .faq_area .faqflex_sp select:focus {
    border: 1px solid rgba(0, 0, 0, 0.32);
    box-shadow: none;
    outline: none;
  }
}

@media screen and (max-width: 350px) {
  .faq_area .faqimgwrap .faqimg01 {
    width: 90px;
  }
  .faq_area .faqimgwrap .faqimg02 {
    width: 90px;
  }
}

/*  スクロールマジック用  */
.about_area .text01, .about_area .text02, .about_img .img01, .about_img .img02, .about_img .img03, .why_area .text01, .why_area .text02, .why_area .smile01, .why_area .smile02, .why_area .smile03, .bispack_area .bpimg01, .bispack_area .bpimg02, .bispack_area .bp_wrap, .price_area .pimg, .price_area .tablearea, .order_area .oimg, .order_area .howtoblock, .faq_area .faqimg01, .faq_area .faqimg02, .foot_area .footimg01, .foot_area .footimg02 {
  opacity: 0;
}

.about_img .img01, .about_img .img02, .about_img .img03, .bispack_area .bpimg01, .bispack_area .bpimg02, .price_area .pimg, .order_area .oimg, .faq_area .faqimg01, .faq_area .faqimg02, .foot_area .footimg01, .foot_area .footimg02 {
  transform: scale(0.5);
}

.why_area .smile01, .why_area .smile02, .why_area .smile03 {
  transform: scale(0.3);
}

/*# sourceMappingURL=top.map */