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


.wrap{
	overflow: hidden; /*※パララックスが効かなくなるindex.htmlのみ除外*/
}


/* ---------------------------------------------------------------------------------------------

   Product-visual-wrap

--------------------------------------------------------------------------------------------- */
.Product-visual-wrap{
	width: 100%;
	overflow: hidden;
	position: relative;
}

.Product-visual-wrap .product1920{
    width: 100%;
    height: 550px;
    background-image: url("../images/product-visual.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.Product-visual-wrap .centerBox{
	width: 100%;
	position: absolute;
	top: 45%;/*42.5*/
	left: 0;
	z-index: 10;
}


/*テキストアニメーションTOP（下から出てくる）
-----------------------------------------------------------*/
.Product-visual-wrap .centerBox .h1-text{
         width: 100%;
         height: 100vh;
        text-align: center;
        margin: 0 auto;
	    filter:drop-shadow(3px 3px 3px rgba(0,0,0,0.6));
}
        @keyframes showTextFromBottom{
      0%{
         transform: translateY( 100% );
      }
      100%{
          transform: translateY( 0px );
      }
    }
    .textanimation-main span{/*----------eg-h1の代替----------*/
     animation: showText 1s backwards;
     display: inline-block;
	font-size: 84px;
    font-family: "Quicksand", sans-serif;
    line-height: 1.25;
	color: #fff;
	font-weight: normal;
	/*filter:drop-shadow(3px 3px 3px rgba(0,0,0,0.3));*/
        
    }
    .textanimation-main > span{
      overflow: hidden;
    }
    .textanimation-main > span > span{
      animation: showTextFromBottom 0.5s backwards;
    }

@media screen and (max-width:1400px) {
    
.Product-visual-wrap .product1920{
    height: 450px;
}
    
.textanimation-main span{
	font-size: 72px;
}
    
}

@media screen and (max-width:1000px) {
    
.Product-visual-wrap .product1920{
    height: 350px;
}
    
.Product-visual-wrap .centerBox{
	top: 40%;
}
    
.textanimation-main span{
	font-size: 60px;
}
}

@media screen and (max-width:800px) {
    
.Product-visual-wrap .product1920{
    height: 250px;
}
    
.textanimation-main span{
	font-size: 48px;
}
}

@media screen and (max-width:500px) {
    
.Product-visual-wrap .centerBox{
	top: 45%;
}
    
.textanimation-main span{
	font-size: 36px;
}
}

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

.textanimation-main span{
	font-size: 30px;
}
}

.jp-h1{
    color: #fff;
    font-weight: normal;
	font-size: clamp(16px, 2vw, 20px);
    line-height: 2;
	filter:drop-shadow(3px 3px 3px rgba(0,0,0,0.3));
}


/*background-image 背景フェードイン
-----------------------------------------------------------*/
.fade-in-background {
  opacity: 0;
  animation: fadeIn 7.5s forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



/* ---------------------------------------------------------------------------------------------

   商品一覧コンテンツ

--------------------------------------------------------------------------------------------- */

/*商品一覧
-----------------------------------------------------------*/
.group-wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.group-item{
    width: 23.5%;
    margin-bottom: 7.5%;
}

.group-item .product-wrap{
    width: 100%;
    padding: 7.5%;
    background: url("../images/old_map.png") repeat 0 0;
}
.group-item .product-wrap img{
    width: 100%;
    margin: 0 auto;
}
.group-item a.product-wrap:hover{
    opacity: 0.5;
}

.group-item h3{
    margin-top: 25px;
	font-size: clamp(18px, 3vw, 20px);
    border-bottom: 0.5px solid #ccc;
    line-height: 1.5;
    padding-bottom: 7.5px;
}
.group-item h4{
    padding-top: 7.5px;
    margin-bottom: 25px;
	font-size: clamp(12px, 3vw, 14px);
    font-weight: normal;
    line-height: 1.75;
    /*color: #146091;*/
}

.group-item a.inline-shop{
    display: inline-block;
    text-decoration: underline;
}
.group-item a.inline-shop:hover{
    color: #f00;
    text-decoration: none;
}

@media only screen and (max-width: 1000px) {
   
.group-item{
    width: 31.5%;
    margin-bottom: 10%;
}
}

@media only screen and (max-width: 700px) {
    
.group-item{
    width: 48.5%;
    margin-bottom: 15%;
}
}


/*背景画像ミドルnav指定
-------------------------------------------*/
/*middle-nav.cssに記述*/





































