@charset "UTF-8";
:root {
	--bg-color: #F4E9D7;
	--accent-color:#ED5B43;
	--link-color:#ED5B43;
	--sub-color:#00B2CA;
	--point-color:#FFCA3A;
	--text-color: #000;
	--gray-color:#fff;
	--font-titan:"Titan One", sans-serif;
	--font-h3:27px;
	--font-h4:22px;
	--font-h5:20px;
	--font-h6:18px;
	--font-middle:20px;
	--font-default:16px;
	--font-small:14px;
	--box-shadow:0px 4px 4px rgba(0,0,0,0.25);
}
@media screen and (max-width:767px) {
	:root {
		--font-h4:20px;
		--font-h5:18px;
		--font-h6:16px;
		--font-middle:17px;
		--font-small:12px;
	}
}
/* CSS Document */
section#sec_5 {
    text-align: center;
}

section#sec_5 .goods-info img {
    margin-bottom: 20px;
}

.sec_5 h2 span {
    background: url(../img/goods.png) no-repeat center center / contain;
}

section#sec_5 .goods-info p {
    font-size: 14px;
    line-height: 2;
}
section#sec_5 .goods-info p strong {
    font-size: 20px;
}
section#sec_5 .goods-info p span{
	font-size: 16px;
}
section#sec_5 .goods-info h6{
	font-size: var(--font-h5);
    font-weight: 700;
    padding-bottom: 0px;
	margin-bottom: 0;
    line-height: 1.6em;
    text-align: center;
	font-size: 20px;
	margin-top: 1em;
}
section#sec_5 h3{
	background: url(../img/line-goods.png) no-repeat center center/100%;
	margin:30px 0 10px 0;
	line-height: 1em;
	padding: 0;
}
section#sec_5 h3 span{
	display: inline-block;
	background: var(--bg-color);
	padding: 0 20px;
	color: var(--accent-color);
	font-size: 20px;
	font-weight: bold;
	line-height: 1.8em;
}

@media screen and (max-width:767px) {
	section#sec_5 h3 span{
		line-height: 1.3em;
	}
}


.goods-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 30px;
}
.goods-list small{
	font-size: 0.8em;
}

div.goods-item {
	width: 48%;
	border-radius: 10px;
	margin-bottom: 10px;
	padding: 20px 0;
	text-align: left;
}
div.goods-item img{
	padding-bottom: 20px;
}
div.goods-item a:hover{
	opacity: 0.7;
}
div.goods-item.goods1{
	width: 100%;
}
section#sec_5 p.title{
	font-size: 18px;
	padding-bottom: 10px;
	font-weight: bold;
	line-height: 1.2em;
}
section#sec_5 p.price{
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px;
}
@media screen and (max-width:767px) {
	.goods-area p.lead{
		text-align: left;
		font-size: 20px;
	}
	.goods-area p.lead br{
		display: none;
	}
	.goods-area .sale h3{
		font-size: 18px;
		padding-bottom: 10px;
	}
	.goods-list {
		padding: 15px;
		margin: 0 -15px;
		border-radius: 20px;
	}
	div.goods-item.goods1,
	div.goods-item {
		width: 100%;
		padding: 15px;
	}
	.goods-area .sale div.info p{
		display: block;
		width: 100%;
		word-wrap: break-word;
	}

	.goods-area .saleinfo{
		padding: 20px 30px;
	}
	.goods-area .saleinfo h4{
		font-size: 20px;
	}
	.goods-area .saleinfo p{
		font-size: 16px;
	}
}

/*モーダル*/
.modal-content {
	width: 100%;
}
.modal__content .head {
	display: flex;
	justify-content: space-between;
}
*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.modal-content .content{
	margin: 0 auto;
	padding: 30px 40px;
}



.modal-content .content .h-btn img:hover {
	opacity: 0.7;
}

.modal-content .content .h-btn {
	width: 15%;
	max-width: 190px;
	margin: 0 auto;
}
.modal{
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	z-index: 1000;
	width: 100%;
}
.modal__bg{
	background: #162328;
	opacity: 0.3;
	height: 100vh;
	position: absolute;
	width: 100%;
}
.modal__content {
	height:auto;
	left: 50%;
	padding: 0px;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 600px;
	background: transparent;
	border: none;
	padding: 10px;
}
#modal01 .modal__content{
	max-width: 800px;
}
.modal__content .modal-inner {
	height: 100%;
	width: 100%;
	overflow-y: auto;
	font-weight: 400;
	background:var(--bg-color);
	box-sizing: border-box;
	border-radius: 6px;
	padding: 40px;
	text-align: left;
}

.modal__content .modal-inner img{
	width: 100%;
	display: block;
	margin: auto;
	padding-bottom: 20px;
}
.modal__content .modal-inner img.sp_only {
	display: none;
}
.modal__content .modal-inner-2 {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width:767px) {
	.modal__content {
		width: 100%;
		padding: 0px;
		max-height: 98%;
		overflow: scroll;
		border-radius: 6px;
	}
	.modal__content .modal-inner{
		border: none;
		padding: 25px 15px;
	}
	.modal__content .modal-inner img{
		width: 100%;
		max-width: 100%;
		padding-bottom: 10px;
	}
	.modal__content .modal-inner img.pc_only {
		display: none;
	}
	.modal__content .modal-inner img.sp_only {
		display: block;
	}
}
/*バツボタン*/
.batsu {
	display: block;
	position: absolute;
	width: 60px;
	height: 60px;
	top: -20px;
	right: -20px;
	background-color:var(--accent-color);
	border-radius: 50%;
}
.modal__content.bk .batsu{
	top: 10px;
	right: 10px;
}

.batsu::before, .batsu::after { /* 共通設定 */
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px; /* 棒の幅（太さ） */
	height: 40px;
	background: white;
}

.batsu::before {
	transform: translate(-50%,-50%) rotate(45deg);
}

.batsu::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}
@media screen and (max-width:767px) {
	.batsu {
		width: 30px;
		height: 30px;
		top: -10px;
		right: 0px;
	}
	.batsu::before, .batsu::after {
		height: 20px;
	}
}
