@charset "utf-8";
/* CSS Document */

.imgSlide{
  height: 100%;
}

/*==============================
SPメニュー
==============================*/


/*==============================
メイン
==============================*/
#awardWrap{
  position: relative;
  top: -30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border:1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 100px;
}

#awardWrap h2{
  font-size: 26px;
  letter-spacing: 2px;
}

#awardWrap ul li{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 10px;
}

#awardWrap ul li i{
  color: #ffe555;
  margin-right: 10px;
}

#awardWrap ul li h3{
  font-size: 16px;
  letter-spacing: 2px;
}

#titleWrap{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 150px auto;
}

#titleWrap > .imgSlidewrap{
  width: 50%;
  height: 300px;
}

.titleImg{
  background-image: url(../img/titleImg.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
}

#titleWrap > img{
  width: 50%;
  display: flex;
  align-self: flex-start;
}

#titleWrap > div{
  width: 48%;
}

#titleWrap > div p{
  font-family: "Sawarabi Gothic";
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 2px;
}

#titleWrap > div > div{
  display: flex;
  flex-wrap: nowrap;
  justify-content:flex-start;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

#titleWrap > div > div img{
  width: 112px;
  margin-right: 20px;
}

#titleWrap > div > div h2{
  font-size: 26px;
  letter-spacing: 4px;
}

.methodCont{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  padding: 50px 100px;
  margin: 0 auto;
  border: 1px solid #ccc;
  background-color: #fff;
}

.methodCont > p{
  text-align: center;
  margin-bottom: 25px;
}

.methodCont > div{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.methodBox{
  width: 250px;
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
  border: 2px solid #f9f9f9;
}

.methodBox:hover{
  opacity: 1;
  background-color: #fff;
  border: 2px solid #555;
}

.methodBox h4,
.methodBox p{
  font-family: "Sawarabi Gothic";  
}

.methodBox h4{
  font-size: 20px;
  letter-spacing: 4px;
}

.methodBox i{
  font-size: 50px;
  margin: 10px 0;
}

.methodBox:nth-of-type(1) i{
  color: #e58686;
}

.methodBox:nth-of-type(2) i{
  color: #a7d9aa;
}

.methodBox:nth-of-type(3) i{
  color: #90a8d8;
}

.methodBox p{
  font-size: 16px;
  line-height: 20px;
}

#flowWrap{
  margin-top: -300px;
  margin-bottom: 150px;
  padding: 400px 15px 100px 15px;
  background-color: #f9f9f9;
  position: relative;
  text-align: center;
  z-index: 1;
}

#flowWrap h2{
  font-family: "Sawarabi Gothic";
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

#flowWrap > p{
  font-family: "Sawarabi Gothic";
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

#flowWrap p{
  font-family: "Sawarabi Gothic";
  font-size: 16px;
  letter-spacing: 2px;
}

#flowWrap h3{
  display: inline-block;
  margin: 0 auto;
  font-family: "Sawarabi Gothic";
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 10px;
}

#flowWrap h3::before{
  content: "";
  position: absolute;
  width: 2px;
  height: 35px;
  bottom: 2px;
  left: -15px;
  background-color: #555;
  transform: rotate(-20deg)
}

#flowWrap h3::after{
  content: "";
  position: absolute;
  width: 2px;
  height: 35px;
  bottom: 2px;
  right: -15px;
  background-color: #555;
  transform: rotate(20deg)
}


.flowCheck{
  display: none;
}

.flowBox{
  display: block;
  padding: 20px;
  width: 250px;
  margin: 0 auto;
  border: 2px solid #ccc;
  background-color: #fff;
  transition: .3s;
  margin-bottom: 30px;
}

.flowBox:hover{
  transition: .3s;
  cursor: pointer;
  box-shadow: 0 0 3px 3px rgba(0,0,0,.1);
  border: 2px solid #555;
}

.flowRoop{
  animation-name: flowRoop;
  animation-duration: 1.5s;
  animation-timing-function:ease-in-out;
  animation-iteration-count:infinite;
}

@keyframes flowRoop{
  from{
    box-shadow: 0 0 0px 0px rgba(0,0,0,.1);    
  }
  to{
    box-shadow: 0 0 7px 0px rgba(0,0,0,.4);    
    border: 2px solid #555;  
  }
}

#flowcheck01:checked ~ #flowbox01,
#flowcheck02:checked ~ #flowbox02,
#flowcheck03:checked ~ #flowbox03,
#flowcheck04:checked ~ #flowbox04,
#flowcheck05:checked ~ #flowbox05,
#flowcheck06:checked ~ #flowbox06,
#flowcheck07:checked ~ #flowbox07,
#flowcheck08:checked ~ #flowbox08,
#flowcheck09:checked ~ #flowbox09,
#flowcheck10:checked ~ #flowbox10,
#flowcheck11:checked ~ #flowbox11{
  border: 2px solid #555;  
  box-shadow: 0 0 3px 3px rgba(0,0,0,.1);
}

.flowBox span{
  font-family: "Sawarabi Gothic";
  font-size: 16px;
  letter-spacing: 2px;
}

.flowCont{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

#flowbox01{
  flex-basis: 100%;
  position: relative;
  z-index: 9999;
}

#flowbox01::after,
#flowbox01::before{
  display: none;
}

#flowbox02,
#flowbox03{
  display: none;
  z-index: 9998;
}

#flowbox04,
#flowbox05{
  display: none;
  z-index: 9997;
}

#flowbox06,
#flowbox07{
  display: none;
  z-index: 9996;
}

#flowbox08,
#flowbox09{
  display: none;
  z-index: 9995;
}

#flowbox10,
#flowbox11{
  display: none;
  z-index: 9994;
}

.flowCont label{
  position: relative;
  margin: none;
  margin-bottom: 30px;
}

.flowCont label::after{
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  width: 2px;
  height: 60px;
  background-color: #ccc;
  transition: .3s;
}

#flowcheck02:checked ~ #flowbox02::before,
#flowcheck02:checked ~ #flowbox02::after,
#flowcheck03:checked ~ #flowbox03::before,
#flowcheck03:checked ~ #flowbox03::after,
#flowcheck04:checked ~ #flowbox04::before,
#flowcheck04:checked ~ #flowbox04::after,
#flowcheck05:checked ~ #flowbox05::before,
#flowcheck05:checked ~ #flowbox05::after,
#flowcheck06:checked ~ #flowbox06::before,
#flowcheck06:checked ~ #flowbox06::after,
#flowcheck07:checked ~ #flowbox07::before,
#flowcheck07:checked ~ #flowbox07::after,
#flowcheck08:checked ~ #flowbox08::before,
#flowcheck08:checked ~ #flowbox08::after,
#flowcheck09:checked ~ #flowbox09::before,
#flowcheck09:checked ~ #flowbox09::after,
#flowcheck10:checked ~ #flowbox10::before,
#flowcheck10:checked ~ #flowbox10::after,
#flowcheck11:checked ~ #flowbox11::before,
#flowcheck11:checked ~ #flowbox11::after{
  background-color: #555;
}


label:hover::after{
  transition: .3s;
  background-color: #555;
}

.flowCont label:first-of-type::before{
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  width: 60px;
  height: 2px;
  background-color: #ccc;  
  transition: .3s;
}

.flowCont label:hover::before{
  transition: .3s;
  background-color: #555;  
}

.flowCont label::before{
  content: "";
  position: absolute;
  top: -60px;
  right: 50%;
  width: 60px;
  height: 2px;
  background-color: #ccc;  
  transition: .3s;
}

.flowCont label:hover::before{
  transition: .3s;
  background-color: #555;  
}

#flowbox05::before,
#flowbox07::before,
#flowbox09::before{
  top: -20px;
  width: 298px;
}

#flowbox05::after,
#flowbox07::after,
#flowbox09::after{
  height: 20px;
  top: -20px;
}

#flowbox10::before{
  top: -20px;
  width: 300px;
  left: 50%;
}

#flowbox10::after{
  height: 20px;
  top: -20px;
}

#flowcheck01:checked ~ #flowbox02,
#flowcheck01:checked ~ #flowbox03,
#flowcheck02:checked ~ #flowbox04,
#flowcheck02:checked ~ #flowbox05,
#flowcheck04:checked ~ #flowbox06,
#flowcheck04:checked ~ #flowbox07,
#flowcheck06:checked ~ #flowbox08,
#flowcheck06:checked ~ #flowbox09,
#flowcheck07:checked ~ #flowbox10,
#flowcheck07:checked ~ #flowbox11,
#flowcheck09:checked ~ #flowbox10,
#flowcheck09:checked ~ #flowbox11{
  display: block;
}

#flowcheck03:checked ~ #goal04,
#flowcheck05:checked ~ #goal02,
#flowcheck06:checked ~ #goal03,
#flowcheck07:checked ~ #goal01{
  display: block;
}

#flowcheck03:checked ~ #flowbox04,
#flowcheck03:checked ~ #flowbox05,
#flowcheck03:checked ~ #flowbox06,
#flowcheck03:checked ~ #flowbox07,
#flowcheck03:checked ~ #flowbox08,
#flowcheck03:checked ~ #flowbox09,
#flowcheck03:checked ~ #flowbox10,
#flowcheck03:checked ~ #flowbox11,
#flowcheck03:checked ~ #goal01,
#flowcheck03:checked ~ #goal02,
#flowcheck03:checked ~ #goal03{
  display: none;
}

#flowcheck05:checked ~ #flowbox06,
#flowcheck05:checked ~ #flowbox07,
#flowcheck05:checked ~ #flowbox08,
#flowcheck05:checked ~ #flowbox09,
#flowcheck05:checked ~ #flowbox10,
#flowcheck05:checked ~ #flowbox11,
#flowcheck05:checked ~ #goal01,
#flowcheck05:checked ~ #goal03{
  display: none;
}

#flowcheck08:checked ~ #goal01,
#flowcheck08:checked ~ #goal02{
  display: none;
}

#flowcheck03:checked ~ #goal01,
#flowcheck03:checked ~ #goal02{
  display: none;
}

#flowcheck05:checked ~ #goal03,
#flowcheck05:checked ~ #goal01{
  display: none;
}

.goalBox{
  display: none;
  width: 100%;
  border: 2px solid #ccc;
  background-color: #fff;
  padding: 30px 15px;
}
.goalBox i{
  font-size: 50px;
  margin-bottom: 10px;
}

#goal01 i{
  color: #e58686;
}

#goal02 i,
#goal05 i{
  color: #a7d9aa;
}

#goal03 i{
  color: #90a8d8;
}

#goal04 i{
  color: #555;
}

.goalBox h4{
  font-family: "Sawarabi Gothic";
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.goalBox:hover{
  box-shadow: 0 0 3px 3px rgba(0,0,0,.1);
  border: 2px solid #555;
  opacity: 1;
}

.conceptBox{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 100px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.conceptBox .imgSlidewrap{
  width: 48%;
  height: 420px;
}

.conceptImg01{
  background-image: url(../img/conceptImg01.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 0;
}

.conceptImg02{
  background-image: url(../img/conceptImg02.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 0;
}

.conceptImg03{
  background-image: url(../img/conceptImg03.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 0;
}

.conceptBox > div{
  width: 48%;
}

.conceptBox div h4{
  font-family: "Sawarabi Gothic";
  font-size: 22px;
  padding: 40px;
  
}
.conceptBox div p{
  padding: 40px;
  font-family: "Sawarabi Gothic";
  font-size: 16px;
  background-color: #f9f7f4;
}

#experience{
  margin-bottom: 150px;
}

.scratchBox{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.scratchBox h4{
  font-size: 22px;
  font-family: "Sawarabi Gothic";
}

.scratchBox > h5{
  font-size: 20px;
  font-family: "Sawarabi Gothic";
  border-radius: 20px;
  border:2px solid #333;
  padding: 50px 25px;
}

.scratchBox > div{
  width: 30%;
  margin: 0 40px;
}

.scratchBox > div > div{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  text-align: left;
  border-top: 2px solid #333;
}

.scratchBox > div > div:last-of-type{
  border-bottom: 2px solid #333;
}

.scratchBox > div > div i{
  width: 10%;
  color: #555;
  font-size: 30px;
  margin-right: 10px;
}

.scratchBox > div > div h5{
  font-size: 16px;
  letter-spacing: 1px;
  font-family: "Sawarabi Gothic";
  width: 50%;  
}

.scratchBox > div > div p{
  font-family: "Sawarabi Gothic";
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
}

#voiceWrap{
  width: 100%;
  padding: 150px 0;
  margin-bottom: 150px;
  background-image: url(../img/voiceBack.jpg);
  background-size: cover;
  background-position: top;
}

#voiceWrap .titleBox{
  margin-bottom: 50px;
}

#voiceWrap .titleBox h3,
#voiceWrap .titleBox h2{
  color: #fff;
}

#voiceWrap ul{
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

#voiceWrap ul li{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 20px;
}

#voiceWrap ul li i{
  color: #fff;
  font-size: 40px;
  margin-right: 10px;
  width: 8%;
}

#voiceWrap ul li h4{
  font-family: "Sawarabi Gothic";
  background-color: #fff;
  padding: 15px 15px 10px;
  border-radius: 10px;
  letter-spacing: 2px;
  width: 90%;
}

#voiceWrap ul li p{
  width: 100%;
  font-family: "Sawarabi Gothic";
  color: #fff;
  padding: 10px 0;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
  text-justify: inter-ideograph;
}

#productWrap{
  margin-bottom: 150px;
}

#productWrap ul{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#productWrap ul li{
  flex-basis: 22%;
  margin-right: 3%;
  margin-bottom: 30px;
}

#productWrap ul li a img{
  width: 100%;
}

#productWrap ul li a div:first-of-type{
  padding: 20px;
  border:1px solid #ccc;
  border-bottom: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#productWrap ul li a div:last-of-type{
  border:1px solid #ccc;
  padding: 20px;
  background-color: #fdfdfd;
  transition: .3s;
}

#productWrap ul li a:hover div:last-of-type{
  background-color: #eee;
  transition: .3s;
}

#productWrap ul li a div:last-of-type h4{
  font-family: "Sawarabi Gothic";
  letter-spacing: 4px;
  margin-bottom: 5px;
  font-size: 20px;
  letter-spacing: 2px;
}

#productWrap ul li a div:last-of-type p{
  font-family: "Sawarabi Gothic";
  font-size: 12px;
  line-height: 16px;
}

#shopWrap{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 150px;
}

#shopWrap > div{
  margin-right: 20px;
}

#shopWrap div > h2,
#shopWrap div > p{
  margin: 10px;
}

#shopWrap div > h2{
  font-size: 22px;
}

#shopWrap div > p{
  font-size: 16px;
}

#shopWrap div a{
  display: inline-block;
  padding: 5px 30px 8px;
  border: 1px solid #ccc;
}

#shopWrap img{
  display: flex;
  align-self: flex-start;
}

#shopWrap .imgSlidewrap{
  width: 500px;
  height: 280px;
  margin-right: 15px;
  margin-bottom: 15px;
}

.shopImg01{
  background-image: url(../img/shopImg01.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 0;
}

.shopImg02{
  background-image: url(../img/shopImg02.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 0;
}

#shopWrap img:first-of-type{
  margin-right: 20px;
}

#shopWrap > div:last-of-type{
  display: flex;
  justify-content: center;
  align-items: center;  
}

/*==============================
共通部分
==============================*/
.titleBox{
  display: block;
  text-align: center;
  margin: 0 auto 100px;
}

.titleBox h3{
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0;
}

.titleBox hr{
  width: 100%;
  max-width: 250px;
  margin: 20px auto;
}

.titleBox h2{
  font-size: 26px;
  letter-spacing: 4px;
}

/*==============================
レスポンシブ
==============================*/

@media screen and (max-width: 1600px) {
  .conceptBox{
    max-width: 1200px;
  }
  
  .conceptBox div h4{
    padding: 30px;
  }
  
  .conceptBox div p{
    padding: 30px;
    line-height: 24px;
  }
  
  #shopWrap{
    max-width: 1000px;
    margin: 0 auto 150px;
  }
  
  #shopWrap > div:first-of-type{
    flex-basis: 400px;
  }
  
  #shopWrap > div:last-of-type{
    flex-wrap: wrap;
    flex-basis: 600px;
  }
  
  #shopWrap img:first-of-type{
    margin: 0;
    margin-bottom: 20px;
  }
  
  #shopWrap div:last-of-type img{
    width: 100%;
  }
}

@media screen and (max-width: 1400px) {
  
  #awardWrap{
    max-width: 1000px;
  }
  
  #titleWrap{
    max-width: 800px;
  }
  
  #titleWrap > div p{
  }
  
  #titleWrap > div > div h2{
    letter-spacing: 2px;
  }
  
  .conceptBox{
    max-width: 1000px;
  }
  
  .conceptBox div p{
    padding: 30px;
    font-size: 13px;
    line-height: 20px;
  }
  
  .scratchBox{
    max-width: 1000px;
  }
  
  .scratchBox > h4{
    letter-spacing: 2px;
  }
  
  .scratchBox > div{
    width: 40%;
  }
  
  .scratchBox > h5{
    letter-spacing: 2px;
  }
}

@media screen and (max-width: 1200px) {
  #awardWrap{
    max-width: 800px;
    padding: 35px 50px;
  }
  
  #awardWrap h2{
  }
  
  #awardWrap ul li h3{
    letter-spacing: 2px;
  }
  
  #titleWrap{
    max-width: 600px;
    flex-wrap: wrap;
  }
  
  #titleWrap > div{
    width: 100%;
  }
  
  #titleWrap > div > div{
    justify-content: center;
  }
  
  #titleWrap > div p{
    text-align: center;
    margin-bottom: 30px;
  }
  
  #titleWrap > .imgSlidewrap{
    width: 100%;
    height: 350px;
  }
  
  .methodCont{
    max-width: 800px;
    padding: 50px;
  }
  
  .methodBox{
    width: 220px;
    padding: 30px 15px;
  }
  
  .methodBox p{
  }
  
  .conceptBox{
    max-width: 600px;
    flex-wrap: wrap-reverse;
  }
  
  .conceptBox:nth-of-type(2){
    flex-wrap: wrap;
  }
  
  .conceptBox:last-of-type{
    flex-wrap: wrap;
  }
  
  .conceptBox .imgSlidewrap{
    width: 100%;
    height: 370px;
  }
  
  .conceptBox div{
    width: 100%;
  }
  
  #productWrap ul{
    max-width: 800px;
  }
  
  #productWrap ul li{
    flex-basis: 30%;
    margin-right: 3%;
  }
  
  #productWrap ul li a div:last-of-type h4{
    letter-spacing: 2px;
  }
  
  #shopWrap{
    max-width: 800px;
  }
}

@media screen and (max-width: 1000px) {
  .titleBox{
    margin-bottom: 50px;
  }
  
  #awardWrap{
    width: 600px;
    display: block;
    text-align: center;
  }
  
  #awardWrap h2{
    margin-bottom: 20px;
  }
  
  #awardWrap ul li{
    justify-content: center;
  }
  
  #titleWrap{
    margin: 100px auto;
  }
  
  .methodCont{
    max-width: 600px;
  }
  
  .methodCont > div{
    display: block;
  }
  
  .methodBox{
    display: block;
    margin: 0 auto 30px;
    width: 100%;
  }
  
  .scratchBox{
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .scratchBox h4{
    width: 100%;
  }
  
  .scratchBox > div{
    width: 70%;
    margin: 30px 0;
  }
  
  .scratchBox h5{
    width: 25%;
  }
  
  #productWrap ul{
    max-width: 500px;
    justify-content: space-between;
  }
  
  #productWrap ul li{
    flex-basis: 45%;
    margin-right: 0;
  }
  
  #shopWrap{
    max-width: 600px;
    display: block;
    margin: 0 auto 100px;
    text-align: center;
  }
  
  #shopWrap div a{
    margin-bottom: 30px;
  }
  
  #shopWrap > div:last-of-type{
    margin-right: 0;
  }
}

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

@media screen and (max-width: 600px){
  #awardWrap{
    max-width: 330px;
    padding: 15px 25px;
  }
  
  #awardWrap h2{
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 20px;
  }
  
  #awardWrap ul li h3{
    font-size: 11px;
  }
  
  #titleWrap{
    max-width: 330px;
    margin: 50px auto 100px;
  }
  
  #titleWrap > div > div{
    display: block;
    text-align: center;
  }
  
  #titleWrap > div > div h2{
    font-size: 22px;
  }
  
  #titleWrap > div p{
    font-size: 11px;
    line-height: 22px;
  }
  
  #titleWrap > .imgSlidewrap{
    height: 250px;
  }
  
  .methodCont{
    max-width: 330px;
    padding: 40px 30px;
  }
  
  .methodCont > p{
    font-size: 13px;
    line-height: 20px;
  }
  
  .flowBox{
    width: 40%;
    padding: 10px;
  }
  
  #flowWrap p{
    font-size: 12px;
    line-height: 20px;
  }
  
  #flowbox05::before, #flowbox07::before, #flowbox09::before{
    width: 128%;
  }
  
  #flowbox10::before{
    top: -20px;
    width: 130%;
    left: 50%;
  }
  
  #experience{
    margin-bottom: 100px;
  }
  
  .scratchBox{
    max-width: 330px;
    margin: 0 auto;
  }
  
  .scratchBox > div{
    width: 100%;
  }
  
  .scratchBox > div > div i{
    margin-right: 0;
  }
  
  .scratchBox h5{
    display: block;
    width: 50%;
    margin: 0 auto;
    padding: 15px;
    letter-spacing: 2px;
    padding: 5px;
  }
  
  .scratchBox > div > div p{
    font-size: 11px;
    letter-spacing: 0px;
  }
  
  #voiceWrap{
    padding: 100px 0;
    margin-bottom: 100px;
  }
  
  #voiceWrap ul{
    max-width: 330px;
  }
  
  #voiceWrap ul li{
    display: block;
    text-align: center;
  }
  
  #voiceWrap ul li i{
    font-size: 50px;
    margin-bottom: 10px;
  }
  
  #voiceWrap ul li h4{
    width: 100%;
  }
  
  #productWrap{
    margin-bottom: 100px;
  }
  
  #productWrap ul{
    max-width: 220px;
  }
  
  #productWrap ul li{
    flex-basis: 100%;
  }
  
  #shopWrap{
    max-width: 330px;
  }

  #shopWrap .imgSlidewrap{
    height: 180px;
    margin-right: 0;
  }
}

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

  #flowWrap h3{
    display: inline-block;
    margin: 0 auto;
    font-family: "Sawarabi Gothic";
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
    position: relative;
    margin-bottom: 10px;
  }
}