@charset "utf-8";

.p-mv {
	position: relative;
	width: 100%;
	max-width: 1200px;
}

.p-mv__bg {
	height: auto;
}

.p-mv__text {
	position: absolute;
	font-weight: bold;
	line-height: 1.8;
	color: #663616;
	text-shadow:
		2px 2px 1px #fff,
		-2px 2px 1px #fff,
		2px -2px 1px #fff,
		-2px -2px 1px #fff;
}

@media screen and (max-width: 767px) {
	.p-mv__text {
		top: 35%;
		right: 0;
		left: 0;
		text-align: center;
	}

	.p-mv-catalog {
		display: none;
	}
}

@media screen and (min-width: 768px) {
	.p-mv__text {
		top: 50%;
		left: 11%;
	}

	.p-mv-catalog {
		position: absolute;
		top: 50%;
		left: 37.5%;
		display: flex;
		width: 240px;
	}

	.p-mv-catalog__img {
		width: 50%;
		height: auto;
	}

	.p-mv-catalog__img--front {
		z-index: 1;
		transform: rotate(355deg);
		transform-origin: top right;
	}

	.p-mv-catalog__img--back {
		transform: rotate(6deg);
		transform-origin: top left;
	}
}

@media screen and (max-width: 767px) {
	.p-content-bg {
		background: #fff;
	}
}

@media screen and (min-width: 768px) {
	.p-content-bg {
		padding-bottom: 2rem;
		background: #fff;
	}
}

/* ---------------------------------------------------

	見出し

	--------------------- */
.p-sec {
	max-width: 960px;
	padding: 0;
	margin-inline: auto;
}

@media screen and (min-width: 768px) {
	.p-sec {
		background: #fff;
	}
}

.p-sec-header {
	margin-bottom: 0;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.p-sec-body {
		padding-top: 1rem;
	}
}

@media screen and (min-width: 768px) {
	.p-sec-header {
		padding: 2rem;
	}

	.p-sec-body {
		padding-inline: 2rem;
	}
}

/* ---------------------------------------------------

	人気カタログギフトランキング

	--------------------- */
.rank-1st {
	flex: 1;
}

.p-catalog-ranking__body--full {
	align-items: center;
}

.p-catalog-ranking {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	counter-reset: catalog-ranking;
	margin-bottom: 2rem;
}

.p-catalog-ranking__item {
	display: flex;
	flex: 1;
	flex-direction: column;
	row-gap: 1rem;
}

.p-catalog-ranking__item:first-child {
	--ranking-color: #dcb464;
}

.p-catalog-ranking__item:nth-child(2) {
	--ranking-color: #afa9aa;
}

.p-catalog-ranking__item:last-child {
	--ranking-color: #977938;
}

.p-catalog-ranking__item--full {
	flex-basis: 100%;
}

.p-catalog-ranking__headline {
	position: relative;
	display: flex;
	column-gap: 0.75rem;
	align-items: center;
	margin-bottom: 0;
}

.p-catalog-ranking__headline::before {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	aspect-ratio: 9 / 8;
	line-height: 2;
	color: #fff;
	content: counter(catalog-ranking);
	counter-increment: catalog-ranking;
	background-color: var(--ranking-color);
	-webkit-mask: url("/client_info/HARMONICK/view/userweb/ext/okurimono/images/keirounohi/crown.svg");
	mask: url("/client_info/HARMONICK/view/userweb/ext/okurimono/images/keirounohi/crown.svg");
	mask-size: cover;
}

.p-catalog-ranking__headline::after {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 1px;
	content: "";
	background: currentcolor;
}

.p-catalog-ranking__info {
	color: currentcolor;
}

.p-catalog-ranking__intro {
	text-align: justify;
}

.rank-text-link {
	color: #0288d1;
	font-size: 1.2rem;
}

.t4-button {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.rank-list__button {
	position: relative;
	padding: 0.5rem;
	font-size: 1.15rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
	background: #a52020;
	border: #a52020 1px solid;
}

.rank-list__button::after {
	position: absolute;
	top: 0;
	right: 1rem;
	bottom: 0;
	height: 0.75rem;
	aspect-ratio: cos(30deg);
	margin-block: auto;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	content: "";
	background: currentcolor;
}

.rank-list__button--short {
	position: relative;
	padding: 0.5rem;
	font-size: 1.15rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
	background: #a52020;
	border: #a52020 1px solid;
	margin-top: 1.5rem;
}

.rank-list__button--short::after {
	position: absolute;
	top: 0;
	right: 1rem;
	bottom: 0;
	height: 0.75rem;
	aspect-ratio: cos(30deg);
	margin-block: auto;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	content: "";
	background: currentcolor;
}

@media (any-hover: hover) {
	.rank-list__button:hover {
		color: #a52020;
		background: #fff;
	}
	.rank-list__button--short:hover {
		color: #a52020;
		background: #fff;
	}
}

@media screen and (max-width: 767px) {
	.p-catalog-ranking {
		flex-direction: column;
		gap: 1rem;
	}

	.p-catalog-ranking__item {
		padding: 1rem;
	}

	.p-catalog-ranking__headline {
		font-size: 1.125rem;
	}

	.p-catalog-ranking__headline::before {
		width: 4.5rem;
		font-size: 1.5rem;
	}

	.p-catalog-ranking__headline::after {
		width: calc(100% - 4.5rem);
	}

	.p-catalog-ranking__body {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.p-catalog-ranking__inner {
		display: contents;
	}

	.p-catalog-ranking__cover {
		width: 45%;
		height: auto;
		filter: drop-shadow(2px 4px 6px #bebebe);
	}

	.p-catalog-ranking__info {
		flex: 1;
		margin-bottom: 0;
		text-align: center;
	}

	.p-catalog-ranking__intro {
		order: 1;
	}

	.p-catalog-ranking__cover {
	width: 175px;
	margin: 0 auto;
	margin-bottom: 1.2rem;
}
.p-catalog-ranking__body {
	flex-direction: column;
}
.p-catalog-ranking__cover--2nd {
	width: 120px;
	margin-bottom: 1.5rem;
}
.p-catalog-ranking__cover--3rd {
	width: 118px;
	margin-bottom: 1.5rem;
}
.rank-text-link {
	font-size: 1rem;
}
.rank-list__button--short {
		width: 100%;
		margin-top: 1rem;
		margin-bottom: 1.5rem;
	}
}

@media screen and (min-width: 768px) {
	.p-catalog-ranking__headline {
		font-size: 1.125rem;
	}

	.p-catalog-ranking__headline::before {
		width: 3.75rem;
	}

	.p-catalog-ranking__headline::after {
		width: calc(100% - 4.5rem);
	}

	.p-catalog-ranking__body {
		display: flex;
		column-gap: 3rem;
		height: 100%;
	}

	.p-catalog-ranking__inner {
		display: flex;
		flex: 1;
		flex-wrap: wrap;
		align-items: center;
		gap: 1.5rem;
	}

	.p-catalog-ranking__cover {
		width: 176px;
		height: auto;
		filter: drop-shadow(2px 4px 6px #bebebe);
	}
}

.p-catalog-ranking__cover--2nd {
	width: 145px;
	filter: drop-shadow(2px 4px 6px #bebebe);

}

.p-catalog-ranking__cover--3rd {
	width: 144px;
	filter: drop-shadow(2px 4px 6px #bebebe);

}

/* ---------------------------------------------------
カタログ例
--------------------- */
.inc_block12 {
	padding-block: 1.5rem;
	border-top: 1px dotted #999;
	width: 93%;
	margin: auto;
	margin-top: 1rem;
}

.b1-img {
	width: 17%;
}

.eds-u-text-link {
	font-size: 1.15rem;
	font-weight: bold;
}

.b4-select__s1 {
	font-size: 1.35rem;
	font-weight: bold;
}

.b4-select__s2 {
	font-size: 1rem;
	font-weight: bold;
}

.b4-select__s3 {
	font-size: 1rem;
	font-weight: bold;
}

.b4-select__s4 {
	font-size: 0.85rem;
	font-weight: bold;
}

.c1 {
	height: auto;
	filter: drop-shadow(2px 4px 6px #bebebe);
}

.c2 {
	width: 70%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	filter: drop-shadow(2px 4px 6px #bebebe);
}

@media screen and (min-width: 768px){
	.inc_block12 .bg01 {
		margin-left: auto;
		margin-right: auto;
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 1rem;
	}
	.b2 {
	width: 30%;
	}
	.b3 {
	width: 48%;
	}
}

.thumb-list {
	display: flex;
	gap: 0.5rem;
}

.thumb-list__img {
	height: auto;
}

@media screen and (max-width: 767px){
	.thumb-list {
		padding-top: 1rem;
	}
	.b1-img {
		margin: 0 auto;
		width: 51%;
	}
	.c1 {
		margin-bottom: 1.2rem;
	}
	.c2 {
		margin-bottom: 1.2rem;
	}
	.b2 {
		text-align: center;
	}
	.eds-u-text-link {
		text-align: center;
	}
}

/* ---------------------------------------------------

	商品ジャンル

	--------------------- */
.p-sec-txt {
	text-align: center;
	line-height: 1.8rem;
	margin-bottom: 2rem;
}

.choice-list {
	display: flex;
	width: 95%;
	gap: 0.5rem;
	margin: 0 auto;
}

.choice-list__genre {
	text-align: center;
	color: #513622;
	font-size: 1.1rem;
	font-weight: bold;
	font-family: serif;
	background: #d3c8b3;
	border-color: #d3c8b3;
	padding-top: 0.2rem;
	padding-bottom: 0.2rem;
	margin-bottom: 3.5rem;
}

.choice-list__img {
	height: auto;
}

@media screen and (max-width: 767px){
	.p-sec-txt {
		text-align: left;
		line-height: 1.6rem;
		font-size: 0.9rem;
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.choice-list {
		flex-wrap: wrap;
		justify-content: center;
	}
	.choice-list__item {
		width: 31%;
	}
	.choice-list__img {
		max-width: 100%;
	}
	.choice-list__genre {
		width: auto;
		font-size: 0.8rem;
		margin-bottom: 0;
	}
}

/* ---------------------------------------------------

	お客様の声

	--------------------- */
.p-customer-testimonials-list {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}

.p-customer-testimonials-list__item {
	display: flex;
	column-gap: 0.5rem;
	align-items: flex-end;
}

.p-customer-testimonials-list__item--reverse {
	flex-direction: row-reverse;
}

.p-customer-testimonials-list__comment {
	position: relative;
	padding: 1rem;
	text-align: justify;
	background: #fff;
	border: 1px solid #e4cfb0;
	font-size: 1rem;
}

.p-customer-testimonials-list__comment::before {
	position: absolute;
	top: 50%;
	right: calc(-1rem + 1px);
	width: 1rem;
	aspect-ratio: 1;
	clip-path: polygon(0 100%, 0 0, 100% 100%);
	content: "";
	background: #e4cfb0;
}

.p-customer-testimonials-list__comment::after {
	position: absolute;
	top: calc(50% + 1px);
	right: calc(-1rem + 4px);
	width: calc(1rem - 2px);
	aspect-ratio: 1;
	clip-path: polygon(0 100%, 0 0, 100% 100%);
	content: "";
	background: #fff;
}

.p-customer-testimonials-list__comment--reverse::before {
	position: absolute;
	top: 50%;
	left: calc(-1rem + 1px);
	width: 1rem;
	aspect-ratio: 1;
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
	content: "";
	background: #e4cfb0;
}

.p-customer-testimonials-list__comment--reverse::after {
	position: absolute;
	top: calc(50% + 1px);
	left: calc(-1rem + 4px);
	width: calc(1rem - 2px);
	aspect-ratio: 1;
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
	content: "";
	background: #fff;
}

@media screen and (min-width: 768px) {
	.p-customer-testimonials {
		position: relative;
		z-index: 0;
		padding: 3rem;
		background-image: linear-gradient(135deg, #fff 12.5%, #c91521 12.5%, #c91521 25%, #fff 25%, #fff 37.5%, #e4cfb0 37.5%, #e4cfb0 50%, #fff 50%, #fff 62.5%, #c91521 62.5%, #c91521 75%, #fff 75%, #fff 87.5%, #e4cfb0 87.5%, #e4cfb0 100%);
		background-size: 40px 40px;
		margin-bottom: 2rem;
	}

	.p-customer-testimonials::before {
		position: absolute;
		inset: 0;
		z-index: -1;
		width: calc(100% - 2rem);
		height: calc(100% - 2rem);
		margin: auto;
		content: "";
		background: #fff;
	}
}

@media screen and (max-width: 767px){
	.p-customer-testimonials {
		padding-block: 1rem;
	}
	.p-customer-testimonials-list__comment {
		font-size: 0.9rem;
	}
}

/* ---------------------------------------------------

	敬老の日カタログギフト

	--------------------- */
.b4-selects--value {
	margin-bottom: 0.4rem;
}

@media screen and (max-width: 767px) {
	.p-catalog-line-up-list {
		display: flex;
		flex-direction: column;
	}
	.p-catalog-line-up-list__item {
		display: flex;
		flex-direction: column;
		padding: 1.5rem;
	}
	.p-catalog-line-up-list__item:nth-child(even) {
		background: #fff7ec;
	}
	.p-catalog-line-up-list__headline {
		order: -1;
		margin-bottom: 0;
		font-size: 1.25rem;
		border-bottom: 1px solid;
	}
.b4-selects--value {
	text-align: center;
}
.p-customer-testimonials-list {
	margin-bottom: 1.5rem;
}
}

@media screen and (min-width: 768px) {
	.p-catalog-line-up-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.p-catalog-line-up-list__item {
		display: flex;
		align-items: flex-end;
		column-gap: 1rem;
		padding: 1.5rem;
		border: 1px solid;
		border-color: #dcdcdc;
	}

	.p-catalog-line-up-list__cover {
		width: calc(100% / 3);
		height: auto;
	}

	.p-catalog-line-up-list__headline {
		font-size: 1rem;
		margin: 0;
		margin-top: 0.4rem;
	}
}

.rank-list__button--lineup {
	width: 100%;
	position: relative;
	padding: 0.5rem;
	font-size: 1.15rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
	background: #a52020;
	border: #a52020 1px solid;
}

.rank-list__button--lineup::after {
	position: absolute;
	top: 0;
	right: 1rem;
	bottom: 0;
	height: 0.75rem;
	aspect-ratio: cos(30deg);
	margin-block: auto;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	content: "";
	background: currentcolor;
}

@media screen and (max-width: 767px){
	.p-catalog-line-up-list__headline {
		text-align: center;
		padding-bottom: 0.6rem;
	}

	.p-catalog-line-up-list__cover {
		margin-top: 1rem;
		margin-bottom: 1rem;
		width: 42%;
		height: auto;
		margin: auto;
		margin-top: 1.5rem;
		margin-bottom: 1rem;
	}
}

@media (any-hover: hover) {
	.rank-list__button--lineup:hover {
		color: #a52020;
		background: #fff;
	}
}

/* ---------------------------------------------------

	ギフトマナー
	
	--------------------- */
.p-manner {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	align-items: center;
	padding-block: 2rem;
	background: #fff;
}

.articles {
	width: 80%;
	display: flex;
	flex-wrap: wrap;
	gap: 24px 14px;
	margin-bottom: 48px;
}

.article-list__item {
	position: relative;
	margin-bottom: 0;
}

.article-list__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
}

.article-list__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.article-list__title {
	font-size: 14px;
	margin: 5px 0;
	line-height: 1.5;
	font-weight: bold;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.article-list__date {
	margin-top: auto;
	color: #616161;
	font-size: 13px;
	text-align: right;
	margin-bottom: 1rem;
}

.article-button {
	display: flex;
	border-radius: 2rem;
	flex-basis: 100%;
	column-gap: 1rem;
	align-items: center;
	align-self: flex-end;
	justify-content: center;
	width: calc(100% - 2rem);
	max-width: 600px;
	margin-inline: auto;
	line-height: 3;
	color: #fff;
	border: #664026 1px solid;
	background: #664026;
	background-size: 100% 200%;
	transition: all 0.4s ease;
}

@media (any-hover: hover) {
	.article-button:hover {
		color: #664026;
		background: #fff;
	}
}

@media screen and (min-width: 768px) {
	.article-button {
		font-size: 1.25rem;
	}
}

.article-button::after {
	height: 0.5em;
	aspect-ratio: cos(30deg);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	content: "";
	background: currentcolor;
}

@media screen and (max-width: 767px){
	.articles {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}

	.article-list__item {
	width: calc(47% - .2em)!important;
	}
}