:root {
	--color-default: #222222;
	--color-grey: #333;
	--color-pale-grey: #f5f5f5;
	--color-pale-grey-color: #6e7680;
	--color-light-grey: #999;
	--bgcolor-default: #fff;
	--bgcolor-body: #fff;
	--color-link: #222222;
	--color-brown: #d88c3e;
	--color-dark-brown: #955612;
	--color-thumb-bg: #eee;
	--color-attention: #d8363e;
	--graduation-progress: linear-gradient(to right, #fff9a4, #d88c3e);
	--graduation-limit: linear-gradient(to right, #f97f0d, #d8363e);
}

.valid-msg {
	color: var(--color-attention);
}

.count-and-valid {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	/* margin-top: 5px; */
}

.count-and-valid .valid-msg.hide {
	display: none;
}

.count-and-valid .right-number-count {
	margin-top: 0;
	margin-left: auto;
}

html {
	font-size: 22px;
	touch-action: manipulation;
}

body {
	font-family: 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, Arial, sans-serif;
	line-height: 1.88;
	color: var(--color-default);
	background-color: var(--bgcolor-default);
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

main {
	margin-bottom: calc(50px + env(safe-area-inset-bottom, 0px));
}

a,
a:active,
a:visited {
	/* color: var(--color-default); */
}

a {
	transition: all 0.15s ease-out;
	opacity: 1;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	opacity: 0.6;
}

input::placeholder {
	color: #ccc;
}

input::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

img {
	max-width: 100%;
}

ol {
	list-style-position: outside;
	list-style-type: decimal;
	padding-left: 2em;
}

ul {
	list-style-position: outside;
	list-style-type: none;
	/* padding-left: 2em; */
}

li {
	padding-left: 0.1em;
}

h1 {
	font-size: 2.4em;
	font-weight: bold;
	line-height: 1;
	background-color: aqua;
}

h2 {
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1;
}

h3 {
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1;
}

h4 {
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1;
}

h5 {
	font-size: 1em;
	font-weight: bold;
	line-height: 1;
}

h6 {
	font-size: 0.9em;
	font-weight: bold;
	line-height: 1;
}

.wrapper {
	max-width: 1280px;
	margin: 0 auto 150px;
	background-color: var(--bgcolor-body);
	position: relative;
}

.container {
	margin: 0 auto 150px;
	width: 580px;
}

.hide {
	display: none;
}

.title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 15px;
	color: var(--color-brown);
}

.title.left {
	text-align: left;
	border-left: 10px solid var(--color-brown);
	padding-left: 10px;
}

.label {
	color: var(--color-grey);
	font-size: 28px;
	font-weight: bold;
	line-height: normal;
}

.sub-label {
	font-size: 28px;
	font-weight: bold;
	line-height: normal;
	margin: 20px 0 10px;
}

.disc-text {
	font-size: 24px;
	margin-bottom: 10px;
}

.right-number-count {
	margin-top: 5px;
	font-size: 18px;
	text-align: right;
	color: #6f6f6f;
	line-height: normal;
}

.back-button {
	position: absolute;
	left: 28px;
	top: 32px;
	width: 28px;
	height: 28px;
	background-image: url(../img/arrow-back.svg);
	cursor: pointer;
	text-indent: -9999px;
	overflow: hidden;
}

.hr-normal {
	margin: 20px 0;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

/* ----------------------------
header
----------------------------- */
nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 25px;
	border-bottom: 1px solid #ccc;
	position: sticky;
	top: 0;
	background-color: #fff;
	z-index: 100;
}

.nav-logo-area {
	display: flex;
	align-items: center;
}

.nav-login-area {
	font-size: 22px;
	color: var(--color-brown);
	font-weight: 700;
}

nav .logo-img {
	max-width: 240px;
}

nav .logo-img img {
	width: 100%;
	height: auto;
	display: block;
	transform: translateY(6px);
}

nav .logo-text {
	margin-left: 15px;
	font-size: 28px;
	font-weight: bold;
	color: var(--color-brown);
}

.nav-right-area {
	display: flex;
	align-items: center;
	gap: 30px;
}

.header-notice-area {
	position: relative;
}

.header-user-icon-area {
	display: flex;
	align-items: center;
}

.header-user-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.header-notice-icon {
	width: 50px;
	height: 50px;
}

.header-notice-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background-color: crimson;
	border-radius: 14px;
	height: 22px;
	min-width: 22px;
	padding: 0 5px;
	color: #fff;
	text-align: center;
	line-height: 22px;
	font-size: 16px;
	font-weight: bold;
	box-sizing: border-box;
}

.disp-login-user-nickname {
	font-size: 24px;
}

/* ----------------------------
my-trade
------------------------------ */
.my-trade-sticky-header {
	position: sticky;
	top: 0;
	z-index: 98;
	background-color: #fff;
}

.my-trade-sticky-header .head-label {
	position: static;
}

.my-trade-tab {
	display: flex;
}

.my-trade-buttons {
	display: flex;
	gap: 8px;
	margin-top: 12px;
	padding: 4px 0 0;
}

.my-trade-btn-detail,
.my-trade-btn-trade {
	flex: 1;
	padding: 8px 0;
	border-radius: 8px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}

.my-trade-btn-detail {
	background-color: #f0f0f0;
	color: #555;
	border: 1px solid #ccc;
	max-width: 50%;
}

.my-trade-btn-trade {
	background-color: var(--color-brown);
	color: #fff;
	border: 1px solid var(--color-brown);
}

.my-trade-card {
	padding: 20px;
}

.my-trade-card-area {
	margin: 0 auto;
}

.my-trade-card-link {
	display: flex;
	width: 100%;
	cursor: pointer;
	gap: 12px;
}

.my-trade-card-link .sale-item-center {
	width: auto;
	flex: 1;
	min-width: 0;
	margin: 0;
}

.my-trade-card-flex {
	display: flex;
	width: 100%;
	gap: 12px;
	align-items: flex-start;
}

.my-trade-card-flex .sale-item-center {
	width: auto;
	flex: 1;
	min-width: 0;
	margin: 0;
}

.my-trade-card-compact {
	display: flex;
	gap: 12px;
}

.my-trade-card-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.my-trade-card-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	min-height: 36px;
}

.my-trade-card-title {
	font-size: 24px;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1;
}

.my-trade-card-price {
	font-size: 24px;
	font-weight: 600;
	white-space: nowrap;
}

.my-trade-card-sub {
	font-size: 22px;
	color: #666;
	margin-top: 2px;
}


.my-trade-thumb-wrapper {
	position: relative;
	display: inline-block;
}

.my-trade-btn-trade-wrapper {
	position: relative;
	flex: 1;
	display: flex;
}

.my-trade-btn-trade-wrapper .my-trade-btn-trade {
	flex: 1;
	max-width: none;
}

.my-trade-unrated-badge {
	position: absolute;
	top: -16px;
	right: -4px;
	font-size: 16px;
	font-weight: bold;
	padding: 2px 10px;
	border-radius: 14px;
	background-color: #e53935;
	color: #fff;
	border: 2px solid #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.my-trade-filter {
	padding: 10px 20px;
	background-color: #fff;
	border-bottom: 1px solid #eee;
}

.my-trade-filter-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 22px;
	color: #555;
	cursor: pointer;
}

.my-trade-filter-label input[type="checkbox"] {
	width: 22px;
	height: 22px;
}

.my-trade-filter-select {
	font-size: 22px;
	padding: 6px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	background-color: #fff;
	color: #333;
	cursor: pointer;
	width: auto;
	text-align: center;
	text-align-last: center;
}


.my-trade-card-bar {
	margin-top: 4px;
}

.my-trade-card-bar progress {
	width: 100%;
}

.my-trade-card-deadline {
	font-size: 18px;
	line-height: 28px;
	white-space: nowrap;
}

.my-trade-card-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.my-trade-card-stats {
	display: flex;
	gap: 14px;
	align-items: center;
}

.my-trade-card-stat {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 20px;
	color: #555;
}

.my-trade-card-stat img {
	width: 24px;
	height: 24px;
	opacity: 0.7;
}

.my-trade-card-deadline-inline {
	margin-left: 12px;
	color: #666;
	white-space: nowrap;
}

.my-trade-card-sub-layout {
	display: flex;
	align-items: center;
	gap: 10px;
}

.my-trade-card-info {
	flex: 1;
	font-size: 18px;
}

.my-trade-card-deadline-line {
	color: #666;
}

.my-trade-card-count {
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
	white-space: nowrap;
	margin-left: auto;
}

.my-trade-no-items {
	text-align: center;
	padding: 40px 0;
	font-size: 24px;
	color: #999;
}

.no-data-message {
	text-align: center;
	padding: 40px 0;
	font-size: 24px;
	color: #999;
	width: 100%;
}

/* ----------------------------
lp
----------------------------- */
.lp-main-text {
	margin-top: 30px;
	font-size: 50px;
}

.lp-sub-text {
	margin: 30px 0;
	font-size: 30px;
	font-weight: bold;
}

.lp-text {
	font-size: 22px;
}

.lp-text p {
	margin: 50px 0;
}

/* ----------------------------
login
----------------------------- */
.container.login,
.container.lp {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 0px;
}

.content.logo-area {
	margin: 50px 0;
	line-height: normal;
	color: var(--color-brown);
}

.sub-text {
	margin-top: 40px;
	font-size: 28px;
}

.main-text {
	font-size: 42px;
	font-weight: bold;
}

.login-text,
.login-confirm-text {
	text-align: left;
	margin: 0 20px 30px 20px;
	line-height: normal;
}

.login-input,
.login-confirm-input {
	margin: 0 20px;
}

.login-input div,
.login-confirm-input div {
	margin-bottom: 20px;
}

.round_text.sl {
	width: 100%;
	text-align: left;
	font-size: 28px;
	padding: 10px;
}

.round_text.sl:focus {
	outline: 0;
	border: solid 2px var(--color-brown);
}

.sl-button {
	display: block;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	box-shadow: none;
	padding: 15px;
	border-radius: 10px;
	background-color: var(--color-brown);
	transition: all 0.3s;
	opacity: 1;
}

.sl-button.w {
	background-color: var(--bgcolor-body);
	color: var(--color-default);
	border: solid 1px #ccc;
	font-weight: normal;
}

.sl-button.mini {
	width: 100%;
	text-align: center;
	font-size: 24px;
	font-weight: normal;
	color: #fff;
	box-shadow: none;
	padding: 5px 10px;
	margin-bottom: 10px;
	border-radius: 10px;
	background-color: var(--color-brown);
	transition: all 0.3s;
	opacity: 1;
}

.sl-button.cancel {
	width: 100%;
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	box-shadow: none;
	padding: 15px;
	border-radius: 10px;
	background-color: var(--color-pale-grey);
	color: var(--color-pale-grey-color);
	transition: all 0.3s;
	opacity: 1;
}

.sl-button button {
	width: 100%;
	height: 100%;
	display: block;
	-webkit-appearance: none;
	appearance: none;
	background: none;
	border: none;
	color: inherit;
	font: inherit;
	padding: 0;
	cursor: pointer;
}

.sl-button:hover {
	transition: all 0.3s;
	opacity: 0.8;
}

.sl-button:disabled {
	background-color: var(--color-pale-grey);
	color: var(--color-pale-grey-color);
	opacity: 0.8;
}

/* ----------------------------
top
----------------------------- */
.top-content {
	display: flex;
	margin: 20px 0;
	flex-wrap: wrap;
}

.disp-sale-success-mark {
	font-size: 32px;
	font-weight: 600;
	display: block;
	padding: 3px;
	text-align: center;
	color: var(--color-brown);
}

.disp-sale-success-mark img {
	margin-right: 10px;
	height: 48px;
}

.search-condition-wrapper {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-default);
	width: 580px;
	margin: 0 auto;
}

.search-condition-menu {
	display: flex;
	justify-content: space-between;
}

.search-items-by-keyword {
	position: relative;
	height: 60px;
	margin: 20px auto;
}

.search-items-by-keyword input {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	border: 1px solid var(--color-dark-brown);
	font-size: 28px;
	padding: 5px 10px 5px 65px;
	background-image: url(../img/search-icon.svg);
	background-color: var(--color-pale-grey);
	background-repeat: no-repeat;
	background-position: 12px center;
	background-size: 40px;
	font-weight: normal;
}

.search-items-by-keyword .bt-search-items-by-keyword {
	position: absolute;
	padding: 8px 15px 9px;
	background-color: var(--color-brown);
	color: #ffffff;
	right: 0;
	top: 0;
}

.search-category-area {
	margin-top: 8px;
}

.search-category-select {
	width: 100%;
	padding: 10px 12px;
	font-size: 28px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: var(--color-pale-grey);
	color: var(--color-grey);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.search-items-by-keyword .bt-delete-search-condition {
	width: 48px;
	padding: 10px;
	position: absolute;
	right: 82px;
	top: -10px;
}

.top-sticky-header {
	position: sticky;
	top: 0;
	z-index: 98;
	background-color: #fff;
	padding-bottom: 10px;
}

.search-filter-row {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 10px 0;
}

.search-filter-btn button,
.search-filter-category,
.search-filter-sort {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 20px;
	color: var(--color-brown);
	background: none;
	border: 1px solid var(--color-brown);
	border-radius: 30px;
	padding: 10px 16px;
	white-space: nowrap;
	cursor: pointer;
	font-weight: 500;
}

.filter-icon {
	width: 22px;
	height: 22px;
	fill: var(--color-brown);
}

.filter-icon-img {
	width: 22px;
	height: 22px;
}

.search-filter-category,
.search-filter-sort {
	position: relative;
}

.search-category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	font-size: 16px;
	color: #333;
}

.search-save-bar {
	position: fixed;
	bottom: 99px;
	left: 0;
	width: 100%;
	z-index: 95;
	background-color: var(--color-brown);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 75px;
}

.search-save-bar button {
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
	background: none;
	border: none;
	cursor: pointer;
}

.keep-search-condition {
	display: flex;
	justify-content: center;
}

.keep-search-condition button {
	background-image: url(../img/pen-icon.svg);
	display: block;
	background-repeat: no-repeat;
	background-position: 20px center;
	font-size: 22px;
	background-size: 24px;
	padding: 12px 20px 12px 50px;
	border-radius: 50px;
	border: 1px solid var(--color-brown);
}

button.bt-delete-search-condition img {
	width: 100%;
}

.disp-search-condition {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 15px auto;
	font-size: 22px;
}

.disp-search-condition div {
	color: var(--color-pale-grey-color);
	background-color: var(--color-pale-grey);
	border-radius: 50px;
	padding: 0 0 0 20px;
}

.disp-search-condition div button.bt-delete-search-condition {
	width: 42px;
	padding: 10px;
	line-height: 1;
}

.bt-select-search-conditions button {
	background-image: url(../img/list-icon.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 24px;
	padding-left: 30px;
}

.bt-search-items-by-prefecture button {
	background-image: url(../img/japan-icon.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 24px;
	padding-left: 30px;
}

.items-sort-order-menu {
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	font-size: 22px;
	color: var(--color-light-grey);
}

.bt-sort-by-sale-datetime {
	padding-left: 30px;
	background-image: url(../img/speaker-off-icon.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 22px;
}

.bt-sort-by-sale-datetime.active {
	background-image: url(../img/speaker-on-icon.svg);
}

.bt-sort-by-closest-to-current-location {
	padding-left: 30px;
	background-image: url(../img/map-pin-off-icon.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 22px;
}

.bt-sort-by-closest-to-current-location.active {
	background-image: url(../img/map-pin-on-icon.svg);
}

.bt-search-sale-items-by-map-geo {
	padding-left: 30px;
	background-image: url(../img/compus-off-icon.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 22px;
}

.bt-search-sale-items-by-map-geo.active {
	background-image: url(../img/compus-on-icon.svg);
}

.items-sort-order-menu .active {
	color: var(--color-brown);
}

.disp-sale-established-mark {
	background-color: #4caf50;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	width: 80px;
	height: 80px;
	position: absolute;
	top: 10px;
	left: 10px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
	z-index: 6;
}

.disp-sale-soldout-mark {
	background-color: #e53935;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	width: 80px;
	height: 80px;
	position: absolute;
	top: 10px;
	left: 10px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
	z-index: 6;
}


.sale-badge {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	padding: 2px 8px;
	border-radius: 6px;
	line-height: 1.4;
}

.sale-badge-established {
	background-color: rgba(76, 175, 80, 0.75);
}

.sale-badge-soldout {
	background-color: rgba(229, 57, 53, 0.75);
}

.sale-badge-ordered {
	background-color: rgba(33, 150, 243, 0.75);
}

.sale-item {
	width: 290px;
	padding: 20px;
	line-height: normal;
	display: flex;
	flex-direction: column;
	position: relative;
}

.item-bottom-area {
	margin-top: auto;
}

.item-bottom-area .sale-item-bar {
	margin-top: 6px;
}

.item-bottom-area .item-info {
	margin-top: 6px;
}

.item-bottom-area .item-info div {
	margin-top: 2px;
}

.item-img {
	width: 250px;
	height: 250px;
	border-radius: 10px;
}

.item-title {
	font-size: 22px;
	font-weight: 700;
	margin-top: 14px;
	line-height: 1.2;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.item-img-stats-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	padding: 18px 12px 8px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
	border-radius: 0 0 8px 8px;
}

.item-img-stats-overlay .item-grid-stat {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.item-img-stats-overlay .item-grid-stat img {
	width: 22px;
	height: 22px;
	opacity: 1;
	filter: brightness(0) invert(1);
}

.item-grid-price {
	font-size: 26px;
	font-weight: 700;
	text-align: right;
	color: #333;
}

.item-ordered-price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: 6px;
	min-height: 30px;
}

.item-ordered-label {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 5px 8px;
	font-size: 16px;
	font-weight: bold;
	color: transparent;
	line-height: 1.2;
	border-radius: 12px;
	text-align: center;
	flex-shrink: 0;
	white-space: nowrap;
}

.item-ordered-label:not(:empty) {
	background-color: rgba(33, 150, 243, 0.85);
	color: #fff;
}

.item-count-msg {
	font-size: 18px;
	font-weight: 600;
	color: #555;
}

.item-count-msg-num {
	font-weight: 700;
	color: #333;
}

.item-info-row {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 4px;
}

.item-deadline {
	font-size: 18px;
	font-weight: 600;
	color: #888;
	margin-top: 4px;
	text-align: right;
}

.shop-name {
	font-size: 22px;
}

.google-map-iframe-input {
	width: 100%;
	height: 500px;
	position: relative;
}

.google-map-iframe-input div {
	height: 500px;
}

.modal-content-select-map-geo {
	background: #fff;
	position: relative;
}

.select-map-geo-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	padding: 25px;
	background-color: var(--color-brown);
	color: #ffffff;
	font-weight: bold;
}

.bt-decide-map-geo {
	width: 640px;
	height: 30px;
	text-align: center;
	position: absolute;
	bottom: 15%;
	left: 50%;
	transform: translateX(-50%);
}

.bt-decide-map-geo button {
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	width: 600px;
	background: var(--color-dark-brown);
	border-radius: 50px;
	cursor: pointer;
	padding: 10px;
	text-align: center;
	border: 5px solid #ffffff;
}

.input-select-map-geo-place-search-word {
	border: 1px solid var(--color-light-grey);
	padding: 5px 10px 5px 50px;
	background-image: url(../img/search-icon.svg);
	background-repeat: no-repeat;
	background-size: 28px;
	background-position: 10px;
	font-size: 28px;
	color: var(--color-default);
	margin: 10px 0 10px 10px;
	width: 512px;
}

.bt-search-select-map-geo-place-by-google {
	background-color: var(--color-dark-brown);
	padding: 5px 10px;
	color: #ffffff;
	font-weight: bold;
	font-size: 28px;
	width: 100px;
	text-align: center;
}

.gmap-main {
	height: calc(90vh - 80px);
	height: calc(100dvh - 80px);
}

.modal-close-btn {
	width: 40px;
}

.item-top-area {
	position: relative;
}

.top .item-price,
.user-page .item-price,
.top-content .item-price {
	position: absolute;
	top: 200px;
	right: 0px;
	text-align: right;
	width: fit-content;
	padding: 0px 20px 0px 30px;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #ffffff;
	font-size: 24px;
	font-weight: 600;
}

/* ----------------------------
exhibit
----------------------------- */
.exhibit {
	margin-bottom: 80px;
}

.head-label {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	padding: 20px 0;
	border-bottom: 1px solid #ccc;
	position: sticky;
	top: 0;
	background-color: #fff;
	z-index: 99;
}

.icon-list {
	display: flex;
	justify-content: center;
	margin: 50px 0 30px;
}

.icon-list img {
	width: 100px;
}

.icon-button {
	margin: 0 30px;
	text-align: center;
}

.icon-text {
	margin-top: 20px;
	font-size: 18px;
}

.upload-photo-list {
	display: flex;
	overflow-x: scroll;
	margin: 30px 0;
}

.upload-photo-icon {
	flex-shrink: 0;
	background-color: var(--color-thumb-bg);
	width: 130px;
	height: 130px;
	border-radius: 10px;
	margin: 10px;
	position: relative;
}

.upload-photo-icon.selected {
	border-width: 2px;
	border-color: #d88c3e;
}

.upload-photo-icon span {
	display: inline-block;
	background-color: #d88c3e;
	color: #fff;
	font-weight: bold;
	width: 30px;
	height: 30px;
	border-radius: 50px;
	text-align: center;
	line-height: 30px;
	margin: 5px;
}

.photo-attention {
	width: 70px;
	text-align: center;
	position: absolute;
	top: 35px;
	left: 30px;
	color: var(--color-brown);
	font-weight: bold;
}

.preview-edit-sale-item-picture {
	width: 100%;
	height: 500px;
	background-color: var(--color-thumb-bg);
	/* aspect-ratio: 1; */
}

.input-area {
	margin-bottom: 40px;
}

.input-area .select-map-title {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-dark-brown);
}

.round_text.sl.w {
	height: 300px;
}

.tab-badge {
	display: inline-block;
	background-color: crimson;
	color: #fff;
	border-radius: 14px;
	min-width: 28px;
	height: 28px;
	line-height: 28px;
	padding: 0 6px;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	box-sizing: border-box;
	vertical-align: top;
	margin-left: 2px;
	margin-top: -4px;
}

.trade-start-announce {
	margin: 30px 0;
	padding: 14px 16px;
	background-color: #fdf6ec;
	border: 1px solid var(--color-brown);
	border-radius: 8px;
	font-size: 22px;
	line-height: 1.6;
	color: var(--color-dark-brown);
	text-align: center;
}

.swal2-input {
	font-size: 28px !important;
}

.select-category-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
}

.select-category-wrapper select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	padding-right: 40px;
	min-height: 75px;
}

.select-category-arrow {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 20px;
	color: var(--color-brown);
}

textarea.round_text.sl {
	min-height: 150px;
	resize: none;
	overflow: hidden;
}

textarea.round_text.sl::-webkit-resizer {
	background: linear-gradient(135deg, transparent 60%, var(--color-brown) 60%, var(--color-brown) 70%, transparent 70%, transparent 80%, var(--color-brown) 80%);
	border-radius: 0 0 4px 0;
}

.input-error-msg {
	font-size: 20px;
	color: #ff0000;
}

.z-label {
	font-size: 24px;
	margin-left: 1em;
	margin-right: 1em;
}

.button-list {
	margin: 50px 0;
}

.button-list div {
	margin-top: 20px;
}

.input-area-label {
	color: #ffffff;
	background-color: var(--color-dark-brown);
	display: block;
	padding: 5px 10px;
	font-size: 28px;
	font-weight: bold;
	line-height: normal;
	margin-bottom: 10px;
	margin-top: 60px;
}

.radio-label {
	color: var(--color-dark-brown);
	font-size: 24px;
	font-weight: 600;
	width: 100%;
	line-height: 1.5;
}

.radio-flex {
	display: flex;
	flex-wrap: wrap;
}

/* 販売地域エリア共通 */
#box_sale_item_area_postcode,
#box_sale_item_area_prefecture,
#box_sale_item_area_city,
#box_sale_item_area_address_1,
#box_sale_item_area_address_2 {
	margin-top: 30px;
}

#box_sale_item_area_postcode .radio-label,
#box_sale_item_area_prefecture .radio-label,
#box_sale_item_area_city .radio-label,
#box_sale_item_area_address_1 .radio-label,
#box_sale_item_area_address_2 .radio-label {
	display: block;
}

.help-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: var(--color-brown);
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	vertical-align: text-top;
	margin-left: 4px;
}

.item-price-bold {
	font-size: 24px;
	font-weight: bold;
	margin-top: 6px;
	color: #333;
}

.item-img-wrapper {
	position: relative;
}

.item-status-label {
	position: absolute;
	top: 0;
	left: 0;
	padding: 3px 8px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	border-radius: 12px 0 6px 0;
}

.item-top-area .item-status-label {
	padding: 6px 12px;
	font-size: 18px;
	border-radius: 12px 0 8px 0;
}

.sale-item-start-lg + .item-status-label {
	padding: 3px 8px;
	font-size: 14px;
	border-radius: 10px 0 6px 0;
}

.item-img-status-label {
	position: absolute;
	top: 0;
	left: 0;
	width: 190px;
	height: 190px;
	z-index: 10;
	pointer-events: none;
}

.item-img-status-label::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(8px 0, 100% 0, 0 100%, 0 8px);
	border-radius: 12px 0 0 0;
}

.item-img-status-label span {
	position: absolute;
	top: 42px;
	left: -10px;
	width: 180px;
	text-align: center;
	transform: rotate(-45deg);
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 2px;
	white-space: nowrap;
}

.item-img-status-label.status-sold::before {
	background-color: rgba(200, 30, 15, 0.92);
}

.item-img-status-label.status-closed::before {
	background-color: rgba(136, 136, 136, 0.9);
}

.item-img-status-label.status-trading::before {
	background-color: rgba(204, 153, 0, 0.9);
}

.item-img-status-label.status-completed::before {
	background-color: rgba(63, 81, 181, 0.9);
}

.item-img-status-label.status-failed::before {
	background-color: rgba(183, 28, 28, 0.9);
}

.item-img-status-label.status-withdrawn::before {
	background-color: rgba(96, 125, 139, 0.9);
}

.item-detail-status-label {
	display: inline-block;
	padding: 6px 16px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	border-radius: 4px;
	margin-bottom: 10px;
}

.item-status-label.status-closed {
	background-color: rgba(136, 136, 136, 0.75);
}

.item-status-label.status-trading {
	background-color: rgba(216, 140, 62, 0.75);
}

.item-status-label.status-accepting {
	background-color: rgba(76, 175, 80, 0.75);
}

.item-status-label.status-completed {
	background-color: rgba(63, 81, 181, 0.75);
}

.item-status-label.status-failed {
	background-color: rgba(183, 28, 28, 0.75);
}

.item-status-label.status-withdrawn {
	background-color: rgba(96, 125, 139, 0.75);
}

.item-status-label.status-draft {
	background-color: rgba(120, 120, 120, 0.75);
}

.draft-card-button {
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
}

.draft-card-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 10px;
}

.draft-card-wrapper .my-trade-card {
	flex: 1;
}

.draft-select-checkbox {
	width: 28px;
	height: 28px;
	cursor: pointer;
	flex-shrink: 0;
}

.drafts-select-toggle {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	color: var(--color-brown);
	background: transparent;
	border: 1px solid var(--color-brown);
	border-radius: 6px;
	cursor: pointer;
	padding: 6px 14px;
}

.drafts-delete-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: calc(100px + env(safe-area-inset-bottom, 0px));
	display: flex;
	gap: 10px;
	padding: 14px 20px;
	background-color: #fff;
	border-top: 1px solid #ccc;
	box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
	z-index: 10000;
}

.drafts-delete-bar.hide {
	display: none;
}

.drafts-delete-cancel,
.drafts-delete-confirm {
	flex: 1;
	padding: 16px 0;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	border-radius: 10px;
	cursor: pointer;
}

.drafts-delete-cancel {
	background-color: #f0f0f0;
	color: #555;
	border: 1px solid #ccc;
}

.drafts-delete-confirm {
	background-color: #e53935;
	color: #fff;
	border: 1px solid #e53935;
}

.drafts-delete-confirm:disabled {
	background-color: #ccc;
	border-color: #ccc;
	cursor: not-allowed;
}

.draft-thumb-empty {
	background-image: url('../img/camera_simple.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50% 50%;
	background-color: #eee;
}

.draft-price-placeholder {
	color: #999;
	font-size: 20px;
	font-weight: normal;
}

.item-status-label.status-sold {
	background-color: rgba(231, 76, 60, 0.75);
}

.item-status-label.status-ordered {
	background-color: rgba(33, 150, 243, 0.75);
}

.item-ordered-text {
	display: inline-block;
	min-height: 24px;
	margin-top: 2px;
	padding: 3px 8px;
	font-size: 16px;
	font-weight: bold;
	color: transparent;
	line-height: 18px;
}

.item-ordered-text:not(:empty) {
	background-color: rgba(33, 150, 243, 0.75);
	border-radius: 4px;
	color: #fff;
}


.item-img-status-label.status-ordered::before {
	background-color: rgba(33, 150, 243, 0.75);
}

.input-area-required {
	position: relative;
}

.required-mark {
	position: absolute;
	top: 4px;
	right: 34px;
	background-color: #e74c3c;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	padding: 2px 8px;
	border-radius: 3px;
}

.input-area-required-nounit .required-mark {
	right: 0;
}

.help-tooltip {
	display: block;
	margin-top: 8px;
	margin-bottom: 8px;
	padding: 12px 14px;
	background-color: #fdf6ec;
	border: 1px solid var(--color-brown);
	border-radius: 6px;
	font-size: 18px;
	font-weight: normal;
	color: var(--color-grey);
	line-height: 1.6;
	animation: fadeInTooltip 0.7s ease-out;
}

@keyframes fadeInTooltip {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.input-with-unit {
	display: flex;
	align-items: center;
	gap: 10px;
}

.input-with-unit .round_text.sl {
	flex: 1;
}

.input-unit {
	font-size: 24px;
	color: var(--color-grey);
	white-space: nowrap;
}

.postcode-input {
	max-width: 180px;
}

select.select-sale-item-area-prefecture,
#select_sale_item_area_city {
	font-size: 28px;
	line-height: 1.5;
	border: 1px solid #cccccc;
	padding: 10px 20px;
	display: block;
}

.input-text-area {
	position: relative;
}

.input-text-label {
	position: absolute;
	bottom: 15px;
	font-size: 24px;
	line-height: 26px;
	font-weight: bold;
	color: var(--color-grey);
}

.input-text-number {
	display: block;
	width: 100%;
	height: 36px;
	border-bottom-style: dashed;
	border-bottom-width: 1px;
	border-bottom-color: #ccc;
	font-size: 28px;
	line-height: 26px;
	text-align: right;
	font-weight: bold;
	padding: 25px 10px;
}

.input-text-number:focus {
	outline: none;
	border-width: 0 0 2px 0;
	border-color: var(--color-brown);
}

.input-text-number::placeholder {
	text-align: right;
	font-size: 28px;
	font-weight: 500;
}

.none-buttom {
	margin-bottom: 0px;
}

.none-buttom + .none-buttom {
	margin-top: 40px;
}

.none-buttom.none-buttom-category {
	margin-top: 0px;
}

.select-limit-datetime,
.select-end-datetime {
	margin-top: 0;
	position: relative;
	width: 100%;
}

.select-limit-datetime input[type='datetime-local'],
.select-end-datetime input[type='datetime-local'] {
	font-size: 28px;
	padding: 10px;
	min-height: 75px;
	line-height: normal;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.select-datetime-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background-size: cover;
	font-size: 24px;
	color: var(--color-grey);
	pointer-events: none;
}

/* ----------------------------
trade
----------------------------- */
.trade-messages-area {
	margin: 30px 0;
}

.trade-info-area {
	margin-bottom: 30px;
}

.order-current-feedback-badge-inline {
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	padding: 4px 12px;
	border-radius: 14px;
	background-color: #e53935;
	color: #fff;
	margin-left: 10px;
	vertical-align: middle;
	line-height: 1.2;
	flex-shrink: 0;
}

.order-current-feedback-badge-inline.hide {
	display: none;
}

.feedback-status-done {
	background-color: #5c9ce6;
}

.feedback-status-pending {
	background-color: #e53935;
}

.trade-ended-banner {
	background-color: #555;
	color: #fff;
	text-align: center;
	padding: 15px;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	border-radius: 10px;
}

.trade-ended-feedback {
	background-color: #f8f8f8;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
}

.trade-ended-feedback-title {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 15px;
}

.trade-ended-feedback-item {
	margin-bottom: 15px;
	padding: 15px;
	background-color: #fff;
	border-radius: 8px;
}

.trade-ended-feedback-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.trade-ended-feedback-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

.trade-ended-feedback-info {
	flex: 1;
	min-width: 0;
}

.trade-ended-feedback-label {
	font-size: 20px;
	color: #999;
	margin-bottom: 2px;
}

.trade-ended-feedback-name {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 4px;
}

.trade-ended-feedback-type {
	font-size: 20px;
	font-weight: bold;
}

.feedback-type-badge {
	display: inline-block;
	padding: 1px 12px;
	border-radius: 14px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
}

.feedback-type-good {
	background-color: #4caf50;
}

.feedback-type-bad {
	background-color: #e53935;
}

.trade-ended-feedback-comment {
	font-size: 22px;
	line-height: 1.5;
	padding-left: 68px;
}

.trade-ended-feedback-prompt {
	font-size: 22px;
	margin-bottom: 15px;
	color: #555;
}

.trade-feedback-area {
	margin-top: 60px;
	padding: 20px;
	background-color: #f8f8f8;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
}

.trade-feedback-notice {
	font-size: 20px;
	color: #888;
	text-align: center;
	margin-bottom: 12px;
}

.trade-feedback-msg {
	font-size: 24px;
	margin-bottom: 15px;
	color: #555;
}

.trade-feedback-done {
	margin-top: 15px;
	padding: 15px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #4caf50;
}

.trade-item-info-content {
	margin-bottom: 50px;
	word-break: break-all;
	text-align: right;
}

.trade-info-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 30px 0 10px;
}

.trade-info-label {
	font-size: 28px;
	font-weight: bold;
	line-height: normal;
}

button.trade-info-button {
	color: var(--color-brown);
	border: 1px solid var(--color-brown);
	padding: 5px 30px;
	border-radius: 10px;
	font-weight: bold;
}

.list-control-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-bottom: 1px solid #eee;
	background-color: #fff;
}

.list-filter select {
	font-size: 20px;
	padding: 10px 16px;
	border: 1px solid #ccc;
	border-radius: 10px;
	color: #333;
	background-color: #fff;
}

.view-toggle-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	border: 1px solid #ccc;
	border-radius: 10px;
	background-color: #fff;
	cursor: pointer;
	font-size: 18px;
	color: #999;
}

.view-toggle-btn svg {
	fill: #999;
	width: 22px;
	height: 22px;
}

.view-toggle-btn.active {
	border-color: var(--color-brown);
	color: var(--color-brown);
}

.view-toggle-btn.active svg {
	fill: var(--color-brown);
}

.view-toggle-btn.active svg {
	fill: var(--color-brown);
}

.trade-info-content {
	padding: 20px;
	line-height: normal;
	background-color: #fbefd7;
	border-radius: 15px;
	min-height: 200px;
}

.bt-trade-next {
	vertical-align: middle;
	margin-left: 20px;
	margin-right: 10px;
	font-weight: bold;
	align-self: center;
	font-size: 30px;
}

.trade-icon-area {
	align-self: center;
}

.disp-order-current-nickname.trade {
	font-size: 26px;
	font-weight: bold;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	max-width: 100%;
	min-width: 0;
}

.disp-order-current-nickname.trade .order-current-nickname-text {
	flex: 0 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.disp-order-current-nickname.trade .order-current-nickname-suffix {
	flex: 0 0 auto;
}

.icon-question-user-icon.trade {
	position: relative;
}

.user-icon-notice {
	position: absolute;
	background-color: crimson;
	border-radius: 50%;
	height: 15px;
	width: 15px;
	right: 4px;
}

/* ----------------------------
my_sell
----------------------------- */
.head-tab {
	display: flex;
	justify-content: space-between;
	font-size: 22px;
	border-bottom: 1px solid #ccc;
}

.list-sticky-header {
	position: sticky;
	top: 0;
	background-color: #fff;
	z-index: 98;
}

.head-tab.my-page-head {
	font-size: 22px;
}

.head-tab div {
	flex: 1;
	padding: 15px 20px;
	text-align: center;
	font-weight: 500;
}

.head-tab .selected {
	color: var(--color-brown);
	font-weight: bold;
	border-bottom: 3px solid var(--color-brown);
}

.head-tab-all,
.head-tab-follow,
.head-tab-favorite {
	display: flex;
	align-items: center;
	justify-content: center;
}

.head-tab img,
.head-tab a {
	display: block;
}

.head-tab-follow img,
.head-tab-favorite img {
	width: 32px;
	margin-right: 10px;
	display: block;
}

.tab-icon {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: #999;
	stroke-width: 2;
	vertical-align: middle;
	margin-right: 4px;
}

.selected .tab-icon {
	stroke: var(--color-brown);
}

.disp-withdraw-exhibit-with-buyer-msg {
	background-color: var(--color-attention);
	width: 100%;
	padding: 10px;
	color: #ffffff;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
}

.disp-ordered-msg {
	position: absolute;
	right: 30px;
	top: 520px;
	background-color: rgba(33, 150, 243, 0.85);
	width: 120px;
	height: 120px;
	padding: 20px 0;
	color: #ffffff;
	border-radius: 64px;
	font-size: 32px;
	line-height: 1.2;
	font-weight: bold;
	text-align: center;
	z-index: 9999;
}

.disp-ordered-msg.fixed {
	position: fixed;
	top: 50px;
}

.sale-item-area {
	display: flex;
	width: fit-content;
	margin: 20px auto;
	cursor: pointer;
}

.my-trade-card .sale-item-area,
.sale-item .sale-item-area {
	margin: 0 auto;
}

.sale-item-bottom {
	border-bottom: 1px solid #ccc;
}

.sale-item-start {
	width: 100px;
	height: 100px;
	border-radius: 10px;
	background-color: #ccc;
	align-self: center;
}

.sale-item-start-lg {
	width: 140px;
	height: 140px;
}

.sale-item-center {
	width: 420px;
	margin: 0 20px;
	line-height: normal;
}

.sale-item-end {
	font-size: 30px;
	align-self: center;
	text-align: center;
}

.sale-item-name {
	font-size: 24px;
	font-weight: bold;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.sale-item-price {
	font-size: 24px;
	font-weight: 600;
	text-align: right;
}

.sale-item-center .disp-order-count {
	font-size: 24px;
	border: none;
	text-align: left;
	margin-top: 0;
	padding: 0;
}

.sale-item-center .disp-order-count span {
	font-size: 24px;
	color: var(--color-default);
	padding: none;
}

.order-sub-total {
	display: flex;
	justify-content: space-between;
}

.sale-item-count-bar {
	justify-content: space-between;
	align-items: center;
}

.sale-item-count-wrapper {
	display: flex;
	justify-content: space-between;
}

.sale-item-bar {
	align-self: center;
	margin-top: 5px;
}

.sale-item-count {
	font-size: 24px;
	line-height: normal;
	font-weight: 600;
	text-align: right;
}

.thum-seller-icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.disp-sale-judge-count-msg {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-brown);
}

.sale-item-status {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sale-item-icon img {
	width: 33px;
}

.sale-item-icon span {
	font-size: 22px;
	font-weight: 500;
}

progress {
	-webkit-appearance: none;
	width: 100%;
	height: 20px;
}

progress::-webkit-progress-bar {
	background: var(--color-thumb-bg);
}

progress::-webkit-progress-value {
	background: var(--graduation-progress);
}

.sale-item-limited-bar progress::-webkit-progress-bar {
	background: var(--graduation-limit);
}

.sale-item-limited-bar progress::-webkit-progress-value {
	background: var(--color-thumb-bg);
}

/* ----------------------------
my_info
----------------------------- */
.info-list-area {
	margin-bottom: 200px;
}

.info-notice-area {
	padding: 20px;
	line-height: normal;
	border-bottom: 1px solid #ccc;
	width: 100%;
}

.info-notice-button {
	width: 100%;
	display: flex;
}

.icon-info-user-icon-area {
	margin-bottom: auto;
	margin-top: auto;
}

.icon-info-user-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-right: 10px;
	margin-top: auto;
	margin-bottom: auto;
}

.info-notice-content {
	margin-left: 20px;
	width: 100%;
	min-width: 0;
	margin-bottom: auto;
	margin-top: auto;
}

.info-notice-item-title {
	font-weight: bold;
	font-size: 22px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.info-notice-content-type-msg {
	/* color: var(--color-grey); */
	/* font-weight: bold; */
}

.info-notice-entry-datetime {
	color: #666666;
	font-size: 20px;
}

.info-notice-hope-button {
	padding: 5px 10px;
	background-color: var(--color-thumb-bg);
	border-radius: 10px;
	font-size: 20px;
	margin: 10px 0 0 110px;
	width: 490px;
}

/* ----------------------------
user
----------------------------- */
.user-edit-button-area {
	display: flex;
	margin: 10px 20px 0;
}

.user-edit-button-area div {
	width: 50%;
	padding: 10px;
	color: var(--color-brown);
	border: 1px var(--color-brown) solid;
	border-radius: 10px;
	margin: 10px;
}

.user-follow-content {
	text-align: center;
	margin: 10px 0;
}

.bt-follow-icon {
	width: 35px;
	vertical-align: middle;
}

.bt-follow-icon-text {
	vertical-align: middle;
}

.bt-follow-icon-text.orange {
	color: var(--color-brown);
}

.user-seller-info {
	font-size: 22px;
	color: #666666;
	line-height: normal;
	margin-bottom: 30px;
}

hr.grey-m20 {
	border-top: 1px solid #ccc;
	margin: 20px 0;
}

.user-item-title {
	font-size: 22px;
	font-weight: 700;
	margin-top: 10px;
	overflow: hidden;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.user-item-price {
	font-size: 24px;
	font-weight: 700;
	text-align: right;
	color: var(--color-brown);
}

.head-tab.user-feedbacks {
	font-size: 22px;
	/* border-top: 1px solid #ccc; */
}

.user-feedbacks-area {
	margin-top: 30px;
	margin-bottom: 30px;
}

.user-feedbacks-sentence {
	background-color: #f5f5f5;
	border-radius: 10px;
	line-height: 1.5;
	width: 100%;
	padding: 20px;
	font-size: 24px;
	margin-top: 10px;
	margin-bottom: 30px;
}

.feedback-name-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.feedback-role-text {
	font-size: 18px;
	color: #999;
	margin-left: auto;
}

.feedback-role-text-seller {
	color: #e65100;
}

.feedback-role-text-buyer {
	color: #1565c0;
}

.user-feedback-icon {
	color: #fff;
	padding: 0 10px;
	font-size: 18px;
	font-weight: bold;
	border-radius: 6px;
}

.user-feedback-icon.good {
	background: #4caf50;
}

.user-feedback-icon.bad {
	background: #e53935;
}

.user-star-rating {
	text-align: center;
	font-size: 32px;
	letter-spacing: 4px;
	margin-top: 10px;
}

.user-star-rating .star-filled {
	color: #f5a623;
}

.user-star-rating .star-half {
	position: relative;
	display: inline-block;
	color: #ddd;
}

.user-star-rating .star-half::before {
	content: '★';
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	overflow: hidden;
	color: #f5a623;
}

.user-star-rating .star-empty {
	color: #ddd;
}

.user-star-rating .star-score {
	font-size: 20px;
	color: var(--color-grey);
	letter-spacing: 0;
	margin-left: 8px;
}

.star-rating-inline {
	font-size: 22px;
	letter-spacing: 2px;
	vertical-align: middle;
}

.star-rating-inline .star-filled {
	color: #f5a623;
}

.star-rating-inline .star-half {
	position: relative;
	display: inline-block;
	color: #ddd;
}

.star-rating-inline .star-half::before {
	content: '★';
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	overflow: hidden;
	color: #f5a623;
}

.star-rating-inline .star-empty {
	color: #ddd;
}

.star-score-inline {
	font-size: 20px;
	color: var(--color-grey);
	margin-left: 4px;
	vertical-align: middle;
}

.area-follow-seller:empty,
.area-follow-seller:not(:has(button:not(.hide))) {
	display: none;
}

.area-follow-seller {
	position: absolute;
	right: 0;
	top: 0;
}

.bt-follow-seller,
.bt-unfollow-seller {
	padding: 12px 16px;
	border-radius: 35px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
}

.bt-follow-seller {
	background-color: #fff;
	color: var(--color-brown);
	border: 2px solid var(--color-brown);
}

.bt-unfollow-seller {
	background-color: var(--color-brown);
	color: #fff;
	border: 2px solid var(--color-brown);
}

.bt-link-to-user-feedbacks {
	margin: 10px auto;
	display: block;
	width: 380px;
	text-align: right;
}

.disp-user-feedback-count {
	margin: 20px auto;
}

.see-more-users-feedback {
	color: var(--color-brown);
	text-decoration: underline;
	margin-left: 20px;
}

/* ----------------------------
follower_user/following_user
----------------------------- */

.area-disp-follower-users {
	padding-bottom: 100px;
}

.follower-user-button {
	width: 100%;
}

.follower-user-area {
	display: flex;
	width: 100%;
	padding: 20px;
	line-height: normal;
	border-bottom: 1px solid #ccc;
}

.follower-user-icon-area {
	width: 100px;
}

.follower-user-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-right: 10px;
	object-fit: cover;
}

.follower-user-name {
	margin-left: 20px;
	width: 100%;
	margin-bottom: auto;
	margin-top: auto;
	font-weight: bold;
}

/* ----------------------------
my_page
----------------------------- */
.user-icon-area {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 30px 0;
}

.user-icon-img img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
}

.user-nickname {
	margin-top: 20px;
	cursor: pointer;
	font-size: 28px;
	font-weight: bold;
}

.user .user-nickname {
	cursor: auto;
}

.my-page .user-nickname-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bt-link-to-my-edit-profile-user {
	display: block;
}
.bt-link-to-my-edit-profile-user img {
	width: 50px;
}

.user-state-area {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}

.user-state-area div {
	width: 200px;
	text-align: center;
}

.user-state-area .center {
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
}

.user-state-count-number {
	font-size: 25px;
	font-weight: 700;
	line-height: normal;
}

.user-state-label {
	font-size: 20px;
	line-height: normal;
	color: var(--color-pale-grey-color);
}

.disc-text.mypage {
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 20px;
	line-height: normal;
}

.mypage-menu-list {
	/* display: flex; */
	margin-top: 10px;
	margin-bottom: 30px;
	border-top: 1px solid #ccc;
}

.mypage-dashboard {
	margin-top: 10px;
	margin-bottom: 30px;
	border-top: 1px solid #ccc;
}

.exhibit-draft-link-area {
	padding: 12px 20px;
	background-color: #fff;
}

.exhibit-draft-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background-color: #f8f8f8;
	font-size: 22px;
	color: #333;
	cursor: pointer;
	line-height: 1;
}

.exhibit-draft-link-label {
	font-size: 22px;
	line-height: 1;
}

.exhibit-draft-link-count {
	font-size: 22px;
	font-weight: 600;
	color: var(--color-brown);
	line-height: 1;
}

.exhibit-draft-link-arrow {
	font-size: 26px;
	font-weight: bold;
	color: #999;
	line-height: 1;
}

.mypage-dashboard-row {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 18px 10px 18px 16px;
	border-bottom: 1px solid #ccc;
	background: transparent;
	cursor: pointer;
	font-size: 24px;
}

.mypage-dashboard-row-label {
	flex: 1;
	text-align: left;
	color: #333;
}

.mypage-dashboard-row-count {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-brown);
	margin-right: 12px;
	min-width: 30px;
	text-align: right;
}

.mypage-dashboard-row-arrow {
	font-size: 28px;
	font-weight: bold;
	color: #999;
	margin-right: 6px;
}

.mypage-menu-list-content {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #ccc;
	padding: 20px 0;
	font-size: 26px;
}

.mypage-menu-list-icon {
	font-size: 28px;
	font-weight: bold;
	margin-right: 10px;
}

.mypage-web-push {
	margin-top: 40px;
	text-align: center;
}

.bt-activate-web-push {
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	padding: 12px 30px;
	border: none;
	border-radius: 10px;
	background-color: #2196F3;
	cursor: pointer;
}

.mypage-logout {
	margin-top: 40px;
	text-align: center;
}

.mypage-logout button {
	font-size: 24px;
	color: #999;
	padding: 10px 40px;
	border: 1px solid #ccc;
	border-radius: 10px;
	background-color: #fff;
}

/* ----------------------------
my_edit_profile
----------------------------- */
.input-2block-area {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.input-2block-content {
	width: 49%;
}

.bt-copy-user-info-to-seller {
	display: block;
	margin: 30px auto;
	text-align: center;
	font-size: 24px;
	color: var(--color-brown);
	padding: 5px 10px;
	border: 1px solid var(--color-brown);
	border-radius: 3px;
	cursor: pointer;
	margin-left: auto;
}
.bt-copy-user-info-to-seller:hover {
	color: #fff;
	background-color: var(--color-brown);
}

.user-icon-edit {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-brown);
	font-size: 28px;
	height: 28px;
	line-height: 28px;
	margin: 20px 0;
	padding: 20px 10px;
	border: 1px solid var(--color-brown);
	border-radius: 10px;
}

.user-icon-edit img {
	width: 40px;
	margin-right: 10px;
}

.input-pre-text {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 28px;
	padding: 0 10px;
	border-width: 0 0 1px 0;
	border-color: var(--color-default);
}

.input-pre-text .disp-user-email {
	width: 420px;
	overflow: scroll;
}

/*----------------------------
my_favorite_items
------------------------------*/

.my-favorite-sale-items-table {
	display: block;
}

.my-favorite-sale-items-table .sale-item {
	width: 100%;
	display: block;
	border-bottom: 1px dashed #cccccc;
}

.my-favorite-sale-items-table .sale-item > button {
	display: flex;
	align-items: center;
}

.my-favorite-sale-items-table .sale-item > button .item-left-area {
	width: fit-content;
	margin-right: 30px;
	position: relative;
	flex-shrink: 0;
}

.my-favorite-sale-items-table .sale-item > button .item-left-area .item-img {
	width: 135px;
	height: 135px;
}

.my-favorite-sale-items-table .sale-item > button .item-right-area {
	width: 380px;
}

.my-favorite-sale-items-table .sale-item > button .item-right-area .item-title {
	height: fit-content;
	margin: 0;
}

.my-favorite-sale-items-table .sale-item > button .item-right-area .item-price {
	text-align: right;
	color: var(--color-brown);
}

.my-favorite-sale-items-table .sale-item > button .item-right-area .item-info {
	display: flex;
	font-size: 20px;
}

.my-favorite-sale-items-table .sale-item .item-info,
.top-content .sale-item .item-info {
	font-size: 18px;
}

.my-favorite-sale-items-table .sale-item-bar,
.top-content .sale-item .sale-item-bar,
.browsing-history .sale-item-bar {
	margin-top: 0;
}

.my-favorite-sale-items-table .sale-item > button .item-right-area .item-info .disp-sale-item-max-count {
	flex-grow: 2;
}

.my-favorite-sale-items-table .item-info div:first-child,
.top-content .item-info div:first-child,
.browsing-history .item-info div:first-child {
	font-weight: bold;
}

.browsing-history .item-price,
.my-favorite-sale-items-table .item-price {
	position: absolute;
	top: 90px;
	right: 0px;
	text-align: right;
	width: fit-content;
	padding: 0px 20px 0px 30px;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
}

/* ----------------------------
item
----------------------------- */
.picture-slider-container {
	max-width: 800px;
	margin: 30px auto 10px;
}

.picture-slider {
	position: relative;
	width: 100%;
	padding-top: 100%;
	overflow: hidden;
	background-color: #f1f4f6;
	border-radius: 12px;
}

.picture-slider-items {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	position: absolute;
	z-index: 1;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.picture-slider-item {
	min-width: 100%;
	height: 100%;
	margin: 0;
}

.picture-slider-item img {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.picture-slider-button {
	z-index: 2;
	position: absolute;
	width: 32px;
	height: 32px;
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	opacity: 0.4;
	display: block;
	margin: auto 0;
	top: 50%;
	display: none;
}

.picture-slider-button.prev {
	background-image: url(https://showlot.jp/img/bt_prev.png);
	background-size: contain;
	left: 10px;
}

.picture-slider-button.next {
	background-image: url(https://showlot.jp/img/bt_next.png);
	background-size: contain;
	right: 10px;
}

.picture-slider-button:hover {
	opacity: 0.8;
}

.picture-slider-dots {
	width: 100%;
	display: flex;
	justify-content: center;
	padding-top: 15px;
}

.picture-slider-dot {
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: none;
	outline: none;
	padding: 0;
	margin: 0px 5px;
	background-color: #ccc;
	cursor: pointer;
	transition: opacity 0.4s ease-in-out;
}

.picture-slider-dot.current {
	background-color: #555;
}

.item-title-large {
	font-size: 28px;
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 10px;
	line-height: normal;
	word-break: break-all;
}

.item-desc-add-label {
	font-size: 20px;
	background-color: #eee;
	padding: 5px 0 5px 10px;
	font-weight: 700;
	margin-top: 30px;
	color: grey;
}

.item-disc-text {
	font-size: 26px;
	line-height: normal;
	word-break: break-all;
}

.item-disc-text.add {
	background-color: #f9f9f9;
	padding: 20px;
}

.trade .sub-label {
	margin-top: 0;
}

.area-to-trade {
	margin-top: 30px;
}

.item-info-area {
	line-height: normal;
}

.trade .item-info-area {
	display: flex;
	margin-top: 50px;
}

.item-info-area-clickable {
	cursor: pointer;
	transition: opacity 0.15s;
}

.item-info-area-clickable:active {
	opacity: 0.6;
}

.trade .trade-info-content {
	height: 200px;
	overflow-y: auto;
}

.item-info-area-left {
	width: 180px;
	height: 180px;
	text-align: center;
	background-color: var(--color-pale-grey);
}

.item-info-area-right {
	width: 370px;
	margin-left: 20px;
}

.item-info-area-right .item-title-large {
	margin-top: 0;
}

.item-info-content {
	margin: 30px auto;
	word-break: break-all;
}

.item-info-content .item-name {
	font-size: 26px;
}

.item-info-content .item-info {
	display: flex;
	flex-direction: column;
	text-align: right;
	justify-content: space-between;
	font-size: 26px;
}

.item-info .limit-day-title {
}

.seller-action-separator {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #aaa;
}

.area-disp-order-current,
.area-sale-item-questions {
	font-size: 26px;
}

.order-current-wrapper {
	display: flex;
	border-bottom: 1px dashed #cccccc;
	padding: 20px 0;
	min-width: 0;
}

.icon-question-user-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin-right: 20px;
}

.question-area-wrapper {
	display: flex;
}

.question-sentence-wrapper {
	width: 100%;
}

.item .question-sentence-wrapper {
	width: 80%;
}

.question-sentence {
	background-color: #f5f5f5;
	border-radius: 10px;
	line-height: 1.5;
	margin-left: 20px;
	margin-bottom: 20px;
	width: 100%;
	min-width: 496px;
	padding: 20px;
	font-size: 24px;
	margin-top: 10px;
	margin-bottom: 20px;
}

.item .question-sentence {
	margin-left: 0px;
	min-width: 0px;
}

span.disp-entry-datetime {
	margin-top: 20px;
	text-align: right;
	display: inline-block;
	width: 100%;
}

.area-disp-order-current > div:first-child,
.area-sale-item-questions > div:first-child {
	font-size: 28px;
	margin-bottom: 20px;
	font-weight: bold;
}

.disp-order-current {
	line-height: 1.5;
	margin-bottom: 20px;
	width: 100%;
}

.disp-order-current-info {
	width: 510px;
	max-width: 100%;
	min-width: 0;
	display: flex;
	flex-wrap: wrap;
}

.disp-order-current-nickname {
	width: 100%;
}

.disp-order-current-count {
	width: 30%;
}

.disp-order-current-datetime {
	width: 70%;
	text-align: right;
}

.bt-sale-item-question {
	margin-top: 30px;
}

.disp-seller-name {
	font-size: 26px;
	width: 450px;
	margin-left: 20px;
}

#disp_seller_business_name {
	display: inline-block;
	max-width: 280px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: middle;
}

.disp-sale-item-order-count,
.disp-order-count {
	font-size: 26px;
	border-top: 1px solid #666666;
	border-bottom: 1px solid #666666;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	margin-top: 20px;
}

.disp-sale-item-order-count span,
.disp-order-count span {
	font-size: 40px;
	font-weight: bold;
	color: var(--color-brown);
	margin-right: 5px;
}

.bt-to-seller-info {
	display: flex;
}

.item-price-large {
	font-size: 32px;
	width: 100%;
	text-align: right;
	color: var(--color-default);
	font-weight: 700;
}

.disp-sale-item-status {
	display: flex;
	flex-direction: column;
	text-align: right;
	justify-content: space-between;
	font-size: 26px;
	line-height: 1.5;
	margin: 30px auto;
}

.disp-sale-item-status span {
	font-weight: bold;
	color: var(--color-brown);
	display: inline-block;
	width: 60px;
}

.disp-sale-datetime {
	text-align: right;
	font-size: 26px;
	margin-top: 20px;
}

.disp-sale-datetime span {
}

.disp-sale-item-seller-url {
	font-size: 24px;
}

/* ----------------------------
cart-navi
----------------------------- */
.cart-navi {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0px;
	bottom: calc(100px + env(safe-area-inset-bottom, 0px));
	z-index: 9999;
	width: 100%;
	height: 80px;
	background-color: var(--color-brown);
}

.area-buyer-view,
.area-seller-view {
	display: flex;
	justify-content: center;
	gap: 120px;
}

.area-buyer-view button,
.area-seller-view button {
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	padding: 20px;
	line-height: 1;
}

.area-seller-view button {
	text-align: center;
	white-space: nowrap;
	border: none;
	border-radius: 0;
	padding: 20px 0;
}


#bt_edit_exhibit::before {
	content: '＋';
	margin-right: 6px;
}

#bt_withdraw_exhibit::before,
#bt_withdraw_exhibit_with_buyer::before {
	content: '✕';
	margin-right: 6px;
}

.area-buyer-view button:hover,
.area-seller-view button:hover {
	background-color: var(--color-dark-brown);
}

.area-buyer-view button:first-child {
	margin-right: 20px;
}


/* ----------------------------
main-navi
----------------------------- */
.main-navi {
	display: flex;
	justify-content: space-around;
	align-items: center;
	border-top: 1px solid #ccc;
	position: fixed;
	left: 0px;
	bottom: -1px;
	z-index: 9999;
	width: 100%;
	height: calc(100px + env(safe-area-inset-bottom, 0px));
	padding-bottom: env(safe-area-inset-bottom, 0px);
	background-color: #fff;
}

.main-navi-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.main-navi img {
	width: 40px;
}

.main-navi span {
	font-size: 20px;
	font-weight: bold;
}

.icon-img {
	position: relative;
}

.icon-count-number {
	position: absolute;
	background-color: crimson;
	border-radius: 14px;
	height: 28px;
	min-width: 28px;
	padding: 0 6px;
	color: #fff;
	text-align: center;
	line-height: 28px;
	font-size: 18px;
	box-sizing: border-box;
}

.icon-count-number.home {
	left: 30px;
}

.icon-count-number.news {
	left: 45px;
}

.icon-count-number.sell {
	left: 25px;
}

.icon-count-number.mypage {
	left: 46px;
}

/* ----------------------------
modal
----------------------------- */
.modal {
	display: none;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 300;
	overflow: auto;
	font-size: 26px;
}

.modal-bg {
	background: rgba(0, 0, 0, 0.3);
	min-height: 100vh;
	min-height: -webkit-fill-available;
	position: fixed;
	width: 100%;
}

.modal-header {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background-color: var(--color-brown);
	padding: 10px 20px;
}

.modal-header-title {
	flex-grow: 1;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
}

.modal-title {
	font-size: 28px;
	font-weight: bold;
}

.select-items-by-prefecture .modal-title {
	margin-top: 50px;
}

.madal-sub-button {
	font-size: 28px;
	font-weight: bold;
	color: #ccc;
}

.modal-content {
	text-align: center;
	background: #fff;
	left: 50%;
	position: fixed;
	top: 50%;
	/* top: calc(50% - 100px); */
	transform: translate(-50%, -50%);
	width: calc(100% - 40px);
	max-width: 600px;
	overflow: auto;
	border-radius: 15px;
	max-height: 100vh;
}

.modal-text {
	text-align: left;
	padding-bottom: 20px;
}

/* お気に入り・コメント アクションバー */
.item-social-actions {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 15px 10px;
	margin-top: 10px;
}

.social-action-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 28px;
	font-weight: bold;
	color: #555;
	cursor: pointer;
	padding: 10px 16px;
	border-radius: 30px;
	background-color: #f5f5f5;
	border: 1px solid #e0e0e0;
	transition: background-color 0.2s;
}

.social-action-item:active {
	background-color: #e8e8e8;
}

.heart-icon {
	fill: none;
	stroke: #999;
	stroke-width: 2;
	transition: all 0.2s;
	width: 40px;
	height: 40px;
}

.heart-icon.is-favorited {
	fill: #e74c3c;
	stroke: #e74c3c;
}

.heart-icon.heart-pop {
	animation: heartPop 0.35s ease;
}

.thumb-heart-icon.heart-pop {
	animation: heartPop 0.35s ease;
}

@keyframes heartPop {
	0% { transform: scale(1); }
	30% { transform: scale(1.4); }
	60% { transform: scale(0.9); }
	100% { transform: scale(1); }
}

.comment-icon {
	fill: none;
	stroke: #999;
	stroke-width: 2;
	width: 38px;
	height: 38px;
}

/* サムネイルお気に入りボタン */
.thumb-favorite-btn {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 5;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.thumb-heart-icon {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: #999;
	stroke-width: 2;
	transition: all 0.2s;
}

.thumb-heart-icon.is-favorited {
	fill: #e74c3c;
	stroke: #e74c3c;
}

/* チャット形式コメントUI */
.area-sale-item-comments {
	margin-top: 40px;
	background-color: #f8f8f8;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 20px;
}

.comments-header {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-brown);
}

.social-action-item .view-icon {
	width: 30px;
	height: 30px;
	opacity: 0.6;
}

.comments-list {
	max-height: 600px;
	overflow-y: auto;
	padding: 15px 0;
	margin-bottom: 20px;
}

.comment-bubble-wrapper {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	padding: 0 5px;
}

.comment-bubble-wrapper.is-mine {
	flex-direction: row-reverse;
}

.comment-user-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 50%;
	background-color: #eee;
	background-size: cover;
	background-position: center;
}

.comment-bubble-area {
	margin-left: 12px;
	max-width: 80%;
}

.comment-bubble-wrapper.is-mine .comment-bubble-area {
	margin-left: 0;
	margin-right: 12px;
	text-align: right;
}

.comment-user-name {
	font-size: 18px;
	font-weight: bold;
	color: #555;
	display: block;
	margin-bottom: 4px;
}

.comment-bubble {
	display: inline-block;
	background-color: #f1f1f1;
	padding: 12px 16px;
	border-radius: 16px 16px 16px 4px;
	font-size: 22px;
	line-height: 1.5;
	text-align: left;
	word-break: break-word;
}

.comment-bubble-wrapper.is-mine .comment-bubble {
	background-color: var(--color-brown);
	color: #fff;
	border-radius: 16px 16px 4px 16px;
}

.comment-datetime {
	font-size: 16px;
	color: #999;
	display: block;
	margin-top: 4px;
}

.comment-input-area {
	padding: 10px 0;
}

.comment-notice {
	font-size: 18px;
	color: #999;
	margin-bottom: 10px;
}

.comment-input-wrapper {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	background-color: #f5f5f5;
	padding: 12px;
	border-radius: 12px;
}

.comment-textarea {
	flex-grow: 1;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 28px;
	line-height: 1.4;
	resize: none;
	height: 64px;
	max-height: 200px;
	box-sizing: border-box;
	background-color: #fff;
	outline: none;
	overflow-y: hidden;
}

.comment-textarea:focus {
	border-color: var(--color-brown);
}

.comment-send-button {
	background-color: var(--color-brown);
	color: #fff;
	border: none;
	border-radius: 8px;
	width: auto;
	height: 64px;
	min-width: 70px;
	padding: 0 16px;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.comment-send-button:hover {
	background-color: var(--color-dark-brown);
}

.modal-notice-card {
	text-align: left;
	background-color: #fdf6ec;
	border-left: 4px solid var(--color-brown);
	padding: 16px 20px;
	margin-bottom: 24px;
	font-size: 20px;
	line-height: 1.6;
	color: #555;
	border-radius: 0 6px 6px 0;
}

.modal-input-label {
	text-align: left;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.feedback-radio-hidden {
	display: none;
}

.feedback-toggle {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 20px 0;
}

.feedback-icon {
	width: 24px;
	height: 24px;
	fill: currentColor;
	vertical-align: middle;
	margin-right: 4px;
}

.feedback-icon-bad {
}

.feedback-icon-sm {
	width: 16px;
	height: 16px;
	fill: #fff;
	vertical-align: middle;
	margin-right: 2px;
}

.feedback-btn {
	display: inline-block;
	padding: 10px 30px;
	font-size: 24px;
	border-radius: 30px;
	border: 2px solid #ccc;
	color: #999;
	background-color: #fff;
	cursor: pointer;
	transition: all 0.2s;
}

.feedback-radio-hidden:checked + .feedback-good {
	background-color: #4caf50;
	border-color: #4caf50;
	color: #fff;
	animation: feedbackPop 0.4s ease;
}

.feedback-radio-hidden:checked + .feedback-bad {
	background-color: #e53935;
	border-color: #e53935;
	color: #fff;
	animation: feedbackPop 0.4s ease;
}

@keyframes feedbackPop {
	0% { transform: scale(1); }
	20% { transform: scale(1.2); }
	40% { transform: scale(0.95); }
	60% { transform: scale(1.05); }
	100% { transform: scale(1); }
}

.modal-textarea {
	text-align: left;
	border: 1px solid #ccc;
	width: 100%;
	height: 200px;
	margin-bottom: 20px;
	line-height: normal;
	padding: 12px 14px;
	border-radius: 8px;
	box-sizing: border-box;
	font-size: 28px;
}

.modal-textarea.wide {
	height: 400px;
}

.modal .login-recommendation-msg {
	font-size: 26px;
	text-align: left;
	margin-bottom: 40px;
}

.modal .login-recommendation-msg span.msg-title {
	display: inline-block;
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--color-attention);
	width: 100%;
	text-align: center;
	font-weight: 600;
}

.modal-content-wrapper {
	padding: 40px;
	max-height: 80vh;
	overflow-y: auto;
}

.modal-content-wrapper h2 {
	font-weight: 600;
}

.modal-content .input-quantity-to-purchase {
	margin: 50px auto;
	font-size: 32px;
}

.modal-content-wrapper .sl-button {
	margin-bottom: 30px;
}

.area-bt-order-sale-item,
.area-bt-change-order-count,
.area-bt-cancel-order-count {
	margin-top: 20px;
}

.bt-close-modal {
	margin-top: 20px;
	width: 100%;
	padding: 20px;
}

.modal-content .input-quantity-to-purchase input {
	width: 100px;
	font-size: 30px;
	margin-right: 20px;
	border: 1px solid #ccc;
}

.modal-content .msg_attention {
	text-align: left;
	/* width: 80%; */
	margin-left: 20px;
}

.modal-content h2 {
	font-size: 32px;
	color: var(--color-default);
	margin-bottom: 20px;
}

.disp-search-conditions-buttons {
	margin-bottom: 30px;
}

.my-search-condition .modal-title {
	background-image: url(../img/list-icon.svg);
	background-repeat: no-repeat;
	background-size: 32px;
	padding-left: 35px;
	width: 280px;
	margin: 30px auto;
}

.my-search-condition-list {
	font-size: 28px;
	padding: 10px 5px;
	border-top: 1px dashed var(--color-light-grey);
	display: flex;
	align-items: center;
	gap: 10px;
}

.my-search-condition-list button:first-child {
	flex: 1;
	text-align: left;
}

.my-search-delete-btn {
	width: 30px;
	height: 30px;
	min-width: 30px;
	border-radius: 50%;
	background-color: var(--color-light-grey);
	border: none;
	position: relative;
	cursor: pointer;
	flex-shrink: 0;
}

.my-search-delete-btn::before,
.my-search-delete-btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	background-color: #fff;
}

.my-search-delete-btn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.my-search-delete-btn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.my-search-condition-list:last-child {
	border-bottom: 1px dashed var(--color-light-grey);
}

.select-search-target-prefecture {
	margin: 50px auto;
	border: 1px solid var(--color-brown);
	padding: 5px 10px;
	font-size: 32px;
	flex-grow: 2;
	margin-right: 20px;
}

.bt-search-prefecture {
	display: block;
	width: 120px;
	margin: 0 auto;
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	box-shadow: none;
	border-radius: 10px;
	background-color: var(--color-brown);
	transition: all 0.3s;
	opacity: 1;
	height: 72px;
}

.select-items-by-prefecture .modal-title {
	background-image: url(../img/japan-icon.svg);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 40px;
	padding-left: 50px;
	width: 360px;
	height: 40px;
	padding-top: 5px;
	margin: 30px auto 0;
}

.select-prefecture-wrapper {
	display: flex;
	align-items: center;
}

.blur {
	-ms-filter: blur(6px);
	filter: blur(6px);
}

.modal-dustbox-area {
	margin-top: 30px;
}

.modal-dustbox-area img {
	width: 70px;
}

.modal-dustbox-area span {
	display: block;
	font-size: 20px;
	color: var(--color-grey);
	font-weight: 600;
}

.batsu {
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
}

.batsu::before,
.batsu::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 30px;
	background: #333;
}

.batsu::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.batsu::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* ----------------------------
footer
----------------------------- */
#main_view {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#main_view > main {
	flex: 1;
}

#main_view > footer {
	flex-shrink: 0;
}

footer {
	color: #555;
	background: #e8f6f8;
	padding: 50px 0 calc(240px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid #c5e3e8;
}

footer .logo {
	text-align: center;
	margin-bottom: 0px;
}

footer img {
	height: 320px;
}

footer .company {
	font-size: 20px;
	text-align: center;
	color: #555;
}

.footer-link-area {
	text-align: center;
	font-size: 22px;
	margin-bottom: 20px;
	color: #555;
}

.footer-link-area span {
	color: #999;
}

footer a {
	color: #555 !important;
}

/* sweet aleart */

.swal2-styled {
	font-size: 24px !important;
}

.swal2-styled.swal2-confirm {
	background: var(--color-brown) !important;
}

.swal2-styled.swal2-cancel {
	background: #999999 !important;
}

@media (min-width: 640px) {
}

@media (min-width: 960px) {
	.lp-img {
		max-width: 900px;
	}
}
