@charset "utf-8";
/* CSS Document */

/*表示関連*/

  .showPC {
    display: block;
  }
  .showSP {
    display: none;
  }



/*メイン画像*/

.top_main_visual {
  width: 100%;
  height: 400px;
  background-image: url("bg_img_new.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  image-rendering: -webkit-optimize-contrast;
}
.main_visual {
  width: 100%;
  height: 400px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  image-rendering: -webkit-optimize-contrast;
}

/*各ブロック共通設定*/

#block01, #block02 {
  width: 100%;
  max-width: 920px;
  margin: 40px auto;
  padding: 0 20px 0;
  box-sizing: border-box;
}

#block01 h2, #block02 h2 {
  font-family: 'Teko', sans-serif;
  color: #d42224;
  font-weight: normal;
  font-size: 200%;
  line-height: 110%;
  text-align: center;
  position: relative;
  display: inline-block;
  background-color: #fff;
  margin: 20px 0;
  width: 100%
}


/*お知らせ*/

.news {
  padding: 20px 20px ;
  border-radius: 10px;
  border: solid 4px #D3D3D3;
  background-color: #EFEFEF;
}

.news-list {
  list-style: none outside;
  margin: 0;
  padding: 0;
  font-size: 0.8em;
}

.news-list .item a {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 10px 20px;
}

.news-list .item .date {
  margin: 0;
  min-width: 80px;
  color: #999;
  padding: 0 20px 0 0;
}

.news-list .item .category {
  margin: 0;
  min-width: 100px;
  padding: 0 20px 0 0;
}

.news-list .item .category span {
  color: #FFF;
  text-align: center;
  display: inline-block;
  width: 90px;
  font-size: 0.6em;
  line-height: 1;
}

.news-list .item .title {
  margin: 0;
  width: 100%;
}

.news-list .item .title:hover {
  color: #d42224;
}

.news-list .item :last-child a{
  border: none;
}

/*お知らせ増えたら追加*/
/*
.news-list li:last-child p {
  text-align: center;
  color: #171717;
  font-weight: bold;
}

.news-list li:last-child p:hover {
  color: #d42224;
  border: #d42224;
}
*/
.news_new_item::after {
  content: '新商品';
  background: #d42224;
  padding: 5px 20px;
  box-sizing: border-box;
  display: inline-block;
  width: 80px
}

.news_info::after {
  content: 'お知らせ';
  background: #252525;
  padding: 5px 20px;
  box-sizing: border-box;
  display: inline-block;
  width: 80px
}
.arrow_right {
  position: relative;
  padding-left: 25px;
}

.arrow_right::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 1px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(45deg);
}

.arrow_right:hover::before {
  border-top: 2px solid #CB2B2D;
  border-right: 2px solid #CB2B2D;
}


/* LINEUP */

.lineup ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lineup ul li {
  width: calc( 100% / 3 - 30px);
  box-sizing: border-box;
  margin: 10px 0;
  padding: 10px;
  position: relative;
  display: block;
}
/* LINEUP NEWアイコン */

.new {
  position: absolute;
  top: 10px;
  right: 0;
  width: 20%;
  border-radius: 50%;
  text-align: center;
  border: 3px solid #d42224;
  background-color: #d42224;
}

.circle_height {
  position: relative;
  padding-top: 100%;
  height: 0;
}

.circle_height p {
  position: absolute;
  top: calc((100% - 1em)/2);
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  color: #FFFFFF;
  font-family: 'Teko', sans-serif;
  font-size: 20px;
}

.lineup ul li img {
  width: 100%;
  transition: transform .6s ease;
  cursor: pointer;
}

.lineup ul li img:hover {
  transform: scale(1.1);
}

/* LINEUP 商品名 */

#block02 h3 {
  text-align: center;
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  color: #5A5A5A;
  margin: 10px 0 0 -15px;
  font-size: 1.6em;
}

#block02 h3:hover {
  color: #d42224;
}

/* LINEUP 画像表示 */

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

.lineup_s {
  text-align: center;
  margin: 0 0 0 -15px;
  display: block;
  font-size: 0.85em;
  color: #808080;
}


/* タブレットレイアウト : 768 px ～ 959 px*/

@media screen and (max-width:959px) {
/*表示関連*/

  .showPC {
    display: block;
  }
  .showSP {
    display: none;
  }
/*メイン画像*/
  .top_main_visual {
    background-image: url("bg_img_tab_new.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    overflow: hidden;
	margin-top: 80px;
	height: 0;
	padding-top: 43.3%
  }
  .main_visual {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
	  height: 100vh;
    overflow: hidden;
	margin-top: 80px;
  }
}


/* スマホ設定  768 以下*/

@media screen and (max-width:767px) {
/*表示関連*/
	
  .showPC {
    display: none;
  }
  .showSP {
    display: block;
  }
	
/*各ブロック共通設定*/
	
	#block01, #block02 {
    padding: 0 10px 0;
}
	
	
/*メイン画像*/
  .main_visual {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
	height: 0!important;
	padding-top: 38.8%;
    position: relative;
    overflow: hidden;
  }
	
  .top_main_visual {
    background-image: url("bg_img_sp_new.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
	height: 0!important;
	padding-top: 58.5%;
    position: relative;
    overflow: hidden;
  }
	
/*お知らせ*/
	
.news {
    padding: 10px 10px 0;
}
	
  .news-list .item a {
    flex-wrap: wrap;
	padding: 5px 10px;
  }
  .news-list .item .date {
    min-width: 60px;
  }
  .news-list .item .title {
    margin-top: 10px;
  }
	
/* LINEUP */

.lineup ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lineup ul li {
  width: calc( 100% / 2);
}
.lineup ul li img {
    width: 90%;
   display: block;
margin: 0 auto;
}	
.lineup_s {
    text-align: center;
    margin: 0 0 0 -15px;
    display: block;
    font-size: 0.7em;
    color: #808080;
}
	
/* LINEUP NEWアイコン */
.new {
    top: 10px;
    right: 5px;

}
}

