@charset "utf-8";

/*----------------------------------------------
	メインビジュアル
------------------------------------------------*/
#mainvisual {
	width: 100%;
	height: 300px;
	text-align: center;
    background: url("../images/bg-main.jpg") no-repeat top center / 100%;
    padding-top: 120px;
}
#mainvisual .title {
    display: inline-block;
    font-size: 26px;
    font-weight: bold;
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 15px;
}

/*------------------------------------------------
導入
--------------------------------------------------*/
#lead {
    width: 100%;
    padding: 50px 0;
}
#lead h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}
#lead h2 span {
    font-size: 36px;
    line-height: 1.5em;
    font-family: 'Futura-Bold','Open Sans', sans-serif;
    display: block;
    margin-bottom: 10px;
}
#lead .shop-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
}
#lead .shop-box img {
    width: 540px;
}
#lead .shop-box p {
    width:400px;
}
#lead .shop-box .sns {
    color: #d65d6b;
    font-weight: bold;
}
#lead .link-online {
    width: 100%;
}
#lead .link-online a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    background-color: #bdd414;
    padding: 8px 5px;
    border-radius: 10px;
    position: relative;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
    &::after {
        content: "▶";
        padding-left: 5px;
        font-size: 1.2em;
    }
    &:hover {
        box-shadow:none;
    }
}
#lead .link-online p {
    width: 100%;
    padding: 0 15px;
    font-weight: bold;
    & span {
        color: #F54336;
        font-size: 1.1em;
        display: block;
        text-align: center;
        margin-bottom: 5px;
    }
}
#lead .link-online img {
    width: 550px;
}
#lead .note {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}
/*------------------------------------------------
商品紹介
--------------------------------------------------*/
#item {
    width: 100%;
    padding: 70px 0;
    background-color: #edf7ff;
}
#item h2 {
    text-align: center;
    font-size: 24px;
    line-height: 1.6em;
    font-weight: bold;
    margin-bottom: 30px;
}
#item .item-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#item .item-list li {
    width: 300px;
    margin-bottom: 30px;
}
#item .item-list li img {
    width: 100%;
    margin-bottom: 10px;
}
#item .item-list li h3 {
    font-size: 18px;
    font-weight: bold;
    color: #71a0cb;
    margin-bottom: 5px;
}
#item .item-list li p {
    font-size: 15px;
    line-height: 1.5em;
}
#item .item-text {
    background-color: #fff;
    padding: 20px 30px;
    border: solid 1px #adcfe9;
}

/*------------------------------------------------
おすすめ商品
--------------------------------------------------*/
#reco-item {
    width: 100%;
    background: #d4f5ea url("../images/reco-item-bg-pc.png") no-repeat top center;
    padding: 110px 0 70px;
}
#reco-item h2 {
    text-align: center;
    margin-bottom: 30px;
}
#reco-item .text {
    width: 830px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.6em;
}
#reco-item .item-list {
    background-color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
}
#reco-item .item-list li {
    width: 17%;
}
#reco-item .item-list li img {
    width: 100%;
    vertical-align: bottom;
    margin-bottom: 10px;
}
#reco-item .item-list li h3 {
    font-size: 16px;
    line-height: 1.3em;
    font-weight: bold;
    margin-bottom: 5px;
}
#reco-item .item-list li p {
    font-size: 14px;
    line-height: 1.4em;
}

/*------------------------------------------------
取り扱いブランド
--------------------------------------------------*/
#brand {
    width: 100%;
    background-color: #fbf5ee;
    padding: 70px 0;
}
#brand h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}
#brand h2 span {
    font-size: 40px;
    line-height: 1.5em;
    font-family: 'Futura-Bold','Open Sans', sans-serif;
    display: block;
    margin-bottom: 10px;
}
#brand .brand-list {
    display: flex;
    flex-wrap: wrap;    
}
#brand .brand-list li {
    width: 180px;
    background-color: #fff;
    margin-right: 23px;
    margin-bottom: 23px;
    padding: 10px;
}
#brand .brand-list li:nth-child(5n) {
    margin-right: 0;
}
#brand .brand-list li img {
    width: 100%;
    margin-bottom: 15px;
}
#brand .brand-list li p {
    text-align: center;
    font-size: 13px;
    line-height: 1.5em;
}

/*オンラインショップボタン*/
.btn-online {
    width: 700px;
    margin: 50px auto 0;
	& a {
		display: block;
		margin: 0 auto;
		font-size: 18px;
		font-weight: bold;
		color: #fff;
		background: #b4cb0a;
		text-align: center;
		padding: 20px 0;
		border-radius: 40px;
        box-shadow: 2px 2px 0 rgba(0 0 0 / 20%);
		text-decoration: none;
		position: relative;
		&::after {
			font-family: "Font Awesome 5 Free";
			content: "\f101";
			font-weight: bold;
			position: absolute;
			top: 20px;
			right: 15px;
		}
	}
}