@charset "utf-8";

/* ============== 共通 =================== */
#contents {
	color: #251500;
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
	background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/contents_bg.png) top center/50px repeat;
	padding: 0;
	overflow: hidden;
}

#contents * {
	box-sizing: border-box;
}

#contents a {
	color: #0099cc;
	text-decoration: underline;
}

#contents a:hover {
	opacity: 0.7;
}

figure {
	margin: 0;
}

.display_sp {
	display: none;
}

.end_txt {
	color: #f50028;
	background-color: #fff;
	font-size: 180%;
	font-weight: 700;
	text-align: center;
	padding: 20px 0;
	line-height: 1;
}

.mt-0 {
	margin-top: 0px !important;
}

.mt-10 {
	margin-top: 10px !important;
}

/*注釈テキスト*/
.note_txt {
	font-size: 12px;
	line-height: 1.6;
	font-weight: normal;
	color: #999;
	text-indent: -1em;
	padding-left: 1em;
}

/*角丸ブロック*/
.round_block {
	border-radius: 8px;
}

/*マーカー*/
.line_txt {
	display: inline;
	background: linear-gradient(transparent 70%, #fee661 0%);
	/* 任意 */
	padding: 0 5px;
}

/*強調カラーテキスト*/
.em_font {
	color: #F50028;
}

/*太字*/
.bold_font {
	font-weight: 700;
}

/*中黒リスト*/
.dot_list {
	text-indent: -1em;
	padding-left: 1em;
}

/*(数字)リスト*/
.num_list {
	text-indent: -1.4em;
	padding-left: 1.5em;
	counter-reset: number 0;
}

.num_list>li::before {
	counter-increment: number 1;
	content: "(" counter(number) ")";
}

/* ============== top =================== */
.top_ttl {
	background: #ffecd5 url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/mv_bg.png) top center/50% repeat;
	font-size: 0;
}

.top_date {
	display: grid;
	place-items: center;
	background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/date_bg.png) top center/150px repeat;
	padding: 14px;
}

.top_date img {
	max-width: 460px;
}

/* ============== 追従パーツ =================== */
.follow_parts {
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
	position: fixed;
	right: 10px;
	bottom: 10px;
	text-align: center;
	width: 140px;
	z-index: 100;
}

.follow_parts.show {
	visibility: visible;
	opacity: 1;
	transition: 0.5s;
}

.follow_parts a:hover {
	opacity: 0.7;
}

/* ============== アコーディオン =================== */
.acd {
	overflow: hidden;
}

.acd_ttl {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	font-weight: 700;
}

.acd_ttl::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	opacity: 0;
	transition: opacity 0.3s ease-out;
}

.acd_ttl.open::after {
	opacity: 1;
	transition: opacity 0.3s ease-out;
}

.acd_ttl .acd_text {
	flex-grow: 1;
	text-align: center;
}

.acd_icon {
	margin-left: auto;
	position: relative;
	display: inline-block;
	width: 13px;
	height: 13px;
}

.acd_icon::before,
.acd_icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transition: transform 0.3s ease-out;
}

.acd_icon::before {
	transform: translateY(-50%);
}

.acd_icon::after {
	transform: translateY(-50%) rotate(90deg);
}

.acd_ttl.open .acd_icon::after {
	transform: translateY(-50%) rotate(0deg);
}

.acd_box {
	max-height: 0;
	padding: 0 70px;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.acd_box .acd_box_inner {
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease-out, transform 0.3s ease-out;
	padding: 25px 0 30px;
	text-align: left;
	/* width:calc(100% - 60px); */
	max-width: 970px;
	margin: 0 auto;
}

.acd_ttl.open+.acd_box .acd_box_inner {
	opacity: 1;
	transform: translateY(0);
}

/*--- 注意事項 ---*/
.acd.caution {
	border-top: 1px solid #F50028;
	border-bottom: 1px solid #F50028;
	background-color: #fff;
}

.caution .acd_ttl {
	color: #F50028;
	background-color: #FFF3F3;
	padding: 10px 15px 10px 30px;
}

.caution .acd_ttl::after,
.caution .acd_icon::before,
.caution .acd_icon::after {
	background-color: #F50028;
}

/*--- お品書き ---*/
.acd.menu {
	border-radius: 8px;
	border: 1px solid #5E3F18;
}

.menu .acd_ttl {
	color: #5E3F18;
	padding: 10px 15px 10px 30px;
	background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/acd_menu_bg.png) 0 0/106px auto repeat;
	font-size: 16px;
}

.menu .acd_ttl::after,
.menu .acd_icon::before,
.menu .acd_icon::after {
	background-color: #5E3F18;
}

.menu .acd_box {
	background-color: #fff;
}

.menu .acd_box_inner {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.menu_unit dt {
	color: #5E3F18;
	padding: 5px;
	border: 1px solid #5E3F18;
	display: inline-flex;
	margin-bottom: 10px;
}

.menu_detail {
	color: #5E3F18;
	font-size: 12px;
}

/* ============== ナビ =================== */
.nav {
	width: calc(100% - 60px);
	max-width: 970px;
	margin: 40px auto;
}

.nav_top,
.nav_bottom {
	display: grid;
	gap: 15px;
}

.nav_top {
	grid-template-columns: repeat(2, 1fr);
}

.nav_bottom {
	margin-top: 15px;
	grid-template-columns: repeat(3, 1fr);
}

/* ============== スライダー =================== */
.swiper-wrapper.osechi_list {
	justify-content: unset;
	flex-wrap: nowrap;
	gap: unset;
}

/* .swiper.osechi_list_wrap {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
} */
.swiper-slide.osechi_slide {
	width: calc(100% - 120px);
	max-width: 500px;
	flex-shrink: 0;
}

#contents .swiper-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	position: static;
	margin-top: 10px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0;
}

#contents .swiper-pagination-bullet {
	background-color: #EFE6C9;
	opacity: 1;
	width: 10px;
	height: 10px;
}

#contents .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #9C7441;
}

/* ============== sec共通 =================== */
.sec_wrap.osechi {
	background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/sec_bg.png) 0 0/150px repeat;
	display: flex;
	flex-direction: column;
	gap: 70px;
	padding-bottom: 70px;
}

.osechi .sec_point {
	background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/sec_ttl_pc_deco.png), url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/sec_point_pc.png);
	background-repeat: no-repeat, repeat-x;
	background-size: auto, auto 100%;
	background-position: center bottom;
	height: 110px;
	color: #FFFDF6;
	font-size: 26px;
	line-height: 1;
	font-weight: 700;
	display: grid;
	place-items: center;
	padding-top: 10px;
}

.osechi .sec_point .sec_point_em {
	font-size: 40px;
}

.sec_inner {
	width: calc(100% - 60px);
	max-width: 970px;
	margin: 0 auto;
	padding: 35px 70px;
	border-radius: 8px;
	background: #fff url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/sec_inner_bg.png) 0 0/375px repeat;
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sec_ttl_wrap {
	position: relative;
	margin-bottom: 10px;
}

.sec_ttl {
	color: #5E3F18;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

.osechi .sec_ttl {
	padding-bottom: 25px;
	background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/sec_subttl_bg_pc.png) center bottom/auto 5px repeat-x;
	position: relative;
}

.osechi .sec_ttl::after {
	display: block;
	content: "";
	width: 25px;
	height: 26px;
	background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/sec_subttl_deco.png) center bottom/contain no-repeat;
	left: 0;
	right: 0;
	margin: auto;
	bottom: -10px;
	position: absolute;
}

.sec_ttl_lead {
	display: block;
	margin-bottom: 5px;
}

.sec_ttl_name img {
	max-height: 35px;
	width: auto;
}

.sec_ttl_icon {
	position: absolute;
	right: 0;
	bottom: 25px;
	z-index: 2;
	width: 202px;
}

.sec_lead-txt {
	text-align: left;
}

.sec_product {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.sec_price_wrap {
	flex: 0 0 auto;
}

.sec_price {
	color: #CC6B41;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
	text-align: right;
}

.sec_price span {
	font-size: 26px;
}

/* 前期送料 */
.sec_delivery {
	display: inline-flex;
	align-items: center;
	background-color: #EFE6C9;
	padding: 2px 6px;
	font-size: 12px;
}

.sec_delivery span {
	font-weight: 700;
}

/* 後期送料 */
.sec_delivery_late {
	padding: 2px 3px 2px 2px;
	gap:3px;
}
.sec_delivery_late p:first-of-type {
	background-color: #FFFDF6;
	padding: 0 5px;
	color: #5E3F18;
}
.sec_delivery_late p:last-of-type {
	font-size: 10px;
}

/*--- カタログ ---*/
.catalog {
	display: flex;
	align-items: stretch;
	box-sizing: border-box;
	flex-shrink: 0;
	background-color: #FFFDF6;
}

.catalog_unit {
	display: flex;
	flex-direction: column;
}

.catalog_unit dt {
	color: #5E3F18;
	background-color: #EFE6C9;
	font-weight: 700;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 10px;
	border-right: 1px solid #FFFDF6;
}

.catalog_unit:nth-of-type(n+6) dt {
	border-color: #EFE6C9;
}

.catalog dd {
	padding: 10px;
	border: 1px;
	border-width: 1px;
	border-style: solid;
	border-color: #EFE6C9;
	display: flex;
	align-items: center;
	justify-content: center;
}

.catalog_unit>dd:first-of-type {
	flex: 1;
}

.catalog_unit:nth-of-type(n+2) dd {
	border-left: 0;
}

.catalog dd+dd {
	border-top: 0;
}

.catalog_unit_cap {
	background-color: #FFFDF6;
	font-size: 12px;
}

.catalog_unit_cap dt {
	background-color: #EFD796;
}

.catalog_unit_cap dd {
	border-color: #EFD796;
	background-color: #FFFAE7;
}

/*--- オードブル ---*/
.sec_wrap.appetizer {
	padding: 35px 0 60px;
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/appetizer_ttl_bg_pc.png), url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/appetizer_bg.png);
	background-position: center top 15px, center;
	background-repeat: no-repeat, repeat;
	background-size: 925px auto, 480px auto;
	border-top: 4px solid #EBB621;
	border-bottom: 4px solid #EBB621;
	margin-top: 80px;
	position: relative;
}

.sec_wrap.appetizer::before {
	display: block;
	content: "";
	width: 80px;
	height: 44px;
	background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/appetizer_ttl_deco.png) 0 0/contain no-repeat;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: -22px;
	z-index: 2;
}

.appetizer .sec_inner {
	margin-top: 20px;
}

.appetizer .sec_ttl_icon {
	bottom: 0;
}

.appetizer_lead {
	color: #5E3F18;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
}

.appetizer .sec_ttl_name {
	margin-bottom: 15px;
}

.appetizer .sec_ttl_point {
	padding: 6px 20px;
	color: #5E3F18;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	display: inline-block;
	border: 1px solid #9C7441;
}

.appetizer .sec_ttl_point span {
	color: #5D8208;
}

.appetizer_main {
	display: flex;
	justify-content: space-between;
	gap: 50px;
}

.appetizer .sec_product {
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 20px;
	width: 280px;
	flex: 0 0 auto;
}

/*--- カタログ ~ ボタンエリア ---*/
.order-info {
	display: flex;
	gap: 20px;
}

.telbox {
	margin-top: 20px;
	text-align: left;
	font-size: 12px;
}

.telbox_main {
	font-size: 16px;
	display: flex;
	flex-direction: row;
	align-items: center;
	line-height: 28px;
	margin-bottom: 5px;
}

.telbox_main p {
	display: flex;
	flex-direction: row;
}

.telbox_main p::before {
	display: block;
	content: "";
	width: 24px;
	height: 24px;
	background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/icon_telbox.png) 0 0/contain no-repeat;
	margin-right: 6px;
}

#contents .telbox_main a {
	font-size: 18px;
	font-weight: 700;
	color: #251500;
	text-decoration: none;
}

.order-info .btn_wrap {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

#contents .btn {
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	width: 100%;
}

.btn {
	display: grid;
	place-items: center;
	background-color: #E63B41;
	background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/entry_btn_bg.png), url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/btnarrow_right.png);
	background-size: 390px auto, 20px;
	background-position: center, center right 15px;
	background-repeat: repeat, no-repeat;
	border-radius: 8px;
	max-width: 400px;
	height: 50px;
	margin: 0 auto;
	position: relative;
}

.btn_att {
	color: #999999;
	font-size: 12px;
	margin-top: 20px;
}

/*--- 終了対応 ---*/
#contents .close_btn {
	position: relative;
	pointer-events: none;
}

#contents .close_btn::after {
	content: "※本キャンペーンは終了しました";
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 2.2rem;
	font-weight: 700;
	background-color: rgba(0, 0, 0, 0.7);
	/* 固定 */
	width: 104%;
	height: 120%;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

@media screen and (max-width: 970px) {
	.sec_inner {
		padding: 35px 5%;
	}

	.sec_ttl_wrap {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 0;
	}

	.sec_ttl {
		width: 100%;
	}

	.osechi .sec_point {
		background-size: 120% auto, auto 100%;
	}

	.osechi .sec_ttl {
		display: flex;
		flex-direction: column;
	}

	.sec_ttl_icon {
		position: static;
		margin-top: 25px;
		width: min(270px, 100%);
	}

	.appetizer .sec_ttl_icon {
		margin-top: 15px;
	}

	.catalog {
		font-size: 12px;
	}

	.catalog_unit dt {
		font-size: 10px;
	}

	.btn {
		padding-right: 15px;
	}
}

@media screen and (max-width: 1070px) {
	.telbox_main {
		flex-direction: column;
		align-items: flex-start;
	}

	.telbox_main p>span {
		display: none;
	}

	.catalog dd {
		padding: 10px 5px;
	}

	.catalog_unit dt {
		padding: 5px;
	}
}

/* ============== att =================== */
.sec.att {
	margin: 80px auto;
	width: calc(100% - 60px);
	max-width: 970px;
	padding: 50px 70px;
	text-align: left;
	background-color: #ffffff;
	overflow: hidden;
}

.att_ttl {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}

.att_item_ttl {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	padding-left: 1.5em;
	position: relative;
}

.att_list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
}

/*「●」タイプのリスト用*/
.att_item_ttl::before {
	content: "";
	display: block;
	background-color: #EAB01D;
	border-radius: 50%;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 2px;
	left: 0;
}

.att_item_inner p {
	margin-top: 10px;
}

.att_item_inner .note_txt {
	margin-top: 0;
}

.att_item_inner p+p {
	margin-top: 0;
}

.att_item_img {
	text-align: center;
	margin-top: 20px;
}

.att_item_img+* {
	margin-top: 20px;
}

.att .dot_list,
.att .num_list,
.att_small_unit,
.att_small_unit+* {
	margin-top: 10px;
}

.att_small_unit dd>*:first-child {
	margin-top: 0;
}

.att .dot_list .att_small_unit {
	text-indent: 0;
}

.att .dot_list li>.dot_list,
.att .dot_list li>.num_list,
.att .num_list li>.dot_list,
.att .num_list li>.num_list,
.att_small_unit .dot_list,
.att_small_unit .num_list {
	margin-top: 0;
}

.att .dot_list li>.dot_list+*,
.att .dot_list li>.num_list+*,
.att .num_list li>.dot_list+*,
.att .num_list li>.num_list+*,
.att_small_unit .dot_list+*,
.att_small_unit .num_list+* {
	margin-top: 10px;
}

.att .dot_list li>.num_list,
.att .num_list li>.num_list {
	transform: translateX(-0.2em);
}

/* .att_small_unit .dot_list,
.att_small_unit .num_list {
	margin-left: 0.5em;
} */

.att .em_font {
	color: #f50028;
	font-weight: 700;
}

/* コンテンツ（SP：767px以下）
========================================================*/
@media screen and (max-width: 767px) {

	/* ============== 共通 =================== */
	img {
		width: 100%;
	}

	.display_pc {
		display: none;
	}

	.display_sp {
		display: block;
	}

	.end_txt {
		font-size: 150%;
	}

	/* ============== top =================== */
	.top_ttl {
		background: none;
	}

	.top_date {
		padding: 13px 30px;
	}

	/* ============== 追従パーツ =================== */
	.follow_parts {
		right: 5px;
		bottom: 5px;
		width: 100px;
	}

	.follow_parts a:hover {
		opacity: 1;
	}

	/* ============== アコーディオン =================== */
	.acd_box {
		padding: 0 20px;
	}

	.acd_box .acd_box_inner {
		padding-top: 20px;
	}

	/* ============== ナビ =================== */
	.nav_acd {
		width: calc(100% - 30px);
		margin: 40px auto;
		border-radius: 8px;
		border: 1px solid #FCCC42;
		overflow: hidden;
	}

	.nav_acd_ttl {
		display: flex;
		align-items: center;
		position: relative;
		padding: 15px 15px 15px 30px;
		background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/acd_nav_ttl_bg.png) 0 0/375px auto repeat;
		cursor: pointer;
	}

	.nav_acd_ttl img {
		width: auto;
		height: 22px;
	}

	.nav_acd_box {
		background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/acd_nav_box_bg.png) 0 0/375px auto repeat;
	}

	.nav_acd_ttl::before {
		content: '';
		position: absolute;
		bottom: 6px;
		left: 10px;
		background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/acd_nav_deco.png) 0 0/contain no-repeat;
		width: 44px;
		height: 37px;
	}

	.nav_acd_ttl .nav_acd_text {
		flex-grow: 1;
		text-align: center;
	}

	.nav_acd_icon {
		margin-left: auto;
		position: relative;
		display: inline-block;
		width: 16px;
		height: 16px;
	}

	.nav_acd_icon::before,
	.nav_acd_icon::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		height: 2px;
		transition: transform 0.3s ease-out;
		background-color: #5E3F18;
	}

	.nav_acd_icon::before {
		transform: translateY(-50%);
	}

	.nav_acd_icon::after {
		transform: translateY(-50%) rotate(90deg);
	}

	.nav_acd_ttl.open .nav_acd_icon::after {
		transform: translateY(-50%) rotate(0deg);
	}

	.nav_acd_box {
		max-height: 0;
		padding: 0 20px;
		overflow: hidden;
		transition: max-height 0.3s ease-out;
	}

	.nav_acd_box_inner {
		opacity: 0;
		transform: translateY(-10px);
		transition: opacity 0.3s ease-out, transform 0.3s ease-out;
		padding: 20px 0;
		text-align: left;
	}

	.nav_acd_ttl.open+.nav_acd_box .nav_acd_box_inner {
		opacity: 1;
		transform: translateY(0);
	}

	.nav {
		width: min(400px, 100%);
		margin: 0 auto;
	}

	.nav_top,
	.nav_bottom {
		display: grid;
		gap: 15px;
	}

	.nav_top {
		grid-template-columns: 1fr;
	}

	.nav_bottom {
		margin-top: 15px;
		grid-template-columns: 1fr;
	}

	/* ============== スライダー =================== */
	.swiper.osechi_list_wrap {
		margin: 0 calc(50% - 50vw);
		width: 100vw;
	}

	.swiper-slide.osechi_slide {
		width: calc(100% - 100px);
	}

	/* ============== sec共通 =================== */
	.sec_wrap.osechi {
		gap: 60px;
		padding-bottom: 60px;
	}

	.osechi .sec_point {
		background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/sec_point_sp.png);
		background-repeat: repeat-x;
		background-size: auto 100%;
		background-position: center bottom;
		height: 100px;
		font-size: 18px;
		position: relative;
	}

	.osechi .sec_point::before,
	.osechi .sec_point::after {
		display: block;
		content: "";
		position: absolute;
		bottom: 0;
		width: 56px;
		z-index: 2;
	}

	.osechi .sec_point::before {
		height: 78px;
		background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/sec_ttl_sp_deco_left.png) center bottom/contain no-repeat;
		left: 0;
	}

	.osechi .sec_point::after {
		height: 65px;
		background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/sec_ttl_sp_deco_right.png) center bottom/contain no-repeat;
		right: 0;
	}

	.osechi .sec_point_num {
		font-size: 22px;
		display: block;
	}

	.osechi .sec_point .sec_point_em {
		font-size: 36px;
	}

	.sec_inner {
		width: calc(100% - 30px);
		padding: 25px 20px;
		margin-top: 25px;
	}

	.osechi .sec_ttl {
		background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/sec_subttl_bg_sp.png) center bottom/auto 5px repeat-x;
	}

	.sec_product {
		flex-direction: column;
		align-items: flex-end;
		gap: 20px;
	}

	/*--- カタログ ---*/
	.catalog {
		flex-direction: column;
		flex-shrink: unset;
	}

	.catalog_unit {
		flex-direction: row;
	}

	.catalog_unit dt {
		font-size: 12px;
		width: 100px;
		flex-shrink: 0;
		border-right: 0;
		border-bottom: 1px solid #FFFDF6;
	}

	.catalog dd {
		padding: 5px;
	}

	.catalog_unit>dd:first-of-type {
		border-left: 0;
	}

	.catalog .catalog_unit:not(:first-of-type) dd {
		border-top: 0;
	}

	.catalog_unit>dd:last-of-type {
		flex: 1;
	}

	.catalog dd+dd {
		border-top: 1px solid #EFD796;
		border-left: 0;
	}

	/*--- オードブル ---*/
	.sec_wrap.appetizer {
		padding: 40px 0 50px;
		background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/appetizer_ttl_bg_sp.png), url(https://pntc.sslcs.cdngc.net/cdn/campaign/takashimaya_osechi/img/appetizer_bg.png);
		background-position: center top 40px, center;
		background-repeat: no-repeat, repeat;
		background-size: contain, 480px auto;
		margin-top: 70px;
	}

	.appetizer_lead {
		font-size: 22px;
	}

	.appetizer_main {
		flex-direction: column;
		gap: 20px;
	}

	.appetizer .sec_product {
		width: 100%;
		align-items: flex-end;
		flex: none;
	}

	/*--- カタログ ~ ボタンエリア ---*/
	.order-info {
		flex-direction: column-reverse;
	}

	.telbox,
	.telbox_main {
		font-size: 14px;
		line-height: 1.6;
	}

	.telbox_main p::before {
		width: 20px;
		height: 20px;
	}

	.btn {
		padding-right: 0;
	}

	/*--- 終了対応 ---*/
	#contents .close_btn::after {
		font-size: 1.8rem;
	}

	/* ============== att =================== */
	.sec.att {
		width: calc(100% - 30px);
		margin: 70px auto;
		padding: 40px 30px 30px;
	}

	.att_item_ttl {
		padding-left: 1.5em;
	}

	.att_item_inner p,
	.att .dot_list,
	.att .num_list,
	.att_small_unit,
	.att_small_unit+* {
		margin-top: 5px;
	}
}