@charset "utf-8";

/* ===================

管理画面とユーザー画面の共通で
使用しているパーツなどのCSSはここに
variables.cssも一緒にする
variables.css以外はフロントと分離
=================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");

/* -----------------------

bootstrap

----------------------- */
@media (width > 576px) {
	.container {
		max-width: 1177px;
	}
}

@media (width > 992px) {
	.container {
		max-width: 1177px;
	}
}

/* -----------------------

余白

----------------------- */
.F_Mb_1 {
	margin-bottom: 6px;
}

.F_Mb_2 {
	margin-bottom: 12px;
}
.F_Mt_1 {
	margin-bottom: 12px;
}

/* -----------------------

文字色

----------------------- */
.Fc_Dark {
	color: var(--f_dark);
}
/* -----------------------

商品詳細

----------------------- */

@media screen and (width > 768px) {
	.Item_Profile_Grid {
		font-family: var(--f_family_body);
		letter-spacing: 0;
		color: var(--f_dark);
		display: grid;
		grid-template-columns: 362px 1fr;
		column-gap: var(--f_space_3);
	}
}
@media screen and (max-width: 768px) {
	.Item_Profile_Grid {
		max-width: 520px;
		margin: auto;
	}
}
/* 画像 */
.Item_Profile_Thumbnail {
	width: 100%;
	border-radius: 24px;
	align-self: start;
	position: relative;
	border: solid 1px var(--f_gray);
}
.Item_Profile_Thumbnail.Case_Img {
	border: solid 1px var(--f_blue);
}
@media screen and (max-width: 768px) {
	.Item_Profile_Thumbnail {
		margin-bottom: var(--f_space_5);
	}
}
.Item_Profile_Thumbnail::before {
	content: "";
	display: block;
	padding-top: 100%;
}
.Item_Profile_Thumbnail > img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 24px;
}
/* 商品テキスト情報 */
.Item_Profile_Txt {
	font-family: var(--f_family_body);
	letter-spacing: 0;
	color: var(--f_dark);
	position: relative;
}
@media screen and (max-width: 768px) {
	.Item_Profile_Txt_Inner {
		padding-inline: var(--f_space_2);
	}
}
/* 更新日 */
.Item_Profile_Badge_Update {
	font-family: var(--f_family_body);
	letter-spacing: 0;
	padding: 4px var(--f_space_2);
	background-color: var(--f_main-deep);
	color: var(--f_light);
	font-size: 16px;
	font-weight: 500;
	z-index: 3;
	border-radius: 1em;
	display: inline-block;
}

/* バッジを横並び*/
.Item_Profile_Badge_Cate_Flex {
	display: flex;
	flex-wrap: wrap;
}
.Item_Profile_Badge_Cate_Flex > li:not(:last-child) {
	margin-right: var(--f_space_1);
}
.Item_Profile_Badge_Cate {
	font-family: var(--f_family_body);
	letter-spacing: 0;
	display: inline-block;
	white-space: nowrap;
	line-height: 1.3;
	text-align: center;
	vertical-align: baseline;
	font-size: 14px;
	color: var(--f_light);
	background-color: var(--f_main);
	padding: 0.2em 1.14em;
	font-weight: 700;
	border-radius: 0.28em;
}
.Item_Profile_Badge_Cate img {
	width: 0.8em;
}
.Item_Profile_MakerInfo {
	display: flex;
	line-height: 1.3;
	font-weight: 500;
	font-size: 14px;
	margin-top: 7px;
}
.Item_Profile_MakerInfo li {
	font-family: var(--f_family_body);
	letter-spacing: 0;
	color: var(--f_dark);
	line-height: 1.3;
	font-weight: 500;
	font-size: 14px;
}
@media screen and (max-width: 992px) {
	.Item_Profile_MakerInfo li {
		font-size: 12px;
	}
}

.Maker_Link{
	text-decoration: underline;
}

.Item_Profile_MakerInfo > li:not(:last-child) {
	margin-right: var(--f_space_3);
}
.Item_Profile_Name {
	font-family: var(--f_family_body);
	letter-spacing: 0;
	color: var(--f_dark);
	margin-top: 0.2em;
	margin-bottom: 0.8em;
	font-size: 34px;
	color: var(--f_dark);
	font-weight: 700;
}
@media screen and (max-width: 576px) {
	.Item_Profile_Name {
		font-size: 18px;
	}
}
.Item_Profile_SalesPrice {
	font-size: 20px;
	font-weight: 700;
	font-family: var(--f_family_en);
	color: var(--f_dark);
}
.Item_Profile_Intax {
	font-size: 14px;
	font-weight: 500;
}
/* 角丸バッジ */
.Item_Profile_Badge_Rounded {
	display: inline-block;
	white-space: nowrap;
	line-height: 1.3;
	text-align: center;
	vertical-align: baseline;
	font-size: 14px;
	color: var(--f_light);
	background-color: var(--f_main-deep);
	padding: 0.2em 1.14em;
	font-weight: 700;
	border-radius: 0.28em;
	border-radius: 20px;
}
/* 角丸バッジ　白黒枠線 */
.Item_Profile_Badge_Rounded.Outline {
	border: 1px solid var(--f_darkgray);
	background-color: var(--f_light);
	color: var(--f_darkgray);
	font-family: var(--f_family_body);
	letter-spacing: 0;
}
/* 3カラムグリッド */
.Buyback_Price_Grid_3 {
	/* display: flex;
flex-direction: column;
gap: 20px; */
}
@media screen and (width > 768px) {
	.Buyback_Price_Grid_3 {
		/* display: grid;
		grid-template-columns: repeat(3, 1fr);
		column-gap: var(--f_space_3); */
	}
}
.Buyback_Price_Wrap {
	display: flex;
	flex-direction: column;
	flex: auto;
	background-color: var(--f_lightgray);
	border-radius: 16px;
	padding: var(--f_space_3);
	margin-bottom: 20px;
	max-width: 956px;
	width: 100%;
}
.Buyback_Price_Cards_Grid {
	display: flex;
	flex-direction: column;
}
@media screen and (width > 768px) {
	.Buyback_Price_Cards_Grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		column-gap: var(--f_space_3);
	}
}
.Buyback_Price_Card {
	margin-top: auto;
	font-family: var(--f_family_body);
	letter-spacing: 0;
	color: var(--f_dark);
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--f_light);
	border-radius: 16px;
	border: 1px solid var(--f_gray);
	padding: var(--f_space_1) var(--f_space_4) 2px;
	min-height: 112px;
}
@media screen and (max-width: 768px) {
	.Buyback_Price_Card:first-child {
		margin-bottom: var(--f_space_3);
	}
}
.Buyback_Price_Card.New {
	border: 1px solid var(--f_main-deep);
}
.Buyback_Price_Card_Price {
	font-size: 28px;
	font-weight: 700;
	color: var(--f_red);
	font-family: var(--f_family_en);
}
/* 円 */
.Buyback_Price_Card_Price > span {
	font-size: 14px;
}
/* 税込み */
.Buyback_Price_Card_Intax {
	font-size: 14px;
	font-weight: 500;
}
/* 中古 */
.Buyback_Price_Card .Fs_20 {
	font-weight: 700;
}
.Buyback_Price_Card .Fs_20 > .en {
	font-size: 14px;
}

/* 小さめ角丸バッジ */
.Buyback_Price_Card_Badge_Rounded_S {
	font-family: var(--f_family_body);
	letter-spacing: 0;
	display: inline-block;
	white-space: nowrap;
	line-height: 1.3;
	text-align: center;
	vertical-align: baseline;
	font-size: 10px;
	color: var(--f_light);
	background-color: var(--f_main);
	padding: 0.2em 0.8em;
	font-weight: 700;
	border-radius: 1em;
}

/* 小さめ角丸バッジ 青色 */
.Buyback_Price_Card_Badge_Rounded_S.Blue {
	background-color: var(--f_blue);
}

.Buyback_Price_Card_Rate {
	font-family: var(--f_family_en);
	letter-spacing: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--f_blue);
}
.Buyback_Price_Card_Rate.Fs_20 {
	font-size: 20px;
}

.Buyback_Price_Tag_Square {
	border: 1px solid var(--f_blue);
	background-color: var(--f_light);
	padding: 10px;
	font-weight: 700;
	color: var(--f_blue);
	display: inline-block;
	min-width: 140px;
	text-align: center;
	max-width: 100%;
}

.ModelNum {
	color: var(--f_darkgray);
	font-size: 14px;
}

.Case_dtl_Price_Wrap > span.en {
	color: var(--f_red);
	font-weight: 700;
	font-size: 14px;
}
/* -------------------------


component
仕様

------------------------*/
/* 枠 */
.Spec_Frame {
	font-family: var(--f_family_body);
	letter-spacing: 0;
	color: var(--f_dark);
	border-radius: 60px;
	background-color: var(--f_light);
	padding: 70px 44px 48px 44px;
	position: relative;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.Spec_Frame {
		border-radius: 40px;
		padding: var(--f_space_7) var(--f_space_2) var(--f_space_8) var(--f_space_2);
	}
}
/* タイトル */
.Spec_Heading {
	font-family: var(--f_family_body);
	letter-spacing: 0;
	color: var(--f_main-deep);
	font-weight: 700;
	font-size: 34px;
	position: relative;
	left: -45px;
	padding: 0 0 0 120px;
	margin-bottom: var(--f_space_5);
}
/* タイトルあしら */
.Spec_Heading::before {
	content: "";
	display: block;
	height: 2px;
	width: 100px;
	position: absolute;
	left: calc(-1 * var(--f_space_1));
	top: 50%;
	background-color: var(--f_main-deep);
}
@media screen and (max-width: 768px) {
	.Spec_Heading {
		font-size: 24px;
		padding: 0 0 0 40px;
		left: -6px;
	}
	.Spec_Heading::before {
		width: 40px;
	}
}

@media screen and (width > 768px) {
	.Spec_Wrap dl {
		display: grid;
		grid-template-columns: 20% 80%;
		column-gap: var(--f_space_2);
		align-items: stretch;
	}
}
.Spec_Wrap dt {
	font-family: var(--f_family_body);
	letter-spacing: 0;
	color: var(--f_dark);

	padding: 0 var(--f_space_1) 0 var(--f_space_3);
	font-weight: 700;
}

.Spec_Wrap dd {
	font-family: var(--f_family_body);
	letter-spacing: 0;
	color: var(--f_dark);
	padding: 0 var(--f_space_1) var(--f_space_2) var(--f_space_3);
	border-bottom: 2px solid var(--f_main-deep);
	white-space: pre-wrap;
	white-space-collapse: preserve-breaks;
	font-weight: 500;
	margin-bottom: var(--f_space_3);
}
@media screen and (width > 768px) {
	.Spec_Wrap dt {
		padding: 0 var(--f_space_1) var(--f_space_1) var(--f_space_5);
		border-bottom: 2px solid var(--f_main-deep);
		font-weight: 500;
		margin-bottom: var(--f_space_3);
	}
	.Spec_Wrap dd {
		padding: 0 var(--f_space_1) var(--f_space_1) var(--f_space_4);
		border-bottom: 2px solid var(--f_gray);
	}
}

/* -------------------------


component
ノート

---------------------------- */
.Note {
	margin-top: var(--f_space_4);
	border-radius: 16.8px;
	background-color: var(--f_lightgray);
	padding: var(--f_space_2) var(--f_space_4) var(--f_space_3) var(--f_space_4);
	border: 1px solid var(--f_main-deep);
}
.Note p {
	color: var(--f_dark);
	font-weight: 500;
	white-space: pre-wrap;
	white-space-collapse: preserve-breaks;
}
.Note_Heading {
	color: var(--f_main-deep);
	font-size: 1.8rem;
	font-weight: 700;
}
.Note_Heading > img {
	width: 0.7em;
	margin-right: 0.3em;
}

.Note a {
	color: var(--f_blue);
	text-decoration: underline;
}
/* -------------------------


component
インフォメーション

---------------------------- */

/* 枠 */
.Info_Frame {
	font-family: var(--f_family_body);
	letter-spacing: 0;
	color: var(--f_dark);
	background-color: var(--f_light);
	border-radius: 16px;
	padding: 100px 24px 28px 24px;
	position: relative;
	color: var(--f_dark);
}

@media screen and (width > 768px) {
	.Info_Frame {
		padding: 120px 44px 48px 44px;
		border-radius: 59.25px;
		border: 0;
		overflow: hidden;
	}
}

/* 横にくっついてるタイトル */
.Info_Stick_Heading {
	display: block;
	color: var(--f_light);
	background-color: var(--f_blue);
	font-weight: 700;
	padding: 20px 24px 20px;
	max-width: 95%;
	width: fit-content;
	min-width: 185px;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	position: absolute;
	left: 0;
	top: 40px;
}
@media screen and (max-width: 768px) {
	.Info_Stick_Heading {
		padding: 8px 16px 8px;
	}
}
/* 横にくっついてるタイトル 日本語 */
.Info_Stick_Heading_Ja {
	font-size: 24px;
	line-height: 1;
	margin-bottom: 0.2em;
}
@media screen and (max-width: 768px) {
	.Info_Stick_Heading_Ja {
		font-size: 20px;
	}
}
/* 横にくっついてるタイトル 英語 */
.Info_Stick_Heading_En {
	line-height: 1.42;
	font-size: 12px;
}

/* 内容 */
.Info_Content {
	margin-top: var(--f_space_3);
}
@media screen and (width > 768px) {
	.Info_Content {
		margin-top: var(--f_space_5);
	}
}
.Info_Content h2 {
	color: var(--f_dark);
	font-weight: 700;
	display: inline-block;
	margin-bottom: 0.4em;
	font-size: 24px;
	padding: 0 0.3em 0.3em 0.3em;
	min-width: 10rem;
}
@media screen and (max-width: 768px) {
	.Info_Content h2 {
		font-size: 18px;
	}
}
.Info_Content h3 {
	color: var(--f_blue);
	font-weight: 700;
	display: block;
	margin-top: 0.4em;
	margin-bottom: 0.4em;
	font-size: 20px;
	padding: 0.3em;
}
@media screen and (max-width: 768px) {
	.Info_Content h3 {
		font-size: 18px;
	}
}
.Info_Content p {
	line-height: 1.5;
	color: var(--f_dark);
	margin-top: 0.4em;
	margin-bottom: 0.6em;
	font-weight: 500;
	font-size: 16px;
	white-space: pre-wrap;
	white-space-collapse: preserve-breaks;
}
.Info_Content ol,
.Info_Content ul {
	color: var(--f_dark);
	padding-left: 20px;
	margin-bottom: var(--f_space_4);
}
.Info_Content li {
	list-style: disc;
	white-space: pre-wrap;
	white-space-collapse: preserve-breaks;
	font-weight: 500;
	color: var(--f_dark);
}
.Info_Content li::marker {
	color: var(--f_blue);
}

/* 色切替 */
/* 奇数番目 */
.Info_Frame_Nth_Color:nth-of-type(odd) .Info_Frame {
	border: 2px solid var(--f_blue);
}
/* 偶数番目 */
.Info_Frame_Nth_Color:nth-of-type(even) .Info_Frame {
	border: 2px solid var(--f_main-deep);
}
/* 奇数番目 */
.Info_Frame_Nth_Color:nth-of-type(odd) .Info_Content h2 {
	border-bottom: dashed 2px var(--f_blue);
}
/* 偶数番目 */
.Info_Frame_Nth_Color:nth-of-type(even) .Info_Content h2 {
	border-bottom: dashed 2px var(--f_main-deep);
}
/* 奇数番目 */
.Info_Frame_Nth_Color:nth-of-type(odd) .Info_Content h3 {
	color: var(--f_blue);
}
/* 偶数番目 */
.Info_Frame_Nth_Color:nth-of-type(even) .Info_Content h3 {
	color: var(--f_main-deep);
}
/* 奇数番目 */
.Info_Frame_Nth_Color:nth-of-type(odd) .Info_Stick_Heading {
	background-color: var(--f_blue);
}
/* 偶数番目 */
.Info_Frame_Nth_Color:nth-of-type(even) .Info_Stick_Heading {
	background-color: var(--f_main-deep);
}
/* 奇数番目 */
.Info_Frame_Nth_Color:nth-of-type(odd) .Info_Content li::marker {
	color: var(--f_blue);
}
/* 偶数番目 */
.Info_Frame_Nth_Color:nth-of-type(even) .Info_Content li::marker {
	color: var(--f_main-deep);
}

/* 

インフォメーションに
折り畳みボタンをつけるとき

*/
.Info_Colla_Heading {
	letter-spacing: 0;
	color: var(--f_dark);
	display: flex;
	flex-direction: column;
}
@media screen and (width > 768px) {
	.Info_Colla_Heading {
		position: relative;
	}
}
.Info_Colla_Btn_Position {
	margin-left: auto;
}

@media screen and (width > 768px) {
	/* 注意書き 折り畳みボタン */
	.Info_Colla_Btn_Position {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
}

/* ================


utility


==================*/
/* リンク */
.TextLink {
	font-family: var(--f_family_body);
	display: inline-block;
	text-decoration: none;
	font-weight: 700;
	color: var(--f_blue);
	text-decoration: underline;
}
.TextLink:hover {
	text-decoration: none;
}
.TextLink:focus,
.TextLink:focus-visible {
	outline: var(--f_main-deep) solid 3px;
}

/* 

フォントサイズ

*/
.Fs_14 {
	font-size: 14px;
}
.Fs_16 {
	font-size: 16px;
}

.Fs_20 {
	font-size: 20px;
}
.Fs_24 {
	font-size: 24px;
}
.Fs_28 {
	font-size: 28px;
}

/* ================


お知らせ詳細


==================*/

/* タイトル＆カテゴリー */
#News_AboutInfo_Wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 16px;
}

#News_AboutInfo_Wrap > .Datetime {
	font-size: 16px;
	font-family: var(--f_family_en);
	color: var(--f_darkgray);
}

#News_Title_Wrap {
	margin-top: var(--f_space_3);
	border-bottom: solid 1px var(--f_gray);
	padding-bottom: var(--f_space_4);
	word-break: break-all;
	font-size: 20px;
}

#News_Category_Badge_Wrap {
	gap: 4px;
	display: flex;
	flex-wrap: wrap;
}

/* 本文内スタイル */

#News_Article_Wrap {
	margin-top: var(--f_space_8);
}

#News_Article_Wrap h1 {
	border-bottom: dashed 3px var(--f_main-deep);
	display: inline-flex;
	align-items: center;
	padding-bottom: 0.3em;
	text-align: start;
	position: relative;
	font-size: 24px;
	margin-bottom: 20px;
}

#News_Article_Wrap h2 {
	color: var(--f_main-deep);
	font-size: 18px;
	margin-bottom: 16px;
}

#News_Article_Wrap h3 {
	color: var(--f_dark);
	font-weight: 800;
	font-size: 16px;
	margin-bottom: 14px;
}

#News_Article_Wrap h4 {
	color: var(--f_dark);
	font-weight: 800;
	font-size: 16px;
	margin-bottom: 14px;
}

#News_Article_Wrap a {
	text-decoration: underline;
	color: var(--f_blue);
}

#News_Article_Wrap ul {
	padding-left: 24px;
}

#News_Article_Wrap li {
	list-style: disc;
	font-weight: 500;
}

#News_Article_Wrap li::marker {
	color: var(--f_main-deep);
}

#News_Article_Wrap img {
	/* max-width: 1100px!important; */
	max-height: 700px !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	object-position: left !important;
}

#News_Article_Wrap blockquote {
	background-color: var(--f_lightgray);
	padding: 20px 12px;
	padding-top: 36px;
	color: var(--f_darkgray);
	font-weight: 600;
	position: relative;
}

#News_Article_Wrap blockquote::before {
	content: "“";
	position: absolute;
	top: 12px;
	left: 10px;
	color: var(--f_gray);
	font-size: 72px;
	line-height: 40px;
}

/* ページリンク */
#News_Detail_Links_Wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

#News_Detail_Links_Wrap > .Plain_Btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.Link_News_Arrow {
	position: relative;
	display: flex;
	align-items: center;
	width: calc((100% - 26.6rem) * 0.5);
}

.Link_News_Arrow.Opacity {
	opacity: 0.5;
	pointer-events: none;
}

.Link_News_Arrow.Next {
	justify-content: end;
}

.Link_News_Arrow > span {
	color: var(--f_dark);
	text-decoration: underline;
	max-width: calc(100% - 4.1rem);
	white-space: nowrap;
	text-overflow: ellipsis;
	display: inline-block;
	overflow-x: hidden;
	max-width: 100%;
}

.Link_News_Arrow.Next > span {
	text-align: end;
}

.Link_News_Arrow::before {
	content: "";
	background-color: var(--f_main);
	border: 1px solid var(--f_main);
	color: var(--f_light);
	background-image: url(../img/icon/arrow-short-wh.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px 14px;
	position: absolute;
	top: 50%;
	display: inline-flex;
	font-size: 1.6rem;
	border-radius: 15px;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	width: 4.1rem;
	height: 4.1rem;
	min-width: 4.1rem;
	min-height: 4.1rem;
	max-width: 4.1rem;
	max-height: 4.1rem;
}

.Link_News_Arrow.Prev {
	padding-left: calc(4.1rem + 8px);
}

.Link_News_Arrow.Prev::before {
	left: 0;
	transform: translateY(-50%) rotate(-180deg);
}

.Link_News_Arrow.Next {
	padding-right: calc(4.1rem + 8px);
}

.Link_News_Arrow.Next::before {
	right: 0;
	transform: translateY(-50%);
}

@media (max-width: 768px) {
	#News_Title_Wrap {
		font-size: 18px;
	}

	#News_Article_Wrap {
		margin-top: var(--f_space_5);
	}

	#News_Article_Wrap h1 {
		font-size: 20px;
	}

	.Link_News_Arrow > span {
		display: none;
	}

	#News_Detail_Links_Wrap > .Plain_Btn {
		width: max-content!important;
	}
}
