@charset "utf-8";
/* TOP */


/* HERO */
.Hero{
	padding: 0.5rem 1rem;
	margin-bottom: 4rem;
    position: relative;
}

.Hero img{
	width: 100%;
	height: auto;
}

.Hero_Symbol_Mark_Block{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFF;
    text-align: center;
    z-index: 1;
    width: 100%;
}

.Hero_Symbol_Mark_Block svg{
    width: 30vw;
    display: block;
    margin: 0 auto 1.5rem;
}

.Hero_Symbol_Mark_Block span{
    display: block;
}


/* tablet */
@media screen and (min-width: 48rem){

.Hero{
	padding: 0 2rem;
	margin-bottom: 4rem;
}

.Hero_Symbol_Mark_Block svg{
    width: 18vw;
    max-width: 140px;
}

}


/* tablet landscape */
@media screen and (min-width: 48rem) and (orientation:landscape){

.Hero{
	padding: 0 2rem;
	margin-bottom: 6rem;
}
.Hero .slick-slide{
    height: calc(100vh - 7.625rem);
}

.Hero img{
	width: 100%;
	height: 100%;
    object-fit: cover;
}    
}
 


/* PC */
@media screen and (min-width: 65rem){

.Hero{
	margin-bottom: 8rem;
	max-width: 100%;
    padding: 0 2.5rem;
}

.Hero .slick-slide{
    height: calc(100vh - 9.325rem);
}    
    
.Hero_Symbol_Mark_Block svg {
    max-width:140px;
}

}



/* Text_Information */

.Text_Information ul {
    display: grid;
    grid-gap: 1rem;
}

.Text_Information ul li {
    display: flex;
    justify-content:flex-start;
    grid-gap: 1rem;
}
.Text_Information ul li:empty:before {
    content: "現在新しいお知らせはございません。";
}


/* News */

.News_Block{
    display: grid;
    grid-gap: 1rem;
}

.News_Block article a {
    display: flex;
    grid-gap: 1rem;
}

.News_Block:empty:before {
    content: "現在新しいニュースはございません。";
}

.News_Block article:nth-child(n + 3){
    display: none;
}

.News_Title,
.Category_Title{
    font-size: inherit;
}

/* Product */
.Product_Block{
    display: block;
    width: 100%;
}


.Product_Slide_Block{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
	grid-column-gap: 1rem;
    grid-row-gap: 2rem;
}



.Product_Slide_Block a > div:first-child{
    margin-bottom:0.5rem;
}

.Product_Number:before{
    content: "Item No.";
}
.Product_Price:before{
    content: "¥";
}





/* tablet */
@media screen and (min-width: 48rem){
    
.News_Block {
    grid-gap: 1rem;
}
    
    
.Product_Slide_Block {
    grid-template-columns: repeat(3,1fr);
    padding: 0;
}  
	
.Product_Slide_Block article:nth-last-child(-n+3){
    padding-bottom: 0;
}
    
.Product_Block {
    padding: 0;
}  
    
    
}




/* PC */
@media screen and (min-width: 65rem){
    
    .News_Title {
        font-size: 1rem;
    }  
    
    .News_Block {
        grid-gap: 2rem;
    }    
    
    .Product_Block {
        padding: 0;
    }
    
    .Product_Slide_Block{
		grid-template-columns: repeat(3,1fr);
		grid-column-gap: 2vw;
		grid-row-gap: 4vw;
    }    
    


   
}