@charset 'UTF-8';

.goodsCont > section#goods{
	padding-top: 40px;
}

/*-----------------------------------------------
	メイン画像
------------------------------------------------*/
.goodsCont .main-img {
	height: 560px;
	background: #eef7f8;
	margin-bottom: 50px;
}
.goodsCont .main-img .inner {
	width: 1390px;
	margin: 0 auto;
	position: relative;
}
.goodsCont .main-img .inner .orange-box {
	width: 535px;
	background: #FF7A29;
	color: #FFF;
	padding: 70px 55px 50px 65px;
	position: absolute;
	z-index: 1;
	right: 45px;
	top: 15px;
}
.goodsCont .main-img .inner .orange-box .main_h {
	margin-bottom: 20px;
	font-size: 52px;
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1.4em;
}
.goodsCont .main-img .inner .orange-box .main-text {
	margin-bottom: 35px;
}
.goodsCont .main-img .inner .orange-box .main-text span {
	padding-bottom: 6px;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.8em;
	letter-spacing: .1em;
	border-bottom: 2px solid #FFF;
}
.goodsCont .main-img .inner .orange-box ul{
	display: flex;
	gap: 10px;
}

/*メインイメージ*/
.goodsCont .main-img .inner .main-print {
	position: absolute;
	z-index: 2;
	left: -30px;
	top: -15px;
}


/*-----------------------------------------------
	種類一覧
------------------------------------------------*/
.goodsCont .choice-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	gap: 40px 0;
	width: 1000px;
	margin: 0 auto 70px;
}
.goodsCont .choice-type li {
	width: 485px;
}
.goodsCont .choice-type li img{
	box-shadow: 0px 2px 6.65px 0.35px rgba(0, 0, 0, 0.21);
}
.goodsCont .choice-type li a{
    display: block;
	transition: all 0.3s ease-out;
	position: relative;
}
.goodsCont .choice-type li a:hover{
	opacity: 0.6;
}
.goodsCont .choice-type li a:after {
	content: "";
	display: block;
	background: url(../../../../_images/type/goods/_common/choice_arrow.gif);
	width: 70px;
	height: 70px;
	position: absolute;
	bottom: -20px;
	right: 85px;
}
.goodsCont .choice-type li p{
    margin-top: 25px;
}



