@charset "utf-8";
/* CSS Document */


/* =====================================
== Reset Common Stylesheet
===================================== */

html{
	color:#000;
	background:#FFF;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,iframe,textarea,p,blockquote,th,td {
	margin:0;
	padding:0;
}

table {
	/*border-collapse:collapse;*/
	border-spacing:0;
}

fieldset,img {
	border:0;
	vertical-align:top;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}

ol,ul {
	list-style:none;
}

caption,th {
	text-align:left;
}

h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}

q:before,q:after {
	content:'';
}

abbr,acronym {
	border:0;
	font-variant:normal;
}

sup {
	vertical-align:text-top;
}
sub {
	vertical-align:text-bottom;
}

input,textarea,select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}

input,textarea,select {
	font-size:100%;
}

* {
	box-sizing: border-box;
	min-width: auto;
	min-height: auto;
}

legend {color:#000;}

html{
	font-size: 62.5%;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

a{
	text-decoration: none;
}


/* =====================================
== All Common Stylesheet
===================================== */

:root {
	--black: #000000;
	--white: #ffffff;

	--priceColor: #fe0000;
	--buttonColor: darkorange;

	--paramountColorA: #013567;
	--paramountColorB: #75b8d2;
	--paramountColorC: #003567;
	--paramountColorD: #707070;
	--paramountColorE: #8C8C8C;
	--paramountColorF: #F5F5F5;
	--paramountColorG: #57C3EA;
	--paramountColorH: #616161;
	--paramountColorI: #F6F6F6;
	--paramountColorj: #CCCCCC;
	--paramountColorK: #d4d4d4;
	--paramountColorL: #e2f4f8;
	--paramountColorM: #d8eaf8;

	--sizeColorSS: #6A7FAA;
	--sizeColorS: #90958F;
	--sizeColorSD: #88776F;

	--dropShadow: 0 .3rem 1rem #77777740;

	--transitionNormal: all .3s ease-in-out;
	--opacity80: .8;
}

body {
	font-size: 1.4rem;
	font-family: 'Yu Gothic', '游ゴシック', YuGothic, '游ゴシック体', sans-serif;
}

#productDetailsArea img {
	width: 100%;
	height: auto;
}

[blockContents] {display: block;}

main.fs-l-main {
	padding: 0 1rem;
	box-sizing: border-box;
}

#fs_Top main.fs-l-main {
	padding: 0;
}

@media only screen and (max-width: 768px) {
	main.fs-l-main {
	padding: 0 1.6rem;
	}
}

.productContentsInner a{
	display: flex;
	justify-content: center;
}


/* =====================================
== Header Stylesheet
===================================== */

header {
	width: 100%;
	background: var(--white);
	border-bottom: .2rem solid var(--paramountColorj);
	padding: 2rem 2rem 0;
	margin: 0 auto;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
}
@media only screen and (max-width: 1000px) {
	header {
		border-bottom: 0;
		padding: 1.5rem;
	}
}

header img {
	width: 100%;
	height: auto;
	margin: 0;
}

header a {
	color: inherit;
	text-decoration: none;
}

header span {
	font-size: inherit;
	line-height: inherit;
}

header a:link {
	color: inherit;
}

header a:hover {
	text-decoration: none;
}


.header__inner {
	max-width: 135rem;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.header__inner__contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media only screen and (max-width: 1000px) {
	.header__inner__contents {
		align-items: end;
		justify-content: center;
		gap: 1.5rem;
	}

	.header__inner__contents:has( .header__inner__contents__nav) {
		display: none;
	}
}

.header__inner__contents__logo {
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.615;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
}
@media only screen and (max-width: 640px) {
	.header__inner__contents__logo {
		font-size: 2.32vw;
	}
}

.header__inner__contents__logo a {
	color: inherit;
	display: flex;
	align-items: end;
	gap: 1.75rem;
}

.header__inner__contents__logo img {
	max-width: 22rem;
	transition: var(--transitionNormal);
}
.header__inner__contents__logo img:hover{
	opacity: var(--opacity80);
}
@media only screen and (max-width: 640px) {
	.header__inner__contents__logo img {
		max-width: 32vw;
	}
}

.header__inner__contents__logo span {
	display: block;
	transform: translateY(17.5%);
}

body:not(#fs_ProductDetails) .header__inner__contents__logo span {display: none;}

.header__inner__contents__logo em {
	font-weight: inherit;
	display: block;
}

.header__inner__contents__text {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
}
@media only screen and (max-width: 640px) {
	.header__inner__contents__text {
		font-size: 2.32vw;
		line-height: 1.35;
		text-align: left;
	}
}

.header__inner__contents__text em {
	font-size: 80%;
	font-weight: inherit;
}
@media only screen and (max-width: 640px) {
	.header__inner__contents__text em {
		display: block;
	}
}

body#fs_ProductDetails .header__inner__contents__text {display: none;}

.header__inner__contents__list {
	display: flex;
}
@media only screen and (max-width: 1000px) {
	.header__inner__contents__list {
		position: fixed;
		top: 0;
		right: 0;
		transform: translate(-1.5rem, 1.5rem);
	}
}
@media only screen and (max-width: 640px) {
	.header__inner__contents__list {
		transform: translate(-1.5rem, 1.15rem);
	}
}
@media only screen and (max-width: 430px) {
	.header__inner__contents__list {
		transform: translate(-3.48vw, 3vw);
	}
}

.header__inner__contents__list li {
	width: 6rem;
	height: 6rem;
}
.header__inner__contents__list li:not([data="cart"]){
	transition: var(--transitionNormal);
}


.header__inner__contents__list li[data="search"] {
	width: 25rem;
	display: flex;
	align-items: center;
}
@media only screen and (max-width: 1140px) {
	.header__inner__contents__list li[data="search"] {
		width: 20vw;
	}
}

.header__inner__contents__list li[data="search"] form {
	max-width: 43rem;
	width: 100%;
	height: 4.3rem;
	display: flex;
}

.header__inner__contents__list__search__input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;

	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	border: .1rem solid var(--paramountColorC);
	padding: 1.2rem;
	box-sizing: border-box;
}

.header__inner__contents__list__search__button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
	max-width: 4.3rem;
	width: 100%;
	height: 100%;
	font-size: 0;
	background: 
		url('https://paramount.itembox.design/item/images/top/icon_search02.png') center / 54% no-repeat, 
		var(--paramountColorC)
	;
}

@media only screen and (max-width: 1000px) {
	.header__inner__contents__list li {
		width: 4rem;
		height: 4rem;
		border: none;
	}

	.header__inner__contents__list li:not([data="cart"]) {
		display: none;
	}
}

.header__inner__contents__list li a {
	height: 100%;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
	background: var(--white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .67rem;
}
@media only screen and (max-width: 1000px) {
	.header__inner__contents__list li a {
		font-size: 0;
	}
	.header__inner__contents__list li a span{
		display: none;
	}
}
@media only screen and (max-width: 640px) {
	.header__inner__contents__list li a {
		align-items: end;
		justify-content: center;
	}
}

.header__inner__contents__list li a span{
	font-size: inherit;
}

.header__inner__contents__list li[data="cart"] a {
	color: var(--white);
	background: var(--paramountColorC);
	border: 1px solid var(--paramountColorC);
	transition: var(--transitionNormal);
}
.header__inner__contents__list li[data="cart"] a:hover {
	color: var(--paramountColorC);
	background: var(--white);
}
@media only screen and (max-width: 1000px) {
	.header__inner__contents__list li[data="cart"] a {
		background: transparent;
	}
	.header__inner__contents__list li[data="cart"] a{
		border: none;
	}
}

.header__inner__contents__list li a img {
	max-width: 2rem;
}

.header__inner__contents__list li[data="cart"] a img {
	max-width: 2.4rem;
	filter: grayscale(100) brightness(255);
}
.header__inner__contents__list li[data="cart"] a:hover img {
	filter: none;
}
@media only screen and (max-width: 1000px) {
	.header__inner__contents__list li[data="cart"] a img {
		max-width: 3.5rem;
		filter: none;
	}
}
@media only screen and (max-width: 430px) {
	.header__inner__contents__list li[data="cart"] a img {
		max-width: 8.13vw;
	}
}

.header__inner__contents__menu {
	display: none;
	outline: none;
}
@media only screen and (max-width: 1000px) {
	.header__inner__contents__menu {
		width: 4rem;
		height: 4rem;
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		transform: translate(1.5rem, 1.5rem);
	}
}
@media only screen and (max-width: 430px) {
	.header__inner__contents__menu {
		transform: translate(3vw, 4vw);
	}
}

.header__inner__contents__menu::after {
	content: '\30E1\30CB\30E5\30FC';
	font-size: .8rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
	margin: auto;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
@media only screen and (max-width: 640px) {
	.header__inner__contents__menu::after {
		transform: translateY(-75%);
	}
}

.header__inner__contents__menu span {
	width: 3rem;
	height: .2rem;
	background: var(--paramountColorC);
	margin: auto;
	display: block;
	transition: var(--transitionNormal);
}
@media only screen and (max-width: 430px) {
	.header__inner__contents__menu span {
		width: 6.97vw;
	}
}

.header__inner__contents__menu span:nth-child(2) {
	margin: .8rem auto;
}
@media only screen and (max-width: 640px) {
	.header__inner__contents__menu span:nth-child(2) {
		margin: .5rem auto;
	}
}
.header__inner__contents__menu.js--active span:nth-child(1){
	-webkit-transform: translateY(20px) rotate(-45deg);
	transform: translateY(5px) rotate(-45deg);
}
.header__inner__contents__menu.js--active span:nth-child(2){
	opacity: 0;
}
.header__inner__contents__menu.js--active span:nth-child(3){
	-webkit-transform: translateY(-20px) rotate(45deg);
	transform: translateY(-9px) rotate(45deg);
}
.header__inner__contents__nav {
	width: 100%;
}

.header__inner__contents__nav__list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.header__inner__contents__nav__list::before,
.header__inner__contents__nav__list::after {
	content: '';
	width: .3rem;
	height: calc(100% - 2rem * 2);
	background: var(--paramountColorK);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.header__inner__contents__nav__list::before {left: 0;}
.header__inner__contents__nav__list::after {right: 0;}

.header__inner__contents__nav__list > li {
	max-width: calc(100% / 6);
	width: 100%;
	transition: var(--transitionNormal);
}
.header__inner__contents__nav__list > li:hover{
	background: var(--paramountColorM);
}


.header__inner__contents__nav__title {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
	padding: 2.5rem 0;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
	transition: var(--transitionNormal);
}

.header__inner__contents__nav__title a{
	color: inherit;
}

.header__inner__contents__nav__list li:not(:last-child) .header__inner__contents__nav__title::before {
	content: '';
	width: .3rem;
	height: calc(100% - 1rem * 2);
	background: var(--paramountColorK);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.header__inner__contents__nav__list__mega {
	display: none;
}

.header__inner__contents__nav__list li:hover .header__inner__contents__nav__list__mega {
	width: 100%;
	background: var(--white);
	border: .2rem solid var(--paramountColorK);
	padding: 2rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10000;
	transform: translateY(100%);
}
.header__inner__contents__nav__list [data="store"]:hover .header__inner__contents__nav__list__mega{
	/*justify-content: left;*/
	justify-content: center;
	width: 33.5%;
	left: inherit;
	right: 0;
}

.header__inner__contents__nav__list__mega__inner:not(:last-child) {
	border-right: .2rem solid var(--paramountColorK);
	padding-right: 5rem;
	margin-right: 5rem;
	box-sizing: border-box;
}

[data="guide"] .header__inner__contents__nav__list__mega__inner:not(:last-child) {
	border-right: none;
	padding-right: 0;
	margin-right: 2rem;
}

.header__inner__contents__nav__list__mega__inner__title {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorD);
	padding: 1rem 0;
	margin-bottom: 1rem;
	box-sizing: border-box;
}

ul.header__inner__contents__nav__list__mega__inner__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
}

ul.header__inner__contents__nav__list__mega__inner__list li {
	width: 100%;
	transition: var(--transitionNormal);
}
ul.header__inner__contents__nav__list__mega__inner__list li:hover{
	opacity: var(--opacity80);
}

ul.header__inner__contents__nav__list__mega__inner__list li a {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	background: var(--paramountColorL);
	padding: 1.2rem 3rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 2.5rem;
	position: relative;
}

[data="bed"] ul.header__inner__contents__nav__list__mega__inner__list li a::after {
	content: '';
	width: 9px;
	height: 9px;
	border-top: .1rem solid var(--paramountColorC);
	border-right: .1rem solid var(--paramountColorC);
	margin-top: auto;
	margin-bottom: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 2rem;
	display: inline-block;
	transform: rotate(45deg);
	transition: var(--transitionNormal);
}

ul.header__inner__contents__nav__list__mega__inner__list li a img {
	max-width: 3.4rem;
}

[data="guide"] ul.header__inner__contents__nav__list__mega__inner__list {
	max-width: 26.5rem;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 2rem;
}

[data="guide"] ul.header__inner__contents__nav__list__mega__inner__list li {
	max-width: calc((100% - 2rem) / 2);
	width: 100%;
}

[data="guide"] .header__inner__contents__nav__list__mega__inner__list li a {
	background: initial;
	padding: 0;
}

[data="guide"] .header__inner__contents__nav__list__mega__inner__list li a img {
	max-width: none;
}


dl.header__inner__contents__nav__list__mega__inner__list {
	display: flex;
	justify-content: center;
	gap: 3rem;
}


[data="guide"] dl.header__inner__contents__nav__list__mega__inner__list {
	gap: 4rem;
}
.header__inner__contents__nav__list__mega__inner__list__group{
	transition: var(--transitionNormal);
}
.header__inner__contents__nav__list__mega__inner__list__group:hover{
	opacity: var(--opacity80);
}
.header__inner__contents__nav__list__mega__inner__list__group__title {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorD);
	padding: 1.2rem 0;
	margin-bottom: 1rem;
	box-sizing: border-box;
}

.header__inner__contents__nav__list__mega__inner__list__group__title small {
	font-size: 62.5%;
	font-weight: normal;
	margin-top: 1em;
	display: block;
}

.header__inner__contents__nav__list__mega__inner__list__group dd {
	border: .1rem solid var(--paramountColorD);
	padding: .4rem;
	box-sizing: border-box;
}

.header__inner__contents__nav__list__mega__list {
	width: 95%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 2rem;
}

.header__inner__contents__nav__list__mega__list li {
	max-width: calc((100% - 2rem * 3) / 4);
	width: 100%;
	transition: var(--transitionNormal);
}
.header__inner__contents__nav__list__mega__list li:hover{
	opacity: var(--opacity80);
}

[data="mattress"] .header__inner__contents__nav__list__mega__list li {
	max-width: calc((100% - 2rem * 2) / 3);
	width: 100%;
}

.header__inner__contents__nav__list__mega__list li a {
	width: 100%;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorD);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1.5rem;
}

.header__inner__contents__nav__list__mega__list li a small {
	font-size: 62.5%;
	font-weight: normal;
	margin-top: 1em;
	display: block;
}

.header__inner__contents__nav__list__mega__list img {
	max-width: 8.5rem;
	border: .1rem solid var(--paramountColorD);
	padding: .4rem;
	box-sizing: border-box;
}

.headerMenu {
	width: 100%;
	height: 100vh;
	background: var(--white);
	padding: 1.5rem 0 7.5rem;
	margin: 0 auto;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 1000;
	transition: var(--transitionNormal);
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	/* -webkit-overflow-scrolling: auto !important; */
}

.headerMenu.js--active {
	left: 0;
}

.headerMenu img {
	width: 100%;
	height: auto;
}

.headerMenu__list {
	padding: 0 1.5rem;
	margin-bottom: 2rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: start;
	gap: .5rem;
}

.headerMenu__list li{
	max-width: 9.4rem;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
}
@media only screen and (max-width: 750px) {
	.headerMenu__list li:nth-child(n + 5) {
		display: none;
	}
}

.headerMenu__list li a {
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
	background: var(--paramountColorF);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .9rem;
}

.headerMenu__list li a img {
	max-width: 4rem;
}

.headerMenu__search {
	padding: 0 1.5rem;
	margin-bottom: 3rem;
	box-sizing: border-box;
}

.headerMenu__search form {
	width: 100%;
	height: 4.3rem;
	display: flex;
}

.headerMenu__search__input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;

	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	border: .1rem solid var(--paramountColorC);
	padding: 1.2rem;
	box-sizing: border-box;
}

.headerMenu__search__button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;

	max-width: 4.3rem;
	width: 100%;
	height: 100%;
	font-size: 0;
	background: 
		url('https://paramount.itembox.design/item/images/top/icon_search02.png') center / 54% no-repeat, 
		var(--paramountColorC)
	;
}

.headerMenu__contents {
	margin-bottom: 7.5rem;
	display: flex;
	flex-direction: column;
	gap: .1rem;
}

.headerMenu__contents__inner {
}

.headerMenu__contents__inner__title {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--white);
	background: var(--paramountColorC);
	padding: 2.8rem 1.5rem;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
}

.headerMenu__contents__inner__title::after {
	content: '';
	width: 9px;
	height: 9px;
	border-top: .1rem solid var(--white);
	border-right: .1rem solid var(--white);
	margin-top: auto;
	margin-bottom: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1.75rem;
	display: inline-block;
	transform: rotate(135deg);
	transition: var(--transitionNormal);
}

.headerMenu__contents__inner__title.js--active::after {
	transform: rotate(-45deg);
}

ul.headerMenu__contents__inner__list {
	padding: 0 1.5rem;
	box-sizing: border-box;
}

.headerMenu__contents__inner__list li:not(:last-child) {
	border-bottom: .1rem solid var(--paramountColorK);
}

.headerMenu__contents__inner__list li a {
	width: 100%;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorH);
	padding: 2.5rem 0;
	box-sizing: border-box;
	display: block;
	position: relative;
}

.headerMenu__contents__inner__list li a::after {
	content: '';
	width: 9px;
	height: 9px;
	border-top: .1rem solid var(--paramountColorH);
	border-right: .1rem solid var(--paramountColorH);
	margin-top: auto;
	margin-bottom: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: .25rem;
	display: inline-block;
	transform: rotate(45deg);
	transition: var(--transitionNormal);
}

.headerMenu__contents__inner__list li a small {
	font-size: 62.5%;
	font-weight: normal;
	margin-top: .35em;
	display: block;
}

.headerMenu__contents__inner > section {
	padding: 2rem 1.5rem;
	box-sizing: border-box;
}

.headerMenu__contents__inner > section:not(:last-child) {
	border-bottom: .1rem solid var(--paramountColorK);
}


.headerMenu__contents__inner__subtitle {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	margin-bottom: 1.4rem;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
}

dl.headerMenu__contents__inner__list {
}

[data="guide"] dl.headerMenu__contents__inner__list {
	padding: 0 1.5rem;
	box-sizing: border-box;
}

[data="store"] dl.headerMenu__contents__inner__list {
	padding: 0 1.5rem;
	box-sizing: border-box;
}


.headerMenu__contents__inner__list__group {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}

[data="guide"] .headerMenu__contents__inner__list__group {
	border-bottom: .1rem solid var(--paramountColorK);
	padding: 2rem 0;
	box-sizing: border-box;
	flex-direction: row-reverse;
}

[data="store"] .headerMenu__contents__inner__list__group {
	padding: 2rem 0;
	box-sizing: border-box;
}

.headerMenu__contents__inner__list__group dt {
	max-width: 18.4rem;
	width: 100%;
	aspect-ratio: 1 / 1;
}

[data="guide"] .headerMenu__contents__inner__list__group dt {
	max-width: none;
	width: 100%;
	aspect-ratio: inherit;
}

.headerMenu__contents__inner__list__group dd {
	width: 100%;
}

[data="guide"] .headerMenu__contents__inner__list__group dd {
	max-width: 18.4rem;
	aspect-ratio: 1 / 1;
}

.headerMenu__contents__inner__list__group ul.headerMenu__contents__inner__list__group__list li:not(:last-child) {
	border-bottom: .1rem solid var(--paramountColorK);
}

.headerMenu__contents__inner__list__group ul.headerMenu__contents__inner__list__group__list li a,
.headerMenu__contents__inner__list__group .headerMenu__contents__inner__list__group__title a{
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorH);
	padding: 1.4rem 0;
	box-sizing: border-box;
}

.headerMenu__snslist {
	padding: 0 1.5rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3.5rem;
}

.headerMenu__snslist li{
	max-width: 5.5rem;
}


.headerHeight {
	height: 1.5rem;
	box-sizing: content-box;
}


/* =====================================
== Top Slider Stylesheet
===================================== */

.mv {
	margin-bottom: 7rem;
	position: relative;
	aspect-ratio: 390 / 162.64;
	overflow: hidden;
}

.mv img {
	width: 100%;
	height: auto;
}

.mv_slider{
	display: flex;
}

.mv_slider.slick-initialized{
	display: block;
}

.mv .mv_slider.slick-slider {
	margin-bottom: 0;
}

.mv .mv_slider li {
	max-width: 135rem;
	width: 100%;
}
.mv .mv_slider li{
	transition: var(--transitionNormal);
}
.mv .mv_slider li :hover{
	opacity: var(--opacity80);
}

.mv .slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	bottom: -2rem;
	transform: translateY(100%);
}

.mv .slick-dots li {
	width: .8rem;
	height: .8rem;
	aspect-ratio: 1 / 1;
	margin: 0;
}

.mv .slick-dots li button {
	width: 100%;
	height: 100%;
	padding: 0;
}

.mv .slick-dots li button:before {
	content: '';
	width: 100%;
	height: 100%;
	font-size: 0;
	line-height: 1;
	background: var(--paramountColorj);
	border-radius: 50%;
	box-sizing: border-box;
	display: block;
	position: static;
	transition: var(--transitionNormal);
	opacity: 1;
}

.mv .slick-dots li.slick-active button:before {
	background: var(--paramountColorE);
}

.slideArrows {

}


.slideArrows .prev, 
.slideArrows .next {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;

	font-size: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.slideArrows .prev {left: 0;}
.slideArrows .next {right: 0;}

.slideArrows > *::after {
	content: '';
	width: 4rem;
	height: 8.4rem;
	background: url(https://paramount.itembox.design/item/images/top/slide_arrow.png) center / 100% no-repeat;
	display: block;
}

.slideArrows .prev::after {transform: scale(-1, 1);}



/* =====================================
== firstguide Stylesheet
===================================== */

.firstguide {
	max-width: 110rem;
	width: 100%;
	margin: 0 auto 5rem;
}
@media only screen and (max-width: 1100px) {
	.firstguide {
		padding: 0 1.5rem;
		box-sizing: border-box;
	}
}

.firstguide img {
	width: 100%;
	height: auto;
}

.firstguide__bnr {
	margin-bottom: 4rem;
}
.firstguide__bnr a{
	transition: var(--transitionNormal);
}
.firstguide__bnr a:hover{
	opacity: var(--opacity80);
}
@media only screen and (max-width: 750px) {
	.firstguide__bnr {
		margin-bottom: 3rem;
	}
}

.firstguide__list {
	display: flex;
	justify-content: center;
	gap: 3.5rem;
}
@media only screen and (max-width: 1100px) {
	.firstguide__list {
		gap: 2rem;
	}
}
@media only screen and (max-width: 750px) {
	.firstguide__list {
		flex-direction: column;
		gap: 0;
	}
}

.firstguide__list li {
	max-width: calc((100% - 3.5rem * 3) / 4);
	box-sizing: border-box;
	display: flex;
	position: relative;
	transition: var(--transitionNormal);
}
.firstguide__list li:hover{
	opacity: var(--opacity80);
}
@media only screen and (max-width: 1100px) {
	.firstguide__list li {
		max-width: calc((100% - 2rem * 3) / 4);
	}
}
@media only screen and (max-width: 750px) {
	.firstguide__list li {
		max-width: 100%;
		border-bottom: .1rem solid var(--paramountColorK);
		padding: 0 1.5rem;
		box-sizing: border-box;
	}
}

.firstguide__list li:not(:last-child) {
	padding-right: 3.5rem;
}
@media only screen and (max-width: 1000px) {
	.firstguide__list li:not(:last-child) {
		padding-right: 2rem;
	}
}
@media only screen and (max-width: 750px) {
	.firstguide__list li:not(:last-child) {
		padding: 0 1.5rem;
	}
}

.firstguide__list li:not(:last-child)::before {
	content: '';
	width: .3rem;
	height: 100%;
	background: var(--paramountColorK);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
@media only screen and (max-width: 750px) {
	.firstguide__list li:not(:last-child)::before {
		content: none;
	}
}


.firstguide__list li a {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorE);
	/* word-break: auto-phrase; */
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}
@media only screen and (max-width: 1100px) {
	.firstguide__list li a {
		font-size: 1.5rem;
		word-break: auto-phrase;
	}

	.firstguide__list li a br{
		display: none;
	}
}
@media only screen and (max-width: 750px) {
	.firstguide__list li a {
		width: 100%;
		font-size: 1.8rem;
		line-height: 1;
		padding: 2.5rem 0;
		box-sizing: border-box;
		justify-content: start;
		position: relative;
	}

	.firstguide__list li a::after {
		content: '';
		width: 9px;
		height: 9px;
		border-top: .1rem solid var(--paramountColorH);
		border-right: .1rem solid var(--paramountColorH);
		margin-top: auto;
		margin-bottom: auto;
		position: absolute;
		top: 0;
		bottom: 0;
		right: .5rem;
		display: inline-block;
		transform: rotate(45deg);
		transition: var(--transitionNormal);
	}
}

.firstguide__list li a img {
	max-width: 5rem;
}


/* =====================================
== simulation Stylesheet
===================================== */

.simulation {
	max-width: 135rem;
	width: 100%;
	background: var(--paramountColorI);
	padding: 8.5rem 1.5rem;
	margin: 0 auto 10rem;
	box-sizing: border-box;
	position: relative;
}
@media only screen and (max-width: 750px) {
	.simulation {
		padding: 4rem 1.5rem;
		margin: 0 auto 6rem;
	}
}

.simulation img {
	width: 100%;
	height: auto;
	transition: var(--transitionNormal);
}
.simulation img:hover{
	opacity: var(--opacity80);
}

.simulation__inner {
	max-width: 110rem;
	width: 100%;
	margin: auto;
}

.simulation__inner__title {
	font-size: 4.6rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	margin-bottom: 3rem;
}
@media only screen and (max-width: 1000px) {
	.simulation__inner__title {
		text-align: center;
	}
}
@media only screen and (max-width: 750px) {
	.simulation__inner__title {
		font-size: 2.8rem;
		margin-bottom: 1em;
	}
}

.simulation__inner__text {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorE);
	margin-bottom: 8rem;
}
@media only screen and (max-width: 1000px) {
	.simulation__inner__text {
		text-align: center;
	}
}
@media only screen and (max-width: 750px) {
	.simulation__inner__text {
		font-size: 1.6rem;
		margin-bottom: 4rem;
	}
}


.simulation__inner__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 4rem;
}
@media only screen and (max-width: 750px) {
	.simulation__inner__list {
		gap: 2rem;
	}
}

.simulation__inner__cointents {
	max-width: calc((100% - 4rem) / 2);
	width: 100%;
	border-radius: 1rem;
	padding: 4rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
	position: relative;
	filter: drop-shadow(var(--dropShadow));
}
@media only screen and (max-width: 750px) {
	.simulation__inner__cointents {
		max-width: calc((100% - 2rem) / 2);
		/* max-width: 100%; */
		padding: 2rem 1rem;
		gap: 1.6rem;
	}
}

.simulation__inner__cointents[data="semisingle"] {background: var(--sizeColorSS);}
.simulation__inner__cointents[data="single"] {background: var(--sizeColorS);}
.simulation__inner__cointents[data="semidouble"] {background: var(--sizeColorSD);}

.simulation__inner__cointents:first-child {
	max-width: 100%;
	flex-direction: row;
}
@media only screen and (max-width: 750px) {
	.simulation__inner__cointents:first-child {
		flex-direction: column;
		padding: 2rem;
	}
}

.simulation__inner__cointents:first-child::before {
	content: '';
	width: 29.8rem;
	height: 28.6rem;
	background: url(https://paramount.itembox.design/item/images/common/simulation_women.png) center / 100% no-repeat;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(-100%);
}
@media only screen and (max-width: 1000px) {
	.simulation__inner__cointents:first-child::before {
		content: none;
	}
}

.simulation__inner__cointents__img {
	max-width: 45rem;
	width: 100%;
}
@media only screen and (max-width: 1100px) {
	.simulation__inner__cointents__img {
		max-width: 40.90vw;
	}
}
@media only screen and (max-width: 750px) {
	.simulation__inner__cointents__img {
		max-width: 100%;
	}
}

.simulation__inner__cointents__textArea {
	width: 100%;
}

.simulation__inner__cointents__title {
	font-size: 3.6rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--white);
}
@media only screen and (max-width: 1000px) {
	.simulation__inner__cointents__title {
		font-size: 2.2rem;
	}
}
@media only screen and (max-width: 750px) {
	.simulation__inner__cointents__title {
		font-size: 2rem;
		line-height: 1.5;
		word-break: auto-phrase;
	}
}

.simulation__inner__cointents__price {
	/* font-size: 2.4rem; */
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--white);
	margin-bottom: 2rem;
}
@media only screen and (max-width: 1000px) {
	.simulation__inner__cointents__price {
		/* font-size: 1.8rem; */
		font-size: 2rem;
	}
}
@media only screen and (max-width: 750px) {
	.simulation__inner__cointents__price {
		font-size: 1.6rem;
	}
}

.simulation__inner__cointents__price small{
	font-size: 66.66%;
	font-weight: 500;
}

.simulation__inner__cointents__text {
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.375;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--white);
	margin-bottom: 3rem;
}
@media only screen and (max-width: 1000px) {
	.simulation__inner__cointents__text {
		font-size: 2rem;
	}
}
@media only screen and (max-width: 750px) {
	.simulation__inner__cointents__text {
		font-size: 1.6rem;
	}
}

.simulation__inner__cointents__text b {
	display: block;
}

.simulation__inner__cointents__button {
	max-width: 39rem;
	width: 100%;
	border-radius: 1rem;
	box-sizing: border-box;
	margin: 0 auto;
	overflow: hidden;
}

.simulation__inner__cointents__button a {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--white);
	background: var(--paramountColorC);
	padding: 1.5rem 1.5rem 3rem;
	box-sizing: border-box;
	display: block;
	position: relative;
	transition: var(--transitionNormal);
}
.simulation__inner__cointents__button a:hover{
	opacity: var(--opacity80);
}
@media only screen and (max-width: 1000px) {
	.simulation__inner__cointents__button a {
		padding: 1rem 1.5rem 2rem;
	}
}
@media only screen and (max-width: 750px) {
	.simulation__inner__cointents__button a {
		font-size: 1.3rem;
		padding: 1rem 1rem 2rem;
	}
}

.simulation__inner__cointents__button a::after {
	content: '';
	width: 9px;
	height: 9px;
	border-top: .1rem solid var(--white);
	border-right: .1rem solid var(--white);
	margin-top: auto;
	margin-bottom: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1.5rem;
	display: inline-block;
	transform: rotate(45deg);
	transition: var(--transitionNormal);
}

@media only screen and (max-width: 750px) {
	.simulation__inner__cointents:not(:first-child) .simulation__inner__cointents__button a::after {
		content: none;
	}
}


.simulation__inner__cointents__button a span {
	display: inline-block;
	position: relative;
}
@media only screen and (max-width: 750px) {
	.simulation__inner__cointents__button a span {
		display: block;
	}
}

.simulation__inner__cointents__button a span::after {
	content: '\203B\30DE\30C3\30C8\30EC\30B9\5E45';
	font-size: 70%;
	white-space: nowrap;
	position: absolute;
	bottom: -.15em;
	left: .5em;
	transform: translateY(100%);
}



/* ↓↓↓ 1番目の場合Styleを変更する ↓↓↓ */
.simulation__inner__cointents:first-child .simulation__inner__cointents__img {
	max-width: 51rem;
}
@media only screen and (max-width: 1100px) {
	.simulation__inner__cointents:first-child .simulation__inner__cointents__img {
		max-width: 46.36vw;
	}
}
@media only screen and (max-width: 750px) {
	.simulation__inner__cointents:first-child .simulation__inner__cointents__img {
		max-width: 100%;
	}
}

.simulation__inner__cointents__textArea .simulation__inner__cointents__title {
	padding-bottom: 3rem;
	margin-bottom: 3rem;
	box-sizing: border-box;
	position: relative;
}

.simulation__inner__cointents__textArea .simulation__inner__cointents__title::after {
	content: '';
	width: 7.5rem;
	height: .4rem;
	background: var(--white);
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 100%);
}

@media only screen and (max-width: 750px) {
	.simulation__inner__cointents:first-child .simulation__inner__cointents__title {
		font-size: 2.5rem;
		line-height: 1;
	}
}

@media only screen and (max-width: 750px) {
	.simulation__inner__cointents:first-child .simulation__inner__cointents__text {
		font-size: 2.2rem;
	}
}

@media only screen and (max-width: 750px) {
	.simulation__inner__cointents:first-child .simulation__inner__cointents__button a {
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 750px) {
	.simulation__inner__cointents:first-child .simulation__inner__cointents__button a span {
		display: inline-block;
	}
}


/* =====================================
== step Stylesheet
===================================== */

.stepContents {
	width: 100%;
	padding: 0 1.5rem;
	margin: 0 auto 10rem;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.stepContents {
		margin: 0 auto 6rem;
	}
}

.stepContents img {
	width: 100%;
	height: auto;
}

.stepContents__inner {
	max-width: 135rem;
	width: 100%;
	margin: auto;
}

.stepContents__inner__Ectitle {
	font-size: 5.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--white);
	background: var(--paramountColorC);	
	padding: 2.5rem 0;
	margin-bottom: 6rem;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.stepContents__inner__Ectitle {
		font-size: 2.8rem;
		margin-bottom: 3rem;
	}
}

.stepContents__inner__title {
	font-size: 5.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
	margin-bottom: 6rem;
}
@media only screen and (max-width: 750px) {
	.stepContents__inner__title {
		font-size: 2.8rem;
		margin-bottom: 3rem;
	}
}

.stepContents__inner__list {
	display: flex;
	justify-content: center;
	gap: 1.2rem;
}
@media only screen and (max-width: 1000px) {
	.stepContents__inner__list {
		flex-direction: column;
		gap: 2rem;
	}
}

.stepContents__inner__list li {
	max-width: calc((100% - 1.2rem * 4) / 5);
	width: 100%;
	border: .2rem solid var(--paramountColorG);
	padding: 5rem 3rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* justify-content: center; */
	gap: 2rem;
	position: relative;
}
@media only screen and (max-width: 1350px) {
	.stepContents__inner__list li {
		padding: 5rem 1.5rem;
	}
}
@media only screen and (max-width: 1000px) {
	.stepContents__inner__list li {
		max-width: 100%;
		padding: 3rem 1.5rem;
		flex-direction: row;
		gap: 3rem;
	}
}
@media only screen and (max-width: 750px) {
	.stepContents__inner__list li {
		padding: 2rem 1.5rem;
	}
}

.stepContents__inner__list__step {
	width: 82.5%;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--white);
	background: var(--paramountColorG);
	padding: 1.6rem 1rem;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1000px) {
	.stepContents__inner__list__step {
		width: 10.6rem;
		font-size: 1.5rem;
		padding: .7rem 1rem;
		left: 1.5rem;
		transform: translateY(-50%);
	}
}

.stepContents__inner__list__title {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
}
@media only screen and (max-width: 1350px) {
	.stepContents__inner__list__title {
		font-size: 2rem;
	}
}
@media only screen and (max-width: 1000px) {
	.stepContents__inner__list__title {
		font-size: 2.4rem;
		text-align: left;
		margin-bottom: .35rem;
	}
}

.stepContents__inner__list__img {
	max-width: 79%;
	width: 100%;
}
@media only screen and (max-width: 1000px) {
	.stepContents__inner__list__img {
		max-width: 8rem;
	}
}


.stepContents__inner__list__text {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorH);
	word-break: break-all;
}
@media only screen and (max-width: 1350px) {
	.stepContents__inner__list__text {
		font-size: 1.6rem;
	}
}
@media only screen and (max-width: 1000px) {
	.stepContents__inner__list__text {
		text-align: left;
	}
}

.stepContents__inner__list__text b {
	display: block;
}


/* =====================================
== recommendSet Stylesheet
===================================== */

.recommendSet {
	width: 100%;
	padding: 0 1.5rem;
	margin: 0 auto 10rem;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.recommendSet {
		margin: 0 auto 6rem;
	}
}

.recommendSet img {
	width: 100%;
	height: auto;
}

.recommendSet__inner {
	max-width: 135rem;
	width: 100%;
	margin: auto;
}

.recommendSet__inner__title {
	font-size: 5.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
	margin-bottom: .5rem;
}
@media only screen and (max-width: 750px) {
	.recommendSet__inner__title {
		font-size: 2.8rem;
	}
}

.recommendSet__inner__text {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorE);
	margin-bottom: 3rem;
}
@media only screen and (max-width: 750px) {
	.recommendSet__inner__text {
		font-size: 1.6rem;
	}
}

.recommendSet__inner__list {
	display: flex;
	justify-content: center;
	gap: 3rem;
}
@media only screen and (max-width: 750px) {
	.recommendSet__inner__list {
		flex-direction: column;
		align-items: center;
		gap: 4.8rem;
	}
}

.recommendSet__inner__list li {
	max-width: calc((100% - 3rem * 3) / 2);
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* justify-content: center; */
}
@media only screen and (max-width: 750px) {
	.recommendSet__inner__list li {
		max-width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
	}
}

.recommendSet__inner__list__title {
	width: 100%;
	height: 8.4rem;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 8.4rem;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--white);
	margin-bottom: .8rem;
}
@media only screen and (max-width: 1000px) {
	.recommendSet__inner__list__title {
		height: 8.4vw;
		font-size: 2rem;
		line-height: 8.4vw;
	}
}
@media only screen and (max-width: 750px) {
	.recommendSet__inner__list__title {
		width: 4rem;
		height: auto;
		font-size: 1.6rem;
		line-height: 4rem;
		letter-spacing: calc(20 / 1000 * 1em);
		margin-bottom: 0;
		writing-mode: vertical-lr;
	}
}

.recommendSet__inner__list li[data="semisingle"] .recommendSet__inner__list__title {background: var(--sizeColorSS);}
.recommendSet__inner__list li[data="single"] .recommendSet__inner__list__title {background: var(--sizeColorS);}
.recommendSet__inner__list li[data="semidouble"] .recommendSet__inner__list__title {background: var(--sizeColorSD);}

.recommendSet__inner__list__img {
	width: 100%;
	margin-bottom: 2rem;
}
@media only screen and (max-width: 750px) {
	.recommendSet__inner__list__img {
		max-width: 53.75%;
		margin-bottom: 0;
	}
}

.recommendSet__inner__textArea {

}
@media only screen and (max-width: 750px) {
	.recommendSet__inner__textArea {
		max-width: calc(100% - 53.75% - 4rem);
		width: 100%;
		padding: 0 1rem;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.recommendSet__inner__list__name {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorH);
	margin-bottom: .25rem;
}
@media only screen and (max-width: 750px) {
	.recommendSet__inner__list__name {
		font-size: 1.4rem;
		text-align: left;
		margin-bottom: 3rem;
	}

	.recommendSet__inner__list__name br {
		display: none;
	}
}

.recommendSet__inner__list__price {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.55;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorH);
	margin-bottom: 2rem;
}
@media only screen and (max-width: 750px) {
	.recommendSet__inner__list__price {
		font-size: 1.4rem;
		text-align: left;
	}
}

.recommendSet__inner__list__price small {
	font-size: 66.66%;
	font-weight: 500;
}

.recommendSet__inner__list__button {
	max-width: 39rem;
	width: 100%;
	border-radius: 1rem;
	box-sizing: border-box;
	margin: 0 auto;
	overflow: hidden;
}
@media only screen and (max-width: 750px) {
	.recommendSet__inner__list__button {
		max-width: 25.7rem;
		margin: 3rem auto 0;
	}
}

.recommendSet__inner__list__button a {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--white);
	background: var(--paramountColorC);
	padding: 3rem 1.5rem;
	box-sizing: border-box;
	display: block;
	position: relative;
	transition: var(--opacity80);
}
.recommendSet__inner__list__button a:hover{
	opacity: var(--opacity80);
}
@media only screen and (max-width: 1000px) {
	.recommendSet__inner__list__button a {
		padding: 2rem 1.5rem;
	}
}
@media only screen and (max-width: 750px) {
	.recommendSet__inner__list__button a {
		font-size: 1.8rem;
	}
}

.recommendSet__inner__list__button a::after {
	content: '';
	width: 9px;
	height: 9px;
	border-top: .1rem solid var(--white);
	border-right: .1rem solid var(--white);
	margin-top: auto;
	margin-bottom: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1.5rem;
	display: inline-block;
	transform: rotate(45deg);
	transition: var(--transitionNormal);
}


/* =====================================
== topics Stylesheet
===================================== */

.topics {
	width: 100%;
	padding: 0 1.5rem;
	margin: 0 auto 10rem;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.topics {
		margin: 0 auto 6rem;
	}
}

.topics img {
	width: 100%;
	height: auto;
}

.topics__inner {
	max-width: 110rem;
	width: 100%;
	margin: auto;
}

.topics__inner__title {
	font-size: 5.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
	margin-bottom: 1rem;
}
@media only screen and (max-width: 750px) {
	.topics__inner__title {
		font-size: 2.8rem;
	}
}

.topics__inner__list {}

.topics__inner__list__group {
	border-bottom: .1rem solid var(--paramountColorK);
	padding: 3rem 1.5rem;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: start;
	gap: 5.5rem;
}
@media only screen and (max-width: 750px) {
	.topics__inner__list__group {
		padding: 2rem 1rem;
		flex-direction: column;
		gap: 0;
	}
}


.topics__inner__list__group:nth-child(n + 4) {display: none;}

.topics__inner__list__date {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--black);
}
@media only screen and (max-width: 750px) {
	.topics__inner__list__date {
		font-size: 1.6rem;
	}
}

.topics__inner__list__group dd {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--black);
}
@media only screen and (max-width: 750px) {
	.topics__inner__list__group dd {
		font-size: 1.6rem;
	}
}

.topics__inner__list__group dd a {color: inherit;}

.topics__inner__list__group dd a[href=""] {pointer-events: none;}

/* =====================================
== series Stylesheet
===================================== */

.series {
	width: 100%;
	padding: 0 1.5rem;
	margin: 0 auto 10rem;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.series {
		margin: 0 auto 6rem;
	}
}

.series img {
	width: 100%;
	height: auto;
}

.series__inner {
	max-width: 135rem;
	width: 100%;
	margin: auto;
}

.series__inner__title {
	font-size: 5.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
	margin-bottom: 3rem;
}
@media only screen and (max-width: 750px) {
	.series__inner__title {
		font-size: 2.8rem;
	}
}

.series__inner__list {
	display: flex;
	justify-content: center;
	gap: 3rem;
}
@media only screen and (max-width: 750px) {
	.series__inner__list {
		flex-direction: column;
		gap: 1rem;
	}
}

.series__inner__list li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.series__inner__list__img {
	width: 100%;
	transition: var(--transitionNormal);
}
.series__inner__list__img:hover{
	opacity: var(--opacity80);
}

.series__inner__list__title {
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorH);
}
@media only screen and (max-width: 750px) {
	.series__inner__list__title {display: none;}
}

.series__inner__list__text {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorH);
}
@media only screen and (max-width: 750px) {
	.series__inner__list__text {display: none;}
}


/* =====================================
== Item Stylesheet
===================================== */

.item {
	width: 100%;
	padding: 6rem 1.5rem 8rem;
	margin: 0 auto 4rem;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.item {
		margin: 0 auto 2rem;
	}
}
.item[data="mattress"] {
	background: 
		url(https://paramount.itembox.design/item/images/common/mattress.jpg) center bottom / cover no-repeat, 
		var(--paramountColorM)
	;
}
.item[data="bedding"] {
	background: 
		url(https://paramount.itembox.design/item/images/common/bedding.jpg) center bottom / cover no-repeat, 
		var(--paramountColorM)
	;
}
.item[data="carebed"] {
	background: 
		url(https://paramount.itembox.design/item/images/common/carebed.jpg) center bottom / cover no-repeat, 
		var(--paramountColorM)
	;
	margin: 0 auto 10rem;
}
@media only screen and (max-width: 750px) {
	.item[data="carebed"] {
		margin: 0 auto 6rem;
	}
}

.item img {
	width: 100%;
	height: auto;
	aspect-ratio: 1.656 / 1;
}

.item__inner {
	max-width: 110rem;
	width: 100%;
	margin: auto;
}
.item[data="bedding"] .item__inner {max-width: 135rem;}

.item__inner__title {
	font-size: 5.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
	margin-bottom: 3rem;
}
@media only screen and (max-width: 750px) {
	.item__inner__title {
		font-size: 2.8rem;
	}
}

.item__inner__title span {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorE);
	margin-top: .35rem;
}

.item__inner__list {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: center;
	gap: 2rem;
}
@media only screen and (max-width: 750px) {
	.item__inner__list {
		align-items: center;
		gap: 1rem;
	}
}

.item__inner__list li {
	max-width: calc((100% - 2rem * 3) / 4);
	width: 100%;
	background: var(--white);
	padding-bottom: 2rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	transition: var(--transitionNormal);
}
.item__inner__list li:hover{
	opacity: var(--opacity80);
}
@media only screen and (max-width: 750px) {
	.item__inner__list li {
		max-width: calc((100% - 1rem) / 2);
		padding-bottom: 1.6rem;
	}
}

.item[data="bedding"] .item__inner__list li {max-width: calc((100% - 2rem * 4) / 5);}
@media only screen and (max-width: 750px) {
	.item[data="bedding"] .item__inner__list li {
		max-width: calc((100% - 1rem) / 2);
		padding-bottom: 1.6rem;
	}
}

.item__inner__list__img {
	width: 100%;
}

.item__inner__list__name {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorE);
}
@media only screen and (max-width: 750px) {
	.item__inner__list__name {
		max-width: 84.61%;
		width: 100%;
		font-size: 1.6rem;
		margin: auto;
	}
}

.item__inner__list__name small {
	font-size: 62.5%;
	font-weight: normal;
	margin-top: .35em;
	display: block;
}

.item__inner__list__button {
	max-width: 84.61%;
	width: 100%;
	border-radius: 1rem;
	box-sizing: border-box;
	margin: 0 auto;
	overflow: hidden;
}

.item__inner__list__button a {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--white);
	background: var(--paramountColorC);
	padding: 1.5rem;
	box-sizing: border-box;
	display: block;
	position: relative;
	transition: var(--transitionNormal);
}
.item__inner__list__button a:hover{
	opacity: var(--opacity80);
}
@media only screen and (max-width: 750px) {
	.item__inner__list__button a {
		font-size: 1.4rem;
	}
}

.item__inner__list__button a::after {
	content: '';
	width: 9px;
	height: 9px;
	border-top: .1rem solid var(--white);
	border-right: .1rem solid var(--white);
	margin-top: auto;
	margin-bottom: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1.5rem;
	display: inline-block;
	transform: rotate(45deg);
	transition: var(--transitionNormal);
}


/* =====================================
== ranking Stylesheet
===================================== */

.tab_content {
	display: none;
}
#tab2{
	display: none;
}
#tab3{
	display: none;
}
.ranking_tab{
	display: flex;
	gap: 1rem;
	justify-content: center;
	max-width: 88rem;
	margin: 3rem auto;
}
.ranking_tab li{
	width: calc(100% / 3 - 1rem);
	text-align: center;
	font-size: 1.8rem;
	background: #E2F4F7;
	height: 6.5rem;
	line-height: 6.5rem;
	cursor: pointer;
	font-weight: 600;
}
.ranking_tab li.active {
	background: #57C3EA;
	color: #fff;
}
.ranking_item{
	display: flex;
	gap: 1rem;
}
.ranking_item li{
	width: calc(100% / 5 - 1rem);
	position: relative;
}
.ranking_item li::before{
	position: absolute;
	top: 0;
	left: 5%;
	font-size: 2.4rem;
	padding: 0 1rem;
	color: #fff;
	line-height: 3.5rem;
	background-color: #616161;
	transform: translate(50%, -20%);
}
.ranking_item li:nth-child(1)::before {content: "1";background-color: #CBAB0D;}
.ranking_item li:nth-child(2)::before {content: "2";background-color: #677A8D;}
.ranking_item li:nth-child(3)::before {content: "3";background-color: #C98308;}
.ranking_item li:nth-child(4)::before {content: "4";}
.ranking_item li:nth-child(5)::before {content: "5";}
.ranking_item li img{
	width: 100%;
}
.ranking_text{
	font-size: 1.5rem;
	line-height: 1.5;
	padding: 1.5rem 0 .8rem;
}
.ranking_price{
	font-size: 2.4rem;
	font-weight: bold;
	color: #616161;
}
.ranking_price span{
	font-size: 2rem;
	font-weight: normal;
}
.ranking_price small{
	font-size: 60%;
	font-weight: normal;
}


/* =====================================
== otherContentsArea Stylesheet
===================================== */

#otherContentsArea {
	max-width: 135rem;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	box-sizing: border-box;
}
@media only screen and (max-width: 1350px) {
	#otherContentsArea {
		padding: 0 1.5rem;
	}
}

#otherContentsArea img {
	width: 100%;
	height: auto;
}

#otherContentsArea > .otherContentsArea__list {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
}
@media only screen and (max-width: 768px) {
	#otherContentsArea > .otherContentsArea__list {
	gap: 1.5rem;
	}
}

#otherContentsArea > .otherContentsArea__list li {
	max-width: calc((100% - 3rem * 2) / 3);
	width: 100%;
}
@media only screen and (max-width: 768px) {
	#otherContentsArea > .otherContentsArea__list li {
		max-width: calc((100% - 1.5rem * 1) / 2);
	}
}

#otherContentsArea > .otherContentsArea__list a {
	transition: var(--transitionNormal);
}

#otherContentsArea > .otherContentsArea__list a:hover {
	opacity: var(--opacity80);
}

#otherContentsArea > .otherContentsArea__list figure {
	margin: 0;
}


/* =====================================
== footer Stylesheet
===================================== */

footer {
	width: 100%;
	background: var(--paramountColorI);
	border-top: .1rem solid var(--paramountColorD);
	padding: 5.55rem 0 0;
	margin-top: 12rem;
	box-sizing: border-box;
}
@media only screen and (max-width: 1000px) {
	footer {
		border-top: none;
		padding: 2.2rem 0 0;
		margin-top: 6rem;
	}
}

footer img {
	width: 100%;
	height: auto;
	transition: var(--transitionNormal);
}
footer img:hover{
	opacity: var(--opacity80);
}

footer span {
	font-size: inherit;
	line-height: inherit;
}


footer .footer__inner a {
	color: inherit;
	text-decoration: none;
}

/* footer .footer__inner a:link {
	color: inherit;
} */

footer .footer__inner a:hover {
	text-decoration: none;
}


.footer__inner {
	max-width: 135rem;
	width: 100%;
	padding-bottom: 5.5rem;
	margin: 0 auto;
	box-sizing: border-box;
}
@media only screen and (max-width: 1350px) {
	.footer__inner {
		padding: 0 1.5rem 5.5rem;
	}
}


.footer__inner__contents {
	width: 100%;
	position: relative;
}

.footer__inner__contents:not(:last-child) {
	margin-bottom: 7rem;
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents:not(:last-child) {
		margin-bottom: 3.5rem;
	}
}

.footer__inner__contents__list {
	display: flex;
	justify-content: space-between;
	gap: 6rem;
}
@media only screen and (max-width: 1350px) {
	.footer__inner__contents__list {
		gap: 3rem;
	}
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents__list {
		flex-direction: column;
		gap: 0;
	}
}

.footer__inner__contents__list > li {
	max-width: calc((100% - 6rem * 4) / 5);
	width: 100%;
}
@media only screen and (max-width: 1350px) {
	.footer__inner__contents__list > li {
		max-width: calc((100% - 3rem * 4) / 5);
	}
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents__list > li {
		max-width: 100%;
	}
}

.footer__inner__contents__list__inner:not(:last-child) {
	margin-bottom: 7rem;
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents__list__inner:not(:last-child) {
		margin-bottom: 0;
	}
}

.footer__inner__contents__list__inner__title {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	border-bottom: .2rem solid var(--paramountColorC);
	padding: 1.5rem;
	margin-bottom: 1.7rem;
	box-sizing: border-box;
	position: relative;
}
@media only screen and (max-width: 1350px) {
	.footer__inner__contents__list__inner__title {
		font-size: 1.8rem;
		padding: 1.5rem 1rem;
	}
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents__list__inner__title {
		font-size: 2rem;
		padding: 0 1rem 2rem;
		margin-bottom: 2.5rem;
	}

	.footer__inner__contents__list__inner__title::after {
		content: '';
		width: 9px;
		height: 9px;
		border-top: .1rem solid var(--paramountColorC);
		border-right: .1rem solid var(--paramountColorC);
		margin-top: auto;
		margin-bottom: auto;
		position: absolute;
		top: -1em;
		bottom: 0;
		right: 1rem;
		display: inline-block;
		transform: rotate(135deg);
		transition: var(--transitionNormal);
	}

	.footer__inner__contents__list__inner__title.js--active::after {
		transform: rotate(-45deg);
	}
}

@media only screen and (max-width: 1000px) {
	.footer__inner__contents__list__inner__list {
		margin-bottom: 3rem;
	}
}

.footer__inner__contents__list__inner__list li a {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	padding: 1rem 1.5rem;
	box-sizing: border-box;
	display: block;
	transition: var(--transitionNormal);
}
.footer__inner__contents__list__inner__list li a:hover{
	opacity: var(--opacity80);
}
@media only screen and (max-width: 1350px) {
	.footer__inner__contents__list__inner__list li a {
		font-size: 1.5rem;
		padding: 1rem;
	}
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents__list__inner__list li a {
		font-size: 1.6rem;
		border-bottom: .1rem solid var(--paramountColorC);
		padding: 1.5rem 1rem;
	}
}

.footer__inner__contents__bnr {
	max-width: 37.5%;
	width: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents__bnr {
		max-width: 100%;
		position: static;
		margin-bottom: 3rem;
	}
}


.footer__inner__contents[data="contact"] {
	display: flex;
	justify-content: space-between;
	gap: 2.97%;
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents[data="contact"] {
		flex-direction: column;
		gap: 3rem;
	}
}

.footer__inner__contents__body {
	max-width: 66.66%;
	background: var(--white);
	padding: 5rem 3rem;
	box-sizing: border-box;
}
@media only screen and (max-width: 1350px) {
	.footer__inner__contents__body {
		padding: 3rem;
	}
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents__body {
		max-width: 100%;
		padding: 3rem 1rem;
	}
}

.footer__inner__contents__body__title {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorE);
	border-bottom: .2rem solid var(--paramountColorE);
	padding: 0 1rem 1.5rem;
	margin-bottom: 3rem;
	box-sizing: border-box;
}

.footer__inner__contents__body[data="calendar"] {
	max-width: 30.37%;
	background: var(--white);
	padding: 5rem 3rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
@media only screen and (max-width: 1350px) {
	.footer__inner__contents__body[data="calendar"] {
		max-width: 40.37%;
		padding: 3rem;
	}
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents__body[data="calendar"] {
		max-width: 100%;
		padding: 2rem 1rem;
	}
}

.footer__inner__contents__body__logo {
	max-width: 31rem;
	margin-bottom: 4.8rem;
}

.footer__inner__contents__body__wrap {
	display: flex;
	justify-content: space-between;
	gap: 6rem;
}
@media only screen and (max-width: 1350px) {
	.footer__inner__contents__body__wrap {
		gap: 3rem;
	}
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents__body__wrap {
		flex-direction: column;
	}
}

.footer__inner__contents__body__wrap__profile {
	max-width: 51.19%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents__body__wrap__profile {
		max-width: 100%;
	}
}

.footer__inner__contents__body__wrap__profile__text {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
}

.footer__inner__contents__body__wrap__profile__text span{
	font-size: inherit;
}

.footer__inner__contents__body__wrap__profile__matrix {
	width: 100%;
	border: 0;
	border-collapse: collapse;
	margin: 0 auto;
}

.footer__inner__contents__body__wrap__profile__matrix caption {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	margin-bottom: .35rem;
}

.footer__inner__contents__body__wrap__profile__matrix th,
.footer__inner__contents__body__wrap__profile__matrix td {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	border: none;
}

.footer__inner__contents__body__wrap__profile__matrix th {
	width: 4em;
	text-align: right;
	word-break: keep-all;
	padding: 0;
}

.footer__inner__contents__body__wrap__profile__matrix td {
	padding: 0 2rem;
}

.footer__inner__contents__body__wrap__other {
	max-width: 37.77%;
	width: 100%;
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents__body__wrap__other {
		max-width: 100%;
	}
}

.footer__inner__contents__body__wrap__other__title {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	margin-bottom: 1.2rem;
}
@media only screen and (max-width: 1350px) {
	.footer__inner__contents__body__wrap__other__title {
		font-size: 1.6rem;
	}
}

.footer__inner__contents__body__wrap__other__list {
	margin-bottom: 2rem;
}

.footer__inner__contents__body__wrap__other__list li {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
}

.footer__inner__contents__body__wrap__other__list li a {
	color: inherit;
}

.footer__inner__contents__body__wrap__other__bnr {
	margin-bottom: 2rem;
}

.footer__inner__contents__body__wrap__other__snslist {
	background: var(--paramountColorK);
	display: flex;
	align-items: center;
	justify-content: start;
	gap: .1rem;
}

.footer__inner__contents__body__wrap__other__snslist li {
	width: 100%;
	background: var(--white);
}

.footer__inner__contents__body__wrap__other__snslist li a{
	padding: 1rem 2.5rem;
	box-sizing: border-box;
	display: block;
}
@media only screen and (max-width: 1000px) {
	.footer__inner__contents__body__wrap__other__snslist li a{
		padding: 1rem 3.5rem;
	}
}

.footer__inner__contents__body__text {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
}


.footer__inner__contents__title {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	margin-bottom: 1.7rem;
}

.footer__inner__contents__text {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	text-indent: -1em;
	padding-left: 1em;
}

footer .copyright {
	width: 100%;
	border-top: .1rem solid var(--paramountColorD);
	padding: 3.35rem 1.5rem 2rem;
	box-sizing: border-box;
}

footer .copyright__text {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.57;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
}


/* =====================================
== TopLink Stylesheet
===================================== */

.pageTop {
	width: 5rem;
	height: 5rem;
	aspect-ratio: 1 / 1;
	position: fixed;
	/* bottom: 2rem; */
	bottom: 12rem;
	right: 2rem;
	z-index: 1;
	transition: var(--transitionNormal);
}
.pageTop:hover{
	opacity: var(--opacity80);
}

.pageTop img {
	width: 100%;
	height: auto;
}


/* =====================================
== jsAdd Stylesheet
===================================== */

.contentsMenu__list {
	padding: 0 1.5rem;
	margin-bottom: 2rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: start;
	gap: .5rem;
	aspect-ratio: 390 / 86.25;
	overflow: hidden;
}

.footer__inner__contents .contentsMenu__list {
	padding: 0;
}

.contentsMenu__list li{
	max-width: 9.4rem;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
}

.contentsMenu__list li a {
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
	background: var(--paramountColorF);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .9rem;
}

.footer__inner__contents .contentsMenu__list li a {
	border:  .1rem solid var(--paramountColorC);
	box-sizing: border-box;
}

.contentsMenu__list li a img {
	max-width: 4rem;
}


.product__search {
	margin-bottom: 3rem;
	box-sizing: border-box;
	display: none;
}
@media only screen and (max-width: 1000px) {
	.product__search {
		display: block;
	}
}

.product__search form {
	width: 100%;
	height: 4.3rem;
	display: flex;
}

.product__search__input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;

	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	border: .1rem solid var(--paramountColorC);
	padding: 1.2rem;
	box-sizing: border-box;
}

.product__search__button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;

	max-width: 4.3rem;
	width: 100%;
	height: 100%;
	font-size: 0;
	background: 
		url('https://paramount.itembox.design/item/images/top/icon_search02.png') center / 54% no-repeat, 
		var(--paramountColorC)
	;
}


.group__search {
	margin-bottom: 3rem;
	box-sizing: border-box;
}

.group__search__inner {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 2rem;
}
@media only screen and (max-width: 1000px) {
	.group__search__inner {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 1rem;
	}
}

.group__search__inner form {
	max-width: 43rem;
	width: 100%;
	height: 4.3rem;
	display: flex;
}

.group__search__inner__input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;

	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--paramountColorC);
	border: .1rem solid var(--paramountColorC);
	padding: 1.2rem;
	box-sizing: border-box;
}

.group__search__inner__button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;

	max-width: 4.3rem;
	width: 100%;
	height: 100%;
	font-size: 0;
	background: 
		url('https://paramount.itembox.design/item/images/top/icon_search02.png') center / 54% no-repeat, 
		var(--paramountColorC)
	;
}

.group__search__inner__contents {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.group__search__inner__contents__text {
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	color: var(--black);
}

.group__search__inner__contents__list {
	display: flex;
	align-items: center;
	gap: 1rem;
}
@media only screen and (max-width: 750px) {
	.group__search__inner__contents__list {
		width: 60vw;
		padding: 1rem 0;
		box-sizing: border-box;
		overflow-x: scroll;
	}
}

.group__search__inner__contents__list li {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	color: var(--black);
	background: var(--paramountColorF);
	border-radius: .6rem;
	padding: 0.5rem 1rem;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.group__search__inner__contents__list li {
		word-break: keep-all;
	}
}

.group__search__inner__contents__list li a {
	color: inherit;
}





#hiddenArea {
    display: none;
    overflow: hidden;
}





/* =====================================
== shop Stylesheet
===================================== */

.shop {
	width: 100%;
	padding: 0 1.5rem;
	margin: 0 auto 10rem;
	box-sizing: border-box;
}

.shop img {
	width: 100%;
	height: auto;
}

.shop__inner {
	max-width: 135rem;
	width: 100%;
	margin: auto;
}

.shop__inner__title {
	font-size: 5.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(-20 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorC);
	margin-bottom: 5rem;
}
@media only screen and (max-width: 750px) {
	.shop__inner__title {
		font-size: 2.8rem;
		margin-bottom: 3rem;
	}
}

.shop__inner__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
}
@media only screen and (max-width: 1000px) {
	.shop__inner__list {
		gap: 2rem;
	}
}

.shop__inner__list li {
	max-width: calc((100% - 3rem * 4) / 5);
	width: 100%;
	position: relative;
}
@media only screen and (max-width: 1000px) {
	.shop__inner__list li {
		max-width: calc((100% - 2rem * 2) / 3);
	}
}
@media only screen and (max-width: 750px) {
	.shop__inner__list li {
		max-width: calc((100% - 2rem) / 2);
	}
}

.shop__inner__list__img {
	margin-bottom: 1.5rem;
	display: block;
	overflow: hidden;
}

.shop__inner__list__img img {
	transition: var(--transitionNormal);
}

a:hover .shop__inner__list__img img {
	transform: scale(1.05);
}

.shop__inner__list__name {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	color: var(--paramountColorH);
	background: var(--paramountColorI);
	padding: 1rem;
	box-sizing: border-box;
	display: block;
	transition: var(--transitionNormal);
}
@media only screen and (max-width: 1350px) {
	.shop__inner__list__name {
		font-size: 1.4rem;
	}
}
@media only screen and (max-width: 750px) {
	.shop__inner__list__name {
		font-size: 1.4rem;
	}
}

a:hover .shop__inner__list__name {
	color: var(--white);
	background: var(--paramountColorC);
}

.shop__inner__list__name em {
	font-weight: inherit;
	display: block
}