@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');

/* Custom Properties */
:root {
	/* color */
	--color-main: #464650;
	--color-sub: #787878;
	--color-point: #c7c7c7;
	--color-accent: #e50000;
	
	/* font */
	--font-default: 'Roboto', 'Noto Sans JP', sans-serif;
}

/*-------------------------
reset
---------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
html {
	-webkit-text-size-adjust: 100%;
}
body, input, textarea {
	font-size: 16px;
}
body {
	background-color: #fff;	
	color: var(--color-main);
	font-family: var(--font-default);
	font-size: 16px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	text-align: justify;
	line-height: 1.65;
	margin: 0;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
}
img,a,ul,li,iframe,fieldset {
	border: none;
	outline: none;
}
a,img {
	display: block;
	width: 100%;
}
a.inline,img.inline {
	display: inline;
	width: auto;
}
a.inline {
	color: var(--color-sub);
	text-decoration: underline;
}
img {
	line-height: 0;
}
a {
	color: #000;
	text-decoration: none;
	transition: .2s ease-out;
}
h1,h2,h3,h4,ol,ul,li,dl,dt,dd,p,figure,from,iframe,fieldset,legend {
	margin-block-start: 0;
    margin-block-end: 0;
	margin: 0;
	padding: 0;
}
ol,ul {
	list-style: none;
}
h1,h2,h3,h4 {
	font-size: 100%;
	font-weight: normal;
}
em {
	font-style: normal;
}
article,aside,footer,header,main,nav,section {
	display: block;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input,textarea,select {
	font-size: 16px;
	padding: 3px;
	border: 1px solid #b2b2b2;
	border-radius: 5px;
}
select {
	padding: 2.5px 3px;
}
label {
	display: -webkit-box;
	display: flex;
}
label input {
	display: block;
}

/* iOSでのデフォルトスタイルをリセット */
input:focus {
	outline: none;
}
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="radio"],
input[type="checkbox"] {
	display: inline-block;
	height: 2em;
	font-size: 16px;
	margin: 0 5px 0 0;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	margin-left: 5px;
	opacity: .5;
}


/*-------------------------
共通css
---------------------------*/
body {
	padding-top: 90px;
}
body.bofh {
	overflow: hidden;
}
@media screen and (max-width: 820px) {
	body {
		padding-top: 0;
		padding-bottom: 60px;
	}
}
/*-------------------------
汎用css
---------------------------*/
.sp {
	display: none;
}
@media screen and (max-width: 640px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	span.sp {
		display: inline;
	}
}

/* box format */
.box-size {
	margin-right: auto;
	margin-left: auto;
}
.box-side {
	padding-right: 20px;
	padding-left: 20px;
}
.inner-padding {
	padding-top: 100px;
	padding-bottom: 100px;
}
.inner-padding-top {
	padding-top: 100px;
}
.size-720 {
	max-width: 720px;
}
.box-side.size-720 {
	max-width: 760px;
}
.size-1050 {
	max-width: 1050px;
}
.box-side.size-1050 {
	max-width: 1090px;
}
.size-1090 {
	max-width: 1090px;
}
.box-side.size-1090 {
	max-width: 1130px;
}
.box-bg {
	background-color: #fafafd;
}
.box-bt {
	border-top: 1px solid var(--color-point);
}
.box-mt {
	padding-top: 60px;
	margin-top: 60px;
}
@media screen and (max-width: 640px) {
	.inner-padding {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.inner-padding-top {
		padding-top: 60px;
	}
	.box-mt {
		padding-top: 40px;
		margin-top: 40px;
	}
}

/* flex box */
.flex {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: start;
	align-items: flex-start;
}
.flex-item {
	gap: 60px 20px;
}
.flex-item > * {
	width: calc((100% - 80px) / 5);
}
.flex-item.list-item-rank > li,
.flex-item.list-item-under > li {
	width: calc((100% - 60px) / 4);
}
.flex-item.list-item-rank > li:nth-of-type(n + 5) {
	width: calc((100% - 100px) / 6);
}
.flex-item.list-item-brand {
	gap: 60px;
}
.flex-item.list-item-brand > li {
	width: calc((100% - 120px) / 3);
}
.item-split {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	column-gap: 50px;
}
.item-split .list-item-l {
	width: 320px;
}
.item-split .list-item-m {
	width: calc(100% - 370px);
}
.item-split .list-item-l li {
	width: 100%;
}
.item-split .list-item-m li {
	width: calc((100% - 60px) / 4);
}
.flex-ib {
	gap: 20px;
}
.d-list {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.d-list > dt {
	color: var(--color-sub);
	padding-right: 1em;
	position: relative;
}
.d-list > dt::after {
	display: block;
	content: "：";
	position: absolute;
	top: 0;
	right: 0;
}
.d-list > dd {
	padding-left: 1em;
}
.d-list > *:nth-child(n + 3) {
	margin-top: 50px;
}
.d-theme5 > dt {
	width: 6em;
}
.d-theme5 > dd {
	width: calc(100% - 6em);
}
.d-theme12 > dt {
	width: 13.5em;
}
.d-theme12 > dd {
	width: calc(100% - 14.5em);
}
@media screen and (max-width: 960px) {
	.flex-item > * {
		width: calc((100% - 60px) / 4);
	}
	.flex-item.list-item-rank > li,
	.flex-item.list-item-under > li {
		width: calc((100% - 20px) / 2);
	}
	.flex-item.list-item-rank > li:nth-of-type(n + 5) {
		width: calc((100% - 40px) / 3);
	}
	.flex-item.list-item-brand {
		gap: 60px 40px;
	}
	.flex-item.list-item-brand > li {
		width: calc((100% - 80px) / 3);
	}
	.item-split {
		column-gap: 30px;
	}
	.item-split .list-item-m {
		width: calc(100% - 350px);
	}
	.item-split .list-item-m li {
		width: calc((100% - 20px) / 2);
	}
}
@media screen and (max-width: 640px) {
	.flex-item {
		gap: 30px 20px;
	}
	.flex-item > * {
		width: calc((100% - 20px) / 2);
	}
	.flex-item.list-item-rank > li {
		width: 100%;
	}
	.flex-item.list-item-rank > li:nth-of-type(n + 5) {
		width: calc((100% - 20px) / 2);
	}
	
	.flex-item.list-item-brand > li {
		width: 100%;
	}
	.item-split {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		column-gap: 0;
	}
	.item-split .list-item-l {
		width: 100%;
	}
	.item-split .list-item-m {
		width: 100%;
		margin-top: 30px;
	}
	.item-split .list-item-l li {
		width: 100%;
	}
	.d-list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
	}
	.d-list > dt {
		padding-right: 0;
	}
	.d-list > dt::after {
		display: inline;
		position: relative;
		top: 0;
		right: 0;
	}
	.d-list > dd {
		padding-left: 0;
	}
	.d-list > *:nth-child(n + 3) {
		margin-top: 0;
	}
	.d-list > dt:nth-child(n + 3) {
		margin-top: 30px;
	}
	.d-theme5 > dd,
	.d-theme12 > dd {
		width: 100%;
	}
}

/* Box Border */
.box-border {
	padding: 40px 20px;
	border: 1px solid var(--color-point);
	border-radius: 12px;
}
.box-list {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
	width: 100%;
	margin: 0 auto;
}
.box-list-9-10 {
	max-width: calc(19em + 30px);
}
.box-list-9-10 dt {
	width: 9em;
}
.box-list-9-10 dd {
	width: 10em;
}
@media screen and (max-width: 640px) {
	.box-border {
		padding: 20px;
	}
	.box-list {
		display: block;
	}
	.box-list dt {
		color: var(--color-sub);
		font-size: .875em;
	}
	.box-list dd+dt {
		margin-top: 1em;
	}
}

/* item list */
.list-item li {
	position: relative;
}
.list-item a,
.list-item a > * {
	position: relative;
	z-index: 1;
}
.list-item a::after {
	display: block;
	content: "";
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	border-radius: 12px;
	opacity: 0;
	-webkit-filter: drop-shadow(5px 5px 10px rgba(0,0,0,.2));
	filter: drop-shadow(5px 5px 10px rgba(0,0,0,.2));
	transition: inherit;
}
.list-item li:hover a::after {
	width: calc(100% + 32px);
	height: calc(100% + 32px);
	position: absolute;
	top: -16px;
	left: -16px;
	opacity: 1;
}
.list-item figure {
	background-color: #f3f3f3;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}
.list-item figure img {
	height: 100%;
	object-fit: contain;
	transition: .2s ease-out;
}
.list-item li:hover figure img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.list-item dl {
	margin-top: 1rem;
}
.list-item dt {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.list-item dd {
	font-weight: 700;
	margin-top: .2em;
}
.rank {
	display: block;
	background-color: var(--color-main);
	min-width: 28px;
	color: #fff;
	font-size: 1.125em;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.flex-item.list-item-rank li:nth-of-type(n + 5) .rank {
	min-width: 20px;
	font-size: 1em;
	line-height: 1.3;
}
.list-item-brand {
	-webkit-box-align: unset;
	align-items: unset;
}
.list-item-brand a {
	height: 100%;
	padding-bottom: 100px;
}
.list-item-brand a::after {
	display: none;
}
.list-item-brand figure {
	background-color: #fff;
	max-width: 320px;
	margin: 0 auto;
	aspect-ratio: 320 / 261;
}
.list-item-brand li:hover figure img {
	-webkit-transform: unset;
	transform: unset;
}
.list-item-brand dt {
	font-size: 1.125em;
	font-weight: 700;
}
.list-item-brand dt span {
	display: inline-block;
	font-size: .88em;
	font-weight: 400;
}
.list-item-brand dd {
	font-weight: 400;
	margin-top: 16px;
}
.list-item-brand .anchor-more {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}
.ico-favorite {
	width: 25px;
	height: 0;
	padding-top: 20px;
	position: absolute;
	bottom: 0;
	right: 10px;
	z-index: 2;
	overflow: hidden;
	cursor: pointer;
}
.ico-favorite::before,
.ico-favorite::after {
	display: block;
	content: "";
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.ico-favorite::before {
	background-image: url("https://file003.shop-pro.jp/PA01499/847/img/item/ico_favorite_off.svg");
}
.ico-favorite::after {
	background-image: url("https://file003.shop-pro.jp/PA01499/847/img/item/ico_favorite_on.svg");
	opacity: 0;
	transition: .2s ease-out;
}
.ico-favorite.favoriteOn::after {
	opacity: 1;
}
.favorite-detail {
	width: auto;
	height: auto;
	text-align: right;
	padding-top: 0;
	padding-right: 30px;
	position: relative;
	bottom: auto;
	right: auto;
	min-height: 21px;
}
.favorite-detail::before,
.favorite-detail::after {
	width: 25px;
	height: 20;
	position: absolute;
	top: calc(50% - 10px);
	right: 0;
	left: auto;
}
.favorite-detail::before {
	filter: brightness(.7);
}
.list-cat a {
	text-align: center;
	padding-bottom: 15px;
	position: relative;
}
.list-cat a figure {
	overflow: hidden;
}
.list-cat a img {
	transition: .2s ease-out;
}
.list-cat a:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.list-cat a::before,
.list-cat a::after {
	display: block;
	content: "";
	background-color: var(--color-point);
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: inherit;
}
.list-cat a::after {
	background-color: var(--color-accent);
	width: 0;
}
.list-cat a:hover::after {
	width: 100%;
}
.form-select {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	border-bottom: 1px solid var(--color-point);
}
.form-select select {
	background-color: #fff;
	color: var(--color-main);
	padding: 5px 0;
	border: none;
	outline: none;
	cursor: pointer;
}
@media screen and (max-width: 640px) {
	.list-cat a {
		font-size: .875em;
	}
}

/* Pagination */
.pagination {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	column-gap: 10px;
	margin-top: 80px;
}
.pagination-prev {
	margin-right: 10px;
}
.pagination-next {
	margin-left: 10px;
}
.pagination li {
	width: 36px;
}
.pagination a,.pagination span {
	display: block;
	width: 100%;
	text-align: center;
}
.pagination a.page-current,
.pagination a:hover {
	color: var(--color-point);
}
.pagination a.page-current {
	cursor: default;
}
.pagination-start a,.pagination-prev a,.pagination-next a,.pagination-end a {
	height: 0;
	padding-top: 34px;
	overflow: hidden;
	border-width: 1px;
	border-style: solid;
	border-radius: 50%;
	position: relative;
}
.pagination-start a,.pagination-end a {
	background-color: var(--color-point);
	border-color: var(--color-point);
}
.pagination-prev a,.pagination-next a {
	background-color: #fff;
	border-color: var(--color-sub);
}
.pagination-start a::after,.pagination-prev a::after,.pagination-next a::after,.pagination-end a::after {
	display: block;
	content: "";
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	height: 7px;
	position: absolute;
	top: calc(50% - 3.5px);
	left: 0;
	transition: inherit;
}
.pagination-start a::after,.pagination-end a::after {
	background-image: url("https://file003.shop-pro.jp/PA01499/847/img/item/ico_arrows.svg");
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.pagination-prev a::after,.pagination-next a::after {
	background-image: url("https://file003.shop-pro.jp/PA01499/847/img/item/ico_arrow.svg");
}
.pagination-end a::after,.pagination-next a::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.pagination-start a:hover,.pagination-end a:hover {
	background-color: #fff;
	border-color: var(--color-sub);
}
.pagination-prev a:hover,.pagination-next a:hover {
	background-color: var(--color-point);
	border-color: var(--color-point);
}
.pagination-start a:hover::after,.pagination-end a::after {
	-webkit-filter: brightness(1) invert(0);
	filter: brightness(1) invert(0);
}
.pagination-prev a:hover::after,.pagination-next a:hover::after {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
@media screen and (max-width: 640px) {
	.pagination {
		column-gap: 5px;
	}
	.pagination-prev {
		margin-right: 0;
	}
	.pagination-next {
		margin-left: 0;
	}
	.pagination li {
		width: 28px;
	}
	.pagination-start a,.pagination-prev a,.pagination-next a,.pagination-end a {
		padding-top: 26px;
	}
}

/* title */
.title-h2 {
	color: var(--color-sub);
	font-size: 1.125em;
	text-align: center;
	padding: 100px 20px 0;
}
.title-h2 span {
	display: block;
	color: var(--color-main);
	font-size: 1.55em;
}
.title-h2-left {
	color: var(--color-sub);
	text-align: left;
}
.title-h2-left span {
	display: inline-block;
	color: var(--color-main);
	font-size: 1.75em;
	font-weight: 500;
	margin-right: 20px;
}
.title-h3 {
	font-size: 1.125em;
	font-weight: 700;
}
.title-h3-center {
	font-size: 1.25em;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.title-h2 {
		padding: 50px 20px 0;
	}
	.title-h2-left span {
		display: block;
		margin-right: 0;
	}
}

/* font color */
.color-main {
	color: var(--color-main);
}
.color-point {
	color: var(--color-point);
}
.color-accent {
	color: var(--color-accent);
}

/* font family */
.font-en {
	font-family: var(--font-en);
}

/* font size */
.font-size-s {
	font-size: .75rem; /* 12px */
}
.font-size-n {
	font-size: 1rem; /* 16px */
}
.font-size-l {
	font-size: 1.25rem; /* 20px */
}
.font-size-point {
	display: inline-block;
	padding: 0 .2em;
	transform-origin: center 70%;
	transform: scale(1.5);
}

/* font weight */
.font-weight-500 {
	font-weight: 500;
}
.font-weight-700 {
	font-weight: 700;
}

/* text align */
.text-align-c {
	text-align: center;
}
.text-align-c-l,
.text-align-c-j {
	text-align: center;
}
.text-align-l-c {
	text-align: left;
}
@media screen and (max-width: 640px) {
	.text-align-c-l {
		text-align: left;
	}
	.text-align-c-j {
		text-align: justify;
	}
	.text-align-l-c {
		text-align: center;
	}
}

/* anchor */
.anchor-more {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
}
.anchor-more a,
.anchor-more span {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	width: 100%;
	max-width: 260px;
	height: 60px;
	color: var(--color-sub);
	position: relative;
	border: 1px solid var(--color-sub);
	border-radius: 30px;
}
.anchor-more span {
	max-width: 200px;
	transition: .2s ease-out;
}
.anchor-more a::after,
.anchor-more span::after {
	display: block;
	content: "";
	position: absolute;
	transition: inherit;
}
.anchor-more a::after,
.anchor-more span::after {
	width: 6px;
	height: 6px;
	border-top: 1px solid var(--color-sub);
	border-right: 1px solid var(--color-sub);	
	top: 50%;
	right: 25px;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.anchor-more a:hover,
a:hover .anchor-more span {
	background-color: var(--color-sub);
	color: #fff;
}
.anchor-more a:hover::after,
a:hover .anchor-more span::after {
	border-color: #fff;
}
.anchor-more-list {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	gap: 10px;
}
.anchor-more-list > * {
	width: calc((100% - 20px) / 3);
	max-width: 240px;
}
.anchor-more-list a {
	max-width: none;
}
.anchor-more-list a::after {
	-webkit-transform: translateY(-50%) rotate(135deg);
	transform: translateY(-50%) rotate(135deg);
}
@media screen and (max-width: 720px) {
	.anchor-more-list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-align: center;
		align-items: center;
	}
	.anchor-more-list > * {
		width: 100%;
		max-width: none;
	}
}

/* list icon */
.d-list-square dt,
.d-list-kome dt {
	font-size: 1.125em;
	font-weight: 500;
}
.d-list-square dt::before {
	content: "\25A0";
}
.d-list-kome dt::before {
	content: "\203B";
}
.d-list-square dd,
.d-list-kome dd {
	padding-left: 1.125em;
}
.ico-kome {
	padding-left: 1em;
	position: relative;
}
.ico-kome span:first-child {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.ico-list li {
	padding-left: 1em;
	position: relative;
}
.ico-list li::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.ico-list.list-num li {
	padding-left: 1.5em;
}
.list-disc li::before {
	content: "\25CF";
	color: var(--color-point);
}
.list-square li::before {
	content: "\25A0";
}
.list-num li span:first-child {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

/* table */
.st {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
}
.st span {
	display: inline-block;
}
.st table {
	width: 100%;
	font-size: .875em;
	text-align: center;
	border-bottom: 1px solid var(--color-point);
}
.st tr {
	border-bottom: 1px dotted var(--color-point);
}
.st thead tr {
	border-bottom-style: solid;
}
.st tr > *:nth-child(2n) {
	background-color: #f5f5fa;
}
.st th,.st td {
	font-weight: 400;
	padding: 16px 10px
}
@media screen and (max-width: 640px) {
	.st table {
		min-width: 580px;
		font-size: .75em;
	}
	.st th,.st td {
		padding: 10px
	}
}

/* margin */
.mt20 {
	margin-top: 20px !important;
}
.mt60-30 {
	margin-top: 60px !important;
}
.mt80-40 {
	margin-top: 80px !important;
}
.mt100-50 {
	margin-top: 100px !important;
}
@media screen and (max-width: 640px) {
	.mt60-30 {
		margin-top: 30px !important;
	}
	.mt80-40 {
		margin-top: 40px !important;
	}
	.mt100-50 {
		margin-top: 50px !important;
	}
}

/*-------------------------
パンくず
---------------------------*/
.breadcrumbs {
	width: 100%;
	padding: 10px 20px;
	position: absolute;
	top: 90px;
	left: 0;
	pointer-events: none;
}
.breadcrumbs ol {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;	
	width: 100%;
	max-width: 1090px;
	font-size: .75rem;	
	margin: 0 auto;
}
.breadcrumbs li {
	pointer-events: auto;
}
.breadcrumbs li:nth-of-type(n+2)::before {
	display: inline-block;
	content: "＞";
	margin: 0 .3em;
}
.breadcrumbs a {
	display: inline-block;
	width: auto;
}
.breadcrumbs a:hover {
	color: #646496;
}
@media screen and (max-width: 640px) {
	.breadcrumbs {
		position: relative;
		top: 0;
	}
}

/*-------------------------
Animaton
---------------------------*/
.setAnime {
	transition-duration: 400ms;
}

/* delay */
.delay200-0 {
	transition-delay: 200ms !important;
}
.delay400-0 {
	transition-delay: 400ms !important;
}
.delay600-0 {
	transition-delay: 600ms !important;
}
@media screen and (max-width: 640px) {
	.delay200-0 {
		transition-delay: 0ms !important;
	}
	.delay400-0 {
		transition-delay: 0ms !important;
	}
	.delay600-0 {
		transition-delay: 0ms !important;
	}
}


#floatingNavi {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	background-color: #fff;
	width: 100%;
	height: 90px;
	border-bottom: 1px solid #dbdbdb;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	transition: transform .4s ease-out .4s;
}
#floatingNavi.scrolling {
	transition: transform .4s ease-out;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
#floatingNavi h1 {
	width: 277px;
	padding-left: 20px;
}
#floatingNavi nav {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	align-items: center;
	gap: 40px;
	width: calc(100% - 277px);
}
.search-button {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	gap: 20px;
}
.search-cat > dl {	
	position: relative;
}
.search-cat .menu,
.search-btn a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	background-color: var(--color-main);
	height: 40px;
	color: #fff;
	text-align: center;
	padding: 0 24px;
	border-width: 1px;
	border-style: solid;
	border-radius: 20px;
	user-select: none;
}
.search-cat .menu {
	cursor: pointer;
	border-color: var(--color-main);
	transition: .2s ease-out;
}
.search-cat .menu:hover {
	background-color: #fff;
	color: var(--color-main);
}
.search-cat > dl > dd {
	display: none;
	position: absolute;
	top: 50px;
	left: 0;
	-webkit-filter: drop-shadow(20px 20px 20px rgba(70,70,80,.3));
	filter: drop-shadow(20px 20px 20px rgba(70,70,80,.3));
	transition: opacity .2s ease-out .8s;
}
.search-cat-close {
	background-color: var(--color-accent);
	width: 12px;
	height: 0;
	padding-top: 12px;
	border-radius: 50%;
	position: absolute;
	top: 14px;
	left: 14px;
	overflow: hidden;
	cursor: pointer;
}
.search-btn a {
	background-color: var(--color-point);
	color: var(--color-main);
	border-color: var(--color-point);
}
.search-btn a:hover {
	background-color: #fff;
	border-color: var(--color-main);
}
.search-form input {
	background: url("https://file003.shop-pro.jp/PA01499/847/img/ico_search.svg") right 10px center / 16px auto no-repeat;
	height: 40px;
	width: 240px;
	padding: 0 36px 0 10px;
	border: 1px solid var(--color-sub);
	border-radius: 6px;
}
.menu-list-outer .menu {
	background-color: var(--color-main);
	width: 90px;
	height: 90px;
	position: relative;
	z-index: 21;
	transition: opacity 0s linear 0s;
	cursor: pointer;
}
.menu-list-outer .menu.close-button {
	background-color: rgba(70,70,80,0);
	transition: opacity 0s linear .4s;
}
.menu-list-outer .menu span,
.menu-list-outer .menu::before,
.menu-list-outer .menu::after {
	display: block;
	content: "";
	background-color: #fff;
	width: 30px;
	height: 0;
	padding-top: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	overflow: hidden;
	transition: .2s ease-out;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.menu-list-outer .menu::before {
	-webkit-transform: translate(-50%, calc(-50% - 10px));
	transform: translate(-50%, calc(-50% - 10px));
}
.menu-list-outer .menu::after {
	-webkit-transform: translate(-50%, calc(-50% + 10px));
	transform: translate(-50%, calc(-50% + 10px));
}
.menu-list-outer .menu.close-button span {
	opacity: 0;
}
.menu-list-outer .menu.close-button::before {
	-webkit-transform: translate(-50%, -50%) rotate(135deg);
	transform: translate(-50%, -50%) rotate(135deg);
}
.menu-list-outer .menu.close-button::after {
	-webkit-transform: translate(-50%, -50%) rotate(-135deg);
	transform: translate(-50%, -50%) rotate(-135deg);
}
.menu-list-outer > dd {
	background-color: var(--color-main);
	width: 280px;
	height: 100lvh;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 20;
	transition: .2s ease-out, opacity .2s ease-out .8s, height 0s;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	pointer-events: none;
}
.menu-list-outer > dd.open-menu {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.menu-list-outer > dd::after {
	display: block;
	content: "";
	background: linear-gradient(rgba(70,70,80,1) 20%,rgba(70,70,80,0));
	width: 100%;
	height: 90px;
	position: absolute;
	top: 0;
	right: 0;
}
.menu-list-outer > dd > div {
	width: 100%;
	height: 100%;
	padding: 90px 30px 30px;
	overflow-x: hidden;
	overflow-y: auto;
	pointer-events: auto;
}
#floatingNavi.scrolling .search-cat > dl > dd,
#floatingNavi.scrolling .menu-list-outer > dd {
	opacity: 0;
	transition:.2s ease-out, opacity .2s ease-out, height 0s;
}
.menu-list {
	position: relative;
}
.menu-list+.menu-list {
	margin-top: 30px;
}
.search-cat .menu-list {
	background-color: var(--color-main);
	width: 300px;
	padding: 40px;
	border-radius: 12px;	
}
.menu-list dt {
	color: var(--color-point);
	font-size: .875em;
	font-weight: 700;
}
.menu-list ul {
	padding-left: 20px;
}
.menu-list li {
	margin-top: 10px;
}
.menu-list a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	color: #fff;
}
.menu-list a {
	position: relative;
}
.menu-list a::before,
.menu-list-outer .menu-list a::after {
	display: block;
	content: "";
	position: absolute;
	transition: inherit;
}
.menu-list a::before {
	background-color: var(--color-point);
	width: 0;
	height: 1px;
	bottom: 0;
	left: 0;
}
.menu-list-outer .menu-list a::after {
	width: 6px;
	height: 6px;
	border-top: 2px solid var(--color-point);
	border-right: 2px solid var(--color-point);
	top: 50%;
	right: 0;	
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.menu-list-outer .menu-list a[target="_blank"]::after {
	width: 12px;
	height: 9px;
	background: url("https://file003.shop-pro.jp/PA01499/847/img/ico_blank.svg") center / contain no-repeat;
	border: none;
	-webkit-transform: translateY(-50%) rotate(0);
	transform: translateY(-50%) rotate(0);
}
.menu-list a:hover::before {
	width: 100%;
}
.account-button {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	gap: 20px;
	font-size: .875em;
}
.account-button li {
	height: 100%;
}
.account-button a {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	height: 100%;
}
.account-button figure {
	width: 22px;
	margin-bottom: 3px;
	opacity: .6;
	-webkit-filter: brightness(0);
	filter: brightness(0);
	transition: .2s ease-out;
}
.account-button a:hover figure {
	opacity: 1;
	-webkit-filter: brightness(1);
	filter: brightness(1);
}
@media screen and (max-width: 1280px) {
	#floatingNavi nav {
		gap: 20px;
	}
	.search-button {
		gap: 10px;
	}
	.account-button {
		gap: 10px;
	}
	.search-form input {
		width: 190px;
	}
}
@media screen and (max-width: 1140px) {
	.search-cat,.search-btn {
		display: none;
	}
}
@media screen and (max-width: 820px) {
	#floatingNavi {
		height: 70px;
		position: relative;
	}
	#floatingNavi.scrolling {
		-webkit-transform: unset;
		transform: unset;
	}
	.search-form {
		padding-right: 10px;
	}
	.menu-list-outer {
		position: fixed;
		bottom: 0;
		right: 0;
	}
	.menu-list-outer .menu {
		width: 60px;
		height: 60px;
	}
	.menu-list-outer > dd {
		height: 100dvh;
		top: calc(-100dvh + 60px);
		right: 0;
	}
	.menu-list-outer > dd::after {
		background: linear-gradient(rgba(70,70,80,0), rgba(70,70,80,1) 80%);
		height: 60px;
		position: absolute;
		top: auto;
		right: 0;
		bottom: 0;
	}
	.menu-list-outer > dd > div {
		padding: 30px 30px 60px;
	}
	#floatingNavi.scrolling .menu-list-outer dd {
		opacity: 1;
	}
	.account-button {
		gap: 0;
		background-color: #fff;
		width: calc(100% - 60px);
		height: 60px;
		position: fixed;
		bottom: 0;
		left: 0;
	}
	.account-button li {
		width: calc(100% / 3);
	}
	.account-button figure {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 640px) {
	#floatingNavi h1 {
		width: 120px;
	}
	#floatingNavi nav {
		width: calc(100% - 120px);
	}
	.menu-list a::before {
		display: none;
	}
	.account-button a:hover figure {
		opacity: .6;
		-webkit-filter: brightness(0);
		filter: brightness(0);
	}
}


footer {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	column-gap: 140px;
	background-color: var(--color-main);
	padding: 80px 20px 60px;
	position: relative;
}
@media screen and (max-width: 960px) {
	footer {
		column-gap: 40px;
	}
}
@media screen and (max-width: 640px) {
	footer {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-align: center;
		align-items: center;
		column-gap: 0;
		row-gap : 40px;
	}
}
/* Information */
#footerInfo {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	align-items: center;
	max-width: 140px;
}
#footerInfo p:nth-of-type(1) {
	-webkit-filter: invert(1);
	filter: invert(1);
}
#footerInfo p:nth-of-type(2) {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	color: var(--color-point);
	margin-top: 80px;
	
}
#footerInfo p:nth-of-type(2) a {
	max-width: 40px;
	margin-bottom: 40px;
}
#footerInfo a:hover {
	opacity: .6;
}
#footerInfo small {
	display: block;
	width: 100%;
	text-align: center;
}
@media screen and (max-width: 880px) {
	#footerInfo {
		-webkit-box-pack: justify;
		justify-content: space-between;
	}
}
@media screen and (max-width: 640px) {
	#footerInfo p:nth-of-type(2) {
		margin-top: 40px;
	}
	#footerInfo p:nth-of-type(2) a {
		margin-bottom: 0;
	}
	#footerInfo small {
		padding: 20px 0;
		position: absolute;
		bottom: 0;
		left: 0;
	}
}

/* Site Map */
#footerSiteMap {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	column-gap: 20px;
	width: calc(100% - 280px);
	max-width: 720px;
	position: relative;
}
#footerSiteMap .menu-list ul {
	padding-left: 10px;
}
#footerSiteMap .menu-list a {
	padding-right: 20px;
}
#footerSiteMap .menu-list+.menu-list {
	margin-top: 0;
}
@media screen and (max-width: 880px) {
	#footerSiteMap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		column-gap: 0;
		row-gap: 30px;
		width: calc(100% - 280px);
		max-width: 220px;
		height: 100%;
	}
}
@media screen and (max-width: 640px) {
	#footerSiteMap {
		width: 100%;
		padding-bottom: 20px;
	}
}


/*-------------------------
Swiper
---------------------------*/
.swiper-outer {
	position: relative;
	overflow: hidden;
}
.swiper {
	overflow: visible;
}
.top-swiper {
	padding-top: 44px;
	margin-top: 50px;
}
.brand-swiper {
	padding-bottom: 50px;
}
.top-swiper .swiper-slide {
	max-width: 880px;
	position: relative;
	opacity: .5;
	transition: opacity 1s ease-out;
}
.top-swiper .swiper-slide.swiper-slide-active {
	opacity: 1;
}
.top-swiper .swiper-slide dl {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	position: absolute;
	top: -44px;
	left: 0;
}
.top-swiper .swiper-slide dt {
	background-color: var(--color-main);
	color: #fff;
	font-size: .75rem;
	padding: 0 16px;
	margin-right: 16px;
	border-radius: 20px;
}
.top-swiper .swiper-slide dt span {
	display: inline-block;
	font-size: 1.17em;
	margin-left: .1em;
}
.top-swiper .swiper-slide dd {
	font-size: 1.25em;
	font-weight: 700;
}
.top-swiper .swiper-button {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	width: 100%;
	max-width: 920px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 10;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.swiper-button {
	pointer-events: none;
}
.swiper-button li {
	pointer-events: auto;
}
.top-swiper .swiper-button-prev, .top-swiper .swiper-button-next {
	width: 50px;
	height: 50px;
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
}
.top-swiper .swiper-button img {
	transition: .2s ease-out;
}
.top-swiper .swiper-button img:hover {
	opacity: .7;
}
.top-swiper .swiper-button-next img {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.top-swiper .swiper-button-prev:after, .top-swiper .swiper-button-next:after {
	display: none;
}
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	width: 100%;
	max-width: 880px;
	height: calc(100% + 20px);
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	pointer-events: none;
}
.brand-swiper .swiper-pagination-fraction, .brand-swiper .swiper-pagination-custom, .brand-swiper .swiper-horizontal > .swiper-pagination-bullets, .brand-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
	-webkit-box-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	align-items: center;
	max-width: unset;
	height: 50px;
	left: 0;
	-webkit-transform: unset;
	transform: unset;
	pointer-events: none;
}
.swiper-pagination span {
	pointer-events: auto;
}
.swiper-pagination-bullet {
	background-color: #d1d1d1;
	border: 1px solid #d1d1d1;
	opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #fff;
	border: 1px solid #78787f;
}
@media screen and (max-width: 880px) {
	.swiper-outer {
		padding-bottom: 20px;
	}
	.top-swiper {
		padding-top: 56px;
		margin-top: 30px;
	}
	.swiper-outer.brand-swiper {
		padding-bottom: 50px;
	}
	.top-swiper .swiper-slide dl {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-align: start;
		align-items: flex-start;
		top: -56px;
	}
	.top-swiper .swiper-slide dt {
		margin-left: 5px;
	}
	.top-swiper .swiper-slide dd {
		padding: 0 10px;
	}
	.top-swiper .swiper-button {
		display: none;
	}
	.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
		-webkit-box-pack: center;
		justify-content: center;
		-webkit-box-align: end;
		align-items: flex-end;
		top: 0;
		bottom: auto;
	}
	.brand-swiper .swiper-pagination-fraction, .brand-swiper .swiper-pagination-custom, .brand-swiper .swiper-horizontal > .swiper-pagination-bullets, .brand-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
		top: auto;
		bottom: 0;
	}
}
@media screen and (max-width: 640px) {
	.brand-swiper .swiper-pagination-fraction, .brand-swiper .swiper-pagination-custom, .brand-swiper .swiper-horizontal > .swiper-pagination-bullets, .brand-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
		-webkit-box-pack: center;
		justify-content: center;
	}
}

/* TOP */
.top-concept {
	background-image: url("https://file003.shop-pro.jp/PA01499/847/img/top/bg_concept.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
	line-height: 3.125;
	padding: 170px 20px;
}
@media screen and (max-width: 640px) {
	.top-concept {
		background-image: url("https://file003.shop-pro.jp/PA01499/847/img/top/bg_concept_sp.jpg");
		text-align: justify;
		line-height: 2;
		padding: 50px 20px;
	}
}

/* Brand */
.brand {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: end;
	align-items: flex-end;
}
.brand > * {
	width: 50%;
}
.brand-text {
	padding: 0 60px 50px 20px;
}
.brand-text > * {
	max-width: 485px;
	margin: 0 0 0 auto;
}
.title-h2-brand img {
	max-width: 210px;
	margin: 0 auto;
}
.brand-swiper .swiper-slide {
	max-width: 720px;
	height: 500px;
}
.brand-swiper .swiper-slide figure {
	height: 100%;
}
.brand-swiper .swiper-slide figure img {
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 640px) {
	.brand {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		flex-direction: column-reverse;
	}
	.brand > * {
		width: 100%;
	}
	.brand-text {
		padding: 0 20px;
		margin-top: 40px;
	}
	.brand-text > * {
		max-width: unset;
		margin: 0 auto;
	}
	.brand-swiper .swiper-slide {
		height: auto;
	}
}

/* Item Detail */
.item {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: justify;
	justify-content: space-between;
	--color-btn: #646496;
}
.item-detail {
	width: 42.2%;
}
.item-detail-title {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	flex-direction: column-reverse;
}
.item-detail-title h2 {
	font-size: 1.625em;
	font-weight: 500;
	line-height: 1.53;
	margin-top: 40px;
}
.item-detail-dl {
	display: -webkit-box;
	display: flex;
}
.item-detail-dl dt {
	width: 5.5em;
	color: var(--color-sub);
	padding-right: 1em;
	position: relative;
}
.item-detail-dl dt::after {
	display: block;
	content: "：";
	position: absolute;
	top: 0;
	right: 0;
}
.item-detail-dl dd {
	width: calc(100% - 5.5em);
	padding-left: .5em;
}
.item-detail-price {
	font-size: 1.625em;
	font-weight: 700;
	text-align: right;
	margin-top: 30px;
}
.item-detail-price span {
	font-size: .583em;
	font-weight: 400;
}
.item-detail-form {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	align-items: flex-end;
	margin-top: 20px;
}
.item-detail-form label {
	display: block;
}
.item-detail-form label span {
	display: block;
	color: var(--color-sub);
	margin-bottom: 5px;
}
.item-detail-form label input {
	width: 4em;
	padding: 3px 0 3px 5px;
	border: 1px solid var(--color-point);
	border-radius: 0;
}
.item-detail-form input[type="submit"] {
	background-color: var(--color-btn);
	color: #fff;
	font-weight: 700;
	text-align: center;
	padding: 10px 30px;
	border: 1px solid var(--color-btn);
	border-radius: 40px;
	transition: .2s ease-out;
}
.item-detail-form input[type="submit"]:hover {
	background-color: #fff;
	color: var(--color-btn);
}
.item-detail .ico-favorite {
	margin-top: 25px;
}
.item-detail-payment {
	text-align: right;
}
.item-detail-payment a {
	display: inline-block;
	width: auto;
	color: var(--color-btn);
}
.item-detail-payment a:hover {
	text-decoration: underline;
}
.item-image {
	width: 51.3%;
	height: 100%;
	position: -webkit-sticky;
	position: sticky;
	top: 20px;
}
.item-image li {	
	border: 1px solid var(--color-point);
	aspect-ratio: 1 / 1;
}
.item-image li img {
	height: 100%;
	object-fit: contain;
}
.item-image-l {
	position: relative;
}
.item-image-l li {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
}
.item-image-l li.active-img {
	position: relative;
	z-index: 2;
	opacity: 1;
}
.item-image-s {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	margin-top: 20px;
}
.item-image-s li {
	width: calc((100% - 15px) / 6);
}

.item-image-s img {
	cursor: pointer;
}
@media screen and (max-width: 640px) {
	.item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		flex-direction: column-reverse;
		-webkit-box-align: center;
		align-items: center;
	}
	.item-detail,.item-image {
		width: 100%;
	}
	.item-detail {
		margin-top: 40px;
	}
	.item-detail-title h2,
	.item-detail-price,
	.item-detail-form {
		margin-top: 10px;
	}
	.item-image {
		max-width: 560px;
		position: relative;
		top: auto;
	}
}

/* Shopping Guide */
.payment-img {
	max-width: 630px;
	margin: 0 auto;
}
#law .box-bt {
	border-top-style: dotted;
}
#law .box-mt {
	padding-top: 40px;
	margin-top: 40px;
}
.law-dl dt {
	color: var(--color-sub);
	font-weight: 700;
}
.law-dl dd {
	margin-top: 10px;
}
@media screen and (max-width: 640px) {
	#law .box-mt {
		padding-top: 20px;
		margin-top: 20px;
	}
	.law-dl dd {
		margin-top: 0;
	}
}

/* FAQ */
.faq-list {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	gap: 60px 50px;
}
.faq-list > * {
	width: calc((100% - 50px) / 2);
}
.faq-list dt,.faq-list dd p:first-child {
	padding-left: 1em;
	position: relative;
}
.faq-list dt {
	color: var(--color-sub);
	font-size: 1.125em;
	font-weight: 500;
}
.faq-list dd {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	padding: 40px 20px;
	margin-top: 20px;
	border: 1px solid var(--color-point);
	border-radius: 12px;
}
.faq-list dd p {
	width: 100%;
	max-width: 380px;
}
.faq-list dd p:nth-child(n + 2) {
	margin-top: 20px;
}
.faq-list dt span,.faq-list dd p:first-child span {
	display: block;
	font-size: 1rem;
	position: absolute;
	top: 0;
	left: 0;
}
.faq-list .anchor-more {
	-webkit-box-pack: end;
	justify-content: flex-end;
}
.faq-list .anchor-more a {
	background-color: var(--color-sub);
	color: #fff;
	border: 1px solid var(--color-sub);
}
.faq-list .anchor-more a::after {
	border-color: #fff;
}
.faq-list .anchor-more a:hover {
	background-color: #fff;;
	color: var(--color-sub);
}
.faq-list .anchor-more a:hover::after {
	border-color: var(--color-sub);
}
@media screen and (max-width: 640px) {
	.faq-list > * {
		width: 100%;
	}
	.faq-list .anchor-more {
		-webkit-box-pack: center;
		justify-content: center;
	}
}

/* Privacy Policy */
.privacypolicy dd+dt {
	margin-top: 80px;
}
.privacypolicy dt {
	font-size: 1.125em;
	font-weight: 500;
}
.privacypolicy dd {
	margin-top: 20px;
}
.list-alpha {
	font-weight: 500;
	list-style: lower-alpha;
	margin-left: 1.2em;
}
.list-col {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	column-gap: calc(1.2em + 30px);
}
@media screen and (max-width: 640px) {
	.privacypolicy dd+dt {
		margin-top: 40px;
	}
	.privacypolicy dd {
		margin-top: 10px;
	}
}

/* Contact */
.contact fieldset {
	display: -webkit-box;
	display: flex;
}
.contact fieldset+fieldset {
	margin-top: 40px;
}
.contact fieldset p:first-child {
	width: 240px;
	font-size: 1.125em;
	font-weight: 500;
	text-align: left;
}
.contact fieldset p:last-child {
	width: calc(100% - 240px);
}
.contact input[type="text"],.contact textarea {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid var(--color-point);
	border-radius: 6px;
}
.contact input[type="text"].form-size-m {
	max-width: 320px;
}
.contact > label {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	column-gap: 5px;
}
.contact-anchor {
	text-align: center;
	margin-top: 10px;
}
.contact-anchor a {
	display: inline-block;
	width: auto;
	color: var(--color-sub);
	text-decoration: underline;
}
.contact-anchor a:hover {
	color: #646496;
}
.contact input[type="submit"] {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	background-color: #646496;
	min-width: 260px;
	color: #fff;
	font-weight: 700;
	padding: 16px 20px;
	margin: 0 auto;
	border: 1px solid #646496;
	border-radius: 50px;
	transition: .2s ease-out;
}
.contact input[type="submit"]:hover {
	background-color: #fff;
	color: #646496;
}
.required::after {
	display: inline-block;
	content: "（必須）";
	color: var(--color-accent);
	font-size: .6em;
	transform: translateY(-.4em);
}
@media screen and (max-width: 640px) {
	.contact fieldset {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
	}
	.contact fieldset+fieldset {
		margin-top: 30px;
	}
	.contact fieldset p:first-child,
	.contact fieldset p:last-child {
		width: 100%;
	}
}
.add-button{
  width: fit-content;
    margin-left: auto;
}
.ico-favorite{
	border: 0;
	background-color: initial;
}

.search-form > form{
	position: relative;
}
.search-form > form > input[type="submit"]{
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 36px;
	padding: 0;
	border: 0;
	border-radius: 0;
}