@charset "UTF-8";

/* ▼▼▼ カテゴリー別商品一覧ページ
======================================================*/

/* ▼ 共通部分
----------------------------------------*/
footer {
	margin-top: 0 !important;
}

#main_middle {
	overflow: hidden;
}

h2,
h3,
h4 {
	font-weight: 600;
}

.font_noto {
	font-family: 'Noto Sans JP', sans-serif;
}

.font_shippori {
	font-family: 'Shippori Mincho', serif;
	font-weight: 400;
}

.buy_btn {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 320px;
	max-width: 100%;
	height: 65px;
	margin: 0 auto 0 0;
	background: #D1101F;
	font-size: 18px;
	font-weight: bold;
	color: #FFF;
	position: relative;
}

.buy_btn:hover,
.buy_btn:focus,
.buy_btn:active {
	color: #FFF;
}

.buy_btn::after {
	content: '';
	width: 8px;
	height: 8px;
	border-top: #FFF 1px solid;
	border-right: #FFF 1px solid;
	position: absolute;
	top: calc(50% - 4px);
	right: 15px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.buy_btn:hover {
	opacity: 0.6;
}

.product_block01 .buy_btn {
	background: #479D58;
}

.product_block02 .buy_btn {
	background: #87B962;
	margin-bottom: 20px;
}

.product_block03 .buy_btn {
	background: #BF9932;
	margin-bottom: 20px;
}

.product_block04 .buy_btn {
	background: #A33438;
	margin-bottom: 20px;
}

.product_block05 .buy_btn {
	background: #60A396;
}

.product_block06 .buy_btn {
	background: #A7946F;
}

.set_products .buy_btn {
	margin-top: 30px;
}


.dot_list li {
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
	line-height: 1.6;
}

.dot_list li::before {
	content: '・';
}

.pro_size li.pro_option {
	background-color: #DBDBDB;
	border: #DBDBDB 1px solid;
}

.date_wrap {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	width: 100%;
	max-width: 320px;
	height: 65px;
	margin: 0 auto 0 0;
	background: #FFF;
	border: #A33438 1px solid;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: .05em;
	color: inherit;
	transition: opacity .35s;
}

.date_wrap:hover {
	color: inherit;
	opacity: .8;
}

/* 商品情報共通 */
.pro_name {
	margin: 0 0 15px;
	font-size: 50px;
	font-weight: 500;
}

.pro_size li {
	padding: 2px 7px 1px;
	border: none;
	background: #FFF;
}

#set_area .pro_size li {
	background: #EEEBE6;
}


.pro_price {
	margin: 0 0 15px;
	font-size: 30px;
}

.pro_price .pro_price_tax {
	font-size: 12px;
	position: relative;
}
/* 数量限定アイコン（::before使用） */
.product_block.icon_limited_quantity-active .pro_price .pro_price_tax::before {
	content: '';
	width: 54px;
	height: 54px;
	background: url(../img/shinshu_2025/icon_limited_quantity.png) no-repeat center center/contain;
	position: absolute;
	bottom: 0;
	right: -64px;
}

/* 通販限定アイコン（::after使用、数量限定と同時表示可） */
.product_block.icon_order_only-active .pro_price .pro_price_tax::after {
	content: '';
	width: 54px;
	height: 54px;
	background: url(../img/shinshu_2025/icon_order%20only.png) no-repeat center center/contain;
	position: absolute;
	bottom: 0;
	right: -130px;
}

/* 数量限定と通販限定の両方がついている場合、通販限定の位置を調整（間隔12px） */
.product_block.icon_limited_quantity-active.icon_order_only-active .pro_price .pro_price_tax::after {
	right: -130px;
}

.pro_txt {
	margin: 0 0 30px;
	font-size: 14px;
	line-height: 2;
}


/* セット商品用共通クラス*/
.set_products .info_list .info_item {
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
}

.set_products .pro_price_wrap .pro_size {
	margin-bottom: 10px;
}

.set_products .pro_price_wrap .pro_size li {
	background: transparent;
}

.set_products .pro_price_wrap .pro_size li span {
	padding: 2px 7px 1px;
	border: none;
	background: #FFF;
}

.set_products .pro_price_wrap .pro_size li:last-child {
	background-color: #DBDBDB;
}

/* ▼ ヒーローイメージ
----------------------------------------*/
.top_area {
	background: url(../img/shinshu_2022/bg_main.jpg) repeat-y center top/100%;
}

h1#main_img {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0 auto 120px 0;
	text-align: left;
	background: linear-gradient(#FFF 50%, rgba(255, 255, 255, 0) 50%);
}

h1#main_img img {
	width: 80.5%;
	max-width: 80.5%;
}

#read_area {
	margin-bottom: 0;
	position: relative;
}

#read_area::before {
	content: '';
	width: calc(50vw - 103px);
	height: 500px;
	background: url(../img/shinshu_2022/img_01.jpg) no-repeat center center/cover;
	position: absolute;
	top: 0;
	right: 0;
}

.read_block {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	height: 500px;
}

.read_block .read_txt {
	-webkit-flex: 0 0 56%;
	-ms-flex: 0 0 56%;
	flex: 0 0 56%;
	width: 56%;
	max-width: 56%;
}

.read_block h2 {
	margin: 0 0 10px;
	color: #BF9932;
	font-size: 53px;
	font-weight: 400;
	letter-spacing: 0.15em;
}

.read_block p {
	font-size: 16px;
	line-height: 2.4;
}

.read_atte {
	margin: 60px 0 0;
}

.read_atte p {
	margin: 0;
	padding: 30px 10px;
	border: #A33438 1px solid;
	font-size: 18px;
	text-align: center;
	letter-spacing: .05em;
}

/* 商品情報 */
.product_area {
	padding: 0 0 55px;
}

.product_area.product_area_bg {
	background: url(../img/shinshu_2022/bg_main.jpg) repeat-y center top/100%;
}

.product_block {
	margin: 100px 0 55px;
	position: relative;
}

.product_flex {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
}

.product_block.product_block_rr .product_flex {
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.product_block .img_wrap {
	-webkit-flex: 0 0 46.6%;
	-ms-flex: 0 0 46.6%;
	flex: 0 0 46.6%;
	width: 46.6%;
	max-width: 46.6%;
	position: relative;
}

.product_block .img_wrap::before {
	content: '';
	width: 535px;
	height: 500px;
	position: absolute;
	bottom: -5px;
	left: -57px;
	z-index: 1;
}

.product_block.product_block_rr .img_wrap::before {
	left: auto;
	right: -57px;
}

.product_block.product_block01 .img_wrap::before {
	background: url(../img/shinshu_2025/bg_pro01.png) no-repeat center center/contain;
}

.product_block.product_block02 .img_wrap::before {
	background: url(../img/shinshu_2025/bg_pro02.png) no-repeat center center/contain;
}

.product_block.product_block03 .img_wrap::before {
	background: url(../img/shinshu_2025/bg_pro03.png) no-repeat center center/contain;
	/* left: -90px; */
}
.product_block.product_block04 .img_wrap::before {
	background: url(../img/shinshu_2025/bg_pro04.png) no-repeat center center/contain;
	/* left: 0px;
	 transform: scaleX(-1);*/
}

.product_block.product_block05 .img_wrap::before {
	background: url(../img/shinshu_2025/bg_pro05.png) no-repeat center center/contain;
}

.product_block.product_block06 .img_wrap::before {
	background: url(../img/shinshu_2025/bg_pro06.png) no-repeat center center/contain;
}

.product_block .img_inner {
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.product_block.product_block01 .img_inner {
	max-width: 150px;
}

.product_block.product_block02 .img_inner {
	max-width: 270px;
}

.product_block.product_block03 .img_inner {
	max-width: 132px;
}

.product_block.product_block04 .img_inner {
	max-width: 130px;
}

.product_block.product_block05 .img_inner {
	max-width: 370px;
}

.product_block.product_block06 .img_inner {
	max-width: 340px;
}

.product_block .txt_wrap {
	-webkit-flex: 0 0 48.5%;
	-ms-flex: 0 0 48.5%;
	flex: 0 0 48.5%;
	width: 48.5%;
	max-width: 48.5%;
}

.info_area {
	margin: 60px 0 60px;
}

.info_list {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
}

.info_item {
	-webkit-flex: 0 0 32%;
	-ms-flex: 0 0 32%;
	flex: 0 0 32%;
	width: 32%;
	max-width: 32%;
	background: #F0EFED;
}

.info_inner {
	padding: 25px;
}

.info_title {
	padding-bottom: 10px;
	margin: 0 0 20px;
	border-bottom: #BF9932 1px solid;
	font-size: 24px;
	font-weight: 500;
}

.info_area01 .info_title {
	border-bottom-color: #479D58;
}

.info_area02 .info_title {
	border-bottom-color: #87B962;
}

.info_area03 .info_title {
	border-bottom-color: #BF9932;
}

.info_area04 .info_title {
	border-bottom-color: #A33438;
}

.set_products .info_list .info_title {
	border-bottom: #9B9995 1px solid;
}

.info_state {
	width: 100%;
	font-size: 15px;
}

.info_state th {
	padding: 2px 1em 2px 0;
	font-weight: normal;
}

.info_txt {
	font-size: 18px;
}

.food_area {
	padding-bottom: 55px;
}

.food_block {
	border-bottom: #000 1px dashed;
}

.food_title {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	margin-bottom: 25px;
}

.food_title::before,
.food_title::after {
	content: '';
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	height: 1px;
	border-bottom: #000 1px dashed;
}

.food_title span {
	display: block;
	-webkit-flex: 0 0 254px;
	-ms-flex: 0 0 254px;
	flex: 0 0 254px;
	width: 254px;
	max-width: 254px;
	margin: 0 25px;
}

.food_list {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
}

.food_list li {
	-webkit-flex: 0 0 260px;
	-ms-flex: 0 0 260px;
	flex: 0 0 260px;
	width: 260px;
	max-width: 260px;
	margin-bottom: 10px;
}

.food_list .food_img {
	max-width: 210px;
	margin: 0 auto;
}

.food_list .food_name {
	margin: 0;
	padding: 10px 0;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	letter-spacing: .05em;
}



/* 酒林の飾りつけ */
#sakabayashi_area {
	padding: 80px 0;
	background: url(../img/shinshu_2022/bg_circle.png) no-repeat left calc(50vw + 317px) top 80px/455px, #E6DBC9;
}

.sakabayashi_wrap {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
}

.sakabayashi_wrap .img_wrap {
	-webkit-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	width: 50%;
	max-width: 50%;
}

.sakabayashi_wrap .txt_wrap {
	-webkit-flex: 0 0 43.5%;
	-ms-flex: 0 0 43.5%;
	flex: 0 0 43.5%;
	width: 43.5%;
	max-width: 43.5%;
}

.sakabayashi_wrap .txt_wrap h2 {
	margin: 0 0 40px;
	font-size: 46px;
	font-weight: 500;
	letter-spacing: 0.15em;
}

.sakabayashi_wrap .txt_wrap p {
	line-height: 2.4;
}

/* 贈答にもおすすめ */
#forgift_area {
	padding: 80px 0;
	background: url(../img/shinshu_2022/bg_main.jpg) repeat-y center top/100%;
}

.forgift_wrap {
	padding: 30px 0;
	position: relative;
	background:
		url(../img/shinshu_2022/bg_border_lt.png) no-repeat left top/31px,
		url(../img/shinshu_2022/bg_border_rt.png) no-repeat right top/31px,
		url(../img/shinshu_2022/bg_border_lb.png) no-repeat left bottom/31px,
		url(../img/shinshu_2022/bg_border_rb.png) no-repeat right bottom/31px;
}

.forgift_wrap::before,
.forgift_wrap::after {
	content: '';
	width: calc(100% - 60px);
	height: 31px;
	position: absolute;
	left: 30px;
}

.forgift_wrap::before {
	background: url(../img/shinshu_2022/bg_border_t.png) repeat-x center top/10px;
	top: 0;
}

.forgift_wrap::after {
	background: url(../img/shinshu_2022/bg_border_b.png) repeat-x center bottom/10px;
	bottom: 0;
}

.forgift_block {
	padding: 10px 50px;
	background: url(../img/shinshu_2022/bg_border_l.png) repeat-y left center/31px, url(../img/shinshu_2022/bg_border_r.png) repeat-y right center/31px, #FFF;
}

.forgift_wrap h2 {
	margin: 0 auto 20px;
	font-size: 34px;
	font-weight: normal;
	text-align: center;
	line-height: 1.35;
}

.forgift_wrap p {
	margin: 0 auto;
	font-size: 16px;
	text-align: center;
}

/* ギフトサービス */
#gift_area {
	padding: 90px 0 75px;
	background: #fff;
	overflow: hidden;
	position: relative;
}

#gift_area .gift_title_wrap {
	margin-bottom: 50px;
	text-align: center;
}

#gift_area .gift_title {
	display: inline-block;
}

#gift_area .gift_title .gift_title_inner {
	display: inline-block;
}

#gift_area .gift_title h2 {
	margin: 0 0 0;
	font-size: 46px;
	text-align: center;
	font-weight: 500;
	letter-spacing: .05em;
}

#gift_area .gift_title p {
	margin: 0;
	font-size: 18px;
	text-align: center;
}

#gift_area .gift_wrap .gift_around {
	margin-bottom: 70px;
}

.title_gift {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	align-content: center;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 40px;
}

.title_gift::before,
.title_gift::after {
	content: '';
	-webkit-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	width: 50%;
	max-width: calc(50% - 50px);
	height: 20px;
	vertical-align: middle;
}

.title_gift::before {
	background: url(../img/shinshu_2022/title_gift_l.png) no-repeat center center/100% 13px;
}

.title_gift::after {
	background: url(../img/shinshu_2022/title_gift_r.png) no-repeat center center/100% 13px;
}

.title_gift span {
	font-size: 30px;
	vertical-align: middle;
}

#gift_area .gift_wrap .gift_around .gift_flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	max-width: 100%;
	margin: 0 auto;
}

#gift_area .gift_wrap .gift_around .gift_flex .img_wrap {
	-webkit-flex: 0 0 32.2%;
	-moz-flex: 0 0 32.2%;
	-ms-flex: 0 0 32.2%;
	-o-flex: 0 0 32.2%;
	flex: 0 0 32.2%;
	width: 32.2%;
	max-width: 235px;
}

#gift_area .gift_wrap .gift_around .gift_flex .txt_wrap {
	-webkit-flex: 0 0 65%;
	-moz-flex: 0 0 65%;
	-ms-flex: 0 0 65%;
	-o-flex: 0 0 65%;
	flex: 0 0 65%;
	width: 65%;
	max-width: 65%;
}

#gift_area .gift_wrap .gift_around .gift_flex .txt_wrap h4 {
	margin: 0 0 20px;
	font-size: 20px;
}

#gift_area .gift_wrap .gift_around .gift_flex .txt_wrap p {
	margin: 0;
	font-size: 18px;
}

#gift_area .gift_wrap .gift_around .gift_box {
	margin-bottom: 100px;
}

#gift_area .gift_wrap .gift_around .gift_box_flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	margin-bottom: 100px;
}

#gift_area .gift_wrap .gift_around .gift_box_flex .gift_box {
	-webkit-flex: 0 0 442px;
	-moz-flex: 0 0 442px;
	-ms-flex: 0 0 442px;
	-o-flex: 0 0 442px;
	flex: 0 0 442px;
	width: 442px;
	max-width: 442px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	margin-bottom: 0;
}

#gift_area .gift_wrap .gift_around .gift_box_flex .gift_box p {
	margin: 0;
	font-size: 14px;
	text-align: center;
}

#gift_area .gift_wrap .gift_around .gift_box>div {
	-webkit-flex: 0 0 215px;
	-moz-flex: 0 0 215px;
	-ms-flex: 0 0 215px;
	-o-flex: 0 0 215px;
	flex: 0 0 215px;
	width: 215px;
	max-width: 215px;
}

#gift_area .gift_wrap .gift_around .gift_read {
	-webkit-flex: 0 0 536px;
	-moz-flex: 0 0 536px;
	-ms-flex: 0 0 536px;
	-o-flex: 0 0 536px;
	flex: 0 0 536px;
	width: calc(100% - 460px);
	max-width: calc(100% - 460px);
	margin-bottom: 0;
}

#gift_area .gift_wrap .gift_around .gift_read h4 {
	margin: 0 0 10px;
	font-size: 16px;
}

#gift_area .gift_wrap .gift_around .gift_read p,
#gift_area .gift_wrap .gift_around .gift_read ul {
	font-size: 14px;
}

#gift_area .gift_wrap .gift_around .gift_read ul {
	margin-bottom: 30px;
}

#gift_area .gift_wrap .gift_around .gift_read ul li {
	margin-bottom: 8px;
}

#gift_area .gift_wrap .gift_around .gift_read ul li::before {
	content: '◎';
}

#gift_area .gift_wrap .gift_around .gift_read .gift_flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: flex-start;
	align-items: flex-start;
	align-content: flex-start;
}

#gift_area .gift_wrap .gift_around .gift_read .gift_flex .gift_txt {
	-webkit-flex: 0 0 260px;
	-moz-flex: 0 0 260px;
	-ms-flex: 0 0 260px;
	-o-flex: 0 0 260px;
	flex: 0 0 260px;
	width: calc(100% - 273px);
	max-width: calc(100% - 273px);
}

#gift_area .gift_wrap .gift_around .gift_read .gift_flex .gift_txt p {
	margin: 0;
}

#gift_area .gift_wrap .gift_around .gift_read .gift_flex .ex_img {
	-webkit-flex: 0 0 268px;
	-moz-flex: 0 0 268px;
	-ms-flex: 0 0 268px;
	-o-flex: 0 0 268px;
	flex: 0 0 268px;
	width: 268px;
	max-width: 268px;
	border: 1px #000 solid;
}

#gift_area .gift_wrap .gift_around .noshi_flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

#gift_area .gift_wrap .gift_around .noshi_flex .noshi_wrap {
	-webkit-flex: 0 0 225px;
	-moz-flex: 0 0 225px;
	-ms-flex: 0 0 225px;
	-o-flex: 0 0 225px;
	flex: 0 0 225px;
	width: 225px;
	max-width: 225px;
}

#gift_area .gift_wrap .gift_around .noshi_wrap h4 {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1.1;
}

#gift_area .gift_wrap .gift_around .noshi_wrap h4 span {
	font-size: 14px;
}

#gift_area .gift_wrap .gift_around .noshi_wrap .noshi_img {
	margin-bottom: 10px;
}

#gift_area .gift_wrap .gift_around .noshi_wrap .noshi_list li {
	line-height: 1.6;
}

#gift_area .gift_wrap .gift_around .noshi_wrap .noshi_list,
#gift_area .gift_wrap .gift_around .noshi_wrap p {
	margin: 0;
	font-size: 14px;
}

#gift_area .gift_wrap .gift_around .noshi_wrap p.kome {
	font-size: 12px;
}

/* 八重垣 */
#yaegaki_area {
	padding: 100px 0;
	background: url(../img/shinshu_2022/bg_main.jpg) repeat-y center top/100%;
}

.yaegaki_wrap {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	align-content: center;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.yaegaki_wrap .img_wrap {
	-webkit-flex: 0 0 40%;
	-ms-flex: 0 0 40%;
	flex: 0 0 40%;
	width: 40%;
	max-width: 40%;
	position: relative;
	z-index: 1;
}

.yaegaki_wrap .txt_wrap {
	-webkit-flex: 0 0 54%;
	-ms-flex: 0 0 54%;
	flex: 0 0 54%;
	width: 54%;
	max-width: 54%;
	position: relative;
	z-index: 0;
}

.yaegaki_wrap .txt_wrap::before {
	content: '';
	width: 350px;
	max-width: 65%;
	height: 312px;
	background: url(../img/shinshu_2022/bg_yaegaki.png) no-repeat center center/contain;
	position: absolute;
	top: -130px;
	right: 0;
	z-index: 1;
}

.yaegaki_wrap .txt_wrap h2,
.yaegaki_wrap .txt_wrap p {
	position: relative;
	z-index: 1;
}

.yaegaki_wrap .txt_wrap h2 {
	margin: 0 0 40px;
	font-size: 50px;
	font-weight: 500;
	letter-spacing: 0.15em;
}

.yaegaki_wrap .txt_wrap p {
	line-height: 2.4;
}

/* ▼▼▼ 480px〜768px
======================================================*/
@media screen and (max-width: 767px) {

	/* ▼ 共通部分
	----------------------------------------*/
	.buy_btn {
		width: 280px;
		margin: 0 auto;
	}

	.buy_btn:hover {
		opacity: 1;
	}

	.date_wrap {
		width: 280px;
		margin: 0 auto;
	}

	/* 商品情報共通 */
	.pro_name {
		margin: 0 0 15px;
		font-size: 30px;
	}

	.pro_size {
		margin-bottom: 0;
	}

	.pro_price {
		margin: 0 0 15px !important;
		font-size: 30px;
	}
	/* 数量限定アイコン（スマホ） */
	.product_block.icon_limited_quantity-active .pro_price .pro_price_tax::before {
		width: 36px;
		height: 36px;
		right: -40px;
	}

	/* 通販限定アイコン（スマホ） */
	.product_block.icon_order_only-active .pro_price .pro_price_tax::after {
		width: 36px;
		height: 36px;
		right: -88px;
	}

	/* 数量限定と通販限定の両方がついている場合（スマホ、間隔12px） */
	.product_block.icon_limited_quantity-active.icon_order_only-active .pro_price .pro_price_tax::after {
		right: -88px;
	}

	.pro_txt {
		line-height: 2;
	}

	/* ▼ ヒーローイメージ
	----------------------------------------*/
	h1#main_img {
		margin: 0 auto 50px;
	}

	h1#main_img img {
		width: 100%;
		max-width: 100%;
	}

	#read_area {
		padding-top: 280px;
		height: auto;
		margin-bottom: 0;
		position: relative;
	}

	#read_area::before {
		content: '';
		width: 290px;
		height: 250px;
	}

	.read_block {
		display: block;
		height: auto;
	}

	.read_block .read_txt {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
	}

	.read_block h2 {
		margin: 0 0 10px;
		font-size: 30px;
		letter-spacing: 0.15em;
	}

	.read_block p {
		margin: 0;
		font-size: 16px;
		line-height: 2;
	}

	.read_atte {
		margin: 40px 0 0;
		padding: 0 20px;
	}

	/* 商品情報 */
	.product_area {
		padding: 30px 0;
	}

	.product_block {
		margin: 20px 0;
		position: relative;
	}

	.product_block:not(:first-of-type) {
		margin: 50px 0 40px;
	}

	.product_block::before {
		width: calc(100% - 20px);
		height: 305px;
		top: 30px;
	}

	.product_flex {
		display: block;
	}

	.product_block .img_wrap {
		width: 100%;
		max-width: 100%;
		margin-bottom: 20px;
		position: relative;
	}

	.product_block .img_wrap::before {
		width: 320px;
		height: 297px;
		bottom: 5px;
		left: 0px;
	}

	.product_block.product_block_rr .img_wrap::before {
		left: auto;
		right: 20px;
		bottom: -10px;
	}

	.product_block .img_inner {
		width: 100%;
		/*max-width: 200px;*/
		margin: 0 auto;
		position: relative;
		z-index: 2;
	}

	.product_block.product_block01 .img_inner {
		max-width: 70px;
	}

	.product_block.product_block02 .img_inner {
		max-width: 180px;
	}

	.product_block.product_block03 .img_inner {
		max-width: 65px;
	}

	.product_block.product_block04 .img_inner {
		max-width: 65px;
	}

	.product_block.product_block05 .img_inner {
		max-width: 270px;
	}

	.product_block.product_block06 .img_inner {
		max-width: 180px;
	}

	.product_block .txt_wrap {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
	}

	.info_area {
		margin: 40px 0 35px;
	}

	.info_list {
		display: block;
		padding: 0 20px;
	}

	.info_item {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		background: #F0EFED;
	}

	.info_item:last-child {
		margin-bottom: 0;
	}

	.info_inner {
		padding: 20px;
	}

	.info_title {
		padding-bottom: 10px;
		margin: 0 0 15px;
		font-size: 21px;
		font-weight: 500;
	}

	.info_state {
		font-size: 13px;
	}

	.info_txt {
		font-size: 15px;
	}

	.food_area {
		padding: 0 20px 30px;
	}

	.food_block {
		border-bottom: #000 1px dashed;
	}

	.food_title {
		margin-top: 0;
		margin-bottom: 20px;
	}

	.food_title span {
		-webkit-flex: 0 0 162px;
		-ms-flex: 0 0 162px;
		flex: 0 0 162px;
		width: 162px;
		max-width: 162px;
		margin: 0 10px;
	}

	.food_list {
		justify-content: space-between;
	}

	.food_list li {
		-webkit-flex: 0 0 95px;
		-ms-flex: 0 0 95px;
		flex: 0 0 95px;
		width: 95px;
		max-width: 95px;
		margin-bottom: 10px;
	}

	.food_list .food_img {
		max-width: 100%;
		margin: 0 auto;
	}

	.food_list .food_name {
		font-size: 12px;
	}

	/* 新酒セット */
	#set_area {
		padding: 30px 0 70px;
	}

	.set_title {
		margin: 0 0 30px;
	}

	.set_title .set_title_sub {
		font-size: 16px;
	}

	.set_title .set_title_main {
		font-size: 30px;
	}

	.set_wrap {
		padding: 380px 0 0;
		position: relative;
	}

	.set_wrap .img_wrap {
		width: calc(100% - 20px);
		max-width: calc(100% - 20px);
		height: 360px;
		background: url(../img/shinshu_2022/img_pro03.jpg) no-repeat center center/cover;
	}

	.set_block .txt_wrap {
		width: 100%;
		max-width: 100%;
	}

	.set_block .set_reco span {
		font-size: 18px;
	}

	.set_block .txt_box {
		background: #FFF;
		padding: 20px;
	}

	.product_block04 .info_list {
		padding: 0;
	}

	.product_block.product_block03 .img_wrap::before {
		left: 0;
	}

	/* 酒林の飾りつけ */
	#sakabayashi_area {
		padding: 60px 0 30px;
		background: url(../img/shinshu_2022/bg_circle.png) no-repeat left 50vw center/284px, #E6DBC9;
	}

	.sakabayashi_wrap {

		display: block;
	}

	.sakabayashi_wrap .img_wrap {
		width: 270px;
		max-width: 270px;
		margin: 0 auto 25px;
	}

	.sakabayashi_wrap .txt_wrap {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
	}

	.sakabayashi_wrap .txt_wrap h2 {
		margin: 0 0 20px;
		font-size: 26px;
	}

	.sakabayashi_wrap .txt_wrap p {
		line-height: 2;
	}

	/* 贈答にもおすすめ */
	#forgift_area {
		padding: 50px 20px;
		background: url(../img/shinshu_2022/bg_main.jpg) repeat-y center top/100%;
	}

	.forgift_wrap {
		padding: 30px 0;
		position: relative;
		background:
			url(../img/shinshu_2022/bg_border_lt.png) no-repeat left top/31px,
			url(../img/shinshu_2022/bg_border_rt.png) no-repeat right top/31px,
			url(../img/shinshu_2022/bg_border_lb.png) no-repeat left bottom/31px,
			url(../img/shinshu_2022/bg_border_rb.png) no-repeat right bottom/31px;
	}

	.forgift_wrap::before,
	.forgift_wrap::after {
		content: '';
		width: calc(100% - 60px);
		height: 31px;
		position: absolute;
		left: 30px;
	}

	.forgift_wrap::before {
		background: url(../img/shinshu_2022/bg_border_t.png) repeat-x center top/10px;
		top: 0;
	}

	.forgift_wrap::after {
		background: url(../img/shinshu_2022/bg_border_b.png) repeat-x center bottom/10px;
		bottom: 0;
	}

	.forgift_block {
		padding: 10px 30px;
		background: url(../img/shinshu_2022/bg_border_l.png) repeat-y left center/31px, url(../img/shinshu_2022/bg_border_r.png) repeat-y right center/31px, #FFF;
	}

	.forgift_wrap h2 {
		margin: 0 auto 20px;
		font-size: 24px;
	}

	.forgift_wrap p {
		font-size: 14px;
		text-align: left;
	}

	/* ギフトサービス */
	#gift_area {
		padding: 50px 0 0;
	}

	#gift_area .gift_title_wrap {
		padding: 0 20px;
	}

	#gift_area .gift_title h2 {
		margin-bottom: 5px;
		font-size: 26px;
	}

	#gift_area .gift_title p {
		margin: 0;
		font-size: 16px;
		line-height: 1.4;
	}

	#gift_area .gift_wrap .gift_around {
		max-width: calc(100% - 30px);
		margin: 0 auto 30px;
	}

	.title_gift {
		margin-bottom: 30px;
	}

	.title_gift::before,
	.title_gift::after {
		max-width: calc(50% - 30px);
		height: 16px;
	}

	.title_gift span {
		font-size: 20px;
	}

	#gift_area .gift_wrap .gift_around .gift_flex {
		display: block;
		max-width: 100%;
		margin: 0 auto;
	}

	#gift_area .gift_wrap .gift_around .gift_flex .img_wrap {
		width: 100%;
		max-width: 100%;
		margin-bottom: 10px;
	}

	#gift_area .gift_wrap .gift_around .gift_flex .txt_wrap {
		margin: 0 auto;
		width: 100%;
		max-width: 100%;
	}

	#gift_area .gift_wrap .gift_around .gift_flex .txt_wrap h4 {
		margin: 0 0 10px;
		font-size: 16px;
	}

	#gift_area .gift_wrap .gift_around .gift_flex .txt_wrap p {
		margin: 0;
		font-size: 14px;
	}

	#gift_area .gift_wrap .gift_around .gift_box {
		margin-bottom: 70px;
	}

	#gift_area .gift_wrap .gift_around .gift_box_flex {
		display: block;
		margin-bottom: 30px;
	}

	#gift_area .gift_wrap .gift_around .gift_box_flex .gift_box {
		margin: 0 auto 10px;
		width: 100%;
		max-width: 100%;
	}

	#gift_area .gift_wrap .gift_around .gift_box_flex .gift_box p {
		margin: 0;
		font-size: 12px;
		text-align: center;
	}

	#gift_area .gift_wrap .gift_around .gift_box>div {
		-webkit-flex: 0 0 48%;
		-moz-flex: 0 0 48%;
		-ms-flex: 0 0 48%;
		-o-flex: 0 0 48%;
		flex: 0 0 48%;
		width: 48%;
		max-width: 48%;
	}

	#gift_area .gift_wrap .gift_around .gift_read {
		margin: 0 auto 10px;
		width: 100%;
		max-width: 100%;
	}

	#gift_area .gift_wrap .gift_around .gift_read h4 {
		margin: 0 0 10px;
		font-size: 16px;
	}

	#gift_area .gift_wrap .gift_around .gift_read .gift_flex {
		display: block;
	}

	#gift_area .gift_wrap .gift_around .gift_read .gift_flex .gift_txt {
		margin: 0 auto 10px;
		width: 100%;
		max-width: 100%;
	}

	#gift_area .gift_wrap .gift_around .gift_read .gift_flex .gift_txt p {
		margin: 0;
		text-align: left;
	}

	#gift_area .gift_wrap .gift_around .gift_read .gift_flex .ex_img {
		margin: 0 auto 10px;
		width: 268px;
		max-width: 100%;
	}

	#gift_area .gift_wrap .gift_around .noshi_flex .noshi_wrap {
		-webkit-flex: 0 0 48%;
		-moz-flex: 0 0 48%;
		-ms-flex: 0 0 48%;
		-o-flex: 0 0 48%;
		flex: 0 0 48%;
		width: 48%;
		max-width: 48%;
		margin-bottom: 20px;
	}

	#gift_area .gift_wrap .gift_around .noshi_wrap h4 {
		font-size: 16px;
	}

	#gift_area .gift_wrap .gift_around .noshi_wrap h4 span {
		font-size: 11px;
	}

	#gift_area .gift_wrap .gift_around p.kome {
		font-size: 12px;
	}

	/* 八重垣 */
	#yaegaki_area {
		padding: 70px 0;
		background: url(../img/shinshu_2022/bg_main.jpg) repeat-y center top/100%;
	}

	.yaegaki_wrap {
		display: block;
	}

	.yaegaki_wrap .img_wrap {
		width: 100%;
		max-width: 270px;
		margin: 0 auto 30px;
	}

	.yaegaki_wrap .txt_wrap {
		width: 100%;
		max-width: 100%;
		padding: 0 30px;
	}

	.yaegaki_wrap .txt_wrap::before {
		content: '';
		width: 153px;
		max-width: 153px;
		height: 136px;
		top: -40px;
		right: 2px;
	}

	.yaegaki_wrap .txt_wrap h2 {
		margin: 0 0 10px;
		font-size: 30px;
		letter-spacing: 0.15em;
	}

	.yaegaki_wrap .txt_wrap p {
		line-height: 2;
	}
}