@charset "UTF-8";
:root {
    --text: 15px;
    --title: 50px;
    --main-color: #8a5e49;
    --sub-color: #3C3530;
	--text: #fff;
	--btn: #4b2823;
}

body{
    font-family: "Noto Serif JP", serif;
	letter-spacing: 0.1em;
	background-image: url("image/back.jpg");
	background-repeat: repeat;
	color: var(--main-color);
	min-width: 375px;
}

/*================
 font
==================*/
.en{
    font-family: "Benne", serif;
}

/*================
セクション共通
==================*/

img{
	width: 100%;
}

h2{
	font-weight: 500;
	font-size: 4vw;
	letter-spacing: 0.15em;
}

h3{
	color:  var(--sub-color);
	font-size: 1vw;
	font-weight: 300;
	letter-spacing: 0.15em;
}

section{
	width: 100%;
	text-align: center;
	margin-top: 130px;
}

a{
	color: inherit;
	text-decoration: none;
}
.fead_in, .fead_up {
    opacity: 0; /* 初期状態は非表示 */
    transition: opacity 0.3s ease;
}
/*btn*/
a.btn{
	display: flex;
    justify-content: space-between;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 30vw;
	margin: auto;
	padding: 2rem 3rem;
	background: var(--btn);
	color: var(--text);
	position: relative;
	transition: 0.3s;
	font-weight: 400;
}
a.btn::before {
	content: '';
	position: absolute;
	top: calc(50% - 1px);
	right: 1.9rem;
	transform: translateY(calc(-50% - 2px)) rotate(45deg);
	width: 10px;
	height: 1px;
	background: var(--text);
}
a.btn::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	width: 50px;
	height: 1px;
	background-color: var(--text);
}

a.btn:hover {
	opacity: 0.7;
}


/*タイトル*/
.title{
	display: flex;
	flex-direction: column;
	position: relative;
	margin-bottom: 2em;
}
.title::before{
	content: "";
	width: 1px;
	height: 45px;
	background-color: var(--main-color);
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
}



.new,
.coming,
.pic_sold{
	position: relative;
}

.new::before{
	content:"NEW";
	position: absolute;
	background: #A5102E;
	padding: 0.5em 1em;
	top: 0;
	left: 0;
	font-weight: 600;
	color: var(--text);
	z-index: 3;
}


.coming::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-image: url(https://www.es-koyama.com/image/coming.png);
	background-size: contain;
    width: 175px;
    height: 83px;
	top: 25%;
	left: 50%;
	transform: translate(-50%, 0);
}
.pic_sold::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-image: url(https://www.es-koyama.com/image/sold.png);
	background-size: contain;
    width: 127px;
    height: 67px;
	top: 25%;
	left: 50%;
	transform: translate(-50%, 0);
}


/*================
    fv
==================*/

.fv_area{
	margin: 0 auto;
}

.catalog_area{
	display: flex;
	margin-top: 5vw;
	justify-content: space-between;
	align-items: center;
	padding: 0 15vw;
	gap: 2vw;
}

.catalog_area h1{
	color: var(--sub-color);
	font-size: 1.2vw;
	letter-spacing: 0.1em;
}

.catalog_area h2{
	color: var(--sub-color);
	font-size: 2vw;
}

.catalog_area .catalog_img{
	width: 30%;
}

.catalog_area .catalog_title{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px 0;
	gap: 50px;
}
.fv_area .slider_area{
	margin: 5vw 0;
}

.slide{
	margin-right: 10px;
}
/*================
    ピックアップ
==================*/

.pickitem_area{
	color: var(--text);
}

.pickitem{
	display: flex;
	align-items: center;
	margin-top: 50px;
	background-color: var(--main-color);
}

.pickitem .pickitem_img{
	width: 50%;
	aspect-ratio: 1033 / 780;
	object-fit: cover;
}

.pickitem .detail{
	width: 50%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-between;
	gap: 50px;
	padding: 30px;
	
}

.pickitem .detail .name{
	font-size: 1.5em;
}

.pickitem .detail .price{
	font-size: 1.1em;
	margin-top: 1em;
	font-weight: 500;
}

.pickitem .detail .start_date{
	font-size: 0.8em;
	margin-top: 1em;
}

.pickitem .btn_area{
	display: grid;
	gap: 1.5vw;
}

.pickitem .btn{
	background-color: var(--btn);
	
}

.pickitem .btn_area .btn:nth-child(2){
	background-color: #a48d69;
	
}

.pickitem .add_img{
	width: 25%;
	margin-bottom: 1em;
}

.pickitem.coming::after{
	top: 50%;
	left: 25%;
	transform: translate(-50%, -50%);
}
.pickitem.pic_sold::after{
	top: 50%;
	left: 25%;
	transform: translate(-50%, -50%);
}

/*================
    商品一覧
==================*/

.item_area .item_list{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	padding: 0 5vw;
	gap: 30px 10px;
}

.item_area .item a{
	transition: .3s;
}

.item_area .item a:hover{
    opacity: 0.8;
}

.item_area .item .name{
	font-size: 0.95em;
	font-weight: 500;
}

.item_area .item .price{
   font-size: 0.9em;
	margin-top: 0.5em;
}
.item_area .item .start_date{
   font-size: 0.7em;
	margin-top: 0.5em;
}


/*================
    footer
==================*/

footer{
	text-align: center;
	padding: 50px;
	background-color: var(--sub-color);
	margin-top: 5vw;
	color: var(--text);
}

footer small{
	font-size: 0.5em;
	font-weight: 100;
	display: inline-block;
	margin-top: 30px;
}

footer .logo{
	width: 10vw;
	display: block;
	margin: 0 auto;
}

@media screen and (min-width: 751px) {
    .sp {
        display: none!important;
    }
}
@media screen and (max-width:750px) {
    .pc {
        display: none!important;
    }
	body{
		position: relative;
	}
	
    /*================
    セクション共通
    ==================*/

    h2{
        font-size: 12vw;
    }

    h3{
        font-size: 3.5vw;
    }
    section{
        margin-top: 30vw;
    }
    /*btn*/
    a.btn{
        width: 100%;
        padding: 1.5rem 1.5rem;
        font-size: 0.85em;
    }
    .new::before{
        font-size: 0.9em;
    }

    .coming::after{
        width: 175px;
        height: 83px;
        top: 18%;
    }
    .pic_sold::after{
        width: 127px;
        height: 67px;
        top: 18%;
    }
    /*================
        fv
    ==================*/
	.fv_area{
		padding-bottom: 25vw;
		position: relative;
	}
    .catalog_area{
		flex-direction: column-reverse;
        margin-top: 5vw;
        padding: 0 5vw;
		gap: 15vw;
    }
	
    .catalog_area h1{
        font-size: 3.2vw;
		margin-bottom: 1.5em;
    }

    .catalog_area h2{
        font-size: 5.5vw;
    }

    .catalog_area .catalog_img{
        width: 70%;
    }

    .catalog_area .catalog_title{
        padding: 0;
        gap: 0;
    }
	
    .catalog_area .btn{
        position: absolute;
		bottom: 0;
		width: 90%;
		left: 5%;
    }
	
    .fv_area .slider_area{
        margin: 10vw 0 0;
    }

    /*================
        ピックアップ
    ==================*/
    .pickitem{
        margin-top: 0;
		flex-direction: column;
    }

    .pickitem .pickitem_img{
        width: 100%;
    }

    .pickitem .detail{
        width: 100%;
        gap: 7vw;
        padding: 10vw 5vw 25vw;

    }

    .pickitem .detail .name{
        font-size: 1.5em;
    }

    .pickitem .detail .price{
        margin-top: 0.5em;
    }

    .pickitem .detail .start_date{
        margin-top: 1em;
    }

    .pickitem .btn_area{
        gap: 2vw;
		width: 100%;
    }

    .pickitem .add_img{
        width: 30%;
        margin-bottom: .8em;
    }

    .pickitem.coming::after{
        top: 18%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
	
    .pickitem.pic_sold::after{
        top: 18%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*================
        商品一覧
    ==================*/

    .item_area .item_list{
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        gap: 1vw 0;
    }

	.item_area .item .text_area{
		padding: 1vw 2vw 2vw;
		text-align: left;
	}
	
	
    .item_area .item .name{
        font-weight: 600;
       font-size: 0.85em;
		letter-spacing: 0.05em;
    }

    .item_area .item .price{
       font-size: 0.9em;
        margin-top: 0.5em;
    }
    .item_area .item .start_date{
       font-size: 0.4em;
        margin-top: 0.5em;
		letter-spacing: 0.03em;
    }
	
    .item_area .new::before{
        font-size: 0.7em;
    }
	
    /*================
        footer
    ==================*/

    footer{
        padding: 5vw;
    }

    footer small{
        margin-top: 3em;
    }

    footer .logo{
        width: 35vw;
        margin: 2vw auto;
    }
    /*================
        スマホ固定
    ==================*/
	.footer_fixed{
		position: fixed;
		bottom: 0;
		left: 0;
        transform: translateY(100%); /* 初期状態は画面外 */
        transition: transform 0.3s ease-in-out; /* スライド表示をスムーズに */
		width: 100%;
		padding: 3vw 5vw;
		background-color: rgba(13, 9, 11, 0.8);
	}
	
	.footer_fixed .btn{
		width: 100%;
		margin: 0 auto;
		background-color: #32190E;
	}

}
