/**
 * TCD styles
 */

/* Column layout - カラムレイアウト */
.post_row {}

.post_col,
.post_col-2,
.post_col-3 {
	margin-bottom: 20px;
}

@media (min-width: 992px) {
	.post_row {
		margin-right: -15px;
		margin-left: -15px;
	}

	.post_row::before,
	.post_row::after {
		display: table;
		content: " ";
	}

	.post_row::after {
		clear: both;
	}

	.post_col,
	.post_col-2,
	.post_col-3 {
		position: relative;
		box-sizing: border-box;
		float: left;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
		margin-bottom: 30px;
	}

	.post_col-2 {
		width: 50%;
	}

	.post_col-3 {
		width: 33.33333%;
	}
}

/* 見出し */
.styled_h2 {
	padding: var(--tcd-custom-h2-padding, 0) !important;
	font-size: var(--tcd-custom-h2-font-size, 22px) !important;
	font-weight: var(--tcd-custom-h2-font-weight, 600) !important;
	color: var(--tcd-custom-h2-color, #000) !important;
	text-align: var(--tcd-custom-h2-text-align, left) !important;
	background-color: var(--tcd-custom-h2-bg-color, transparent) !important;
	border-color: var(--tcd-custom-h2-border-color, #000) !important;
	border-style: var(--tcd-custom-h2-border-style, solid) !important;
	border-width: var(--tcd-custom-h2-border-width, 0) !important;
}

.styled_h3 {
	padding: var(--tcd-custom-h3-padding, 0) !important;
	font-size: var(--tcd-custom-h3-font-size, 20px) !important;
	font-weight: var(--tcd-custom-h3-font-weight, 600) !important;
	color: var(--tcd-custom-h3-color, #000) !important;
	text-align: var(--tcd-custom-h3-text-align, left) !important;
	background-color: var(--tcd-custom-h3-bg-color, transparent) !important;
	border-color: var(--tcd-custom-h3-border-color, #000) !important;
	border-style: var(--tcd-custom-h3-border-style, solid) !important;
	border-width: var(--tcd-custom-h3-border-width, 0) !important;
}

.styled_h4 {
	padding: var(--tcd-custom-h4-padding, 0) !important;
	font-size: var(--tcd-custom-h4-font-size, 18px) !important;
	font-weight: var(--tcd-custom-h4-font-weight, 600) !important;
	color: var(--tcd-custom-h4-color, #000) !important;
	text-align: var(--tcd-custom-h4-text-align, left) !important;
	background-color: var(--tcd-custom-h4-bg-color, transparent) !important;
	border-color: var(--tcd-custom-h4-border-color, #000) !important;
	border-style: var(--tcd-custom-h4-border-style, solid) !important;
	border-width: var(--tcd-custom-h4-border-width, 0) !important;
}

.styled_h5 {
	padding: var(--tcd-custom-h5-padding, 0) !important;
	font-size: var(--tcd-custom-h5-font-size, 16px) !important;
	font-weight: var(--tcd-custom-h5-font-weight, 600) !important;
	color: var(--tcd-custom-h5-color, #000) !important;
	text-align: var(--tcd-custom-h5-text-align, left) !important;
	background-color: var(--tcd-custom-h5-bg-color, transparent) !important;
	border-color: var(--tcd-custom-h5-border-color, #000) !important;
	border-style: var(--tcd-custom-h5-border-style, solid) !important;
	border-width: var(--tcd-custom-h5-border-width, 0) !important;
}

/* flame - 囲み枠 */
.q_frame {
	position: relative;
	padding: 23px 29px;
	margin-bottom: 2rem;
	line-height: 1.8;
	border: 1px solid #ddd;
}

* + .q_frame {
	margin-top: 2.5rem;
}

.q_frame_label {
	position: absolute;
	top: -0.7em;
	left: 1rem;
	display: block;
	max-width: calc(100% - 2rem);
	padding: 0 1em;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	background: inherit;
}

@media (max-width: 767px) {
	.q_frame {
		padding: 13px 19px;
	}

	.q_frame_label {
		padding: 0 0.5rem;
	}
}

.q_frame1 {
	background-color: var(--tcd-frame1-bg-color, #fff);
	border-color: var(--tcd-frame1-border-color, #ddd);
	border-style: var(--tcd-frame1-border-style, solid);
	border-width: var(--tcd-frame1-border-width, 1px);
	border-radius: var(--tcd-frame1-border-radius, 0);
}

.q_frame1 .q_frame_label {
	color: var(--tcd-frame1-label-color, #000);
}

.q_frame2 {
	background-color: var(--tcd-frame2-bg-color, #fff);
	border-color: var(--tcd-frame2-border-color, #ddd);
	border-style: var(--tcd-frame2-border-style, solid);
	border-width: var(--tcd-frame2-border-width, 1px);
	border-radius: var(--tcd-frame2-border-radius, 0);
}

.q_frame2 .q_frame_label {
	color: var(--tcd-frame2-label-color, #000);
}

.q_frame3 {
	background-color: var(--tcd-frame3-bg-color, transparent);
	border-color: var(--tcd-frame3-border-color, #ddd);
	border-style: var(--tcd-frame3-border-style, solid);
	border-width: var(--tcd-frame3-border-width, 1px);
	border-radius: var(--tcd-frame3-border-radius, 0);
}

.q_frame3 .q_frame_label {
	color: var(--tcd-frame3-label-color, #000);
}

.well {
	padding: 1.1rem 2rem;
	margin-bottom: 2rem;
	background-color: #fafafa;
	border: 1px solid #ddd;
	border-radius: 6px;
}

.well2 {
	padding: 1.1rem 2rem;
	margin-bottom: 2rem;
	border: 1px solid #ddd;
}

.well3 {
	padding: 1.1rem 2rem;
	margin-bottom: 2rem;
	background: #fafafa;
	border: 1px dashed #ddd;
}

.wl_red {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.wl_yellow {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}

.wl_blue {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}

.wl_green {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}

@media (max-width: 767px) {
	.well,
	.well2,
	.well3 {
		padding: 0.9em 0.8em 0.9em 1em;
	}
}

/* styled ol */
.q_styled_ol {
	margin-bottom: 2em;
	margin-left: 0 !important;
	list-style-type: none;
	counter-reset: item;
	position: relative;
}

.q_styled_ol li {
	display: block;
	padding-left: 2em;
	margin-bottom: 0.4em;
}

.q_styled_ol li::before {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 1.5em;
	height: 1.5em;
	margin-top: 0.3em;
	margin-right: 0.7em;
	line-height: 1;
	color: #fff;
	content: counter(item);
	counter-increment: item;
	background: #000;
	border-radius: 50%;
	position: absolute;
	left: 0;
}

@media (max-width: 767px) {
	.q_styled_ol li::before {
		margin-top: 0.1em;
	}
}

/* カスタムボタン */
.q_button_wrap {
	text-align:center;
	margin: 2em auto;
}

.q_custom_button {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 270px;
	max-width: 100%;
	height: 50px;
	padding: 0 1.5rem;
	overflow: hidden;
	font-size: 1rem;
	line-height: 1.5;
	color: #fff !important;
	text-align: center;
	text-decoration: none !important;
	background-color: #000;
	transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
	transition-duration: 0.5s;
	transition-property: background-color, border-color, color;
}

.q_custom_button::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	display: block;
	content: "";
	border-color: transparent;
	border-style: solid;
	border-width: 0;
	border-radius: inherit;
}

.q_custom_button::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	display: block;
	content: "";
	background-color: var(--tcd-accent-color, #000);
	opacity: 0;
	transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
	transition-duration: 0.5s;
	transition-property: opacity, transform;
}

.q_custom_button1 {
	min-width: var(--tcd-custom-button1-min-width, 130px);
	height: var(--tcd-custom-button1-height, 40px);
	line-height: var(--tcd-custom-button1-height, 40px);
	color: var(--tcd-custom-button1-color, #fff) !important;
	background-color: var(--tcd-custom-button1-bg-color, transparent);
	border-radius: var(--tcd-custom-button1-border-radius, 0);
}

.q_custom_button1::before {
	border-color: var(--tcd-custom-button1-border-color, transparent);
	border-width: var(--tcd-custom-button1-border-width, 0);
}

.q_custom_button1::after {
	inset: var(--tcd-custom-button1-effect-inset, 0);
	background-color: var(--tcd-custom-button1-effect-bg-color, transparent);
	opacity: var(--tcd-custom-button1-effect-opacity, 1);
	transform: var(--tcd-custom-button1-effect-transform, none);
}

.q_custom_button2 {
	min-width: var(--tcd-custom-button2-min-width, 130px);
	height: var(--tcd-custom-button2-height, 40px);
	line-height: var(--tcd-custom-button2-height, 40px);
	color: var(--tcd-custom-button2-color, #fff) !important;
	background-color: var(--tcd-custom-button2-bg-color, transparent);
	border-radius: var(--tcd-custom-button2-border-radius, 0);
}

.q_custom_button2::before {
	border-color: var(--tcd-custom-button2-border-color, transparent);
	border-width: var(--tcd-custom-button2-border-width, 0);
}

.q_custom_button2::after {
	inset: var(--tcd-custom-button2-effect-inset, 0);
	background-color: var(--tcd-custom-button2-effect-bg-color, transparent);
	opacity: var(--tcd-custom-button2-effect-opacity, 1);
	transform: var(--tcd-custom-button2-effect-transform, none);
}

.q_custom_button3 {
	min-width: var(--tcd-custom-button3-min-width, 130px);
	height: var(--tcd-custom-button3-height, 40px);
	line-height: var(--tcd-custom-button3-height, 40px);
	color: var(--tcd-custom-button3-color, #fff) !important;
	background-color: var(--tcd-custom-button3-bg-color, transparent);
	border-radius: var(--tcd-custom-button3-border-radius, 0);
}

.q_custom_button3::before {
	border-color: var(--tcd-custom-button3-border-color, transparent);
	border-width: var(--tcd-custom-button3-border-width, 0);
}

.q_custom_button3::after {
	inset: var(--tcd-custom-button3-effect-inset, 0);
	background-color: var(--tcd-custom-button3-effect-bg-color, transparent);
	opacity: var(--tcd-custom-button3-effect-opacity, 1);
	transform: var(--tcd-custom-button3-effect-transform, none);
}

@media (hover: hover) and (pointer: fine) {
	.q_custom_button:hover {
		color: #fff !important;
	}

	.q_custom_button:hover::before {
		opacity: 1;
	}

	.q_custom_button1:hover {
		color: var(--tcd-custom-button1-hover-color, #fff) !important;
	}

	.q_custom_button1:hover::after {
		opacity: var(--tcd-custom-button1-hover-effect-opacity, 1);
		transform: var(--tcd-custom-button1-hover-effect-transform, none);
	}

	.q_custom_button2:hover {
		color: var(--tcd-custom-button2-hover-color, #fff) !important;
	}

	.q_custom_button2:hover::after {
		opacity: var(--tcd-custom-button2-hover-effect-opacity, 1);
		transform: var(--tcd-custom-button2-hover-effect-transform, none);
	}

	.q_custom_button3:hover {
		color: var(--tcd-custom-button3-hover-color, #fff) !important;
	}

	.q_custom_button3:hover::after {
		opacity: var(--tcd-custom-button3-hover-effect-opacity, 1);
		transform: var(--tcd-custom-button3-hover-effect-transform, none);
	}
}

.rounded {
	border-radius: 6px;
}

.pill {
	border-radius: 50px;
}

/* Youtube responsive - Youtube動画のレスポンシブ表示 */
.ytube {
	position: relative;
	height: 0;
	padding-top: 30px;
	padding-bottom: 56.25%;
	margin-bottom: 2rem;
	overflow: hidden;
}

.ytube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/* Underline - アンダーライン */
.q_underline {
	background-image: linear-gradient(to right, transparent 50%, #fff799 50%);
	background-repeat: repeat-x;
	background-position: 0 0.8em;
	background-size: 200% 0.5em;
	border: none;
	border-bottom-color: transparent;
	transition: background 2s ease;
}

.q_underline.is-active {
	background-position: -100% 0.8em !important;
}

.q_underline1 {
	font-weight: var(--tcd-underline1-font-weight, 400);
	background-image: linear-gradient(to right, transparent 50%, var(--tcd-underline1-color, var(--tcd-accent-color)) 50%);
	background-position: var(--tcd-underline1-background-position, 0 0.8em);
}

.q_underline2 {
	font-weight: var(--tcd-underline2-font-weight, 400);
	background-image: linear-gradient(to right, transparent 50%, var(--tcd-underline2-color, var(--tcd-accent-color)) 50%);
	background-position: var(--tcd-underline2-background-position, 0 0.8em);
}

.q_underline3 {
	font-weight: var(--tcd-underline3-font-weight, 400);
	background-image: linear-gradient(to right, transparent 50%, var(--tcd-underline3-color, var(--tcd-accent-color)) 50%);
	background-position: var(--tcd-underline3-background-position, 0 0.8em);
}

/* Speech balloon - 吹き出し */
.speech_balloon {
	display: flex;
	align-items: flex-start;
}

.speech_balloon_user {
	flex: 0 0 auto;
	min-width: 80px;
	margin-right: 36px;
	margin-bottom: 2rem;
	text-align: center;
}

.speech_balloon_user_image {
	width: 80px;
	height: 80px !important;
	border-radius: 50%;
	object-fit: cover;
}

.speech_balloon_user_name {
	margin-top: 12px;
	font-size: 87.5%;
	line-height: 1.2;
}

.speech_balloon_user_name:only-child {
	display: flex;
	align-items: center;
	min-height: 80px;
	margin-top: 0;
}

.speech_balloon_text {
	position: relative;
	flex: 1 1 auto;
	margin-bottom: 2rem;
}

.speech_balloon_text_inner {
	position: relative;
	min-height: 80px;
	padding: 22px 28px;
	line-height: 2;
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 10px;
}

.speech_balloon_text_inner > *:last-child {
	margin-bottom: 0 !important;
}

.speech_balloon.right {
	flex-direction: row-reverse;
}

.speech_balloon.right .speech_balloon_user {
	margin-right: 0;
	margin-left: 36px;
}

.speech_balloon_text .before,
.speech_balloon_text .after {
	position: absolute;
	top: 40px;
	right: 100%;
	width: 0;
	height: 0;
	margin-top: -10px;
	pointer-events: none;
	border-color: transparent;
	border-style: solid;
	border-width: 8px 10px 8px 0;
}

.speech_balloon_text .after {
	margin-right: -3px;
}

.speech_balloon.right .before {
	left: 100%;
	transform: rotate(180deg);
}

.speech_balloon.right .after {
	left: 100%;
	margin-right: 0;
	margin-left: -3px;
	transform: rotate(180deg);
}

.speech_balloon1 .speech_balloon_text_inner {
	color: var(--tcd-speech-balloon1-color, #000);
	background-color: var(--tcd-speech-balloon1-bg-color, #fff);
	border-color: var(--tcd-speech-balloon1-border-color, #ddd);
}

.speech_balloon1 .before {
	border-right-color: var(--tcd-speech-balloon1-border-color, #ddd);
}

.speech_balloon1 .after {
	border-right-color: var(--tcd-speech-balloon1-bg-color, #fff);
}

.speech_balloon2 .speech_balloon_text_inner {
	color: var(--tcd-speech-balloon2-color, #000);
	background-color: var(--tcd-speech-balloon2-bg-color, #fff);
	border-color: var(--tcd-speech-balloon2-border-color, #ddd);
}

.speech_balloon2 .before {
	border-right-color: var(--tcd-speech-balloon2-border-color, #ddd);
}

.speech_balloon2 .after {
	border-right-color: var(--tcd-speech-balloon2-bg-color, #fff);
}

.speech_balloon3 .speech_balloon_text_inner {
	color: var(--tcd-speech-balloon3-color, #000);
	background-color: var(--tcd-speech-balloon3-bg-color, #fff);
	border-color: var(--tcd-speech-balloon3-border-color, #ddd);
}

.speech_balloon3 .before {
	border-right-color: var(--tcd-speech-balloon3-border-color, #ddd);
}

.speech_balloon3 .after {
	border-right-color: var(--tcd-speech-balloon3-bg-color, #fff);
}

.speech_balloon4 .speech_balloon_text_inner {
	color: var(--tcd-speech-balloon4-color, #000);
	background-color: var(--tcd-speech-balloon4-bg-color, #fff);
	border-color: var(--tcd-speech-balloon4-border-color, #ddd);
}

.speech_balloon4 .before {
	border-right-color: var(--tcd-speech-balloon4-border-color, #ddd);
}

.speech_balloon4 .after {
	border-right-color: var(--tcd-speech-balloon4-bg-color, #fff);
}

/* Cardlink style - カードリンクのスタイル */
.cardlink {
	display: flex;
	max-width: 100%;
	padding: 20px;
	margin: 0 0 2rem;
	background: #fafafa;
	border: 1px solid #ddd;
}

.cardlink-thumbnail {
	flex: 0 0 130px;
	margin-right: 20px;
}

.cardlink-thumbnail img {
	display: block;
	width: 130px;
	height: 130px;
	object-fit: cover;
}

.cardlink-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1;
	color: #222;
}

.cardlink-date,
.cardlink-modified-date {
	display: inline-flex;
	align-items: center;
}

.cardlink-date {
	margin-right: 0.5em;
}

.cardlink-date::before,
.cardlink-modified-date::before {
	padding-right: 5px;
	margin-bottom: -1px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.cardlink-date::before {
	font-family: "footer_bar";
	font-size: 12px;
	content: "\e912";
}

.cardlink-modified-date::before {
	padding-right: 4px;
	font-family: "design_plus";
	font-size: 12px;
	content: "\e943";
}

.cardlink-title {
	display: -webkit-box;
	max-height: 3.2em;
	margin-top: -0.35em;
	margin-bottom: -0.35em;
	overflow: hidden;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.7;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.cardlink-excerpt {
	display: -webkit-box;
	max-height: 3.8em;
	margin-top: 12px;
	margin-bottom: -0.35em;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.7;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.cardlink-excerpt:empty {
	display: none;
}

@media (hover: hover) and (pointer: fine) {
	a.cardlink-title:hover {
		text-decoration: underline;
	}
}

@media (max-width: 767px) {
	.cardlink {
		display: block;
		padding: 15px;
	}

	.cardlink-thumbnail {
		float: left;
		margin-right: 15px;
	}

	.cardlink-thumbnail img {
		width: 120px;
		height: 120px;
	}

	.cardlink-date-title {
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: 120px;
	}

	.cardlink-meta {
		margin-bottom: 15px;
	}

	.cardlink-title {
		max-height: 5.4em;
		-webkit-line-clamp: 3;
	}

	.cardlink-excerpt {
		padding-top: 10px;
		margin-top: 0;
		clear: both;
	}
}

/* handy-class */
.e_link {
	position: relative;
	display: inline-block;
	padding-right: 1em;
}

.e_link::after {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	margin-top: -0.1em;
	font-family: "design_plus";
	font-size: 100%;
	content: "\e92a";
	transition: none;
	transform: translateY(-50%);
}

img.frame {
	border: 1px solid #d2d2d2;
	box-shadow: 0 6px 6px -6px #ccc;
}

.a_break {
	display: inline-block;
}

@media (max-width: 767px) {
	.is-pc {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.is-sp {
		display: none !important;
	}
}

/* Contactform - お問い合わせフォーム */
.wpcf7 {
	width: 100%;
	padding: 0;
	margin: 0 0 2.5rem !important;
	font-size: 14px;
	background: #fafafa;
	border: 1px solid #ddd;
}

.wpcf7 form {
	margin: 1.5rem 1.5rem 0;
}

.wpcf7 p {
	margin-bottom: 1rem;
}

.wpcf7 input,
.wpcf7 textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 8px;
	line-height: 1.2;
	border: 1px solid #ccc;
}

.wpcf7 select,
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
	width: auto;
	max-width: 97%;
	padding: 8px;
	border: 1px solid #ccc;
}

.wpcf7 select,
.wpcf7 .wpcf7-list-item-label {
	font-size: 14px;
	line-height: 1.2;
}

.wpcf7 .wpcf7-list-item {
	display: block;
}

.wpcf7 textarea {
	height: 300px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
	border: 1px solid #bbb;
	outline: none;
}

.wpcf7 .wpcf7-submit,
.wpcf7 .wpcf7-previous {
	position: relative;
	box-sizing: border-box;
	display: block;
	width: 225px;
	height: 48px;
	margin: 30px auto 0;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background-color: #333;
	border: none !important;
	outline: none;
	transition: all 0.3s;
}

.wpcf7 .wpcf7-submit::before,
.wpcf7 .wpcf7-submit::after {
	box-sizing: border-box;
}

.wpcf7 .wpcf7-submit .wpcf7-not-valid {
	background: pink;
}

.wpcf7 .wpcf7-submit .wpcf7-response-output {
	padding: 8px 35px 8px 14px;
	margin: 10px 0 0;
	border-radius: 4px;
}

.wpcf7 .wpcf7-submit .wpcf7-validation-errors {
	color: #b94a48;
	background-color: #f2dede;
	border: 1px solid #eed3d7;
}

.wpcf7 .wpcf7-submit .wpcf7-mail-sent-ok {
	color: #3a87ad;
	background-color: #d9edf7;
	border: 1px solid #bce8f1;
}

.wpcf7 .wpcf7-previous + br {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	padding: 0;
	margin: 2rem 0.5rem 2rem;
	text-align: center;
	border: none;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	font-size: 1em;
	color: #dc3232;
}

@media (hover: hover) and (pointer: fine) {
	.wpcf7 .wpcf7-submit:hover,
	.wpcf7 .wpcf7-previous:hover {
		background-color: #666;
	}
}

/* font-size - フォントサイズ */
.text70 {
	font-size: 70%;
}

.text80 {
	font-size: 80%;
}

.text90 {
	font-size: 90%;
}

.text100 {
	font-size: 100%;
}

.text110 {
	font-size: 110%;
}

.text120 {
	font-size: 120%;
}

.text130 {
	font-size: 130%;
}

.text140 {
	font-size: 140%;
}

.text150 {
	font-size: 150%;
}

.text160 {
	font-size: 160%;
}

.text170 {
	font-size: 170%;
}

.text180 {
	font-size: 180%;
}

.text190 {
	font-size: 190%;
}

.text200 {
	font-size: 200%;
}

.text210 {
	font-size: 210%;
}

.text220 {
	font-size: 220%;
}

/* 太字 */
.b {
	font-weight: 600;
}

/* 下線 */
.u {
	text-decoration: underline;
}

/* 打ち消し線 */
.del {
	text-decoration: line-through;
}

/* font-color - フォントカラー */
.red {
	color: red;
}

.blue {
	color: #2ca9e1;
}

.green {
	color: #82ae46;
}

.orange {
	color: #ff7d00;
}

.yellow {
	color: #fff000;
}

.pink {
	color: #ff0084;
}

.gray {
	color: #999;
}

/* background-color - 背景色 */
.bg-blue {
	padding: 2px;
	background-color: #4ab0f5;
}

.bg-red {
	padding: 2px;
	background-color: red;
}

.bg-yellow {
	padding: 2px;
	background-color: #ff0;
}

/* text-align - 配置 */
.align1 {
	text-align: center !important;
}

.align2 {
	text-align: right !important;
}

.align3 {
	text-align: left !important;
}

/* float - 回り込み */
.r-flo {
	float: right;
	margin: 10px;
}

.l-flo {
	float: left;
	margin: 10px;
}

/* 回り込みの解除 */
.f-clear {
	clear: both;
}

/* hover - 画像リンクマウスオーバー時の不透明度 */
a img.fade {
	background: none !important;
	outline: none;
	transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
	a:hover img.fade {
		background: none !important;
		opacity: 0.7;
	}
}

/* text-style - テキストスタイル */
.att {
	padding-left: 1em;
	text-indent: -1em;
}

.att_box {
	padding: 1em 1.2em;
	margin: 2em 0 2.5em;
	line-height: 2;
	background: #fcfcfc;
	border: 1px dotted #ddd;
	box-shadow: 0 4px 0 0 #f9f9f9;
}

/* margin - 要素の外側の余白 */
.m0 {
	margin: 0 !important;
}

.mt0 {
	margin-top: 0 !important;
}

.mr0 {
	margin-right: 0 !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.ml0 {
	margin-left: 0 !important;
}

.m5 {
	margin: 5px !important;
}

.mt5 {
	margin-top: 5px !important;
}

.mr5 {
	margin-right: 5px !important;
}

.mb5 {
	margin-bottom: 5px !important;
}

.ml5 {
	margin-left: 5px !important;
}

.m10 {
	margin: 10px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mr10 {
	margin-right: 10px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.ml10 {
	margin-left: 10px !important;
}

.m15 {
	margin: 15px !important;
}

.mt15 {
	margin-top: 15px !important;
}

.mr15 {
	margin-right: 15px !important;
}

.mb15 {
	margin-bottom: 15px !important;
}

.ml15 {
	margin-left: 15px !important;
}

.m20 {
	margin: 20px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mr20 {
	margin-right: 20px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.ml20 {
	margin-left: 20px !important;
}

.m25 {
	margin: 25px !important;
}

.mt25 {
	margin-top: 25px !important;
}

.mr25 {
	margin-right: 25px !important;
}

.mb25 {
	margin-bottom: 25px !important;
}

.ml25 {
	margin-left: 25px !important;
}

.m30 {
	margin: 30px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.mr30 {
	margin-right: 30px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.ml30 {
	margin-left: 30px !important;
}

.m35 {
	margin: 35px !important;
}

.mt35 {
	margin-top: 35px !important;
}

.mr35 {
	margin-right: 35px !important;
}

.mb35 {
	margin-bottom: 35px !important;
}

.ml35 {
	margin-left: 35px !important;
}

.m40 {
	margin: 40px !important;
}

.mt40 {
	margin-top: 40px !important;
}

.mr40 {
	margin-right: 40px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

.ml40 {
	margin-left: 40px !important;
}

.m45 {
	margin: 45px !important;
}

.mt45 {
	margin-top: 45px !important;
}

.mr45 {
	margin-right: 45px !important;
}

.mb45 {
	margin-bottom: 45px !important;
}

.ml45 {
	margin-left: 45px !important;
}

.m50 {
	margin: 50px !important;
}

.mt50 {
	margin-top: 50px !important;
}

.mr50 {
	margin-right: 50px !important;
}

.mb50 {
	margin-bottom: 50px !important;
}

.ml50 {
	margin-left: 50px !important;
}

.m55 {
	margin: 55px !important;
}

.mt55 {
	margin-top: 55px !important;
}

.mr55 {
	margin-right: 55px !important;
}

.mb55 {
	margin-bottom: 55px !important;
}

.ml55 {
	margin-left: 55px !important;
}

.m60 {
	margin: 60px !important;
}

.mt60 {
	margin-top: 60px !important;
}

.mr60 {
	margin-right: 60px !important;
}

.mb60 {
	margin-bottom: 60px !important;
}

.ml60 {
	margin-left: 60px !important;
}

.m65 {
	margin: 65px !important;
}

.mt65 {
	margin-top: 65px !important;
}

.mr65 {
	margin-right: 65px !important;
}

.mb65 {
	margin-bottom: 65px !important;
}

.ml65 {
	margin-left: 65px !important;
}

.m70 {
	margin: 70px !important;
}

.mt70 {
	margin-top: 70px !important;
}

.mr70 {
	margin-right: 70px !important;
}

.mb70 {
	margin-bottom: 70px !important;
}

.ml70 {
	margin-left: 70px !important;
}

.m75 {
	margin: 75px !important;
}

.mt75 {
	margin-top: 75px !important;
}

.mr75 {
	margin-right: 75px !important;
}

.mb75 {
	margin-bottom: 75px !important;
}

.ml75 {
	margin-left: 75px !important;
}

.m80 {
	margin: 80px !important;
}

.mt80 {
	margin-top: 80px !important;
}

.mr80 {
	margin-right: 80px !important;
}

.mb80 {
	margin-bottom: 80px !important;
}

.ml80 {
	margin-left: 80px !important;
}

/* padding - 要素の内側の余白 */
.p0 {
	padding: 0 !important;
}

.pt0 {
	padding-top: 0 !important;
}

.pr0 {
	padding-right: 0 !important;
}

.pb0 {
	padding-bottom: 0 !important;
}

.pl0 {
	padding-left: 0 !important;
}

.p5 {
	padding: 5px !important;
}

.pt5 {
	padding-top: 5px !important;
}

.pr5 {
	padding-right: 5px !important;
}

.pb5 {
	padding-bottom: 5px !important;
}

.pl5 {
	padding-left: 5px !important;
}

.p10 {
	padding: 10px !important;
}

.pt10 {
	padding-top: 10px !important;
}

.pr10 {
	padding-right: 10px !important;
}

.pb10 {
	padding-bottom: 10px !important;
}

.pl10 {
	padding-left: 10px !important;
}

.p15 {
	padding: 15px !important;
}

.pt15 {
	padding-top: 15px !important;
}

.pr15 {
	padding-right: 15px !important;
}

.pb15 {
	padding-bottom: 15px !important;
}

.pl15 {
	padding-left: 15px !important;
}

.p20 {
	padding: 20px !important;
}

.pt20 {
	padding-top: 20px !important;
}

.pr20 {
	padding-right: 20px !important;
}

.pb20 {
	padding-bottom: 20px !important;
}

.pl20 {
	padding-left: 20px !important;
}

.p25 {
	padding: 25px !important;
}

.pt25 {
	padding-top: 25px !important;
}

.pr25 {
	padding-right: 25px !important;
}

.pb25 {
	padding-bottom: 25px !important;
}

.pl25 {
	padding-left: 25px !important;
}

.p30 {
	padding: 30px !important;
}

.pt30 {
	padding-top: 30px !important;
}

.pr30 {
	padding-right: 30px !important;
}

.pb30 {
	padding-bottom: 30px !important;
}

.pl30 {
	padding-left: 30px !important;
}

.p35 {
	padding: 35px !important;
}

.pt35 {
	padding-top: 35px !important;
}

.pr35 {
	padding-right: 35px !important;
}

.pb35 {
	padding-bottom: 35px !important;
}

.pl35 {
	padding-left: 35px !important;
}

.p40 {
	padding: 40px !important;
}

.pt40 {
	padding-top: 40px !important;
}

.pr40 {
	padding-right: 40px !important;
}

.pb40 {
	padding-bottom: 40px !important;
}

.pl40 {
	padding-left: 40px !important;
}

.p45 {
	padding: 45px !important;
}

.pt45 {
	padding-top: 45px !important;
}

.pr45 {
	padding-right: 45px !important;
}

.pb45 {
	padding-bottom: 45px !important;
}

.pl45 {
	padding-left: 45px !important;
}

.p50 {
	padding: 50px !important;
}

.pt50 {
	padding-top: 50px !important;
}

.pr50 {
	padding-right: 50px !important;
}

.pb50 {
	padding-bottom: 50px !important;
}

.pl50 {
	padding-left: 50px !important;
}

.p55 {
	padding: 55px !important;
}

.pt55 {
	padding-top: 55px !important;
}

.pr55 {
	padding-right: 55px !important;
}

.pb55 {
	padding-bottom: 55px !important;
}

.pl55 {
	padding-left: 55px !important;
}

.p60 {
	padding: 60px !important;
}

.pt60 {
	padding-top: 60px !important;
}

.pr60 {
	padding-right: 60px !important;
}

.pb60 {
	padding-bottom: 60px !important;
}

.pl60 {
	padding-left: 60px !important;
}

.p65 {
	padding: 65px !important;
}

.pt65 {
	padding-top: 65px !important;
}

.pr65 {
	padding-right: 65px !important;
}

.pb65 {
	padding-bottom: 65px !important;
}

.pl65 {
	padding-left: 65px !important;
}

.p70 {
	padding: 70px !important;
}

.pt70 {
	padding-top: 70px !important;
}

.pr70 {
	padding-right: 70px !important;
}

.pb70 {
	padding-bottom: 70px !important;
}

.pl70 {
	padding-left: 70px !important;
}

.p75 {
	padding: 75px !important;
}

.pt75 {
	padding-top: 75px !important;
}

.pr75 {
	padding-right: 75px !important;
}

.pb75 {
	padding-bottom: 75px !important;
}

.pl75 {
	padding-left: 75px !important;
}

.p80 {
	padding: 80px !important;
}

.pt80 {
	padding-top: 80px !important;
}

.pr80 {
	padding-right: 80px !important;
}

.pb80 {
	padding-bottom: 80px !important;
}

.pl80 {
	padding-left: 80px !important;
}
@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}[data-simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.simplebar-mask,.simplebar-offset{position:absolute;padding:0;margin:0;bottom:0;left:0;right:0;top:0}.simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.simplebar-mask{direction:inherit;overflow:hidden;width:auto!important;height:auto!important;z-index:0}.simplebar-offset{direction:inherit!important;box-sizing:inherit!important;resize:none!important;-webkit-overflow-scrolling:touch}.simplebar-content-wrapper{direction:inherit;box-sizing:border-box!important;position:relative;display:block;height:100%;width:auto;max-width:100%;max-height:100%;scrollbar-width:none;-ms-overflow-style:none}.simplebar-content-wrapper::-webkit-scrollbar,.simplebar-hide-scrollbar::-webkit-scrollbar{width:0;height:0}.simplebar-content:after,.simplebar-content:before{content:' ';display:table}.simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;height:100%;width:100%;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1}.simplebar-track{z-index:1;position:absolute;right:0;bottom:0;pointer-events:none;overflow:hidden}[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;user-select:none;-webkit-user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.simplebar-scrollbar{position:absolute;left:0;right:0;min-height:10px}.simplebar-scrollbar:before{position:absolute;content:'';background:#000;border-radius:7px;left:2px;right:2px;opacity:0;transition:opacity .2s linear}.simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition:opacity linear}.simplebar-track.simplebar-vertical{top:0;width:11px}.simplebar-track.simplebar-vertical .simplebar-scrollbar:before{top:2px;bottom:2px}.simplebar-track.simplebar-horizontal{left:0;height:11px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{height:100%;left:2px;right:2px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{right:auto;left:0;top:2px;height:7px;min-height:0;min-width:10px;width:auto}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{right:auto;left:0}.hs-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll}.simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none}
@charset "UTF-8";

/* header membermenu */
.p-header-membermenu {
	display: flex;
	flex: 0 0 auto;
}

.p-header-membermenu li {
	display: flex;
	align-items: center;
	height: 100%;
}

.p-header-membermenu a {
	padding: 10px 11px;
}

.p-header-membermenu-cart a {
	padding-right: 0;
}

.p-header-membermenu-wishlist a,
.p-header-membermenu-cart a {
	position: relative;
}

.p-header-membermenu-wishlist a::before,
.p-header-membermenu-login a::before,
.p-header-membermenu-mypage a::before,
.p-header-membermenu-cart a::before {
	margin-top: -2px;
	margin-bottom: -2px;
	font-family: "design_plus";
	font-size: 20px;
}

.p-header-membermenu-wishlist a::before {
	content: "\e94f";
}

.p-header-membermenu-login a::before,
.p-header-membermenu-mypage a::before {
	font-size: 22px;
	content: "\e94c";
}

.p-header-membermenu-cart a::before {
	content: "\e950";
}

.p-header-membermenu .p-header-membermenu-wishlist a {
	display: flex;
	align-items: center;
}

.p-header-membermenu-wishlist-count:not(:empty) {
	position: absolute;
	top: 0;
	right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	font-size: 12px;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	background: var(--tcd-accent-color);
	border-radius: 9px;
	transform: translate3d(50%, 0, 0);
}

.p-header-membermenu .p-header-membermenu-cart a {
	display: flex;
	align-items: center;
}

.p-header-membermenu-cart-badge:not(:empty) {
	position: absolute;
	top: 0;
	right: -3px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	font-size: 12px;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	background: var(--tcd-accent-color);
	border-radius: 9px;
	transform: translate3d(50%, 0, 0);
}

@media (max-width: 991px) {
	.p-header-membermenu a {
		padding: 10px 6px;
	}

	.p-header-membermenu-cart a {
		padding-right: 6px;
	}

	.p-header-membermenu-cart a::before {
		font-size: 19px;
	}

	.p-header-membermenu .p-header-membermenu-wishlist,
	.p-header-membermenu .p-header-membermenu-mypage,
	.p-header-membermenu .p-header-membermenu-login {
		display: none;
	}

	.p-header-membermenu-cart-badge:not(:empty) {
		top: 0;
		right: 3px;
	}
}

/* header login */
.p-header-memberbox {
	position: absolute;
	top: 100%;
	right: 53px;
	z-index: 998;
	width: 320px;
	max-width: 90vw;
	max-height: 80vh;
	overflow: auto;
	font-size: 14px;
	text-align: center;
	visibility: hidden;
	background: #eee;
	opacity: 0;
	opacity: 0;
	transition-timing-function: ease-out;
	transition-duration: 0.2s;
	transition-property: opacity, visibility;
}

.p-header-memberbox.is-active {
	visibility: visible;
	opacity: 1;
}

.p-header-memberbox .p-button {
	display: block;
	min-width: 100%;
}

.p-header-memberbox-login {
	padding: 30px 30px 20px 30px;
}

.p-header-memberbox-login p {
	margin: 0 0 20px;
}

.p-header-memberbox-login p:last-child {
	margin-bottom: 0;
}

.p-header-memberbox-login-input {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	background: #fff;
	border: none;
}

.p-header-memberbox-registration {
	padding: 30px;
	border-top: 1px solid #ccc;
}

@media (hover: hover) and (pointer: fine) {
	.p-header-memberbox.is-active,
	.p-header-memberbox:hover {
		visibility: visible;
		opacity: 1;
	}
}

@media (max-width: 991px) {
	.p-header-memberbox {
		right: 0;
	}
}

/* header view cart */
.p-header-view-cart {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 998;
	width: 320px;
	max-width: 90vw;
	max-height: 80vh;
	overflow: auto;
	font-size: 14px;
	visibility: hidden;
	background: #eee;
	opacity: 0;
	transition-timing-function: ease-out;
	transition-duration: 0.2s;
	transition-property: opacity, visibility;
}

.p-header-view-cart.is-active {
	visibility: visible;
	opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
	.p-header-view-cart:hover {
		visibility: visible;
		opacity: 1;
	}
}

/* drawer membermenu */
.p-drawer-membermenu {
	display: none;
}

body.drawer-available .p-drawer-membermenu {
	display: flex;
}

body.drawer-available .p-drawer-membermenu > li {
	width: 100%;
}

body.drawer-available .p-drawer-membermenu > li + li {
	border-left-width: 1px;
}

body.drawer-available .p-drawer-membermenu > li a {
	display: flex;
	align-items: center;
	height: 100%;
	padding-right: 5px;
}

body.drawer-available .p-drawer-membermenu .p-header-membermenu-login a::before,
body.drawer-available .p-drawer-membermenu .p-header-membermenu-mypage a::before {
	margin-right: 8px;
	font-size: 18px;
}

body.drawer-available .p-drawer-membermenu .p-header-membermenu-wishlist a::before {
	margin-right: 8px;
	font-size: 16px;
}

/**
 * WooCommerce style
 */
.woocommerce img.p-hover-effect-image,
.woocommerce-page img.p-hover-effect-image {
	height: 100%;
}

/* woocommerce-store-notice */
.woocommerce-store-notice,
p.demo_store {
	z-index: 0;
	padding: 0.75em 40px;
	font-size: 14px;
	line-height: 1.5;
	background-color: var(--tcd-accent-color);
	box-shadow: none;
}

body.admin-bar .woocommerce-store-notice {
	top: 32px;
}

@media (max-width: 991px) {
	.woocommerce-store-notice,
	p.demo_store {
		padding: 0.75em 20px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .woocommerce-store-notice {
		top: 46px;
	}
}

/* woocommerce-notice */
.woocommerce-notices-wrapper {
	margin: 50px 0;
}

.woocommerce-notices-wrapper:empty {
	display: none;
}

@media (max-width: 991px) {
	.woocommerce-notices-wrapper {
		margin: 30px 0;
	}
}

/* like icon */
.p-article-like {
	color: var(--tcd-accent-color);
}

.p-article-like::before {
	font-family: "design_plus";
	font-size: 19px;
	cursor: pointer;
	content: "\e94f";
}

.p-article-like.is-liked::before {
	content: "\e94d";
}

@media (max-width: 991px) {
	.p-article-like::before {
		font-size: 16px;
	}
}

/* like message */
.p-product-like-message {
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 100;
	display: flex;
	align-items: center;
	min-width: 300px;
	max-width: calc(50vw - 30px);
	min-height: 80px;
	padding: calc(30px - 0.3em) 80px calc(30px - 0.3em) 30px;
	font-size: 16px;
	line-height: 1.6;
	color: #fff;
	pointer-events: none;
	visibility: hidden;
	background: var(--tcd-product-wishlist-message-bg-color);
	border-radius: 10px;
	opacity: 0;
	transition: bottom 0.2s ease, opacty 0.5s ease, visibility 0.5s ease;
}

body.has-footer-bar.footer-bar-active .p-product-like-message {
	bottom: 80px;
}

.p-product-like-message.is-active {
	visibility: visible;
	opacity: 1;
}

.p-product-like-message-close {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 80px;
	padding: 0;
	color: inherit;
	text-align: center;
	pointer-events: auto;
	cursor: pointer;
	background: transparent;
	border: none;
}

.p-product-like-message-close::before,
.p-product-like-message-close::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 18px;
	height: 1px;
	margin: auto;
	content: "";
	background: #fff;
}

.p-product-like-message-close::before {
	transform: rotate(-45deg);
}

.p-product-like-message-close::after {
	transform: rotate(45deg);
}

@media (hover: hover) and (pointer: fine) {
	.p-product-like-message-close:hover {
		opacity: 0.5;
	}
}

@media (max-width: 767px) {
	.p-product-like-message {
		min-height: 40px;
		padding: calc(20px - 0.3em) 40px calc(20px - 0.3em) 20px;
		font-size: 14px;
	}

	body.has-footer-bar.footer-bar-active .p-product-like-message {
		bottom: 70px;
	}

	.p-product-like-message-close {
		width: 40px;
	}

	.p-product-like-message-close::before,
	.p-product-like-message-close::after {
		width: 14px;
	}
}

@media (max-width: 575px) {
	.p-product-like-message {
		right: 20px;
		bottom: 20px;
		left: 20px;
		min-width: auto;
		max-width: none;
	}
}

/* price */
.p-article-price {
	color: #000;
}

.p-article-price ins {
	text-decoration: none;
}

.tax {
	font-size: 85.7%;
	font-style: normal;
	font-weight: 300;
}

.p-article-outofstock {
	display: inline-block;
	color: #d90000;
}

/* badge */
.p-product-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 5;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.p-product-badge span {
	display: block;
	min-width: 60px;
	height: 60px;
	padding: 0 12px;
	margin: 0;
	overflow: hidden;
	font-size: 12px;
	font-weight: 700;
	line-height: 60px;
	color: #fff;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	background-color: var(--tcd-accent-color);
	border-radius: 30px;
}

.p-product-badge .new {
	background: var(--tcd-product-badge-new-color);
}

.p-product-badge .sale {
	background: var(--tcd-product-badge-sale-color);
}

.p-product-badge .featured {
	background: var(--tcd-product-badge-featured-color);
}

@media (max-width: 991px) {
	.p-product-badge {
		top: 10px;
		left: 10px;
	}

	.p-product-badge span {
		min-width: 50px;
		height: 50px;
		padding: 0 10px;
		font-size: 10px;
		line-height: 50px;
		border-radius: 25px;
	}
}

/* media type */
.p-archive03-item-media-video .p-archive03-item-thumbnail::before,
.p-archive03-item-media-youtube .p-archive03-item-thumbnail::before {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 5;
	font-family: "design_plus";
	font-size: 14px;
	color: #fff;
	content: "\e900";
	filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
}

@media (max-width: 991px) {
	.p-archive03-item-media-video .p-archive03-item-thumbnail::before,
	.p-archive03-item-media-youtube .p-archive03-item-thumbnail::before {
		top: 16px;
		right: 16px;
	}
}

/* rating */
.p-archive03-item-rating {
	margin-top: 10px;
	font-size: 12px;
	line-height: 1;
	color: var(--tcd-accent-color);
}

.p-archive03-item .woocommerce-product-rating .star-rating,
.p-wishlist-item .woocommerce-product-rating .star-rating {
	margin-top: 0;
}

.woocommerce .star-rating::before,
.woocommerce .star-rating span::before {
	color: var(--tcd-accent-color);
}

/* product archive */
body.post-type-archive-product .l-main-inner,
body.woocommerce-shop .l-main-inner,
body.tax-product_cat .l-main-inner,
body.tax-product_tag .l-main-inner {
	margin-top: 0;
}

body.post-type-archive-product .p-page-header-image,
body.woocommerce-shop .p-page-header-image,
body.tax-product_cat .p-page-header-image,
body.tax-product_tag .p-page-header-image {
	margin-top: 0;
	margin-bottom: 0;
}

.woocommerce-products-header {
	position: sticky;
	top: 0;
	z-index: 9;
	padding: 14px 0;
	margin-bottom: 40px;
	background: #fff;
	border-bottom: 1px solid #ddd;
}

body.hide-product-archive-title-bottom-border .woocommerce-products-header {
	border-bottom: none;
}

.woocommerce-products-header-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}

.woocommerce-products-header-title.p-headline,
.woocommerce-products-title-inner.p-headline {
	margin: 0;
	text-align: left;
}

.p-archive03-sort-filter {
	display: flex;
}

.p-archive03-sort-filter-item {
	position: relative;
	flex: 0 1 220px;
	margin-left: 15px;
	border: 1px solid #ddd;
}

.p-archive03-sort-filter-item-title {
	height: 48px;
	padding-right: 38px;
	padding-left: 20px;
	overflow: hidden;
	font-size: 14px;
	line-height: 48px;
	cursor: pointer;
}

.p-archive03-sort-filter-item-title::after {
	position: absolute;
	top: 0;
	right: 20px;
	display: block;
	font-family: "design_plus";
	font-size: 85%;
	content: "\e90e";
}

.p-archive03-sort-filter-item-dropdown {
	position: absolute;
	top: 100%;
	left: -1px;
	z-index: -1;
	width: 220px;
	pointer-events: none;
	visibility: hidden;
	border: 1px solid #ddd;
	opacity: 0;
	transition: all 0.1s ease-out;
}

.p-archive03-sort-filter-item.is-active .p-archive03-sort-filter-item-dropdown {
	z-index: 10;
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	transition-duration: 0.2s;
}

.p-archive03-sort-filter-item-dropdown li {
	cursor: pointer;
	background: #fff;
}

.p-archive03-sort-filter-item-dropdown li a,
.p-archive03-sort-filter-item-dropdown li span {
	display: block;
	height: 50px;
	padding: 0 24px;
	overflow: hidden;
	font-size: 14px;
	line-height: 50px;
	color: #000;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
}

.p-archive03-sort-filter-item-dropdown li.is-active {
	background: #f5f5f5;
}

.p-archive03-sort-filter-item-stock {
	flex: 0 0 auto;
}

.p-archive03-sort-filter-item-stock-checkbox {
	display: flex;
	align-items: center;
	height: 100%;
	cursor: pointer;
}

.p-archive03-sort-filter-item-stock-checkbox::before {
	margin-right: 8px;
	font-family: "design_plus";
	color: #eee;
	content: "\e876";
	background: #eee;
}

.p-archive03-sort-filter-item-stock-checkbox.is-active::before {
	background: #000;
}

.p-archive03-sort-filter-loading {
	position: absolute;
	top: 0;
	right: -28px;
	bottom: 0;
	display: none;
	width: 16px;
	background: transparent url("/wp-content/themes/basara_tcd100/img/common/loading.gif") center center no-repeat;
	background-size: 16px;
}

.p-archive03-sort-filter.is-ajaxing .p-archive03-sort-filter-loading {
	display: block;
}

.p-product-archive {
	margin-top: 40px;
}

@media (hover: hover) and (pointer: fine) {
	.p-archive03-sort-filter-item-dropdown li:hover {
		background: #f5f5f5;
	}
}

@media (min-width: 992px) {
	.p-archive03-sort-filter {
		display: flex;
		flex: 1 1 auto;
		justify-content: flex-end;
		margin-left: auto;
	}

	.p-archive03-sort-filter-item-stock {
		border: none;
	}

	.woocommerce-products-title {
		display: none;
	}
}

@media (max-width: 991px) {
	.woocommerce-products-header {
		padding: 0;
		margin-bottom: 0;
		border-bottom: none;
	}

	.woocommerce-products-header-inner {
		padding-right: 0;
		padding-left: 0;
	}

	.woocommerce-products-header-inner .woocommerce-products-header-title {
		display: none;
	}

	.woocommerce-products-title-inner.p-headline {
		padding: 9px 20px;
		margin: 0;
		font-size: 20px;
		text-align: left;
		border-bottom: 1px solid #ddd;
	}

	body.hide-product-archive-title-bottom-border .woocommerce-products-title-inner.p-headline {
		border-bottom: none;
	}

	.p-archive03-sort-filter {
		width: 100%;
	}

	.p-archive03-sort-filter-item {
		position: static;
		flex: 1 1 100%;
		margin-left: 0;
		border-width: 0 0 1px;
	}

	.p-archive03-sort-filter-item + .p-archive03-sort-filter-item {
		border-left-width: 1px;
	}

	.p-archive03-sort-filter-item.is-active {
		border-bottom-color: #fff;
	}

	.p-archive03-sort-filter-item-title {
		padding-right: 10px;
		padding-left: 10px;
		font-size: 12px;
		text-align: center;
	}

	.p-archive03-sort-filter-item-title::after {
		display: none;
	}

	.p-archive03-sort-filter-item-dropdown {
		right: 0;
		left: 0;
		width: auto;
		border-width: 0;
	}

	.p-archive03-sort-filter-item-dropdown li a,
	.p-archive03-sort-filter-item-dropdown li span {
		height: 40px;
		padding: 0 22px;
		line-height: 40px;
	}

	.p-archive03-sort-filter-item-stock-checkbox {
		justify-content: center;
		padding: 0 10px;
		font-size: 12px;
	}

	.p-archive03-sort-filter-loading {
		top: 66px;
		right: 20px;
		bottom: auto;
		width: 14px;
		height: 14px;
		background-size: 14px;
	}

	.p-product-archive {
		margin-top: 20px;
	}
}

@media (min-width: 783px) {
	body.admin-bar .woocommerce-products-header {
		top: 32px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .woocommerce-products-header {
		top: 46px;
	}
}

@media (max-width: 600px) {
	body.admin-bar .woocommerce-products-header {
		top: 0;
	}
}

/* shop page */
.p-shoppage-header {
	height: 500px;
}

.p-shoppage-header-slider-item {
	height: 500px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.p-shoppage-content {
	margin-top: 60px;
	margin-bottom: 60px;
}

.p-shoppage-content-headline {
	margin-bottom: 60px;
	font-family: var(--tcd-headline-font-type);
	font-size: var(--tcd-headline-font-size);
	font-weight: var(--tcd-headline-font-weight);
	line-height: 1.3;
}

.p-shoppage-content-headline .p-text-direction-inner {
	margin: -0.15em 0;
}

.p-shoppage-content-headline.p-text-direction-type2 .p-text-direction-inner {
	margin: 0;
}

.p-shoppage-content-desc {
	margin-bottom: 60px;
	line-height: var(--tcd-line-height);
	text-align: center;
}

.p-shoppage-content-desc p {
	margin: var(--tcd-line-height-offset) 0;
}

.p-shoppage-content-carousel {
	padding-top: 60px;
	padding-bottom: 60px;
	background: #f6f6f6;
}

.p-shoppage-content-carousel .p-archive03-item {
	width: 320px;
}

.p-shoppage-content-carousel .splide__arrow {
	top: 110px;
	background: #f6f6f6;
	border-radius: 50%;
}

.p-shoppage-content-carousel .splide__arrow--prev {
	transform: translate3d(-50%, -50%, 0);
}

.p-shoppage-content-carousel .splide__arrow--next {
	transform: translate3d(50%, -50%, 0);
}

.p-shoppage-content-carousel .splide__arrow svg {
	width: 18px;
	height: 18px;
}

.p-shoppage-content-carousel:first-child {
	margin-top: 0;
}

.p-page-header + .p-shoppage-content-carousel {
	margin-top: 40px;
}

.woocommerce-products-title + .p-shoppage-content-carousel {
	margin-top: -40px;
}

@media (min-width: 992px) {
	.p-shoppage-content-desc-mobile {
		display: none;
	}
}

@media (max-width: 991px) {
	.p-shoppage-header.l-inner03 {
		padding-right: 0;
		padding-left: 0;
	}

	.p-shoppage-header,
	.p-shoppage-header-slider-item {
		height: 340px;
	}

	.p-shoppage-content {
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.p-shoppage-content-headline {
		margin-bottom: 40px;
	}

	.p-shoppage-content-desc {
		margin-bottom: 40px;
		text-align: left;
	}

	.p-shoppage-content-desc-pc {
		display: none;
	}

	.p-shoppage-content-carousel {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.p-shoppage-content-carousel .p-archive03-item {
		flex: 0 0 230px;
		width: 230px;
	}

	.p-page-header + .p-shoppage-content-carousel {
		margin-top: 0;
	}

	.woocommerce-products-title + .p-shoppage-content-carousel {
		margin-top: 0;
	}
}

/* product single */
.p-entry-product {}

.p-entry-product-header {
	margin-top: -0.5em;
	margin-bottom: 37px;
	font-size: 28px;
	line-height: 2;
}

.p-entry-product-title {
	display: inline;
	padding-right: 14px;
	margin: 0;
	line-height: 2;
}

.p-entry-product-header-category,
.p-entry-product-header-category a {
	color: var(--tcd-accent-color);
}

.p-entry-product-header-meta {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	line-height: 2;
	vertical-align: 4px;
}

.p-entry-product-header-meta .woocommerce-product-rating .star-rating {
	display: none;
}

.p-entry-product-header-meta > * {
	display: inline-block;
	margin-right: 15px;
}

.p-entry-product-header-meta > :last-child {
	margin-right: 0;
}

.p-entry-product-header-meta > * + .p-entry-product-header-like {
	margin-left: 5px;
}

.p-entry-product-share {
	margin-top: 30px;
}

.p-entry-product-cart {
	margin-top: 35px;
	line-height: 2;
}

.p-entry-product-cart p {
	margin-bottom: 17px;
}

.p-entry-product-cart .out-of-stock {
	color: #d90000;
}

.p-entry-product-cart .reset_variations {
	display: inline-block;
	padding-left: 0.5em;
	line-height: 50px;
}

.p-entry-product-cart .woocommerce-variation-description p {
	margin-bottom: 0;
}

.p-entry-product-cart .woocommerce-variation-price {
	margin-top: 17px;
	margin-bottom: 17px;
}

.p-entry-product-cart .woocommerce-grouped-product-list th,
.p-entry-product-cart .woocommerce-grouped-product-list td {
	padding: 10px;
	line-height: 2;
	vertical-align: middle;
	border: 1px solid #ddd;
}

.p-entry-product-cart .woocommerce-grouped-product-list td .p-button.product_type_simple{
	width: 100px;
    min-width: 100px;
    padding: 0 10px;
	font-size: 14px;
	margin-top: 0;
}

.p-entry-product-cart-label {
	display: inline-block;
	padding-right: 1em;
}

.p-strike {
	text-decoration: line-through;
}

.p-entry-product-cart-option label {
	display: inline-block;
	padding-right: 1em;
}

.p-entry-product-cart-option label:empty {
	display: none;
}

.p-entry-product-cart-option input[type="text"],
.p-entry-product-cart-option textarea,
.p-entry-product-cart select {
	border: 1px solid #ddd;
}

.p-entry-product-cart-option input[type="text"] {
	width: 100%;
	height: 50px;
	padding: 12px 16px;
}

.p-entry-product-cart-option textarea {
	display: block;
	width: 100%;
	height: 8em;
	padding: 8px 12px;
}

.p-entry-product-cart select {
	min-width: 100px;
	max-width: 100%;
	height: 50px;
	padding: 12px 34px 12px 16px;
	background: transparent;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.p-entry-product-cart .variations{
	width: 100%;
	margin-bottom: 20px;
	text-align: left;
}

.p-entry-product-cart table.variations .label label{
	padding-right: 1em;
	font-weight: normal;
}

.p-entry-product-cart .variations .reset_variations{
	background: none;
    border: none;
    color: var(--tcd-accent-color);
    font-weight: bold;
	font-size: 14px;
    padding-left: 0;
	cursor: pointer;
	line-height: 1;
    margin-top: 20px;
}


.p-entry-product-cart-select-wrapper {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

.p-entry-product-cart-select-wrapper::after {
	position: absolute;
	top: 0;
	right: 17px;
	display: block;
	font-family: "design_plus";
	line-height: 50px;
	pointer-events: none;
	content: "\e90e";
}

.p-entry-product-cart-quantity {
	margin-bottom: 17px;
}

.p-entry-product-cart-quantity .quantity {
	display: inline;
}

.p-entry-product-cart-quantity .quantity .qty {
	width: 80px;
	height: 50px;
	padding: 12px;
	text-align: left;
	border: 1px solid #ddd;
}

.p-entry-product-cart-prices {
	margin-top: 18px;
}

.p-entry-product-cart-prices .amount,
.woocommerce-variation-price .amount {
	font-size: 22px;
}

.p-entry-product-cart-prices del,
.woocommerce-variation-price del {
	color: #000;
}

.p-entry-product-cart-prices del .amount,
.woocommerce-variation-price del .amount {
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

.p-entry-product-cart-prices ins,
.woocommerce-variation-price ins {
	text-decoration: none;
}

.p-entry-product-cart-prices del + ins,
.woocommerce-variation-price del + ins {
	padding-left: 5px;
}

.p-entry-product-cart-prices .woocommerce-price-suffix,
.woocommerce-variation-price .woocommerce-price-suffix {
	color: #000;
}

.p-entry-product-cart .p-button {
	display: block;
	width: 310px;
	max-width: 100%;
	margin-top: 22px;
	font-weight: 600;
}

.p-entry-product-cart > .out-of-stock {
	display: block;
	width: 310px;
	height: 60px;
	padding: 0 20px;
	margin-top: 22px;
	margin-bottom: 0;
	overflow: hidden;
	font-weight: 600;
	line-height: 60px;
	color: #fff !important;
	text-align: center;
	background: #ccc;
	border: none;
}

.p-entry-product-ad-top {
	margin-top: 0;
}

.p-entry-product-ad-bottom {
	margin-top: 100px;
}

@media (min-width: 992px) {
	.p-entry-product-cart p.posted_in,
	.p-entry-product-cart p.tagged_as {
		align-items: flex-start;
	}

	.p-entry-product-cart p > .label {
		flex: 0 0 auto;
	}

	.p-entry-product-cart-quantity,
	.p-entry-product-cart .variations {
		display: flex;
	}

	.p-entry-product-cart-quantity .p-entry-product-cart-label,
	.p-entry-product-cart .variations .p-entry-product-cart-label {
		line-height: 50px;
	}

	.p-entry-product-cart .variations {
		position: relative;
	}
}

@media (max-width: 991px) {
	body.single-product .l-main-inner {
		margin-top: 20px;
	}

	.p-entry-product-header {
		margin-top: 0;
		margin-bottom: 17px;
	}

	.p-entry-product-title {
		display: block;
		padding-right: 0;
		margin: -0.5em 0;
	}

	.p-entry-product-header-meta {
		display: flex;
		flex-wrap: wrap;
		margin: 8px 0 -0.5em;
		vertical-align: baseline;
	}

	.p-entry-product-header-meta .p-entry-product-header-category {
		width: 100%;
		margin-right: 0;
	}

	body.has-footer-bar .p-entry-product-header-like {
		display: none;
	}

	.p-entry-product-cart {
		margin-top: 39px;
	}

	.p-entry-product-cart-prices {
		margin-top: 11px;
	}

	.p-entry-product-cart .p-button,
	.p-entry-product-cart > .out-of-stock {
		width: 250px;
		margin: 16px auto 0;
	}

	.p-entry-product-ad-top {
		margin-top: 40px;
	}

	.p-entry-product-ad-bottom {
		margin-top: 40px;
	}
}

/* product share */
.p-wc-share-button-list {
	display: flex;
	gap: 15px;
}

.p-wc-share-button-link {
	display: block;
	width: 38px;
	height: 38px;
	overflow: hidden;
	font-size: 22px;
	color: #fff;
	border-radius: 50%;
}

.p-wc-share-button-link:has(.p-wc-share-button-icon-twitter) {
	font-size: 15px;
}

.p-wc-share-button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-family: "design_plus";
	transition: background 0.3s ease;
}

.p-wc-share-button-icon-twitter,
.p-wc-share-button-icon-facebook,
.p-wc-share-button-icon-line {
	background: #ddd;
}

.p-wc-share-button-icon-twitter{
    font-family: 'tiktok_x_icon';
}

@media (max-width: 991px) {
	.p-wc-share-button-list {
		justify-content: center;
	}
}

@media (hover: hover) and (pointer: fine) {
	.p-wc-share-button-link:hover {
		color: #fff;
	}

	.p-wc-share-button-link:hover .p-wc-share-button-icon-twitter {
		background: #000000;
	}

	.p-wc-share-button-link:hover .p-wc-share-button-icon-facebook {
		background: #1877f2;
	}

	.p-wc-share-button-link:hover .p-wc-share-button-icon-line {
		background: #06c755;
	}
}

/* product single video */
.p-entry-product-media-inner {
	width: 100%;
}

.p-entry-product-media video {
	display: block;
	width: 100%;
	height: auto;
}

.p-entry-product-media-youtube .p-entry-product-media-inner {
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
}

.p-entry-product-media iframe {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

@media (min-width: 992px) {
	.p-entry-product-media {
		display: flex;
		align-items: center;
		aspect-ratio: 660 / 450;
		background: #eee;
	}

	.p-entry-product-media-square {
		aspect-ratio: 1 / 1;
	}
}

@media (max-width: 991px) {
	.p-entry-product-media {
		margin: 0 -20px 40px;
	}
}

/* product single image */
.p-entry-product-mainimage-outer {
	position: relative;
}

img.p-entry-product-mainimage {
	display: block;
	width: 100%;
	height: auto;
}

.p-entry-product-subimages {
	margin-top: 4px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.p-entry-product-subimages-inner {
	display: flex;
	gap: 4px;
}

.p-entry-product-subimage {
	flex: 0 0 162px;
	cursor: pointer;
}

.p-entry-product-subimage-inner {
	position: relative;
	padding-top: 68.1818%;
	overflow: hidden;
}

img.p-entry-product-subimage-image {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.p-entry-product-images-square .p-entry-product-subimage-inner {
	padding-top: 100%;
}

.p-entry-product-images-expand {
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 3;
	width: 50px;
	height: 50px;
	padding: 0;
	font-family: "design_plus";
	font-size: 16px;
	color: #000;
	cursor: pointer;
	background: #fff;
	border: none;
	border-radius: 50%;
	outline: none;
	appearance: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (min-width: 992px) {
	.p-entry-product-main {
		display: flex;
		align-items: start;
	}

	.p-entry-product-images,
	.p-entry-product-media {
		position: sticky;
		top: 1px;
		flex: 1 1 auto;
		margin-right: 4.9%;
		transition: top 0.5s ease;
	}

	body.l-header-fix.is-header-fixed .p-entry-product-images,
	body.l-header-fix.is-header-fixed .p-entry-product-media {
		top: 96px;
	}

	.p-entry-product-main-right {
		flex: 0 0 30.3921%;
	}

	.p-entry-product-main-right:only-child {
		flex: 0 0 100%;
	}

	body:not(.wp-mobile-device) .p-entry-product-subimages-inner {
		flex-wrap: wrap;
	}

	body:not(.wp-mobile-device) .p-entry-product-subimage {
		flex-basis: calc((100% - 12px) / 4);
	}
}

@media (max-width: 991px) {
	.p-entry-product-images {
		margin: 0 -20px 40px;
	}

	.p-entry-product-subimage {
		flex: 0 0 110px;
	}

	.p-entry-product-images-expand {
		display: none;
	}
}

/* product single image modal */
.p-product-images-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999;
	display: none;
	overflow-y: scroll;
	overscroll-behavior: contain;
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	scrollbar-width: none;
}

.p-product-images-modal::-webkit-scrollbar {
	display: none;
}

.p-product-images-modal::after {
	display: block;
	width: 1px;
	height: calc(100vh + 1px);
	content: "";
}

.p-product-images-modal.is-active {
	display: flex;
}

.p-product-images-modal-content {
	max-width: 1100px;
	padding-right: 40px;
	padding-left: 40px;
	margin-right: auto;
	margin-left: auto;
}

.p-product-images-modal-slider .splide__slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.p-product-images-modal-slider .splide__slide img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(100vh - 80px);
	object-fit: contain;
}

.p-product-images-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	font-family: "design_plus";
	font-size: 28px;
	color: #fff;
	cursor: pointer;
	background: transparent;
	border: none;
}

.p-product-images-modal-slider .splide__arrow svg {
	width: 32px;
	height: 32px;
}

@media (max-width: 991px) {
	.p-product-images-modal-close {
		top: 0;
		right: 0;
	}

	.p-product-images-modal-slider .splide__arrow--prev,
	.p-product-images-modal-slider .splide__arrow--next {
		top: 0;
		bottom: 0;
		width: 40px;
		height: auto;
	}

	.p-product-images-modal-slider .splide__arrow--prev {
		transform: translate3d(-100%, 0, 0);
	}

	.p-product-images-modal-slider .splide__arrow--next {
		transform: translate3d(100%, 0, 0);
	}
}

@media (max-width: 991px) {
	.p-product-images-modal.is-active {
		display: none;
	}
}

@media (hover: hover) and (pointer: fine) {
	.p-product-images-modal-close:hover {
		color: #999;
	}
}

/* product single tabs */
.wc-tabs-wrapper {
	margin-top: 60px;
}

.wc-tabs {
	position: relative;
	display: flex;
	padding: 0;
	margin: 0 0 -1px 0;
	font-size: 16px;
}

.wc-tabs li {
	flex: 0 1 33.5%;
	padding: 0;
	margin: 0;
	line-height: 2;
	word-break: break-all;
	background: #fff;
	border-color: #ddd;
	border-style: solid;
	border-width: 1px 0 1px 1px;
}

.wc-tabs li:last-child {
	border-right-width: 1px;
}

.wc-tabs li.active {
	border-bottom-color: #fff;
}

.wc-tabs li a {
	display: block;
	height: 100%;
	padding: 13px 14px;
	margin: 0;
	color: inherit;
	text-align: center;
	cursor: pointer;
}

.wc-tab {
	display: none;
	padding: 50px;
	margin: 0;
	background: #fff;
	border: 1px solid #ddd;
}

.wc-tab__inner {}

.wc-tab .p-body > :last-child {
	margin-bottom: 0;
}

.wc-tab .p-body th,
.wc-tab .p-body td,
.wc-tab table.shop_attributes th,
.wc-tab table.shop_attributes td {
	width: auto;
	padding: 8px 18px;
	font-style: normal;
	line-height: 2.4;
	vertical-align: middle;
	background: #fff !important;
	border: 1px solid #ddd;
}

.wc-tab .p-body th,
.woocommerce table.shop_attributes th {
	padding: 8px 12px;
	font-weight: inherit;
	text-align: center;
}

.wc-tab .p-body th > *,
.wc-tab table.shop_attributes th > * {
	font-weight: inherit;
}

.wc-tab table.shop_attributes:last-child {
	margin-bottom: 0;
}

.wc-tab table.shop_attributes td p {
	padding: 0;
}

.reviews-tab-count {
	display: inline-block;
	min-width: 25px;
	padding: 0 6px;
	margin-left: 5px;
	font-size: 12px;
	line-height: 25px;
	color: #fff;
	text-align: center;
	background-color: var(--tcd-accent-color);
	border-radius: 12.5px;
}

@media (max-width: 991px) {
	.wc-tabs-wrapper {
		margin: 40px -20px 0;
		border-width: 1px 0;
	}

	.wc-tabs {
		font-size: 14px;
	}

	.wc-tabs li {
		flex: 1 1 50%;
	}

	.wc-tabs li:first-child {
		border-left-width: 0;
	}

	.wc-tabs li:last-child {
		border-right-width: 0;
	}

	.wc-tabs li a {
		padding: 13px 5px;
	}

	.wc-tab {
		display: none;
		padding: 40px 20px;
		margin: 0;
		border-width: 1px 0;
	}

	.reviews_tab_count {
		min-width: 22px;
		font-size: 10px;
		line-height: 22px;
		border-radius: 11px;
	}
}

/* review */
.woocommerce #reviews #comments ol.commentlist li {
	padding: 0 0 39px;
	margin: 0 0 40px;
	border-bottom: 1px solid #ddd;
}

.woocommerce #reviews #comments ol.commentlist li .comment_container {
	display: flex;
	align-items: center;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
	position: static;
	flex: 0 0 70px;
	float: none;
	width: 70px;
	height: 70px;
	padding: 0;
	margin: 0;
	margin-right: 26px;
	background: transparent;
	border: none;
	border-radius: 50%;
	box-shadow: none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
	float: left;
	margin: 0 0 0.7em;
	font-size: 1em;
}

.woocommerce #reviews #comments ol.commentlist li .woocommerce-review__published-date {
	padding-left: 1em;
	font-size: 14px;
}

.woocommerce #reviews #comments ol.commentlist li .star-rating {
	font-size: 14px;
}

.woocommerce #reviews #comments ol.commentlist li .description {
	clear: both;
	line-height: 2.4;
}

.woocommerce #reviews #comments ol.commentlist li .description p:last-child {
	margin-bottom: 0;
}

.p-pager-reviews {
	margin-top: -5px;
	margin-bottom: 50px;
}

@media (max-width: 991px) {
	.woocommerce #reviews #comments ol.commentlist li {
		padding: 0 0 20px;
		margin: 0 0 20px;
	}

	.woocommerce #reviews #comments ol.commentlist li img.avatar {
		flex: 0 0 56px;
		width: 56px;
		height: 56px;
		margin-right: 24px;
	}

	.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
		float: none;
		margin: 0 0 1em;
	}

	.woocommerce #reviews #comments ol.commentlist li .woocommerce-review__published-date {
		padding-left: 0.5em;
		font-size: 12px;
	}

	.woocommerce #reviews #comments ol.commentlist li .star-rating {
		float: none;
		margin: 0 0 0.8em;
		font-size: 10px;
	}

	.woocommerce #reviews #comments ol.commentlist li .description {
		clear: both;
		line-height: 2;
	}

	.p-pager-reviews {
		margin-bottom: 40px;
	}
}

/* review form */
#review_form .comment-reply-title {
	display: inline-block;
	margin-top: -0.4em;
	margin-bottom: calc(1.4rem - 0.4em);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.8;
	color: var(--tcd-accent-color);
}

#review_form {
	line-height: var(--tcd-line-height);
	text-align: center;
}

#commentform .logged-in-as {
	display: none;
}

#review_form .comment-form {
	display: flex;
	flex-direction: column;
}

#review_form .comment-form > * {
	order: 10;
}

#review_form .comment-form .comment-notes {
	order: 1;
}

#review_form .comment-form .comment-form-rating {
	order: 2;
}

#review_form .comment-form .comment-form-author {
	order: 3;
}

#review_form .comment-form .comment-form-email {
	order: 4;
}

#review_form .comment-form .comment-form-comment {
	order: 8;
}

#review_form .comment-form .comment-form-cookies-consent {
	order: 15;
}

#review_form .comment-form .form-submit {
	order: 20;
}

.woocommerce #review_form #respond p {
	margin-bottom: 18px;
	text-align: left;
}

.woocommerce #review_form #respond .comment-notes {
	text-align: center;
}

.woocommerce #review_form #respond .comment-form-cookies-consent {
	margin-bottom: 8px;
}

.woocommerce #review_form #respond .form-submit {
	margin-top: 23px;
	margin-bottom: 0;
	text-align: center;
}

#review_form .comment-form input[type="text"],
#review_form .comment-form input[type="email"],
#review_form .comment-form input[type="url"],
#review_form .comment-form input[type="password"] {
	height: 40px;
	padding: 0 8px;
	background: #fff;
	border: 1px solid #ddd;
}

#review_form .comment-form textarea {
	display: block;
	width: 100%;
	min-height: 10em;
	padding: 6px 8px;
	line-height: 1.5;
	color: inherit;
	background: #fff;
	border: 1px solid #ddd;
}

#review_form .comment-form select {
	height: 40px;
	padding: 5px 20px;
	background: #fff;
	border: 1px solid #ddd;
}

#review_form .comment-form .comment-form-rating {
	margin-bottom: 20px;
}

.comment-form-rating-radios input {
	display: none;
}

.comment-form-rating-radios label {
	display: inline-block;
	color: var(--tcd-accent-color);
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.comment-form-rating-radios label::before {
	font-family: star;
	font-size: 20px;
	content: "\73";
}

.comment-form-rating-radios label span {
	display: none;
}

.comment-form-rating-radios #rating-1:checked ~ .rating-1::before,
.comment-form-rating-radios #rating-2:checked ~ .rating-1::before,
.comment-form-rating-radios #rating-2:checked ~ .rating-2::before,
.comment-form-rating-radios #rating-3:checked ~ .rating-1::before,
.comment-form-rating-radios #rating-3:checked ~ .rating-2::before,
.comment-form-rating-radios #rating-3:checked ~ .rating-3::before,
.comment-form-rating-radios #rating-4:checked ~ .rating-1::before,
.comment-form-rating-radios #rating-4:checked ~ .rating-2::before,
.comment-form-rating-radios #rating-4:checked ~ .rating-3::before,
.comment-form-rating-radios #rating-4:checked ~ .rating-4::before,
.comment-form-rating-radios #rating-5:checked ~ .rating-1::before,
.comment-form-rating-radios #rating-5:checked ~ .rating-2::before,
.comment-form-rating-radios #rating-5:checked ~ .rating-3::before,
.comment-form-rating-radios #rating-5:checked ~ .rating-4::before,
.comment-form-rating-radios #rating-5:checked ~ .rating-5::before {
	content: "\53";
}

@media (hover: hover) and (pointer: fine) {
	.comment-form-rating-radios label.select::before {
		content: "\53";
	}

	.comment-form-rating-radios label.unselect {
		opacity: 0.4;
	}
}

@media (min-width: 992px) {
	#review_form .comment-form .comment-form-author,
	#review_form .comment-form .comment-form-email,
	#review_form .comment-form .comment-form-comment {
		display: flex;
		align-items: center;
	}

	#review_form .comment-form .comment-form-author label,
	#review_form .comment-form .comment-form-email label,
	#review_form .comment-form .comment-form-comment label {
		flex: 0 0 8.5em;
	}
}

@media (max-width: 991px) {
	#review_form_wrapper {
		margin-top: 16px;
	}

	#comments:empty + #review_form_wrapper {
		margin-top: 0;
	}

	#review_form {
		line-height: 2;
	}

	#review_form .comment-reply-title {
		margin-bottom: 4px;
		font-size: 16px;
	}

	.woocommerce #review_form #respond p {
		margin-bottom: 14px;
	}

	.woocommerce #review_form #respond .comment-notes span {
		display: block;
	}

	.woocommerce #review_form #respond .comment-form-cookies-consent {
		margin-bottom: 5px;
	}

	.woocommerce #review_form #respond .form-submit {
		margin-top: 10px;
	}

	#review_form .comment-form .comment-form-rating {
		margin-top: 13px;
		margin-bottom: 9px;
	}

	#review_form .comment-form .comment-form-rating > label {
		display: block;
		margin-bottom: 12px;
	}

	#review_form .comment-form input[type="text"],
	#review_form .comment-form input[type="email"],
	#review_form .comment-form input[type="url"],
	#review_form .comment-form input[type="password"] {
		width: 100%;
	}

	#review_form .comment-form .comment-form-comment label,
	#review_form .comment-form .comment-form-author label,
	#review_form .comment-form .comment-form-email label {
		display: block;
		margin-bottom: 0.4em;
	}

	.comment-form-rating-radios label::before {
		font-size: 10px;
	}

	.comment-form-rating-radios label + label {
		margin-left: 20px;
	}
}

@media (max-width: 399px) {
	.comment-form-rating-radios label + label {
		margin-left: 15px;
	}
}

/* product related, recently */
.p-entry-product-related {
	position: relative;
	margin-top: 50px;
}

.p-recentry-viewed-products {
	position: relative;
	padding-top: 50px;
	margin-top: 100px;
}

@media (min-width: 992px) {
	.p-recentry-viewed-products::before {
		position: absolute;
		top: 0;
		left: 50%;
		width: 100vw;
		margin-left: -50vw;
		content: "";
		border-top: 1px solid #ddd;
	}
}

@media (max-width: 991px) {
	.p-entry-product-related,
	.p-recentry-viewed-products {
		padding-top: 40px;
		margin-top: 40px;
	}

	.p-entry-product-related::before,
	.p-recentry-viewed-products::before {
		position: absolute;
		top: 0;
		right: -20px;
		left: -20px;
		content: "";
		border-top: 1px solid #ddd;
	}

	.woocommerce-tabs + .p-entry-product-related {
		margin-top: -1px;
	}

	.p-recentry-viewed-products .p-archive03-item {
		flex: 0 0 190px;
		width: 190px !important;
	}

	.p-recentry-viewed-products .p-highlight-category {
		max-height: 58px;
	}
}

/* featured product category */
.p-featured-contents > :first-child {
	margin-top: 0;
}

.p-featured-contents > :last-child {
	margin-bottom: 0;
}

.p-featured-desc {
	margin-bottom: 100px;
}

.p-featured-desc-inner {
	display: block;
	margin-top: -0.7em;
	margin-bottom: -0.7em;
	line-height: 2.4;
}

.p-featured-desc.p-text-direction-type2 .p-featured-desc-inner {
	margin-top: 0;
	margin-bottom: 0;
}

.p-featured-desc02 {
	margin-top: 100px;
}

.p-featured-desc02-inner {
	display: block;
	margin-top: -0.7em;
	margin-bottom: -0.7em;
	line-height: 2.4;
}

.p-featured-children {
	display: flex;
	flex-wrap: wrap;
	gap: 60px 30px;
}

.p-featured-children .p-archive03-item {
	flex: 0 0 calc((100% - 60px) / 3);
}

.p-featured-child-title-anchor {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
	padding-top: calc(68.75% + 26px);
	pointer-events: none;
}

.p-featured-child-title {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--tcd-accent-color);
	text-align: center;
	pointer-events: auto;
}

.p-featured-child-thumbnail {
	position: relative;
	padding-top: 68.75%;
	overflow: hidden;
}

.p-featured-child-thumbnail-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100% !important;
}

.p-featured-child-info {
	margin-top: 30px;
}

.p-featured-children .p-featured-child-info .p-featured-child-title {
	margin: -0.3em 0;
	visibility: hidden;
}

.p-featured-child-catch {
	margin: -0.1em 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
	text-align: center;
}

.p-featured-child-desc {
	display: -webkit-box;
	max-height: 4em;
	margin: -0.5em 0;
	overflow: hidden;
	font-size: 14px;
	line-height: 2;
	color: #000;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.p-featured-child-title + .p-featured-child-catch {
	margin-top: 16px;
}

.p-featured-child-info * + .p-featured-child-desc {
	margin-top: 23px;
}

.p-featured-archive-headline {
	margin-top: 100px;
	font-family: var(--tcd-headline-font-type);
	font-size: var(--tcd-headline-font-size);
	font-weight: var(--tcd-headline-font-weight);
	line-height: 1.3;
}

.p-featured-archive-headline .p-text-direction-inner {
	display: block;
	margin: -0.15em 0;
}

.p-featured-archive-headline.p-text-direction-type2 .p-text-direction-inner,
.p-featured-archive-headline.p-text-direction-type4 .p-text-direction-inner {
	margin: 0;
}

.p-featured-archive {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 100px;
}

.p-featured-archive .p-archive03-item {
	flex: 0 0 calc((100% - 60px) / 3);
}

.p-featured-archive-headline + .p-featured-archive {
	margin-top: 57px;
}

@media (min-width: 992px) {
	.p-featured-images {
		display: flex;
		justify-content: center;
	}

	.p-featured-image {
		flex: 0 1 auto;
	}

	.p-featured-image + .p-featured-image {
		margin-left: 30px;
	}
}

@media (max-width: 991px) {
	.p-featured-contents {
		margin-top: 40px;
	}

	.p-featured-desc {
		margin-bottom: 40px;
	}

	.p-featured-image img {
		display: block;
		margin: 20px auto 0;
	}

	.p-featured-desc02 {
		margin-top: 40px;
	}

	.p-featured-children {
		gap: 38px 15px;
	}

	.p-featured-children .p-archive03-item {
		flex: 0 0 calc((100% - 15px) / 2);
	}

	.p-featured-child-title-anchor {
		padding-top: calc(68.75% + 17px);
	}

	.p-featured-child-info {
		margin-top: 20px;
	}

	.p-featured-child-catch {
		font-size: 18px;
	}

	.p-featured-child-desc {
		font-size: 14px;
	}

	.p-featured-child-title + .p-featured-child-catch {
		margin-top: 12px;
	}

	.p-featured-child-info * + .p-featured-child-desc {
		margin-top: 13px;
	}

	.p-featured-archive {
		margin-top: 40px;
	}

	.p-featured-archive-headline {
		margin-top: 40px;
		font-size: 22px;
	}

	.p-featured-archive-headline + .p-featured-archive {
		margin-top: 35px;
	}

	.p-featured-archive {
		gap: 22px 15px;
	}

	.p-featured-archive .p-archive03-item {
		flex: 0 0 calc((100% - 15px) / 2);
	}
}

@media (max-width: 767px) {
	.p-featured-children {
		display: block;
	}

	.p-featured-children .p-archive03-item {
		margin-top: 38px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.p-featured-child-title-anchor:hover .p-featured-child-title {
		opacity: 0.7;
	}

	.p-featured-child-anchor:hover .p-featured-child-catch {
		color: var(--tcd-accent-color);
	}
}

/* featured product category bottom */
.p-featured-bottom {
	padding: 60px 0;
	background-color: #f6f6f6;
}

.p-featured-bottom-categories {
	display: flex;
	flex-wrap: wrap;
	border-color: #ddd;
	border-style: solid;
	border-width: 1px 0 0 1px;
}

.p-featured-bottom-categories .p-featured-child {
	flex: 0 0 33.3333%;
	background: #fff;
	border-color: #ddd;
	border-style: solid;
	border-width: 0 1px 1px 0;
}

.p-featured-bottom-categories .p-featured-child-anchor {
	display: flex;
	gap: 6.86%;
	align-items: center;
	padding: 9px;
}

.p-featured-bottom-categories .p-featured-child-thumbnail {
	flex: 0 0 45.2183%;
	padding-top: 31.0875%;
}

.p-featured-bottom-categories .p-featured-child-info {
	margin-top: 0;
}

.p-featured-bottom-categories .p-featured-child-title {
	display: -webkit-box;
	max-height: 4.8em;
	overflow: hidden;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
	color: #000;
	text-align: left;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

@media (max-width: 991px) {
	.p-featured-bottom {
		padding: 20px 0;
	}

	.p-featured-bottom-categories .p-featured-child {
		flex: 0 0 50%;
	}

	.p-featured-bottom-categories .p-featured-child-title {
		font-size: 16px;
	}
}

@media (max-width: 575px) {
	.p-featured-bottom-categories {
		display: block;
	}
}

@media (hover: hover) and (pointer: fine) {
	.p-featured-bottom-categories .p-featured-child-anchor:hover .p-featured-child-title {
		color: var(--tcd-accent-color);
	}
}

/* page common */
.p-body .woocommerce-notices-wrapper ul {
	margin-left: 0;
}

.p-wc-body h1,
.p-wc-body h2,
.p-wc-body h3,
.p-wc-body h4,
.p-wc-body h5,
.p-wc-body h6 {
	margin-top: 0;
	font-family: inherit;
}

.p-wc-body h1 {
	font-size: 1.5rem;
	line-height: 1.6;
}

.p-wc-body h2 {
	font-size: 1.4rem;
	line-height: 1.6;
}

.p-wc-body h3 {
	font-size: 1.3rem;
	line-height: 1.8;
}

.p-wc-body h4 {
	font-size: 1.2rem;
	line-height: 1.8;
}

.p-wc-body h5 {
	font-size: 1.1rem;
	line-height: 1.8;
}

.p-wc-body h6 {
	font-size: 1rem;
	line-height: 1.8;
}

.p-wc-body h1,
.p-wc-body h2 {
	line-height: 1.6;
}

.p-wc-body h3,
.p-wc-body h4,
.p-wc-body h5,
.p-wc-body h6 {
	line-height: 1.8;
}

.p-wc-body > h1:first-child,
.p-wc-body > h2:first-child {
	margin-top: -0.3em;
}

.p-wc-body > h3:first-child,
.p-wc-body > h4:first-child,
.p-wc-body > h5:first-child,
.p-wc-body > h6:first-child {
	margin-top: -0.4em;
}

/* headline */
.p-wc-headline,
.p-wc .p-wc-headline {
	margin-top: -0.2em;
	margin-bottom: calc(50px - 0.2em);
	font-size: 26px;
	line-height: 1.4;
	text-align: center;
}

@media (max-width: 991px) {
	.p-wc-headline,
	.p-wc .p-wc-headline {
		margin-bottom: calc(40px - 0.2em);
		font-size: 20px;
	}
}

/* table */
.woocommerce table.shop_table {
	border-color: #ddd;
	border-radius: 0;
}

.woocommerce table.shop_table th {
	border: none;
}

.woocommerce table.shop_table td {
	border-width: 1px 0 0 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 2;
	border-color: #ddd !important;
}

/* form */
.p-wc form .form-row {
	margin-bottom: 20px;
}

.p-wc form > :last-child {
	margin-bottom: 0 !important;
}

.p-wc form .form-row-text-tenter {
	text-align: center;
}

.p-wc form .woocommerce-form-submit-wrapper,
.p-wc form .woocommerce-form-submit-wrapper-center {
	margin-top: 46px;
	margin-bottom: 0 !important;
}

.p-wc form .woocommerce-form-submit-wrapper-center {
	text-align: center;
}

.p-wc form .woocommerce-form-submit-wrapper-center .p-button {
	transition: opacity 0.3s ease;
}

.p-wc form .woocommerce-form-submit-wrapper-center .p-button:hover {
	opacity: 0.8;
	background-color: #000;
	color: #fff;
}

@media (max-width: 991px) {
	.p-wc form .woocommerce-form-submit-wrapper,
	.p-wc form .woocommerce-form-submit-wrapper-center {
		margin-top: 36px;
	}
}

/* form input */
.p-wc input[type="text"],
.p-wc input[type="number"],
.p-wc input[type="email"],
.p-wc input[type="url"],
.p-wc input[type="tel"],
.p-wc input[type="password"] {
	height: 50px;
	padding: 0 20px;
	background: #fff;
	border: 1px solid #ddd;
}

.p-wc input[type="number"] {
	padding-right: 12px;
}

.p-wc select {
	height: 50px;
	padding: 5px 20px;
	background: #eee;
	border: 1px solid #ddd;
}

.p-wc textarea {
	display: block;
	width: 100%;
	min-height: 10em;
	padding: 6px 8px;
	line-height: 1.5;
	color: inherit;
	background: #eee;
	border: 1px solid #ddd;
}

.p-wc .quantity .qty {
	width: 80px;
	text-align: left;
}

.p-wc .select2-container .select2-selection--single {
	border: var(--wc-form-border-width) solid var(--wc-form-border-color);
    border-radius: var(--wc-form-border-radius);
}

.p-wc .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 20px;
    height: 50px;
    line-height: 35px;
}

.p-wc .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 3px;
}

@media (max-width: 991px) {
	.p-wc input[type="text"],
	.p-wc input[type="number"],
	.p-wc input[type="email"],
	.p-wc input[type="url"],
	.p-wc input[type="tel"],
	.p-wc input[type="password"] {
		background: #f5f5f5;
	}
}

@media (max-width: 768px) {
	.woocommerce .col2-set .col-2,
	.woocommerce-page .col2-set .col-2 {
		margin-top: 40px;
	}
}

/* button */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	min-width: 240px;
	height: 60px;
	padding: 0 20px !important;
	overflow: hidden;
	font-weight: 400;
	line-height: 60px;
	color: #fff !important;
	text-align: center;
	background-color: var(--tcd-accent-color) !important;
	border-radius: 0;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
	margin-bottom: 0;
	font-size: 1em;
}

.woocommerce td.actions .button,
.woocommerce td.woocommerce-orders-table__cell-order-actions .button,
.woocommerce td.download-file .button,
.checkout_coupon.woocommerce-form-coupon .button {
	min-width: auto;
	height: 50px;
	line-height: 50px;
}

.woocommerce td.woocommerce-orders-table__cell-order-actions .button:only-child,
.woocommerce td.download-file .button:only-child {
	display: block;
}

.woocommerce .woocommerce-pagination a.button {
	font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    color: #000 !important;
    background: #fff !important;
    border: 1px solid #ddd;
	min-width: unset !important;
	height: unset !important;
	line-height: unset !important;
	transition: background-color 0.3s ease,color 0.3s ease;
}

:is(.woocommerce-error, .woocommerce-info, .woocommerce-message) a.button:hover {
	background-color: #000 !important;
	opacity: 0.8;
}

.woocommerce .woocommerce-pagination a.button:hover {
	background-color: #f9f9f9 !important;
	text-decoration: none;
	color: #515151 !important;
}

.p-wc .button.wc-backward {
	background: #ccc !important;
}

@media (max-width: 991px) {
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button {
		min-width: 200px;
		height: 50px;
		line-height: 50px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.woocommerce a.button:hover,
	.woocommerce button.button:not(.disabled, :disabled, :disabled[disabled]):hover,
	.woocommerce input.button:not(.disabled, :disabled, :disabled[disabled]):hover {
		background-color: var(--tcd-accent-color) !important;
	}
}

/* login/registration */
.woocommerce form.login,
.woocommerce form.register {
	border-color: #ddd;
	border-radius: 0;
}

body.woocommerce-account .p-wc-customer-login form.login,
.p-wc-customer-login form.register {
	margin-bottom: 0;
}

.woocommerce-Address-title  {
	display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.woocommerce-account .addresses .title h2 {
    flex: 1;
    font-size: 22px;
    margin-block: var(--tcd-half-read);
	line-height: 2;
    text-align: left;
}

.woocommerce-account .woocommerce-Address-title a {
	display: block;
    color: var(--tcd-accent-color);
    font-size: 12px;
    padding: 0.8em;
    line-height: 1;
    border: 1px solid var(--tcd-accent-color);
    border-radius: 5px;
	transition: color 0.3s ease,background-color 0.3s ease;
}

.woocommerce-account .woocommerce-Address-title a:hover {
	color: #fff;
	background-color: var(--tcd-accent-color);
	text-decoration: none !important;
}
.woocommerce-account .woocommerce-Address address {
	font-style: normal;
    padding: 15px;
    border: 1px solid #ddd;
	margin-bottom: 0 !important;
}

@media (max-width: 767px) {
	body.woocommerce-account .p-wc-customer-login form.login,
	.p-wc-customer-login form.register {
		padding: 0;
		margin-bottom: 0;
		border: none;
	}

	body.woocommerce-account .p-wc-customer-login form .form-row {
		padding: 0;
	}

	body.woocommerce-account .p-wc-customer-login .col2-set .col-2 {
		position: relative;
		padding-top: 40px;
		margin-top: 35px;
	}

	body.woocommerce-account .p-wc-customer-login .col2-set .col-2::before {
		position: absolute;
		top: 0;
		right: -20px;
		left: -20px;
		content: "";
		border-top: 1px solid #ddd;
	}
}

/* myaccount */
.woocommerce mark {
	font-style: normal;
	font-weight: 600;
	color: inherit;
	background: transparent;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active {
	color: #000;
	background: #f5f5f5;
}

@media (hover: hover) and (pointer: fine) {
	.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
		color: #000;
		background: #f5f5f5;
	}
}

@media (min-width: 992px) {
	.woocommerce-account .woocommerce-MyAccount-navigation {
		width: 250px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		padding: 0;
		margin: 0 !important;
		list-style: none;
		border: none;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li {
		margin: 0 !important;
		border-color: #ddd;
		border-style: solid;
		border-width: 0 1px 1px 1px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li:first-child {
		border-top-width: 1px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li a {
		display: block;
		padding: 17px 22px;
		font-size: 14px;
		line-height: 1.8;
		color: #000;
		text-decoration: none !important;
	}

	.woocommerce-account .woocommerce-MyAccount-content {
		width: calc(100% - 250px - 3.333%);
		padding: 50px 38px;
		border: 1px solid #ddd;
	}

	.woocommerce-account .woocommerce-MyAccount-content > :last-child {
		margin-bottom: 0;
	}
}

@media (max-width: 991px) {
	.woocommerce-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		float: none;
		width: 100%;
		margin: 0 0 40px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: wrap;
		margin: 0;
		list-style: none;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li {
		flex: 0 0 50%;
		border-color: #ddd;
		border-style: solid;
		border-width: 0 1px 1px 0;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li:nth-child(-n+2) {
		border-top-width: 1px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li:nth-child(2n+1) {
		border-left-width: 1px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li a {
		display: block;
		height: 100%;
		padding: 11.5px 10px;
		line-height: 1.8;
		color: #000;
		text-align: center;
		text-decoration: none;
	}
}

/* dashboard */
.p-wc .dashboard-account {
	margin-bottom: 60px;
}

.p-wc .dashboard-account th {
	font-weight: 600;
}

.p-wc .dashboard-account-avatar {
	width: 100px;
	height: 100px;
}

.p-wc .dashboard-account-avatar img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.p-wc .dashboard-account-info table {
	margin: 0;
}

@media (min-width: 768px) {
	.p-wc .dashboard-account {
		display: flex;
		align-items: center;
	}

	.p-wc .dashboard-account-avatar {
		flex: 0 0 100px;
		flex: 0 0 100px;
		margin-right: 40px;
	}

	.p-wc .dashboard-account-info {
		flex: 1 1 auto;
		flex: 1 1 auto;
	}
}

@media (max-width: 991px) {
	.p-wc .dashboard-account {
		margin-bottom: 40px;
	}
}

@media (max-width: 767px) {
	.p-wc .dashboard-account-avatar {
		margin: 0 auto 30px;
	}

	.p-wc .dashboard-account table {
		margin-bottom: 0;
	}
}

/* profile image */
.woocommerce form .woocommerce-form-row-profile-image {
	margin-top: 20px;
	text-align: center;
}

.profile-image input {
	display: none;
}

.profile-image-image {
	position: relative;
	width: 150px;
	height: 150px;
	margin: 14px auto 20px;
}

.profile-image-image-current,
.profile-image-image-bg {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 100%;
}

.profile-image-image-current {
	position: relative;
	z-index: 2;
}

.profile-image-image-bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-image: url(/wp-content/themes/basara_tcd100/css/img/no-avatar.png);
}

.profile-image-delete-button {
	position: absolute;
	top: -14px;
	right: -26px;
	z-index: 3;
	display: none;
	width: 40px;
	height: 40px;
	overflow: hidden;
	line-height: 40px;
	text-align: center;
	transition-property: none;
}

.profile-image-delete-button::before {
	display: block;
	font-family: "design_plus";
	font-size: 20px;
	content: "\e91a";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.profile-image-upload-button {
	display: block;
	width: 240px;
	margin: 20px auto 0;
}

@media (max-width: 991px) {
	.woocommerce form .woocommerce-form-row-profile-image {
		margin-top: 0;
	}

	.profile-image-image {
		width: 100px;
		height: 100px;
	}

	.profile-image-upload-button {
		display: block;
		width: 200px;
		margin: 20px auto 0;
	}
}

/* coupon */
.woocommerce form.checkout_coupon {
	border-color: #ddd;
	border-radius: 0;
}

.woocommerce form.checkout_coupon {
	border-radius: 0;
}

.woocommerce .checkout_coupon > p:first-child {
	margin-bottom: 1em;
}

.woocommerce form.checkout_coupon .form-row {
	margin-bottom: 0 !important;
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
	width: 8.5em;
}

#add_payment_method table.cart td.actions .coupon .button,
.woocommerce-cart table.cart td.actions .coupon .button,
.woocommerce-checkout table.cart td.actions .coupon .button {
	min-width: auto;
}

#add_payment_method table.cart td.actions .coupon .button:not(:hover),
.woocommerce-cart table.cart td.actions .coupon .button:not(:hover),
.woocommerce-checkout table.cart td.actions .coupon .button:not(:hover) {
	background-color: #ccc !important;
}

@media (max-width: 991px) {
	#add_payment_method table.cart td.actions .coupon .input-text,
	.woocommerce-cart table.cart td.actions .coupon .input-text,
	.woocommerce-checkout table.cart td.actions .coupon .input-text,
	#add_payment_method table.cart td.actions .coupon .button,
	.woocommerce-cart table.cart td.actions .coupon .button,
	.woocommerce-checkout table.cart td.actions .coupon .button {
		width: 50%;
		margin: 0;
	}
}

/* cart */
.woocommerce a.remove {
	width: 2em;
	height: 2em;
	font-family: "design_plus";
	font-size: 1em;
	font-weight: normal;
	line-height: 1.6;
	color: #000 !important;
	border: 1px solid #ddd;
}

.woocommerce #order_review_heading {
	margin-top: 2rem;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce .cart-collaterals .cross-sells,
.woocommerce .cart-collaterals .shipping_calculator {
	margin-top: 2rem;
}

@media (max-width: 991px) {
	.woocommerce .cart-collaterals .cart_totals,
	.woocommerce .cart-collaterals .cross-sells,
	.woocommerce .cart-collaterals .shipping_calculator {
		float: none;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.woocommerce-cart-form .button[name="update_cart"] {
		width: 50%;
		min-width: 12em;
	}
}

@media (max-width: 575px) {
	.woocommerce-cart-form .button[name="update_cart"] {
		width: 100%;
	}
}

@media (hover: hover) and (pointer: fine) {
	.woocommerce a.remove:hover {
		color: #ddd !important;
		text-decoration: none;
		background: transparent;
	}
}

.cart-collaterals .cross-sells .p-archive03-item-anchor {
	text-decoration: none !important;
}

.cart-collaterals .cross-sells .p-archive03-item-meta {
	margin-bottom: 13px;
}

.cart-collaterals .cross-sells .p-archive03-item-title {
	margin-top: -0.25em;
	margin-bottom: -0.25em;
	font-family: inherit;
	font-size: 18px;
	font-weight: 600;
}

.cart-collaterals .cross-sells .p-archive03-item-price {
	margin-bottom: -0.25em;
}

.cart-collaterals .cross-sells .splide__arrow {
	width: 30px;
	height: 30px;
}

@media (max-width: 991px) {
	.cart-collaterals .cross-sells .p-archive03-item-meta {
		margin-bottom: 10px;
	}

	.cart-collaterals .cross-sells .p-archive03-item-title {
		font-size: 16px;
	}
}

/* payment */
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
	border-radius: 0;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
	margin-bottom: 0;
}

.woocommerce .woocommerce-customer-details address {
	border: 1px solid #ddd;
	border-radius: 0;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
	line-height: inherit;
}

/* widget common */
.p-widget .star-rating {
	font-size: 12px;
}

.woocommerce ul.product_list_widget {
	padding: 0;
	margin: 0;
}

.woocommerce ul.product_list_widget li {
	position: relative;
	padding: 0;
	margin: 0 !important;
	border-color: #ddd;
	border-style: solid;
	border-width: 0 1px 1px 1px;
}

.woocommerce ul.product_list_widget li:first-child {
	border-top-width: 1px;
}

.woocommerce ul.product_list_widget li a.p-widget-list-item-link {
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 9px 15px 9px 10px;
	font-weight: 400;
	color: inherit;
	text-decoration: none !important;
}

.woocommerce ul.product_list_widget .p-widget-list-item-thumbnail {
	position: relative;
	flex: 0 0 90px;
	width: 90px;
	height: 90px;
	overflow: hidden;
}

.woocommerce ul.product_list_widget li a img {
	float: none;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
}

.woocommerce ul.product_list_widget li .product-title {
	display: -webkit-box;
	max-height: 3.6em;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.woocommerce ul.product_list_widget li.has-rating .product-title {
	-webkit-line-clamp: 1;
	max-height: 1.8em;
}

.woocommerce ul.product_list_widget li .star-rating {
	margin-top: 4px;
	margin-bottom: 4px;
}

.woocommerce ul.product_list_widget li .p-widget-list-item-amount {
	margin-bottom: -3px;
}

.woocommerce ul.product_list_widget li .reviewer {
	display: block;
	margin-top: 2px;
}

/* widget_product_categories */
.p-widget .product-categories {
	padding: 0;
	margin: 0 !important;
	background: #fff;
	border: 1px solid #ddd;
	border-top: none;
}

.p-widget .product-categories li {
	position: relative;
	margin: 0 !important;
	border-top: 1px solid #ddd;
}

.p-widget .product-categories li a {
	display: flex;
	gap: 5px;
	align-items: center;
	min-height: 58px;
	padding: 16px 22px;
	line-height: 1.8;
	color: #000;
	text-decoration: none;
}

.p-widget .product-categories a .count {
	display: inline-block;
	min-width: 30px;
	height: 30px;
	padding: 0 5px;
	margin-top: -2px;
	margin-right: -8px;
	margin-bottom: -2px;
	margin-left: auto;
	font-size: 14px;
	line-height: 28px;
	color: #000;
	text-align: center;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 15px;
}

.p-widget .product-categories .has-children > a {
	padding-right: 46px;
}

.p-widget .product-categories .has-children > a > .count {
	display: none;
}

.p-widget .product-categories .toggle-children {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	padding-right: 22px;
	padding-left: 10px;
	line-height: 58px;
	cursor: pointer;
	opacity: 1;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.p-widget .product-categories .toggle-children::before {
	display: block;
	font-family: "design_plus";
	content: "\e90e";
}

.p-widget .product-categories .is-active > .toggle-children {
	transform: rotateX(180deg);
}

.p-widget .product-categories .children {
	padding: 0 !important;
	margin: 0 !important;
}

.p-widget .product-categories .children a {
	padding-left: calc(22px + 1em);
	background: #f6f6f6;
}

.p-widget .product-categories .children .children a {
	padding-left: calc(22px + 2em);
}

.p-widget .product-categories .children .children .children a {
	padding-left: calc(22px + 3em);
}

.p-widget .product-categories .children .children .children .children a {
	padding-left: calc(22px + 4em);
}

.p-widget .product-categories .children .children .children .children .children a {
	padding-left: calc(22px + 5em);
}

.p-widget.widget_product_categories .select2-container .select2-selection--single {
	height: 60px;
	margin-bottom: -1px;
	border: 1px solid #ddd;
	border-radius: 0;
}

.p-widget.widget_product_categories .select2-container.select2-container--open .select2-selection--single {
	border-color: #aaa;
}

.p-widget.widget_product_categories .select2-container .select2-selection--single .select2-selection__rendered {
	padding-right: 42px;
	padding-left: 22px;
	line-height: 58px;
	color: inherit;
}

.p-widget.widget_product_categories .select2-container .select2-selection--single .select2-selection__placeholder {
	color: inherit;
}

.p-widget.widget_product_categories .select2-container .select2-selection--single .select2-selection__arrow {
	position: absolute;
	top: 0;
	right: 22px;
	bottom: 0;
	width: 1em;
	height: 1em;
	margin: auto;
	font-size: 14px;
	line-height: 1;
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.p-widget.widget_product_categories .select2-container .select2-selection--single .select2-selection__arrow::before {
	font-family: "design_plus";
	content: "\e90e";
}

.p-widget.widget_product_categories .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow {
	transform: rotateX(180deg);
}

.p-widget.widget_product_categories .select2-container .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.p-widget.widget_product_categories .select2-container .select2-selection--single .select2-selection__clear {
	display: none;
}

.select2-dropdown {
	z-index: 10 !important;
}

@media (hover: hover) and (pointer: fine) {
	.p-widget .product-categories li a:hover {
		color: #000;
		text-decoration: none;
		background: #f6f6f6;
	}

	.p-widget .product-categories .toggle-children:hover {
		opacity: 0.6;
	}

	.p-widget.widget_product_categories .select2-container:hover .select2-selection--single .select2-selection__arrow {
		opacity: 0.6;
	}
}

@media (max-width: 991px) {
	.p-widget .product-categories li a {
		min-height: 48px;
		padding: 11px 22px;
	}

	.p-widget .product-categories .toggle-children {
		line-height: 48px;
	}

	.p-widget.widget_product_categories .select2-container .select2-selection--single {
		height: 50px;
	}

	.p-widget.widget_product_categories .select2-container .select2-selection--single .select2-selection__rendered {
		line-height: 48px;
	}
}

/* widget product search */
.woocommerce-product-search {
	position: relative;
}

.woocommerce-product-search .search-field {
	box-sizing: border-box;
	width: 100%;
	height: 60px;
	padding: 0 59px 0 22px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 0;
}

.woocommerce-product-search button {
	position: absolute;
	top: 0;
	right: 0;
	box-sizing: border-box;
	width: 60px;
	height: 60px;
	padding: 0;
	font-family: "design_plus";
	font-size: 16px;
	color: #000;
	cursor: pointer;
	background: transparent;
	border: none;
}

@media (hover: hover) and (pointer: fine) {
	.woocommerce-product-search button:hover {
		color: #999;
	}
}

@media (max-width: 767px) {
	.woocommerce-product-search .search-field {
		height: 50px;
		padding-right: 50px;
	}

	.woocommerce-product-search button {
		width: 50px;
		height: 50px;
	}
}

/* widget_shopping_cart */
.widget_shopping_cart_content {
	border: 1px solid #ddd;
}

.p-widget .widget_shopping_cart_content {
	background: #fff;
}

.widget_shopping_cart_content > :last-child {
	margin-bottom: 0 !important;
}

.widget_shopping_cart_content p {
	padding-right: 9px;
	padding-left: 9px;
}

.woocommerce.widget_shopping_cart .cart_list li {
	padding: 0;
	margin: 0 !important;
	border-color: #ddd;
	border-style: solid;
	border-width: 1px 0 0 0;
}

.woocommerce.widget_shopping_cart .cart_list li:first-child {
	border-top-width: 0;
}

.woocommerce.widget_shopping_cart .cart_list li a.remove {
	top: 9px;
	left: 9px;
	z-index: 1;
	width: 30px;
	height: 30px;
	font-family: "design_plus";
	font-weight: 400;
	line-height: 30px;
	color: #000 !important;
	background: #fff;
	border: 0;
	border-radius: 0;
}

.woocommerce.widget_shopping_cart .cart_list li .quantity {
	display: block;
	margin-bottom: -0.4em;
}

.woocommerce.widget_shopping_cart .total {
	padding: 9px 10px;
	margin-bottom: 0;
	border-color: #ddd;
}

.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons {
	text-align: center;
}

.woocommerce.widget_shopping_cart .woocommerce-mini-cart__empty-message {
	padding: 17px 10px;
	text-align: center;
}

.widget_shopping_cart .woocommerce-mini-cart-product__title {
	display: -webkit-box;
	max-height: 3.6em;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons {
	padding-bottom: 10px;
}

.woocommerce.widget_shopping_cart .buttons .p-button {
	display: block;
	min-width: auto;
	height: 50px;
	margin: 0;
	line-height: 50px;
}

.p-widget.woocommerce.widget_shopping_cart .buttons .p-button + .p-button {
	margin-top: 6px;
}

@media (hover: hover) and (pointer: fine) {
	.woocommerce.widget_shopping_cart .cart_list li a.remove:hover {
		color: #f00 !important;
		text-decoration: none !important;
		background: #fff;
	}
}

/* widget_shopping_cart in header view cart */
.p-header-view-cart .widget_shopping_cart_content {
	border: none;
}

.p-header-view-cart .woocommerce.widget_shopping_cart .cart_list li {
	line-height: 1.8;
	background: transparent;
	border-color: #ccc;
	border-style: solid;
	border-width: 0 0 1px 0;
}

.p-header-view-cart .woocommerce.widget_shopping_cart .cart_list li a.remove {
	display: none;
}

.p-header-view-cart .woocommerce.widget_shopping_cart .cart_list li a.p-widget-list-item-link {
	padding: 12px;
}

.p-header-view-cart .woocommerce.widget_shopping_cart .total {
	display: none;
}

.p-header-view-cart .woocommerce.widget_shopping_cart .buttons {
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding: 12px;
}

.p-header-view-cart .woocommerce.widget_shopping_cart .buttons::before,
.p-header-view-cart .woocommerce.widget_shopping_cart .buttons::after {
	display: none;
}

.p-header-view-cart .woocommerce.widget_shopping_cart .buttons .p-button,
.p-header-view-cart .woocommerce.widget_shopping_cart .buttons .p-button-gray {
	display: block;
	width: 49%;
	min-width: 0;
	margin: 0;
}

.p-header-view-cart .woocommerce.widget_shopping_cart .woocommerce-mini-cart__empty-message {
	padding: 60px 12px;
	text-align: center;
}

@media (max-width: 991px) {
	.p-header-view-cart .woocommerce.widget_shopping_cart .woocommerce-mini-cart__empty-message {
		padding: 40px 12px;
	}
}

@media (max-width: 499px) {
	.p-header-view-cart .woocommerce.widget_shopping_cart .buttons {
		display: block;
	}

	.p-header-view-cart .woocommerce.widget_shopping_cart .buttons .p-button,
	.p-header-view-cart .woocommerce.widget_shopping_cart .buttons .p-button-gray {
		display: block;
		width: 100%;
	}

	.p-header-view-cart .woocommerce.widget_shopping_cart .buttons .p-button-gray + .p-button {
		margin-top: 10px;
	}
}

/* widget_tag_cloud */
.woocommerce.widget_product_tag_cloud .tagcloud {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.woocommerce.widget_product_tag_cloud .tag-cloud-link {
	display: block;
	height: 35px;
	padding: 0 12px;
	margin: 0;
	overflow: hidden;
	font-size: 12px !important;
	line-height: 35px;
	color: #000;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: #eee;
	border-radius: 5px;
	transition: all 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
	.woocommerce.widget_product_tag_cloud .tag-cloud-link:hover {
		color: #fff;
		text-decoration: none !important;
		background: var(--tcd-accent-color);
	}
}


/* ranking */
.p-ranking-tab {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 65px;
	padding: 1em 0.5em;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
	background: #fff;
	border: 1px solid #ddd;
}

.p-ranking-tab.is-active {
	pointer-events: none;
	background-color: #eee;
}

.p-ranking-tabs {
	display: flex;
	margin-bottom: 58px;
}

.p-ranking-tabs .p-ranking-tab {
	flex: 1 1 33.3333%;
}

.p-ranking-tabs .p-ranking-tab + .p-ranking-tab {
	border-left-width: 0;
}

.p-ranking-body {
	margin-top: 58px;
	margin-bottom: 58px;
}

.p-ranking-tab-container {
	display: none;
}

.p-ranking-tab-container.is-active {
	display: block;
}

.p-ranking-list .p-archive03-item-anchor {
	position: relative;
	display: flex;
	align-items: center;
}

.p-ranking-list .p-archive03-item-info {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 10px 20px;
	align-items: center;
	padding-right: 50px;
	padding-left: 50px;
	margin: 0;
}

.p-ranking-list .p-archive03-item-meta {
	flex: 0 0 100%;
	margin: 0 0 2px 0;
}

.p-ranking-list .p-archive03-item-title {
	flex: 0 1 auto;
	height: auto;
	max-height: 3em;
	margin: -0.25em 0;
}

.p-ranking-list .p-archive03-item-price {
	flex: 0 0 auto;
	margin: -0.25em 0;
}

.p-ranking-list .p-archive03-item-rating {
	flex: 0 0 auto;
	order: 2;
	margin: 0;
}

.p-ranking-list .p-archive03-item-excerpt {
	order: 3;
	margin-top: 20px;
}

.p-ranking-list .p-archive03-item-excerpt span {
	display: -webkit-box;
	max-height: 4em;
	margin: -0.5em 0;
	overflow: hidden;
	line-height: 2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

@media (hover: hover) and (pointer: fine) {
	.p-ranking-tab:hover {
		background-color: #eee;
	}
}

@media (min-width: 992px) {
	.p-ranking-tabs ~ .p-ranking-tab {
		display: none;
	}

	.p-ranking-list .p-archive03-item::before {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		content: "";
		border-color: #ddd;
		border-style: solid;
		border-width: 0 1px 1px 1px;
	}

	.p-ranking-list .p-archive03-item:first-child::before {
		border-top-width: 1px;
	}

	.p-ranking-list .p-archive03-item-thumbnail {
		flex: 0 0 320px;
		padding-top: 220px;
	}

	.p-ranking-list .p-archive03-item-actions {
		right: auto;
		left: 320px;
		margin-top: 220px;
		transform: translate3d(-100%, -100%, 0);
	}
}

@media (max-width: 991px) {
	body.page-template-page__ranking .p-breadcrumb {
		margin-bottom: -1px;
	}

	body.page-template-page__ranking .l-main-inner {
		margin-top: 0;
		margin-bottom: 0;
	}

	.p-ranking-tabs {
		display: none;
	}

	.p-ranking-body {
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.p-ranking-tab {
		min-height: 50px;
		padding: 12.8px 20px;
		margin: 0 -20px;
		margin-bottom: -1px;
		border-width: 1px 0;
	}

	.p-ranking-list .p-archive03-item {
		margin: 20px 0 41px;
	}

	.p-ranking-list .p-archive03-item::after {
		position: absolute;
		right: -20px;
		bottom: -21px;
		left: -20px;
		content: "";
		border-bottom: 1px solid #ddd;
	}

	.p-ranking-list .p-archive03-item:last-child {
		margin-bottom: 20px;
	}

	.p-ranking-list .p-archive03-item:last-child::after {
		border-bottom: none;
	}

	.p-ranking-list .p-archive03-item-thumbnail {
		flex: 0 0 47.8%;
		padding-top: 33.3333%;
	}

	.p-ranking-list .p-archive03-item-info {
		flex: 0 0 52.2%;
		gap: 10px;
		padding-right: 0;
		padding-left: 20px;
	}

	.p-ranking-list .p-archive03-item-actions {
		right: 52%;
		margin-top: 33.3333%;
	}
}

@media (min-width: 768px) {
	.p-ranking-list .p-archive03-item-info .p-archive03-item-excerpt {
		flex: 0 0 100%;
	}

	.p-ranking-list .p-archive03-item-anchor > .p-archive03-item-excerpt {
		display: none;
	}
}

@media (max-width: 767px) {
	.p-ranking-list .p-archive03-item-anchor {
		flex-wrap: wrap;
	}

	.p-ranking-list .p-archive03-item-info {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: flex-start;
	}

	.p-ranking-list .p-archive03-item-info .p-archive03-item-excerpt {
		display: none;
	}

	.p-ranking-list .p-archive03-item-anchor > .p-archive03-item-excerpt {
		flex: 0 0 100%;
		margin-top: 20px;
	}

	.p-ranking-list .p-archive03-item-anchor > .p-archive03-item-excerpt span {
		display: -webkit-box;
		max-height: 4em;
		margin: -0.5em 0;
		overflow: hidden;
		line-height: 2;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
}

/* wish list */
.p-archive03-item-remove-like {
	position: absolute;
	top: -55px;
	left: 0;
	display: block;
	width: 40px;
	height: 40px;
	padding: 0;
	font-family: "design_plus";
	text-align: center;
	cursor: pointer;
	background: transparent;
	border: 1px solid #ddd;
	border-radius: 50%;
}

@media (hover: hover) and (pointer: fine) {
	.p-archive03-item-remove-like:hover {
		color: #fff;
		background-color: var(--tcd-accent-color);
		border-color: var(--tcd-accent-color);
	}
}

@media (min-width: 992px) {
	.p-wishlist .p-archive03-item {
		flex: 0 0 calc((100% - 90px) / 4);
		margin-top: 55px;
	}
}

@media (max-width: 991px) {
	.p-archive03-item-remove-like {
		top: -47px;
		width: 35px;
		height: 35px;
	}

	.p-wishlist .p-archive03-item {
		margin-top: 55px;
	}
}

/* クーポンフォームボタンの調整 */
@media (max-width: 767px) {
	.woocommerce form.checkout_coupon.woocommerce-form-coupon .button {
		width: 100%;
		padding: 0px 5px!important;
	}
}

/* クーポン入力時のエラーダイアログの幅修正 */
.woocommerce-form-coupon-toggle ~ .woocommerce-error {
	margin-left: 0;
}

/*** woocommerce箇所の土台の追記CSS ***/
body.woocommerce-cart,body.woocommerce-checkout{
	font-size: 16px;
}

.p-wc__body a:not(.p-button):hover{
	text-decoration: underline;
}

/*** ボタンの色等を調整 ***/
/*#add_payment_method table.cart td.actions .coupon .button:not(:hover),
.woocommerce-cart table.cart td.actions .coupon .button:not(:hover),
.woocommerce-checkout table.cart td.actions .coupon .button:not(:hover) {
	background-color: #ccc !important;
	color: #fff;
	border-radius: 0;
}

@media (hover: hover) and (pointer: fine) {
	.woocommerce a.button:hover,
	.woocommerce button.button:not(.disabled, :disabled, :disabled[disabled]):hover,
	.woocommerce input.button:not(.disabled, :disabled, :disabled[disabled]):hover {
		background-color:#aaa !important;
		color: #fff;
	}
}*/

/*** 通知周りのCSS調整 ***/
.woocommerce-error li, .woocommerce-info, .woocommerce-message{
	font-size: 16px;
	color: #000;
}

@media (max-width: 767px) {
/*	.woocommerce-error li, .woocommerce-info, .woocommerce-message {
		display:-webkit-box; display:-ms-flexbox; display:flex;
		-webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse;
		-webkit-box-align: baseline; -ms-flex-align: baseline; align-items: baseline;
	}*/
	
	.woocommerce-form-coupon-toggle .woocommerce-info{
		flex-direction: column;
	}

	/* リンクの非表示対策 */
	.woocommerce-info a.showcoupon{
		display: inline-block!important;
	}

	.woocommerce-error a.button, .woocommerce-info a.button, .woocommerce-message a.button { margin-left:0; margin-top:15px; }

	/* リンクの非表示対策 */
	.woocommerce-info a.showcoupon{
		display: inline-block!important;
	}
}

/*.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button{
	padding: 0 20px !important;
    overflow: hidden;
    line-height: 60px;
    color: #fff !important;
    text-align: center;
    background-color: #000 !important;
    border-radius: 0;
}*/

/*** 見出しをRIKYUにあわせる ***/
.p-wc__body h2{
	text-align: center;
	font-size: 140%;
	clear: both;
	line-height: 1.4;
	margin-bottom: 24.2px;
	font-weight: 600;
}
.p-wc__body h3{
	font-size: 130%;
	clear: both;
	line-height: 1.4;
	margin-bottom: 24.2px;
	font-weight: 600;
}

/*** クーポンや更新ボタンのCSS調整 ***/
.woocommerce .cart #coupon_code{
	float: none;
	width: 8.5em;
}


.woocommerce .cart #coupon_code+.button{
	float: none;
	height: 100%;
	padding-left: 20px !important;
	padding-right: 20px !important;
	box-sizing: border-box;
}

.woocommerce .cart .coupon + .button{
	height: 100%;
	padding-left: 20px !important;
	padding-right: 20px !important;
	box-sizing: border-box;
    overflow: hidden;
    color: #fff !important;
    text-align: center;
    background-color: #000 !important;
    border-radius: 0;
}
.woocommerce .cart .coupon + .button:hover{
 background-color:#353434!important;
}

/* スマホ時のカートの合計の:を大文字にする */
@media (max-width: 767px) {
	.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before{
		content: attr(data-title) "： ";
	}
	.woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td{
		min-height: 50px;
	}
}

/*** 購入完了時の注文詳細の表の横幅調整 ***/
.woocommerce-table--order-details th,.woocommerce-checkout-review-order-table th{
	width: 70%;
}

.woocommerce-table--order-details td,.woocommerce-checkout-review-order-table td{
	width: 30%;
}

@media (max-width: 767px) {
	/*** 購入完了時の注文詳細の表の横幅調整 ***/
	.woocommerce-table--order-details th,.woocommerce-checkout-review-order-table th{
		width: 60%;
	}

	.woocommerce-table--order-details td,.woocommerce-checkout-review-order-table td{
		width: 40%;
	}
}

/*** クーポン周りのCSS調整 ***/
@media (max-width: 768px) {
	.woocommerce .cart #coupon_code,
	.woocommerce .cart #coupon_code+.button,
	.woocommerce .checkout_coupon #coupon_code,
	.woocommerce .checkout_coupon #coupon_code+.button,
	.woocommerce-cart .wc-proceed-to-checkout a{
		width: 100%;
	}
	.woocommerce .cart #coupon_code+.button{
		margin-top: 10px;
	}
}

.woocommerce-info a.showcoupon {
	display: inline-block !important;
}

/**** 会計ページ ***/

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.p-button{
	color: inherit;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message{
	margin-left: 0;
}

.woocommerce a.remove{
	font-family: "design_plus";
    border: 1px solid #ddd;
    color: #000 !important;
    font-size: 1em;
    width: 2em;
    height: 2em;
    line-height: 1.6;
    transition: color .2s ease;
}
.woocommerce a.remove:hover{
	color: #ddd !important;
    background: 0 0;
	text-decoration: none;
}

@media (max-width: 768px) {
	.woocommerce form.checkout_coupon .form-row{
		float: none;
		width: 100%;
		margin-top: 10px;
	}
	.woocommerce #payment #place_order, .woocommerce-page #payment #place_order{
		width: 100%;
	}	
}

/**** 購入完了ページの上段リストのレイアウト調整 ***/
.woocommerce ul.order_details li{
	font-size: 16px;
    line-height: 2;
}
.woocommerce ul.order_details li strong{
	 font-size: 1em;

}
.woocommerce ul.order_details li strong span{
	font-weight: 700;
}
@media (max-width: 768px) {
.woocommerce ul.order_details li{
	width: 100%;
	padding: .5em 0;
	border-right: none;
	border-bottom: 1px dashed #cfc8d8;
}
}

.woocommerce ul.woocommerce-mini-cart{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	margin: 10px;
}

.woocommerce ul.woocommerce-mini-cart li{
	width: 30%;
}

.woocommerce ul.woocommerce-mini-cart li:nth-child( n + 4 ){
	margin-top: 10px!important
}

.woocommerce ul.woocommerce-mini-cart::after{
	content:"";
	display: block;
	width:30%;
}

/**** 複数のバリエーションが選択されている時のミニカート ******/
.woocommerce ul.woocommerce-mini-cart li dl dt, .woocommerce ul.woocommerce-mini-cart li dl dt{
    clear: both;
}

.woocommerce ul.woocommerce-mini-cart li dl, .woocommerce ul.woocommerce-mini-cart li dl{
	padding-left: 0;
    border-left: unset;
}

.woocommerce ul.woocommerce-mini-cart li dl dd, .woocommerce ul.woocommerce-mini-cart li dl dd{
	margin-bottom: 0;
}



.woocommerce form .form-row .input-text, .woocommerce form .form-row select{
	font-family: inherit;
    font-weight: 400;
    letter-spacing: normal;
    padding: .5em;
    display: block;
    background-color: var(--wc-form-color-background, #fff);
    border: var(--wc-form-border-width) solid var(--wc-form-border-color);
    border-radius: var(--wc-form-border-radius);
    color: var(--wc-form-color-text, #000);
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    line-height: normal;
    height: auto;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
	    padding: 13px 15px;
}
.woocommerce form .form-row .input-text:focus, .woocommerce form .form-row select:focus{
	border-color: #ddd;
}

.select2-container .select2-dropdown, .select2-container .select2-selection{
	background-color: var(--wc-form-color-background, #fff);
    border: var(--wc-form-border-width, 1px) solid var(--wc-form-border-color, #aaa);
    border-radius: var(--wc-form-border-radius, 4px);
}

.woocommerce-account table.shop_table :is(th, td) {
	border-right: 1px solid #ddd;
	padding: 15px !important;
}

.woocommerce-account table.shop_table :is(th:last-child, td:last-child) {
  border-right: none;
}

.woocommerce-MyAccount-content .order-again a.button, .woocommerce-MyAccount-content button.button, #customer_login button.button, form.woocommerce-ResetPassword button.button {
	display: grid;
    place-items: center;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    background: var(--tcd-accent-color);
    width: 280px;
    height: 60px;
    border-radius: 5px;
    margin-inline: auto;
	transition: opacity 0.3s ease;
}

.woocommerce-MyAccount-content button.button:hover {
	opacity: 0.6;
}


@media (min-width: 991px) {
.woocommerce-account .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--customer-logout {
	margin-top: 25px !important;
}


.woocommerce-account .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--customer-logout a {
	    font-weight: 600;
        text-align: center;
        color: #fff;
        background: #000;
        border: none;
        border-radius: 5px;
		transition: opacity 0.3s ease;
}
}

.woocommerce-account .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
	opacity: 0.8;
}

.woocommerce-account table.shop_table a.button {
	height: unset !important;
	line-height: unset !important;
	line-height: 1 !important;
	padding: 10px !important;
	transition: opacity 0.3s ease;
	border-radius: 3px;
}

.woocommerce-account table.shop_table a.button:hover {
	opacity: 0.8;
}

.woocommerce-info {
	--tcd-wc-notice-base-color: #000;
    background: #fff !important;
}

:is(.woocommerce-error, .woocommerce-info, .woocommerce-message) {
	font-size: 14px;
    line-height: 2.6;
    font-weight: 600;
    color: var(--tcd-wc-notice-base-color);
    background: 
 color-mix(in srgb, var(--tcd-wc-notice-base-color) 5%, #fff);
    padding: 10px 10px 10px 20px !important;
    border: 1px solid var(--tcd-wc-notice-base-color) !important;
    border-radius: 5px;
}

:is(.woocommerce-error, .woocommerce-info, .woocommerce-message) a.button {
	display: block;
    font-size: 12px !important;
    font-weight: 600;
    color: #fff;
    padding: 12px 15px !important;
    background: #000 !important;
    border-radius: 5px;
	min-width: unset !important;
	height: unset !important;
	line-height: 1 !important;
	transition: opacity 0.3s ease;
}

:is(.woocommerce-error, .woocommerce-info, .woocommerce-message) a.button:hover {
	opacity:0.8;
	color: #fff;
	background-color: #000 !important;
}

@media (max-width: 767px) {
    :is(.woocommerce-error, .woocommerce-info, .woocommerce-message) a.button {
        padding: 10px 15px;
    }
}

.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
	display: none !important;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
	padding: 1em 2em 1em 3.5em;
    margin: 0 0 2em;
    position: relative;
    background-color: #fff;
    color: #515151;
    border-top: 3px solid #720eec;
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
	border: 1px solid #000 !important;
}

@media (max-width: 767px) {
.woocommerce-account table.shop_table a.button {
	width: fit-content;
    min-width: 60px;
    margin-left: auto;
}

.woocommerce-account table.shop_table a.button {
	font-size: 12px;
	padding: 10px !important;
}

}

/*カートページブロックのUI調整*/

.wc-block-cart-items__header-image {
	border: none !important;
}

.wc-block-cart-items__header-product {
	border: none !important;
}

.wc-block-cart-items__header-total {
	border: none !important;
}

.wc-block-cart-items__row td {
	border: none !important;
	border-top: 1px solid hsla(0, 0%, 7%, .11) !important;	
}

.wc-block-cart .wc-block-cart-items td {
    padding: 24px 0 24px 16px;
    vertical-align: top;
}

.wc-block-cart__main table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image a {
	display: block;
    width: 120px;
    height: fit-content;
    aspect-ratio: 1;
    margin-right: 8px;
}

.wc-block-cart__main table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    overflow: hidden;
}

.wc-block-cart__main table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
	font-size: 16px;
    font-weight: 600;
    color: var(--tcd-accent-color);
}

.is-large.wc-block-cart .wc-block-cart-items td:last-child {
	padding-right: 16px;
}

.wc-block-components-quantity-selector {
	border-radius: 4px;
    box-sizing: content-box;
    display: flex;
    margin: 0 0 .25em;
    position: relative;
    width: 107px;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
	appearance: textfield;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: currentColor;
    flex: 1 1 auto;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    min-width: 40px;
    order: 2;
    padding: .4em 0;
    text-align: center;
    vertical-align: middle;
	height: unset;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
    background: none transparent;
    border: 0;
    box-shadow: none;
    color: currentColor;
    cursor: pointer;
    font-size: .9em;
    font-style: normal;
    font-weight: 400;
    margin: 0;
    min-width: 30px;
    opacity: .6;
    padding: 0;
    text-align: center;
    text-decoration: none;
}

.wc-block-cart__submit {
	margin: 0 0 16px;
    position: relative;
}

.wc-block-cart .wc-block-cart__submit-container {
	padding: 0;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
	min-height: 3em;
}

.wc-block-cart__sidebar .wc-block-cart__submit .wc-block-cart__submit-button {
	font-size: 16px;
    color: #fff;
    background: var(--tcd-accent-color);
    height: 60px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.2s ease,opacity 0.3s ease;
}

.wc-block-cart__sidebar .wc-block-cart__submit .wc-block-cart__submit-button:hover {
	opacity: 0.8;
	text-decoration: none !important;
}

.wc-block-components-button:not(.is-link) {
	align-items: center;
    display: inline-flex;
    height: auto;
    justify-content: center;
    position: relative;
    text-align: center;
    transition: box-shadow .1s linear;
}

.wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block .wc-block-cart__totals-title {
	font-size: 14px;
    line-height: 1.4;
}

.is-large .wc-block-components-sidebar .wc-block-components-panel, .is-large .wc-block-components-sidebar .wc-block-components-totals-coupon, .is-large .wc-block-components-sidebar .wc-block-components-totals-item {
	padding: none;
}

.wc-block-cart__sidebar .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
	color: #fff;
    background: #000;
    border-radius: 5px;
    height: 50px;
}

.wc-block-cart__main table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-image {
	text-align: left;
    padding-left: 16px;
	font-weight: 700;
}

.is-large.wc-block-cart .wc-block-cart-items th:last-child {
	padding-right: 16px;
	font-weight: 700;
}

@media (max-width: 767px) {
.wc-block-cart__main table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image a {
	width: 100%;
}

.wc-block-cart__main table.wc-block-cart-items .wc-block-cart-items__row td {
	margin-bottom: 0px !important;
	border-top: none !important;
}

.wc-block-cart table.wc-block-cart-items, .wc-block-cart table.wc-block-cart-items td, .wc-block-cart table.wc-block-cart-items th {
	margin-bottom: 40px !important;
}
}

/* カートページブロックのUI調整ここまで */

/* チェックアウトページブロックのUI調整 */

.woocommerce-checkout .wp-block-woocommerce-checkout .wc-block-components-checkout-step__heading {
	margin-block: 0 20px;
}

.wc-block-checkout__contact-fields .wc-block-components-checkout-step__heading {
	margin-top: .5em;
}

.wc-block-components-checkout-step__heading {
	margin: 0 0 8px;
    position: relative;
}

.wp-block-woocommerce-checkout .wc-block-components-title.wc-block-components-title {
	font-size: 24px;
    text-align: left;
    margin-top: var(--tcd-half-read);
}


.wp-block-woocommerce-checkout .wc-block-components-checkout-step__description:has(+*) {
	margin-bottom: 30px;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step__description {
	font-size: 16px;
    line-height: 2;
}

.wc-block-components-checkout-return-to-cart-button {
	box-shadow: none;
    color: inherit !important;
    padding-left: calc(24px + .25em);
    position: relative;
    text-decoration: none;
	transition: opacity 0.3s ease;
}

.wc-block-components-checkout-return-to-cart-button:hover {
	opacity: 0.6;
	text-decoration: none !important;
}

.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
	font-size: 16px;
    color: #fff;
    background: var(--tcd-accent-color);
    height: 60px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.2s ease;
	border: none;
	transition: opacity 0.3s ease;
}

.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
	opacity: 0.8;
}

.wc-block-components-button:not(.is-link) .wc-block-components-button__text {
	text-wrap: balance;
    text-wrap: pretty;
    display: block;
}

.wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text {
	align-items: center;
    display: flex;
}

.wc-block-components-totals-wrapper {
	padding: 16px 0;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image  {
	margin-top: 10px;
    padding-bottom: 16px;
    position: relative;
    width: 48px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__description {
	padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 12px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__total-price {
	font-weight: 700;
    margin-left: auto;
    text-align: right;
}

.wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-product-name {
	font-size: 16px;
    line-height: 1.4;
    margin-top: 0.3em;
}

.wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices {
	line-height: 1;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices {
	display: block;
    padding-top: 8px;
}

.wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-order-summary-item__description p {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    height: 1lh;
    overflow: hidden;
    word-break: break-all;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-metadata, .wc-block-components-order-summary .wc-block-components-order-summary-item__description p {
	line-height: 1.375;
    margin-top: 8px;
}

.wc-block-components-checkout-order-summary__content {
	margin-top: -16px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item:first-child {
	padding-top: 0;
}

.wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-order-summary-item {
	padding-top: 0px;
}

.wc-block-components-button:not(.is-link) {
	align-items: center;
    display: inline-flex;
    height: auto;
    justify-content: center;
    position: relative;
    text-align: center;
    transition: box-shadow .1s linear;
}

@media (max-width: 767px) { 
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
	margin-top: 0 !important;
}

.wp-block-woocommerce-checkout {
	padding-top: 0 !important;
}

.wc-block-components-order-summary-item__description .wc-block-components-product-name {
	font-size: 16px;
    margin-block: 0.3em 0px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices {
	line-height: 1;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__description p {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    height: 1lh;
    overflow: hidden;
    word-break: break-all;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-order-summary__title-icon {
	display: grid;
    margin-top: -2px;
    margin-left: 5px;
}
}
/* チェックアウトページブロックのUI調整ここまで */

body.woocommerce-lost-password .woocommerce form .form-row {
	width: 100%;
}

body.woocommerce-lost-password .woocommerce-Input {
	margin: 0 auto;
}

form.woocommerce-ResetPassword button.button {
	transition: opacity 0.3s ease;
}

form.woocommerce-ResetPassword button.button:hover {
	opacity: 0.8;
}

.wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
	display: none !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
	font-size: 16px;
    font-weight: normal;
}

.wc-block-grid__products {
	list-style: none !important;
	list-style-type: none !important;
}

.wc-block-grid__product-add-to-cart.wp-block-button {
	display: none !important;
}

form.woocommerce-ResetPassword {
	max-width: 600px;
    width: 100%;
    font-size: 16px;
    line-height: 2;
    padding: 40px;
    border: 1px solid #ddd;
    margin-inline: auto;
}

@media (max-width: 767px) {
    form.woocommerce-ResetPassword {
        font-size: 14px;
        padding: 25px;
    }
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product a:hover {
	text-decoration: none !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__products .wc-block-grid__product-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 2;
    margin-block: var(--tcd-half-read) calc(15px + var(--tcd-half-read));
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__products .wc-block-grid__product-price {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
.wc-block-grid.has-4-columns .wc-block-grid__products {
	padding-left: 0 !important;
}
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__products .wc-block-grid__product-onsale {
    display: grid;
    place-items: center;
    inset: 20px auto auto 20px;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    width: 60px;
    height: 60px;
    color: #fff;
    background: var(--tcd-product-badge-new-color);
}

.wp-block-separator.has-alpha-channel-opacity {
	display: none;
}

.woocommerce-MyAccount-content .woocommerce-notices-wrapper {
	margin-top: 0px !important;
}