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

html {
  font-size: 62.5%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

* {
	float: none;
	position: static;
}

p {
  text-align:justify;
  line-height: 1.8em;
  margin-bottom: 8px;
}

img {
	max-width: 100%;
	height: auto;
}

body {
  width: 100%;
  background: url("../../img/shishinzu.jpg")center center / cover no-repeat fixed;
  margin: 0;
  padding: 0;
}

header {
  width: 100%;
  height: auto;
}

/*----------------- top_btn animation st ------------------------------*/
#top_btn {
  animation: horizontal 2s ease-in-out infinite alternate;
}

#top_btn img {
  animation: vertical 2s ease-in-out infinite alternate;
}

@keyframes horizontal {
    0% { transform:translateX( -5px); }
  100% { transform:translateX(  0px); }
}

@-webkit-keyframes horizontal {
    0% { transform:translateX( -5px); }
  100% { transform:translateX(  0px); }
}

@keyframes vertical {
    0% { transform:translateY(-15px); }
  100% { transform:translateY(  0px); }
}

@-webkit-keyframes vertical {
    0% { transform:translateY(-15px); }
  100% { transform:translateY(  0px); }
}
/*----------------- top_btn animation en ------------------------------*/

  #home_btn {
    width: 100px;
    position: absolute;
    top: 66px;
    right: 10vw;
  }
  
  .text_home_back {
    position: absolute;
    font-size: .8em;
    width: 100px;
    top: 8px;
    left: 36px;
    color: #000;
  }
  
h1 {
  text-align: center;
  font-weight: normal;
  margin: 10px auto;
}

.sanmi_color {
  color: #5eb53b;
} 

.nigami_color {
  color: #ee4535;
} 

.amami_color {
  color: #f6ae33;
} 

.karami_color {
  color: #4565c6;
} 

.siomi_color {
  color: #332a31;
} 

h2 {
  font-family: 'Kosugi Maru', sans-serif;
  text-align: center;
  font-size: 1.5em;
  margin: 30px auto 10px;
  color: #894801;
  line-height: 1.3;
  z-index:-2;
}

#sanmi {
  background: linear-gradient(to right, #aedb91, #bfe0a9, #e7f7e2);
  border-bottom: solid 5px #5eb53b;
}

#nigami {
  background: linear-gradient(to right, #eaaaa0, #edc5c3, #ede0df);
  border-bottom: solid 5px #ee4535;
}

#amami {
  background: linear-gradient(to right, #F9E6AA, #F7E9C4, #F7F0DF);
  border-bottom: solid 5px #f6ae33;
}

#karami {
  background: linear-gradient(to right, #9ca7d3, #bdcdf4, #e4e5f2);
  border-bottom: solid 5px #4565c6;
}

#siomi {
  background: linear-gradient(to right, #a0a0a0, #d3d3d3, #f2edef);
  border-bottom: solid 5px #332a31;
}

h3 {
  color: #BB2C2E;
  margin-bottom: 5px;
}

main img {
  display: block;
  margin: 0 auto;
}

.desc_sanmi {
  padding: 7px 10px 0;
  border-radius: 8px;
  background-color: rgba(94,181,59,.2);
}

.desc_nigami {
  padding: 7px 10px 0;
  border-radius: 8px;
  background-color: rgba(238,69,53,.2);
}

.desc_amami {
  padding: 7px 10px 0;
  border-radius: 8px;
  background-color: rgba(246,174,51,.2);
}

.desc_karami {
  padding: 7px 10px 0;
  border-radius: 8px;
  background-color: rgba(69,101,198,.2);
}

.desc_siomi {
  padding: 7px 10px 0;
  border-radius: 8px;
  background-color: rgba(51,42,49,.2);
}

.conts {
  display: flex;
  justify-content: space-around;
  position: relative;
  width: 200px;
  padding: 0.5em 1em;
  border-radius: 8px;
}

.conts .box-title {
  position: absolute;
  display: inline-block;
  line-height: 1;
  background: #fefcf0;
  font-weight: bold;
}

.color_spn {
  color: #BB2C2E;
  background: linear-gradient(transparent 40%, #ffff66 0%);
  font-weight: bold;
}

.desc_seisitu {
  display: block;
  position: relative;
  margin: 10px;
  z-index: 999;
}

/* ------------- image animation st ------------------------------------ */
.fadeInDown {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:3s;
 -ms-animation-duration:3s;
 animation-duration:3s;
 -webkit-animation-name: fadeInDown;
 animation-name: fadeInDown;
 visibility: visible !important;
}

@keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translate(50%, 50%); -ms-transform: translate(50%, 50%); transform: translate(50%, 50%); }
 100% { opacity: 1; -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); transform: translate(0, 0); }
}

@-webkit-keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translate(50%, 50%); -ms-transform: translate(50%, 50%); transform: translate(50%, 50%); }
 100% { opacity: 1; -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); transform: translate(0, 0); }
}

.fadeIn {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:3s;
 -ms-animation-duration:3s;
 animation-duration:3s;
 -webkit-animation-name: fadeIn;
 animation-name: fadeIn;
 visibility: visible !important;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ------------- image animation en ------------------------------------ */

.symbol_spn {
  color: #BB2C2E;
  font-weight: bold;
}

.symbol_spn:before {
  content: "【";
}

.symbol_spn:after {
  content: "】";
}

.conts li {
  list-style: none;
  line-height: 2;
}

.syouhin, .syouhin_kan {
  position: relative;
}

.syouhin_anime {
  position: absolute;
}

footer {
  background-color: antiquewhite;
  max-width: 100%;
  color: #333;
  margin: 0 auto;
}

#copyright {
  margin-bottom: 0;
  text-align: center;
}

/******************************** for sp st **************************************/
@media screen and (max-width: 600px) {
  #top_btn {
    width: 50px;
    position: fixed;
    top: 510px;
    right: 10px;
    z-index: 999;
  }
  
  #wrap {
    top: 120px;
    max-width: 100%;
    height: auto;
    font-size: 1.4em;
    line-height: 1.8em;
    padding: 10px 20px 0;
    margin: 0 auto;
  }

  main {
    width: 600px;
    max-width: 100%;
    margin: 44px auto 0;
  }
  
  #home_btn {
    width: 22vw;
    top: 45px;
    left: calc(50vw - 14vw);
  }
  
  .text_home_back {
    top: -3px;
    left: 8vw;
  }
    
  .syokuzai_anime {
    margin-top: 60px;
    width: 60%;
  }
  
  h1 {
    font-size: 1.5em;
  }
  
  h2 {
    font-size: 1.5em;
    width: 80%;
    margin-top: 20px;
    padding: 0.5em;
  }
  
  h3 {
    font-size: 1.3em;
  }
  
  .desc_sanmi .desc_nigami .desc_amami .desc_karami .desc_siomi {
    margin: 1em 0;
  }
  
  .desc_wrap, .syokuzai {
    margin: 0 22px 10px;
  }
  
  .desc_l {
    margin-bottom: 10px;
  }
  
  .seisitu {
    position: relative;
    margin: 0 10px;
  }

  .syokuzai_anime {
    position: absolute;
    margin: 0 19vw;
  }
  
  .syokuzai_conts {
    margin-top: 200px;
  }
  
  .conts {
    line-height: 1;
    margin: 20px auto;
  }
  
  .conts ul {
    margin-top: 10px;
  }
  
  .conts .box-title {
    top: -8px;
    left: 8px;
    padding: 0 9px;
    font-size: 1.3em;
  }
  
  .syouhin {
    height: 180px;
    padding: 7px 10px 0;
    margin: 0 22px 40px;
  }

  .syouhin_kan {
    height: 300px;
    padding: 7px 10px 0;
    margin: 0 22px 50px;
  }

  .genmaisu_img {
    width: 18%;
    left: 20%;
    bottom: 0;
  }

  .youyou_img {
    width: 45%;
    left: 46%;
    bottom: -2%;
  }

  .youyou2_img {
    width: 43%;
    left: 54%;
    bottom: 3%;
  }

  .youyou3_img {
    width: 47%;
    left: 48%;
    bottom: -3%;
  }

  .youyou4_img {
    width: 35%;
    left: 64%;
    bottom: 0;
  }

  .nigari_img {
    width: 21%;
    left: 18%;
    bottom: 0%;

  }

  .hatimitu_img {
    width: 44%;
    left: 3%;
    bottom: 53%;
  }

  .sanyoutya_img {
    width: 50%;
    left: 49%;
    bottom: 63%;
  }

  .kinugoma_img {
    width: 36%;
    left: 31%;
    bottom: 24%;
  }

  .tubakiabura_img {
    width: 39%;
    left: 3%;
    bottom: 0;
  }

  .rankou_img {
    width: 52%;
    left: 3%;
    bottom: 18%;
  }

  .uminosei_img {
    width: 32%;
    left: 10%;
    bottom: -3%;
  }

  footer {
    font-size: 1.2em;
    padding: 10px 20px;
  }
  
  footer article .footer_l img {
    width: 30px;
    margin-right: 15px;
    height: auto;
  }
  
  footer article p {
    margin-bottom: 0;
    text-align: center;
  }

  #copyright {
    font-size: .8em;
  }
    
}
/******************************** for sp en **************************************/

/******************************** for pc st **************************************/
@media screen and (min-width: 601px) {
  #top_btn {
    position: fixed;
    top: 600px;
    right: 100px;
    z-index: 999;
  }
	  
  #wrap {
    width: 1020px;
    max-width: 100%;
    height: auto;
    font-size: 1.6em;
    margin: 0 auto;
  }

  main {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px 0;
  }
  
  h1 {
    font-size: 1.4em;
  }
  
  h2 {
    width: 40%;
    padding: 0.2em;    
  }
  
  h3 {
    font-size: 1.2em;
  }
  
  .desc_sanmi .desc_nigami .desc_amami .desc_karami .desc_siomi {
    margin: 1.5em 0;
  }
  
  .desc_wrap, .syokuzai_conts {
    display: flex;
    justify-content: space-between;
  }
  
  .desc_wrap, .syokuzai {
    margin: 0 10px;
  }
  
  .desc_l, .desc_r {
    width: 47%;
    margin: 1.5em 0 1em;
    padding: 10px 10px 0;
    font-size: 16px;
    border-radius: 8px;
  }

  .syokuzai_anime {
    margin-top: 35px;
  }

  .syokuzai_conts {
    margin: 0 20px;
  }
  
  .syokuzai_bg {
    font-size: 16px;
    padding: 10px 10px 2px;
  }

  .seisitu {
    display: flex;
    justify-content: space-between;
  }
  
  .conts {
    margin: 30px 5px;
  }
  
  .conts .list_txt {
    margin-top: 10px;
  }
  
  .conts .box-title {
    top: -9px;
    left: 20px;
    padding: 0 9px;
    font-size: 1.4em;
  }
  
  .syouhin {
    height: 400px;
    padding: 10px 10px 2px;
    margin: 0 10px 70px;
  }

  .syouhin_kan {
    height: 700px;
    padding: 10px 10px 2px;
    margin: 0 10px 70px;
  }
  
  .genmaisu_img {
    width: 15%;
    left: 20%;
    bottom: 3%;
  }

  .youyou_img {
    width: 40%;
    left: 46%;
    bottom: -1%;
  }

  .youyou2_img {
    width: 40%;
    left: 55%;
    bottom: -1%;
  }

  .youyou3_img {
    width: 40%;
    left: 50%;
    bottom: -1%;
  }

  .youyou4_img {
    width: 30%;
    left: 66%;
    bottom: 3%;
  }

  .nigari_img {
    width: 18%;
    left: 18%;
    bottom: 2%;
  }

  .hatimitu_img {
    width: 36%;
    left: 5%;
    bottom: 55%;
  }

  .sanyoutya_img {
    width: 43%;
    left: 52%;
    bottom: 64%;
  }

  .kinugoma_img {
    width: 29%;
    left: 35%;
    bottom: 18%;
  }

  .tubakiabura_img {
    width: 32%;
    left: 3%;
    bottom: 0;
  }

  .rankou_img {
    width: 52%;
    left: 4%;
    bottom: 16%;
  }

  .uminosei_img {
    width: 28%;
    left: 14%;
    bottom: -1%;
  }

  .syouhin_anime img:hover {
    opacity: .5;
  }
  
  footer {
    font-size: 1.4em;
    padding: 20px;
  }

  footer article {
    display: flex;
    justify-content: center;
  }

  footer article .footer_l,footer article .footer_r {
    margin: auto 20px;
  }

  footer article .footer_l img {
    width: 50px;
    margin-right: 20px;
    height: auto;
  }

  footer p {
    line-height: 17px;
  }

  #copyright {
    font-size: 10px;
  }

}
/******************************** for pc en **************************************/