@charset "utf-8";

/* 基本レイアウト */
body.home #contents {
	margin-bottom: 40px;
}
body.index_others .wrapper {
	max-width: 1000px;
	margin: 0 auto;
}
.mainslider {
	overflow: hidden;
}
.mainslider .swiper {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 12px;
	overflow: visible;
}
.mainslider .swiper-slide-prev::after,
.mainslider .swiper-slide-next::after {
	content: '';
	display: block;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.9;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
}
.mainslider .swiper-pagination {
	position: relative;
	top: 5px;
}
@media print, screen and (min-width: 768px) {
	body.home #contents {
		margin-bottom: 80px;
	}
	.mainslider .swiper  {
		margin: 0 auto 20px;
	}
	.mainslider .swiper-pagination {
		top: 9px;
	}
}

/* 受賞＆レビュー */
.prize {
	border-top: 1px solid #ebe6e0;
	border-bottom: 1px solid #ebe6e0;
}
.prize-container {
	position: relative;
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
}
.prize-container::before {
	position: absolute;
	top: 10%;
	left: 50%;
	display: block;
	content: '';
	width: 1px;
	height: 80%;
	background: #ebe6e0;
}
.prize a {
	display: flex;
	flex: 1;
	justify-content: center;
	align-items: center;
}
.prize img {
	width: 96%;
	margin: 2px;
}
.reivew-wrapper > div {
	color: #9f8669;
	font-size: 1.4rem;
	line-height: 1.25;
	text-align: center;

}
.reivew-wrapper:hover > div {
	opacity: .8;
}
.review-num > span {
	display: inline-block;
	font-size: 1.8rem;
}
.review-period {
	font-size: 1.2rem;
}
.review-star {
	display: inline-block;
	position: relative;
	letter-spacing: -.05em;
	color: #ccc;
}
.review-star::before {
	content: '★★★★★';
	position: absolute;
	color: /* #e72a10 */ #f90;
	width: calc( 4.5em - .05 * ( 4.5em - .5em ) );
	overflow: hidden;
	white-space: nowrap;
}
@media print, screen and (min-width: 768px) {
	.prize img {
		width: 180px;
		margin: 4px 0;
	}
}

/* 会員特典(抜粋) */
.benefits {
	margin-top: 3px;
	background: #ffe6e6;
}
#main-column .benefits h2 {
	margin: 0 0 4px;
	padding: 0;
	color: #e64e4e;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: .25em;
}
.benefits-container {
	position: relative;
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
	box-shadow: 0 0 4px 0 #ff000033;
}
.benefits .btn-benbefits {
	position: absolute;
	top: -25px;
	right: 0;
	display: inline-block;
	padding: 4px;
	border-radius: 2px;
	background: #e64e4e;
	color: #fff !important;
	font-size: 1.2rem;
	text-align: center;
	line-height: 1;
}
.benefits-container > div {
	flex: 1;
}
.benefits-container > div:nth-of-type(n+2) {
	border-left: 1px solid #ffd4d4;
}
.benefits a {
	display: block;
	padding: 6px 0 4px;
	background: #fff;
	color: #b58282;
	font-size: 1.3rem;
	line-height: 1.15;
	text-align: center;
	transition: .2s;
}
.benefits a:hover {
	opacity: .8;
}
@media only screen and (max-width: 767px) {
	.benefits {
		margin-top: 3px;
		padding: 6px 4px 4px;
	}
}
@media print, screen and (min-width: 768px) {
	.benefits {
		margin-top: 3px;
		padding: 8px 0 6px;
	}
	#main-column .benefits h2 {
		margin-bottom: 4px;
	}
	.benefits a {
		padding: 7px 0 5px;
		font-size: 1.6rem;
		font-weight: 300;
	}
}

/* アイコンカテゴリナビ */
@keyframes bounce {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}
.nav-category-page {
	max-width: 1000px;
	margin: 0 auto;
}
.nav-category-page > ul {
	display: flex;
	flex-wrap: wrap;
}
.nav-category-page > ul > li {
	position: relative;
}
.nav-category-page > ul > li.hot::before {
	position: absolute;
	top: 0;
	left: 12%;
	/*
	right: 50%;
	transform: translateX(-30%);
	*/
	display: block;
	content: '';
	width: 29px;
	height: 34px;
	background: url('pic-labo/icon_flame.png') no-repeat;
	background-size: cover;
	pointer-events: none;
	z-index: 1;
	animation: bounce 1.4s ease-in-out forwards;
	animation-iteration-count: infinite;
}
.nav-category-page > ul > li.present::before {
	position: absolute;
	top: 0;
	left: 12%;
	/*
	right: 50%;
	transform: translateX(-30%);
	*/
	display: block;
	content: '';
	width: 29px;
	height: 30px;
	background: url('pic-labo/icon_present.png?') no-repeat;
	background-size: cover;
	pointer-events: none;
	z-index: 1;
	animation: bounce 1.4s ease-in-out forwards;
	animation-iteration-count: infinite;
}
.nav-category-page > ul > li > a {
	position: relative;
	display: block;
	padding: 10px 5px;
	font-size: 1.4rem;
	line-height: 1.25;
	text-align: center;
}

.nav-category-page > ul > li.nav-category-maternity > a::before { background-position: 0 -720px; }
.nav-category-page > ul > li.nav-category-nursing > a::before { background-position: 0 0; }
.nav-category-page > ul > li.nav-category-underwear > a::before { background-position: 0 -540px; }
.nav-category-page > ul > li.nav-category-formal > a::before { background-position: 0 -1620px; }
.nav-category-page > ul > li.nav-category-bottoms > a::before { background-position: 0 -900px; }
.nav-category-page > ul > li.nav-category-mamacoat > a::before { background-position: 0 -1680px; }
.nav-category-page > ul > li.nav-category-cape > a::before { background-position: 0 -2040px; }
.nav-category-page > ul > li.nav-category-knit > a::before { background-position: 0 -4260px; }
.nav-category-page > ul > li.nav-category-pajama > a::before { background-position: 0 -1500px; }
.nav-category-page > ul > li.nav-category-bag > a::before { background-position: 0 -2220px; }
.nav-category-page > ul > li.nav-category-trampoline > a::before {  background-position: 0 -3960px; }
.nav-category-page > ul > li.nav-category-baby > a::before {  background-position: 0 -2760px; }
.nav-category-page > ul > li.nav-category-onepiece > a::before {  background-position: 0 -780px; }
.nav-category-page > ul > li.nav-category-swimwear > a::before {  background-position: 0 -1440px; }
.nav-category-page > ul > li > a:hover::before {
	opacity: .8;
}

.nav-category-baby > ul > li > a::before {
	background: url('images/pict-catebaby.webp') no-repeat;
}
.nav-category-baby > ul > li.nav-category-babyhakama > a::before { background-position: 0 0; }
.nav-category-baby > ul > li.nav-category-babywear > a::before { background-position: 0 -60px; }
.nav-category-baby > ul > li.nav-category-babydress > a::before { background-position: 0 -120px; }
.nav-category-baby > ul > li.nav-category-babyunderwear > a::before { background-position: 0 -180px; }
.nav-category-baby > ul > li.nav-category-babyhairband > a::before { background-position: 0 -240px; }
.nav-category-baby > ul > li.nav-category-babysocks > a::before { background-position: 0 -300px; }
.nav-category-baby > ul > li.nav-category-babybackpack > a::before { background-position: 0 -360px; }
.nav-category-baby > ul > li.nav-category-kidswear > a::before { background-position: 0 -420px; }
.nav-category-baby > ul > li.nav-category-babyschoolbag > a::before { background-position: 0 -480px; }
.nav-category-baby > ul > li.nav-category-babytoy > a::before { background-position: 0 -540px; }
.nav-category-baby > ul > li.nav-category-babyswaddle > a::before { background-position: 0 -720px; }
.nav-category-baby > ul > li.nav-category-babysleeper > a::before { background-position: 0 -780px; }
.nav-category-baby > ul > li.nav-category-babybib > a::before { background-position: 0 -600px; }
.nav-category-baby > ul > li.nav-category-babybathtowel > a::before { background-position: 0 -840px; }
.nav-category-baby > ul > li.nav-category-nursingpillow > a::before { background-position: 0 -900px; }
.nav-category-baby > ul > li.nav-category-babycarrier > a::before { background-position: 0 -960px; }
.nav-category-baby > ul > li.nav-category-babyfurniture > a::before { background-position: 0 -1080px; }
.nav-category-baby > ul > li.nav-category-babytableware > a::before { background-position: 0 -1140px; }
.nav-category-baby > ul > li.nav-category-photoaccessories > a::before { background-position: 0 -660px; }
.nav-category-baby > ul > li.nav-category-nursingcover > a::before { background-position: 0 -1200px; }
.nav-category-baby > ul > li.nav-category-babystroller > a::before { background-position: 0 -1020px; }

.nav-category-page-pet > ul > li > a::before {
	content: none;
}
.nav-category-page-pet > ul > li > a > img {
	margin: 0 auto 4px;
	border: 1px solid #d7d7d7;
	border-radius: 50%;
}
@media only screen and (max-width: 767px) {
	.nav-category-page-pet > ul > li,
	.nav-category-page > ul > li {
		width: 33.333333333%;
		width: calc( 100% / 3 );
	}
}
@media print, screen and (min-width: 768px) {
	.nav-category-page > ul {
		padding: 0;
	}
	.nav-category-page > ul > li {
		width: 11.1111111111%;
		width: calc( 100% / 9 );
	}
	.nav-category-page-pet > ul > li {
		width: auto;
		flex: 1;
	}
	.nav-category-page > ul > li > a {
		font-size: 1.5rem;
		font-weight: 300;
	}
	.nav-category-page > ul > li > a::before {
		margin-bottom: 10px;
	}
	.nav-category-page-pet > ul > li > a > img {
		max-width: 140px;
		max-height: 140px;
	}
}

/*
@media print, screen and (min-width: 768px) {
	.nav-category-page > ul {
		justify-content: center;
	}
	.nav-category-page > ul > li {
		width: calc( 100% / 6 );
		flex: none;
	}
}
*/

/* 新作 */
.list-newitem {
	display: flex;
	flex-wrap: wrap;
}
.list-newitem h4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin: 4px 0;
	font-size: 1.3rem;
	overflow: hidden;
}
.list-newitem .down,
.price_list {
	display: none;
}
.price {
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1;
	text-align: center;
}
img + .price {
	margin-top: 4px;
}
.price .tax {
	margin-left: 2px;
	font-size: 1rem;
}
a:hover .price {
	background: none;
}
@media only screen and (max-width: 767px) {
	.list-newitem > li {
		width: 32%;
		width: calc( (100% - 12px) / 3 );
	}
	.list-newitem > li:not(:nth-child(3n+1)) {
		margin-left: 6px;
	}
	.list-newitem > li:nth-child(n+4) {
		margin-top: 10px;
	}
}
@media print, screen and (min-width: 768px) {
	.list-newitem > li {
		width: 24%;
		width: calc( ( 100% - 60px ) / 4 );
	}
	.list-newitem > li:nth-child(n+9) {
		display: none;
	}
	.list-newitem > li:not(:nth-child(4n+1)) {
		margin-left: 20px;
	}
	.list-newitem > li:nth-child(n+5) {
		margin-top: 20px;
	}
	.list-newitem h4 {
		margin: 6px 0;
		font-size: 1.3rem;
	}
	.price {
		font-size: 1.8rem;
		font-weight: 300;
	}
	.price .tax {
		font-size: 1.2rem;
	}
}

/* オトクなアイテム */
.special ul {
	display: flex;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.special-sp-col2 > li {
		width: 50%;
	}
	.special-sp-col2 > li:nth-child(odd) {
		padding-right: 3px;
	}
	.special-sp-col2 > li:nth-child(even) {
		padding-left: 3px;
	}
	.special-sp-col2 > li:nth-child(n+3) {
		margin-top: 6px;
	}
}
@media print, screen and (min-width: 768px) {
	/* 3列×2 */
	.special-pc-col3 > li {
		width: 32%;
		width: calc( ( 100% - 20px ) / 3 );
	}
	.special-pc-col3 > li:not(:nth-child(3n+1)) {
		margin-left: 10px;
	}
	.special-pc-col3 > li:nth-child(n+4) {
		margin-top: 10px;
	}

	/* 4列×1 */
	.special-pc-col4 > li {
		width: 24%;
		width: calc( ( 100% - 30px ) / 4 );
	}
	.special-pc-col4 > li:not(:nth-child(4n+1)) {
		margin-left: 10px;
	}
	.special-pc-col4 > li:nth-child(n+5) {
		margin-top: 10px;
	}
}

/* 新着情報 */
.news {
	max-width: 800px;
	margin: 0 auto !important;
	padding: 0 10px !important;
}
#main-column .news h2 {
	font-family: inherit !important;
}
.news ul {
	margin-top: 10px;
	border-top: 1px dashed #d7d7d7;
}
.news li {
	border-bottom: 1px dashed #d7d7d7;
}
.news a {
	display: flex;
	align-items: center;
	padding: 5px 4px 3px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.25em;
}
.news .date {
	margin-right: 1.25em;
	font-size: 1.3rem;
}
@media print, screen and (min-width: 768px) {
	.news a {
		padding: 8px 1em 7px;
		font-size: 1.7rem;
		font-weight: 300;
	}
	.news .date {
		margin-right: 1.5em;
		font-size: 1.3rem;
	}
}

/* howto */
#main-column .howto h2 img {
	display: block;
	width: 120px;
	margin: 40px auto 20px;
}
@media print, screen and (min-width: 768px) {
	.howto h2 img {
		width: 166px;
		margin: 60px auto 25px;
	}
}

/* instagram */
.main .instagram .accountname {
	font-size: 1.4rem;
}
.instagram .accountname i {
	margin-right: 2px;
	font-size: 140%;
	vertical-align: -20%;
}
.instagram .swiper-wrapper {
	transition-timing-function: linear !important;
}
.instagram .swiper-slide::before {
	display: block;
	content: '';
	padding-top: 100%; /* 正方形にする */
}
.instagram .swiper-slide > a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.instagram .swiper-slide > a > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ベビー・アイコンカテゴリ 削除予定 */
.category-use {
	background: #f6f4f3;
	border-radius: 8px;
	color: #aa9e99;
}
#main-column .category-use h2,
#main-column .brand h2 {
	margin: 0;
	padding: 30px 20px 26px;
	font-family: 'Marcellus', serif;
	font-size: 2.1rem;
	text-align: center;
}
.category-use ul {
	display: flex;
	flex-wrap: wrap;
}
.category-use li {
	width: 33.3333333333%;
	width: -webkit-calc(100% / 3);
	width: calc(100% / 3);
	border-top: 1px dotted #d4cecc;
}
*::-ms-backdrop, .category-use li {
	width: 33.3333333333%;
}
.category-use li:nth-child(3n-1),
.category-use li:nth-child(3n) {
	border-left: 1px dotted #d4cecc;
}
.category-use a {
	position: relative;
	display: block;
	padding: 10px;
	color: #aa9e99 !important;
	font-size: 1.2rem;
	text-decoration: none !important;
}
.category-use a::before {
	content: '';
	display: block;
	position: absolute;
}
.category-dress a::before {
	width: 31px;
	height: 35px;
	background: url('/baby/images/icon-dress.svg') no-repeat;
	background-size: 31px 35px;
}
.category-stroller a::before {
	width: 35px;
	height: 31px;
	background: url('/baby/images/icon-stroller.svg') no-repeat;
	background-size: 35px 31px;
}
.category-sleep a::before {
	width: 30px;
	height: 26px;
	background: url('/baby/images/icon-sleep.svg') no-repeat;
	background-size: 30px 26px;
}
.category-furniture a::before {
	width: 35px;
	height: 26px;
	background: url('/baby/images/icon-furniture.svg') no-repeat;
	background-size: 35px 26px;
}
.category-toy a::before {
	width: 36px;
	height: 25px;
	background: url('/baby/images/icon-toy.svg') no-repeat;
	background-size: 36px 25px;
}
.category-organic a::before {
	width: 28px;
	height: 26px;
	background: url('/baby/images/icon-organic.svg') no-repeat;
	background-size: 28px 26px;
}
@media only screen and (max-width: 767px) {
	.category-use {
		margin: 10px 10px 30px;
	}
	.category-use li {
		position: relative;
	}
	.category-use li::before {
		content: '';
		display: block;
		padding-top: 75%;
	}
	.category-use a {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		padding-top: 50%;
		text-align: center;
	}
	.category-use a::before {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -85%);
	}
}
@media print, screen and (min-width: 768px) {
	.category-use {
		margin: 40px 0;
	}
	.category-use a {
		padding: 20px 20px 20px 64px;
		font-size: 1.6rem;
	}
	.category-use a::before {
		position: absolute;
		top: 50%;
		left: 20px;
		transform: translate(0, -50%);
		vertical-align: middle;
	}
}

/* ランキング トップページのみ新スタイル 2024.1 */
.list-ranking ol {
	display: flex;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.list-ranking ol > li:nth-child(-n+2) {
		width: calc( ( 100% - 6px ) / 2 );
	}
	.list-ranking ol > li:nth-child(n+3) {
		width: calc( ( 100% - 12px ) / 3 );
		margin-top: 20px;
	}
	.list-ranking ol > li:nth-child(2),
	.list-ranking ol > li:nth-child(n+4) {
		margin-left: 6px;
	}
}
@media print, screen and (min-width: 768px) {
	.list-ranking ol > li {
		flex: 1;
	}
	.list-ranking ol > li:nth-child(n+2) {
		margin-left: 12px;
	}
}

/* ベビー・ピックアップ */
.pickup {
	margin: 0;
	padding: 0;
	border: 0;
}
.pickup > dd {
	padding: 6px;
	border-radius: 8px;
}
.pickup > dd.pickup-red {
	background: #fce7e5 url('/baby/images/bg-pickup-01.png');
}
.pickup > dd.pickup-blue {
	background: #dbf4f6 url('/baby/images/bg-pickup-02.png');
}
.pickup-container {
	padding: 10px 10px 12px;
	background: #fff;
}
.pickup h3 {
	margin: 8px 0;
	font-size: 1.6rem;
}
.pickup-red h3 {
	color: #fe6072;
}
.pickup-blue h3 {
	color: #3fbcc3;
}
.pickup h3 span {
	display: block;
	margin: 0 0 8px;
	color: #000;
	font-size: 1.2rem;
}
.pickup .description {
	font-size: 1.4rem;
	line-height: 1.5;
}
.pickup .btn-more a {
	margin: 15px auto 10px;
}
@media only screen and (max-width: 767px) {
	.pickup > dd:nth-of-type(n+2) {
		margin-top: 10px;
	}
}
@media print, screen and (min-width: 768px) {
	.pickup {
		display: flex;
		flex-wrap: wrap;
	}
	.pickup > dt {
		width: 100%;
	}
	.pickup > dd {
		width: calc(50% - 10px);
		padding: 10px;
	}
	.pickup > dd:nth-of-type(even) {
		margin-left: 20px;
	}
	.pickup-container {
		padding: 20px;
	}
	.pickup h3 {
		margin: 18px 0;
		font-size: 2.2rem;
	}
	.pickup h3 span {
		margin: 0 0 10px;
		font-size: 1.4rem;
	}
	.pickup .description {
		font-size: 1.6rem;
	}
}

/* ベビー・特集アイテム */
.feature ul {
	display: flex;
	flex-wrap: wrap;
}
.feature h3 {
	margin-top: 4px;
	font-size: 1.2rem;
}
.feature a {
	text-decoration: none !important;
}
@media only screen and (max-width:767px) {
	.feature h2 span {
		display: block;
		margin-bottom: 4px;
	}
	.feature ul li {
		width: calc( (100% - 8px ) / 2 );
	}
	.feature ul li:nth-child(even) {
		margin-left: 4px;
	}
	.feature ul li:nth-child(n+3) {
		margin-top: 10px;
	}
}
@media print, screen and (min-width:768px) {
	.feature ul li {
		width: 24%;
		width: calc( (100% - 18px) / 4 )
	}
	.feature ul li:not(:nth-child(4n+1)) {
		margin-left: 6px;
	}
	.feature ul li:nth-child(n+5) {
		margin-top: 12px;
	}
	.feature h3 {
		font-size: 1.4rem;
	}
}

/* リコルド */
.ricordo {
	margin: 40px 0 0;
}
.ricordo h2 {
	font-family: 'Playfair Display', 'Shippori Mincho B1', serif;
	font-size: 1.9rem;
	text-align: center;
}
.ricordo h2 em {
	display: block;
	font-size: 2.9rem;
	font-style: normal;
}
.ricordo sup {
	font-size: 1.8rem;
}
.ricordo .produced {
	margin: 10px 0 0;
	font-family: 'Playfair Display', 'Shippori Mincho B1', serif;
	font-size: 1.2rem;
	text-align: center;
	letter-spacing: .25em;
}
.ricordo .fig {
	display: block;
	width: 240px;
	margin: 20px auto;
}
@media print, screen and (min-width:768px) {
	.ricordo {
		margin: 80px 0 0;
	}
	.ricordo h2 {
		font-size: 2.8rem;
		font-weight: 300;
	}
	.ricordo h2 em {
		font-size: 4rem;
	}
	.ricordo sup {
		font-size: 2rem;
	}
	.ricordo .produced {
		font-size: 1.4rem;
	}
	.ricordo .fig {
		width: 360px;
	}
}
.bnr-col1 img {
	margin: 40px auto;
}
@media print, screen and (min-width: 768px) {
	.bnr-col1 img {
		margin: 80px auto;
	}
}

/* ベビーブランド */
.brand {
	background: #fdfbf1;
	border-radius: 8px;
	color: #aa9e99;
}
.brand ul {
	display: flex;
	flex-wrap: wrap;
}
.brand li {
	display: flex;
}
.brand a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 10px;
}
.brand a img {
	width: 100%;
	vertical-align: middle;
}
@media only screen and (max-width: 767px) {
	.brand ul {
		padding: 10px;
	}
	.brand ul li {
		width: calc(100% / 3);
	}
	.brand li a {
		padding: 10px;
	}
}
@media print, screen and (min-width: 768px) {
	.brand ul {
		padding: 20px;
	}
	.brand ul li {
		width: calc(100% / 5);
	}
	*::-ms-backdrop, .brand ul li {
		width: 20%; /* IE11 */
	}
	.brand a {
		padding: 20px;
	}
}

@keyframes fuwa {
	0% {
		transform: translate(0,0px);
	}
	100% {
		transform: translate(0,-8px)
	}
}
/* 卒業式袴 動画 */
.bnr-side a {
	position: fixed;
	bottom: 30px;
	display: block;
	z-index: 99999;
	animation-name: fuwa;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-duration: 1.5s;
}
.bnr-side a:hover {
	opacity: .8;
}
.bnr-sb21062 a {
	right: 8px;
	width: 76px;
	height: 76px;
	background: url('pic-labo/bnr-sb21062.png') no-repeat;
	background-size: cover;
}
.video-contents,
.overlay {
	display: none;
	animation: fadeIn .5s linear 0s;
}
body.fixed2 .overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	content: '';
	background: rgba(0, 0, 0, .8);
	cursor: pointer; /* for iphone */
	z-index: 9999999;
}
body.fixed2 .video-contents {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index: 19999999;
}
body.fixed2 .video-contents::before,
body.fixed2 .video-contents::after {
	position: absolute;
	top: 20px;
	right: 12px;
	display: block;
	content: '';
	width: 18px;
	height: 1px;
	background: #f39797;
	cursor: pointer;
}
body.fixed2 .video-contents::before {
	transform: rotate(45deg);
}
body.fixed2 .video-contents::after {
	transform: rotate(-45deg);
}
body.fixed2 .video-container {
	max-width: 854px;
}
.video-caption {
	margin-top: 4px;
	text-align: center;
}
.video-caption a {
	position: relative;
	display: block;
	color: #fff !important;
	font-weight: 300 !important;
	line-height: 1.25;
}
.video-caption a::after {
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	content: '';
	width: 12px;
	height: 12px;
	border: solid #f39797;
	border-width: 1px 1px 0 0;
	transform: rotate(45deg) translateY(-50%);
}
.video-caption a:hover {
	color: #f39797 !important;
}
.video-caption .itemname {
	display: block;
	font-size: 125%;
}
@media print, screen and (min-width:768px) {
	.bnr-side a {
		bottom: 60px;
	}
	.bnr-sb21062 a {
		right: 18px;
		width: 80px;
		height: 80px;
	}
}

/* ペット・冒頭の訴求 */
.lead {
	margin: 20px 0 40px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.75;
	text-align: center;
}
@media print, screen and (min-width: 768px) {
	.lead {
		margin: 40px 0;
		font-size: 1.8rem;
	}
}

/* ペット バナー */
.bnr-pickup {
	max-width: 616px;
	margin: 0 auto;
	padding: 0 10px;
}
.bnr-pickup .heading {
	font-size: 2rem;
}
.bnr-pickup li {
	margin: 10px 0;
}
.bnr-pickup .textcopy-success-msg {
	background: #bf0000;
}
@media print, screen and (min-width: 768px) {
	.bnr-pickup .heading {
		font-size: 2.8rem;
	}
}

/* ペット・代官山 */
.daikanyama-main p {
	margin: 0;
}
.daikanyama-main {
	line-height: 1.25;
	text-align: center;
}
.daikanyama-main div {
	background-color: #F0F1F3;
	padding: 20px;
	white-space: nowrap;
}
.daikanyama-name {
	font-size: 3.0rem;
	font-weight: 300;
	text-align: center;
	letter-spacing: .2em;
}
.daikanyama-name-sub{
	font-size: 1.5rem;
	font-weight: 300;
	text-align: center;
	letter-spacing: .4em;
}
.daikanyama-main .daikanyama-open {
	margin-top: 1.0em;
	font-size: 2.0rem;
	font-weight: 300;
	text-align: center;
	letter-spacing: .2em;
}
.daikanyama-close{
	font-size: 2.0rem;
	font-weight: 300;
	text-align: center;
	letter-spacing: .2em;
}
.daikanyama-open span,
.daikanyama-close span {
	display: inline-block;
	position: relative;
	padding-right: 1em;
	margin-right: .25em;
	font-size: 75%;
}
.daikanyama-open span {
	padding-right: 1.55em;
}
.daikanyama-open span::after,
.daikanyama-close span::after {
	display: block;
	position:absolute;
	left:0;
	bottom: 3px;
	width: 100%;
	content: '';
	border-bottom: 1px solid #000;
	height: 0;
}
.daikanyama-lead {
	margin-top: 20px;
	padding: 0 10px;
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1.75;
}
.daikanyama-lead a {
	text-decoration: underline;
}
@media screen and (min-width:768px) {
	.daikanyama-main {
		display: flex;
	}
	.daikanyama-main a {
		width:50%;
		flex-shrink: 0;
	}
	.daikanyama-main div {
		display: block;
		padding:50px;
		margin-top: 1.0em;
		margin-bottom: -1.0em;
	}
	.daikanyama-name{
		font-size: 4.6rem;
		white-space: nowrap;
	}
	.daikanyama-name-sub{
		font-size: 2.0rem;
	}
	.daikanyama-main .daikanyama-open{
		font-size: 2.4rem;
	}
	.daikanyama-close {
		font-size: 2.4rem;
	}
	.daikanyama-lead  {
		margin-top: 40px;
		padding: 0;
		font-size: 1.6rem;
		text-align: center;
	}
}

.btn-more + .btn-more a {
	margin-top: -15px;
}
.comingsoon a {
	opacity: .5;
	pointer-events: none;
}

/* GIFT / FAMILY */
.nav-forwhom {
	display: flex;
	flex-wrap: wrap;
}
.nav-forwhom a {
	display: block;
	background: #fff;
	/* box-shadow: 0 0 6px 0 #0000001a; */
	border: 4px solid #ebdfcb;
	border-radius: 6px;
	overflow: hidden;
}
.nav-forwhom p {
	padding: 8px 10px 6px;
	color: #763507;
	font-weight: bold;
	text-align: center;
}
@media only screen and (max-width:767px) {
	.nav-sp2 {
		padding: 0 10px;
	}
	.nav-sp2 > li {
		width: calc( ( 100% - 10px ) / 2 );
	}
	.nav-sp2 > li:nth-child(even) {
		margin-left: 10px;
	}
	.nav-sp2 > li:nth-child(n+3) {
		margin-top: 10px;
	}
}
@media print, screen and (min-width:768px) {
	.nav-pc3 > li {
		width: calc( ( 100% - 40px ) / 3 );
	}
	.nav-sp2 > li:not(:nth-child(3n+1)) {
		margin-left: 20px;
	}
	.nav-sp2 > li:nth-child(n+4) {
		margin-top: 20px;
	}
	.nav-forwhom a {
		border-radius: 12px;
	}
	.nav-forwhom p {
		padding: 8px 14px 7px;
	}
}

/* 2023福袋展開用 */
.happybag > ul {
	display: flex;
	flex-wrap: wrap;
}
@media only screen and (max-width:767px) {
	.happybag > ul > li {
		width: calc( ( 100% - 6px) / 2 );
	}
	.happybag > ul > li:nth-child(even) {
		margin-left: 6px;
	}
	.happybag > ul > li:nth-child(n+2) {
		margin-top: 6px;
	}
}
@media print, screen and (min-width:768px) {
	.happybag > ul > li {
		width: calc( ( 100% - 20px) / 3 );
	}
	.happybag > ul > li:not(:nth-child(3n+1)) {
		margin-left: 10px;
	}
	.happybag > ul > li:nth-child(n+4) {
		margin-top: 10px;
	}
}
