@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Open+Sans:800&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	word-break: break-all;
}

button {
	background-color: transparent;
	border: 0 none;
	cursor: pointer;
	line-height: 1;
	padding: 0;
}

main {
	display: block;
}

input {
	border: 0 none;
}

img {
	max-height: 100%;
	max-width: 100%;
	vertical-align: bottom;
}

select {
	line-height: 1;
}

select::-moz-focus-inner {
	border: 0;
	outline: 0;
}

body {
	color: #333;
	font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Lucida Grande", "segoe UI", Meiryo, "メイリオ", "游ゴシック", "Yu Gothic", Verdana, Arial, sans-serif;
}



/*** class 設定style ***/

/** --全体-- **/
@media screen and (min-width: 1000px) {
	.sp-content {
		display: none;
	}
}

@media screen and (max-width: 1000px) {
	.pc-content {
		display: none;
	}
}

.wrap {
	display: block;
}

@media screen and (max-width: 1000px) {
	.sp-wrap {
		display: block;
	}
}

@media screen and (min-width: 1000px) {
	.pc-wrap {
		display: block;
	}
}

.main {
	position: relative;
  padding-bottom: 100px;
}

/* hover */
.hover {
	transition: filter .2s, opacity .7s;
}
@media screen and (max-width: 999px) {
	.hover:active {
		filter: contrast(50%) brightness(135%) saturate(95%);
	}
}
@media screen and (min-width: 1000px) {
	.hover:hover {
		filter: contrast(50%) brightness(135%) saturate(95%);
	}
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
	.hover:hover {
		opacity: .7;
	}
}
/* /hover */


/* js関係（動的出力部分）*/
.js-lazy-img {
	transition: opacity .7s;
}
.js-lazy-img.is-init, .js-lazy-img.is-loading {
	opacity: 0;
}
.js-lazy-img.is-loaded {
	opacity: 1;
}

.js-lazy-srcset {
	display: none;
	transition: opacity .7s;
}
.js-lazy-srcset.is-loading {
	opacity: 0;
}
.js-lazy-srcset.is-loaded {
	-webkit-animation: fade-in 1s;
	animation: fade-in 1s;
	display: inline-block;
}

img.swiper-lazy {
	opacity: 0;
	transition: opacity .7s;
}
img.swiper-lazy.is-loaded {
	opacity: 1;
}

.js-lazy-bg__holder {
	opacity: 0;
	transition: opacity .2s;
}
.js-lazy-bg.is-loaded .js-lazy-bg__holder {
	opacity: 1;
}

@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* /js関係（動的出力部分）*/


/* containerシリーズ */
.container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 375px;
	padding: 0 10px;
}
@media screen and (min-width: 1000px) {
	.container {
		max-width: 1000px;
		padding: 0 20px;
	}
}
.container--0pad {
	padding: 0;
}
@media screen and (min-width: 1000px) {
	.container--0pad {
		padding: 0;
	}
}
@media screen and (max-width: 1000px) {
	.container--sp-0pad {
		padding: 0;
	}
}
@media screen and (min-width: 1000px) {
	.container--pc-0pad {
		padding: 0;
	}
}
/* /containerシリーズ */


/** 常設エリア・パーツ **/
/* headerまわり */
.header-content {
	padding: 10px 0;
}
@media screen and (min-width: 1000px) {
	.header-content {
		padding: 20px 0;
	}
}
.header-content__body {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.header-content__logo {
	align-items: flex-end;
	display: flex;
	flex: 0 0 auto;
}
.header-content__logo-content:not(:last-child) {
	margin-right: 10px;
}
.header-content__logo-content img {
	height: 24px;
}
@media screen and (min-width: 1000px) {
	.header-content__logo-content img {
		height: 39px;
	}
}
.header-content__logo-content--d img {
	height: 16px;
}
@media screen and (min-width: 1000px) {
	.header-content__logo-content--d img {
		height: 26px;
	}
}
.header-content__link {
	display: none;
}
@media screen and (min-width: 1000px) {
	.header-content__link {
		display: block;
		flex: 0 0 auto;
	}
	.header-content__link > a {
		color: inherit;
		display: block;
		font-size: 18px;
		font-weight: 700;
		text-decoration: none;
	}
	.header-content__link > a .icon {
		color: #d92984;
		margin-right: .25em;
	}
}
/* /headerまわり */

/* date-check */
.date-check {
	background: #faf9f7;
	padding: 13px 0;
}
@media screen and (min-width: 1000px) {
	.date-check {
		padding: 36px 0;
	}
}
.date-check__text {
	font-size: 11px;
	font-weight: 700;
	line-height: 17.75px;
	margin: -3.375px 0; 
	text-align: center;
}
@media screen and (min-width: 1000px) {
	.date-check__text {
		font-size: 30px;
		line-height: 1.6;
		margin: -.3em 0;
	}
}
.date-check__text .strong {
	color: #d92984;
}
.date-check.js-date-check:not(.is-within) {
	display: none;
}
/* /date-check */

/* 「サンプル百貨店TOPへ」ボタン */
.btn-3ple {
	align-items: center;
	background: #d92984;
	border-radius: 27.5px;
	display: flex;
	height: 55px;
	justify-content: center;
	position: relative;
	text-decoration: none;
}
@media screen and (min-width: 1000px) {
	.btn-3ple {
		border-radius: 55px;
		height: 110px;
		margin: 0 auto;
		max-width: 600px;
	}
}
.btn-3ple--ranking {
	background: #f2b843;
}
.btn-3ple__icon {
	margin-right: 8px;
}
@media screen and (min-width: 1000px) {
	.btn-3ple__icon {
		margin-right: 15px;
	}
}
.btn-3ple__text {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}
@media screen and (min-width: 1000px) {
	.btn-3ple__text {
		font-size: 35px;
	}
}
.btn-3ple::after {
	bottom: 0;
	color: #fff;
	content: "\f054";
	display: none;
	font-family: "Font Awesome 5 Free";
	font-size: 15px;
	font-weight: 700;
	height: 1em;
	margin: auto 0;
	position: absolute;
	right: 15px;
	top: 0;
}
@media screen and (min-width: 1000px) {
	.btn-3ple::after {
		display: block;
		font-size: 30px;
		right: 30px;
	}
}
/* /「サンプル百貨店TOPへ」ボタン */

/* footerまわり */
.footer-copy-wrapper {
	background-color: #fff;
	border-top: 1px solid #e7e7e7;
	padding: 10px 0;
}
@media screen and (min-width: 1000px) {
	.footer-copy-wrapper {
		padding: 20px 0;
	}
}

@media screen and (min-width: 1000px) {
	.footer-copy {
		align-items: center;
		display: flex;
		justify-content: center;
	}
}

.footer-copy__img {
	margin-bottom: 5px;
	text-align: center;
}
@media screen and (min-width: 1000px) {
	.footer-copy__img {
		margin-bottom: 0;
		margin-right: 15px;
	}
}

.footer-copy__text {
	color: #333;
	font-size: 10px;
	line-height: 1.6;
	margin: -.3em 0;
	text-align: center;
	text-align: center;
}
@media screen and (min-width: 1000px) {
	.footer-copy__text {
		font-size: 14px;
	}
}
/* /footerまわり */

/* pagetop */
.pagetop-holder {
	bottom: 0;
	left: 0;
	pointer-events: none;
	position: absolute;
	text-align: right;
	width: 100%;
}
/* -TOPボタンのサイズと位置の修正- */
.pagetop-container {
	bottom: 50px;
	right: 10px;
	position: fixed;
	width: 100%;
	z-index: 1000;
}
@media screen and (min-width: 1000px) {
	.pagetop-container {
		padding-bottom: 30px;
		position: static;
		right: 0;
	}
	body:not(.is-bottom) .pagetop-container {
		bottom: 0;
		position: fixed;
		width: 100%;
		z-index: 1000;
	}
}
@media screen and (min-width: 1000px) {
	.pagetop-container .container {
		max-width: 1200px;
	}
}
.pagetop img {
	width: 65px;
	height: 65px;
}
@media screen and (min-width: 1000px) {
	.pagetop img {
		width: 100px;
		height: 100px;
	}
}
/* /-TOPボタンのサイズと位置の修正- */

.pagetop {
	border-radius: 50%;
	display: inline-block;
	pointer-events: all;
}
/* /pagetop */

/** /常設エリア・パーツ **/
/** /--全体-- **/



/* separatorシリーズ */
.separator--top {
	background: #ebebeb;
  padding: 5px 0 25px;
}
@media screen and (min-width: 1000px) {
	.separator--top {
		padding: 20px 0 50px;
	}
}

.separator--content-list {
	background: #fff;
  padding: 25px 0 40px 0;
}
@media screen and (min-width: 1000px) {
	.separator--content-list {
		padding: 50px 0 80px 0;
	}
}

.separator--feature {
	margin-bottom: 40px;
	text-align: center;
}
@media screen and (min-width: 1000px) {
	.separator--feature {
		margin-bottom: 80px;
	}
}

.separate-area {
  height: 10px;
  background: #ebebeb;
}
@media screen and (min-width: 1000px) {
  .separate-area {
    height: 20px;
  }
}
/* /separatorシリーズ */


/* separator--top内 */
/** separator--top__first **/
.separator--top__first {
	margin-bottom: 40px;
}
@media screen and (min-width: 1000px) {
	.separator--top__first {
		margin-bottom: 50px;
	}
}

@media screen and (min-width: 1000px) {
	.first__attention {
		margin-bottom: 25px;
	}
}
.first-attention {
	align-items: center;
	background: #fff;
	display: flex;
	height: 40px; 
	justify-content: center;
}
.first-attention__text {
	color: #253547;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
@media screen and (min-width: 1000px) {
	.first-attention__text {
		font-size: 16px;
	}
}
.first-attention__text .strong {
	color: #d92a84;
}
@media screen and (min-width: 1000px) {
	.first-attention__text .wrap {
		display: inline;
	}
}

.first__mv {
	margin-bottom: 25px;
}
@media screen and (min-width: 1000px) {
	.first__mv {
		margin-bottom: 50px;
	}
}

.first__catch {
	margin-bottom: 10px;
}
.first-catch {
	line-height: 1.6;
  margin: calc((1.6em - 1em) / 2 * -1) 0;
}
@media screen and (min-width: 1000px) {
	.first__catch {
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 999px) {
	.first-catch--pc {
		display: none;
	}
}
@media screen and (min-width: 1000px) {
	.first-catch--sp {
		display: none;
	}
}
.first-catch {
	text-align: center;
	color: #253547;
	font-size: 15px;
	font-weight: 700;
}
@media screen and (min-width: 1000px) {
	.first-catch {
		font-size: 30px;
	}
}

.first__detail {
  margin-bottom: 27px;
}
@media screen and (min-width: 1000px) {
  .first__detail {
    margin-bottom: 33px;
    display: flex;
    justify-content: center;
  }
}
.first-detail {
  margin: calc((1.6em - 1em) / 2 * -1) 0;
}
@media screen and (min-width: 1000px) {
  .first-detail {
    display: flex;
    gap: 24px;
    margin: initial;
  }
}
.first-detail__item {
  font-size: 12px;
  color: #253547;
  line-height: 1.6;
}
@media screen and (min-width: 1000px) {
  .first-detail__item {
    font-size: 14px;
    line-height: initial;
  }
}

.service-btn-list {
	overflow: hidden;
}
@media screen and (min-width: 1000px) {
	.service-btn-list__body {
		display: flex;
		justify-content: center;
		margin: 0 -30px;
	}
}
.service-btn-list__item {
	text-align: center;
}
@media screen and (max-width: 1000px) {
	.service-btn-list__item:not(:last-child) {
		margin-bottom: 25px;
	}
}
@media screen and (min-width: 1000px) {
	.service-btn-list__item {
		padding: 0 30px;
	}
}
/** /separator--top__first **/

/** separator--top__nav **/
.nav-wrapper {
	border-top: #d6d9dc 1px solid;
}
@media screen and (max-width: 1000px) {
	.nav-wrapper {
    padding-top: 25px;
	}
}
@media screen and (min-width: 1000px) {
	.nav-wrapper {
		padding-top: 30px;
	}
}

.nav__content:not(:last-child) {
	margin-bottom: 14px;
}

@media screen and (min-width: 1000px) {
	.nav-content {
		align-items: flex-end;
		display: flex;
	}
}

@media screen and (max-width: 1000px) {
	.nav-content__head {
		margin-bottom: 10px;
		text-align: center;
	}
}
@media screen and (min-width: 1000px) {
	.nav-content__head {
		flex: 0 0 203px;
		margin-right: 30px;
	}
}

.nav-head-text {
	color: #d92a84;
	font-size: 13px;
	font-weight: 600;
}
.nav-head-text .small {
	font-size: 10px;
  color: #253547;
}
@media screen and (min-width: 1000px) {
	.nav-head-text {
		color: #d92a84;
		font-size: 25px;
	}
	.nav-head-text .small {
		font-size: 19px;
		margin-left: 2px;
	}
}

.nav-list__body {
	display: flex;
	align-items: center;
  flex-wrap: wrap;
}
.nav-list__body--price {
  gap: 7px;
}
@media screen and (min-width: 1000px) {
  .nav-list__body--price {
    gap: 20px;
  }
}
.nav-list__body--category {
  gap: 20px;
}
@media screen and (min-width: 1000px) {
  .nav-list__body--category {
    gap: 39px;
  }
}

.nav-item {
	color: #253547;
	display: block;
	font-size: 10px;
	font-weight: 300;
	text-decoration: none;
	white-space: nowrap;
  font-weight: 600;
}
@media screen and (min-width: 1000px) {
	.nav-item {
		font-size: 20px;
	}
}
.nav-item .icon {
	color: #d92a84;
	display: inline-block;
	margin-right: .125em;
	transform: scale(.7);
	transform-origin: center;
}
@media screen and (min-width: 1000px) {
	.nav-item.hover:hover {
		opacity: .7;
	}
}
/** /separator--top__nav **/
/* /separator--top内 */


/* separator--pickup内 */
.pickup-head {
	text-align: center;
  font-size: 36px;
  font-weight: 600;
  color:#253547;
}
@media screen and (min-width: 1000px) {
  .pickup-head {
    font-size: 70px;
    color:#253547;
  }
}
.pickup-content {
	background: #fff;
	padding: 25px 0 40px 0;
}
@media screen and (min-width: 1000px) {
	.pickup-content {
		padding: 50px 0 80px;
	}
}
.pickup-content__head {
	margin-bottom: 15px;
}
@media screen and (min-width: 1000px) {
	.pickup-content__head {
		margin-bottom: 30px;
	}
}
.pickup-content__body {
	margin-bottom: 40px;
}
@media screen and (min-width: 1000px) {
	.pickup-content__body {
		margin-bottom: 80px;
	}
}
.pickup-content .item-card__price-container {
	background: #ffe7ee;
}
.pickup-content .item-card-share {
	background: #e8e3da;
}
/* /separator--pickup内 */


/* separator--content-list内 */
.recommend-content__head {
  margin-bottom: 14px;
}
@media screen and (min-width: 1000px) {
  .recommend-content__head {
    margin-bottom: 52px;
  }
}
/* /separator--content-list内 */


/* separator--detail 内 */
.separator--detail {
  padding: 25px 0 43px 0;
  background: #ebebeb;
  margin-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .separator--detail {
    padding: 50px 0 27px 0;
    margin-bottom: 80px;
  }
}
.separator--detail__head {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 1000px) {
  .separator--detail__head {
    margin-bottom: 30px;
  }
}
.detail-head {
  font-size: 15px;
  font-weight: 600;
  color: #253547;
}
@media screen and (min-width: 1000px) {
  .detail-head {
    font-size: 30px;
  }
}
.detail-body {
  margin-bottom: 31px;
}
@media screen and (min-width: 1000px) {
  .detail-body {
    margin-bottom: 35px;
  }
}
.detail-list {
  margin: calc((1.6em - 1em) / 2 * -1) 0;
}
.detail-list__item {
  text-indent: -1em;
  padding-left: 1em;
}
.detail-text {
  color:#253547;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 1000px) {
  .detail-text {
    font-size: 18px;
  }
}
.detail-text.strong {
  font-weight: 600;
}

/** section--notice **/
.notice-paragraph:not(:last-child) {
  margin-bottom: 34px;
}
@media screen and (min-width: 1000px) {
  .notice-paragraph:not(:last-child) {
    margin-bottom: 36px;
  }
}
.notice-title {
  font-size: 14px;
  margin-bottom: 8.5px;
  text-indent: -0.5em;
}
@media screen and (min-width: 1000px) {
  .notice-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.notice-list {
  line-height: 1.86;
  margin: calc((1.86em - 1em) / 2 * -1) 0;
  color: #253547;
  font-size: 12px;
}
@media screen and (min-width: 1000px) {
  .notice-list {
    line-height: 1.6;
    margin: calc((1.6em - 1em) / 2 * -1) 0;
    font-size: 16px;
  }
}

.notice-list .icon-align {
	display: flex;
}
.notice-list .icon-align--inline {
	display: inline-flex;
}
.notice-list .icon-align__icon {
	display: block;
	flex: 0 0 1em;
	margin-right: .2em;
	text-align: center;
	width: 1em;
}
.notice-list .icon-align__content {
	display: block;
	flex: 0 1 auto;
}
.notice-list .strong {
	color: #c00;
	font-weight: 700;
}
/* /section--notice */
/* /separator--detail 内 */


/* separator--feature内 */
.separator--feature__bnr {
  margin-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .separator--feature__bnr {
    margin-bottom: 80px;
  }
}
/* /separator--feature内 */



/** -共通パーツ- **/
/* リンクテキスト・アイコン付きリンクテキスト*/
.link-txt {
  color: #d92a84;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.link-icon {
  transform: translateY(-1px);
}
.detail-link .fas {
  font-size: 0.8em;
}
.fa-external-link-alt:before {
  content: "\f35d";
  }
/* /リンクテキスト・アイコン付きリンクテキスト*/


/* --ボタン-- */
/**  「クーポン交換はこちら」シリーズボタン **/
.section-btn--long {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
	text-decoration: none;
	margin: 0 auto;
	background: #d92a84;
	border-radius: 20px;
	color: #fff;
	font-weight: 700;
	height: 40px;
	max-width: 345px;
}
/** ↓↓ ボタンの矢印 変更後 **/
.section-btn--long {
  background-image: url(../img/250701/btn-arrow-white_sp.png);
  background-repeat: no-repeat;
  background-position: center right 15px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
	.section-btn--long {
		background-image: -webkit-image-set(url("../img/250701/btn-arrow-white_sp.png") 1x, url("../img/250701/btn-arrow-white_sp2x.png") 2x);
		background-image: image-set(url("../img/250701/btn-arrow-white_sp.png") 1x, url("../img/250701/btn-arrow-white_sp2x.png") 2x);
	}
}
@media screen and (min-width: 1000px) {
	.section-btn--long {
    background-image: url(../img/250701/btn-arrow-white_pc.png);
    background-repeat: no-repeat;
    background-position: center right 20px;
	}
}
/** ↓↓ ボタンの矢印 変更前 **/
/*.section-btn--long::after {
	display: block;
	height: 1em;
	margin: auto 0;
	position: absolute;
	bottom: 0;
	top: 0;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-size: 13px;
	font-weight: 900;
	right: 10px;
}*/
.section-btn__notes--long {
	font-size: 14px;
}
@media screen and (min-width: 1000px) {
	.section-btn--long  {
		border-radius: 30px;
		height: 60px;
    max-width: initial;
		width: 400px;
	}
	.section-btn__notes--long {
		font-size: 20px;
	}
}
/**  /「クーポン交換はこちら」シリーズボタン **/

/*＊ 「詳細はこちら」ボタン ＊*/
.detail-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
@media screen and (min-width: 1000px) {
  .detail-btn {
    margin-bottom: 29px;
  }
}
.section-btn--detail {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
	text-decoration: none;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	color: #d92a84;
	font-weight: 700;
	height: 40px;
	width: 200px;
  border: solid 1px #d92a84;
  box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
	.section-btn--detail  {
		border-radius: 30px;
		height: 60px;
		width: 300px;
    border: solid 2px #d92a84;
  box-sizing: border-box;
	}
}
/** ボタンの矢印 **/
.section-btn--detail {
  background-image: url(../img/250701/btn-arrow-pink_sp.png);
  background-repeat: no-repeat;
  background-position: center right 15px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
	.section-btn--detail {
		background-image: -webkit-image-set(url("../img/250701/btn-arrow-pink_sp.png") 1x, url("../img/250701/btn-arrow-pink_sp2x.png") 2x);
		background-image: image-set(url("../img/250701/btn-arrow-pink_sp.png") 1x, url("../img/250701/btn-arrow-pink_sp2x.png") 2x);
	}
}
@media screen and (min-width: 1000px) {
	.section-btn--detail {
    background-image: url(../img/250701/btn-arrow-pink_pc.png);
    background-repeat: no-repeat;
    background-position: center right 20px;
	}
}
.section-btn__notes--detail {
	font-size: 14px;
}
@media screen and (min-width: 1000px) {
	.section-btn__notes--detail {
		font-size: 20px;
	}
}
/*＊ /「詳細はこちら」ボタン ＊*/

/* ボタン（原型） */
/*.section-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	text-decoration: none;
	margin: 0 auto;
	background: #6c4f0a;
	border-radius: 15px;
	color: #fff;
	font-weight: 300;
	height: 30px;
	width: 150px;
}
.section-btn__notes {
	font-size: 14px;
}
.section-btn::after {
	bottom: 0;
	content: "\f054";
	display: block;
	font-family: "Font Awesome 5 Free";
	font-size: 11px;
	font-weight: 700;
	height: 1em;
	margin: auto 0;
	position: absolute;
	right: 6px;
	top: 0;
}
@media screen and (min-width: 1000px) {
	.section-btn {
		border-radius: 22px;
		height: 44px;
		width: 250px;
	}
	.section-btn__notes {
		font-size: 18px;
	}
	.section-btn::after {
		font-size: 14px;
		right: 20px;
	}
}*/
/** /ボタン（原型） **/
/* /--ボタン-- */

/** /-共通パーツ- **/


/* 20250601~0701 切り替え期間の内容 */
.separator--btn-2505 {
  margin-top: 50px;
}
@media screen and (min-width: 1000px) {
  .separator--btn-2505 {
    margin-top: 100px;
  }
}

.switching {
  padding-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  .switching {
    padding-bottom: 30px;
  }
}
.switching__catch:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  .switching__catch:not(:last-child) {
    margin-bottom: 40px;
  }
}
.switching-catch {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
  line-height: 1.6;
}
.switching-text {
  text-align: justify;
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
}
.switching-text a {
  color: #fff;
}
@media screen and (min-width: 1000px) {
	.switching-catch {
		font-size: 25px;
	}
  .switching-text {
    font-size: 20px;
  }
}


.separator--first-2505 {
	margin-bottom: 25px;
}
@media screen and (min-width: 1000px) {
	.separator--first-2505 {
		margin-bottom: 50px;
	}
}
.first-attention__text-2505 {
	color: #6c4f0a;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
@media screen and (min-width: 1000px) {
	.first-attention__text-2505 {
		font-size: 16px;
	}
}
.first-attention__text-2505 .strong {
	color: #9a0000;
}
@media screen and (min-width: 1000px) {
	.first-attention__text-2505 .wrap {
		display: inline;
	}
}
.separator--top-2505 {
	background: #6c4f0a;
	padding: 5px 0 25px;
}
@media screen and (min-width: 1000px) {
	.separator--top-2505 {
		padding: 20px 0 50px;
	}
}
/* /20250601~0701 切り替え期間の内容*/


/** --レコメンドパーツ部分（content-section内）-- **/
/* レコメンド部分（動的出力部分） */
.dv_rc_header,.dv_rc_title,.dv_rc_footer{
  display: none;
  }

.dv_recommend {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  gap: 10px 0;
  margin: -15px -10px;
}
@media screen and (min-width: 1000px) {
  .dv_recommend {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    gap: 50px 0;
    margin: -15px -10px;
  }
}

.dv_rc_items {
  box-sizing: border-box;
  max-width: 50%;
  padding: 15px 10px;
	transition: filter .2s, opacity .7s;
}
@media screen and (max-width: 999px) {
	.dv_rc_items:active {
		filter: contrast(50%) brightness(135%) saturate(95%);
	}
}
@media screen and (min-width: 1000px) {
	.dv_rc_items:hover {
		filter: contrast(50%) brightness(135%) saturate(95%);
	}
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
	.dv_rc_items:hover {
		opacity: .7;
	}
}
@media screen and (min-width: 1000px) {
  .dv_rc_items {
    max-width: 25%;
    padding: 15px 10px;
  }
}

.dv_rc_description {
  display: none;
}

.dv_rc_name {
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.4;
  min-height: 2.8em;
  margin-bottom: 10px;
}
@media screen and (min-width: 1000px) {
  .dv_rc_name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.4;
    min-height: 2.8em;
    margin-bottom: 10px;
  }
}
.dv_rc_items a {
  text-decoration: none;
  color: unset;
}

.dv_rc_price {
  background: #fff1f5;
  border-radius: 5px;
  color: #c7000b;
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  padding: 12px 10px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}
.dv_rc_price::before {
  content: "お試し費用(税込・送料込)";
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  text-align: right;
  white-space: nowrap;
}
@media screen and (min-width: 1000px) {
  .dv_rc_price {
    background: #fff1f5;
    border-radius: 3px;
    color: #c7000b;
    font-family: "Open Sans", sans-serif;
    font-size: 37px;
    font-weight: 700;
    padding: 15px 12px;
    text-align: right;
    white-space: nowrap;
  }
  .dv_rc_price::before {
    content: "お試し費用(税込・送料込)";
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    text-align: right;
    white-space: nowrap;
  }
}

.dv_rc_price span {
  font-size: 26px;
}
/* /レコメンド部分（動的出力部分） */

/* レコメンド部分（静的部分） */
.content-section:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .content-section:not(:last-child) {
    margin-bottom: 80px;
  }
}
.content-section__body {
  margin-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .content-section__body {
    margin-bottom: 80px;
  }
}

.content-section__head {
  margin-bottom: 25px;
  text-align: center;
}
  @media screen and (min-width: 1000px) {
    .content-section__head {
      margin-bottom: 25px;
    }
  }
.content-headline {
  color: #53677d;
  font-size: 15px;
  font-weight: 700;
}
.content-headline .span__priceRange {
  color: #d92a84;
  font-size: 30px;
  margin-left: 5px;
}
.content-headline .span__priceUnit {
  color: #d92a84;
  font-size: 0.73em;
}
  @media screen and (min-width: 1000px) {
  .content-headline {
    font-size: 30px;
    }
  .content-headline .span__priceRange {
    font-size: 60px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 374px) {
  .content-headline .span__priceRange {
    font-size: clamp(1.25rem, -2.454rem + 18.52vw, 1.875rem);
  }
}
/* /レコメンド部分（静的部分） */
/** /--レコメンドパーツ部分（content-section内）-- **/


/*** /class 設定style ***/
