@charset "UTF-8";
@import url('/files/css/front/user/reset.css');

* {
  scroll-padding-top: 94px;
  scroll-margin-top: 94px;
}

html {
	font-size: 62.5%;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	overflow-y: scroll;
	overflow-x: hidden;
}
body {
	width: 100%;
	height: auto;
	overflow:hidden;
	font-size: 1.8rem;
	line-height: 1;
	color:#202020;
	-webkit-font-smoothing: antialiased;
}


ul {
	list-style:none;
}

img {
	vertical-align: bottom;
	outline: none;
}

a:link,
a:visited {
	text-decoration: none;
	color:#202020;
}
@media (hover) {
	a:hover,
	a:active {
		text-decoration: none;
		color:#202020;
	}
	.subpage #main_contents a:hover {
		opacity:.7;
	}
}
a img {
	border: 0;
	backface-visibility: hidden;
}


/*hover-line*/
.hover-line {
	position:relative;
	display:inline-block;
	text-decoration: none;
	outline: none;
}
.hover-line::after{
	content:'';
	position:absolute;
	z-index:1;
	bottom:-6px;
	left:0;
	background:#000;
	width:100%;
	height:1px;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
}
@media (hover) {
	.hover-line:hover::after {
		transform: scale(1, 1);
		transform-origin: left top;
	}
}


/*hover-zoom*/
.hover-zoom a .item_img{
 	overflow:hidden;
}
.hover-zoom a .item_img img{
 	transition: all .3s;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
@media (hover) {
	.hover-zoom a:hover .item_img img{
		transform:scale(1.1,1.1);
		transition: all .3s;
	}
}


/*hover-img*/
.hover-img a {
	transition: all .3s;
}
@media (hover) {
	.hover-img a:hover {
		opacity: 0.7;
	}
}


strong {
	font-weight: 700;
}
.cf:after {
	content: "";
	display: block;
	clear: both;
}
.ib {
  display: inline-block;
}
.sp {display: none!important;}


/*電話番号指定*/
@media (min-width: 640px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}


/*container*/
#container {
	width: 100%;
	position: relative;
	padding-top: 80px;
}
#top #container {
	padding-top: 0;
}


/*section_inner*/
.section_inner {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.subpage #contents_wrapper.section_inner {
	max-width: 850px;
}


/*contents_wrapper*/
.subpage #contents_wrapper {
	padding: 0 0 160px;
}

/*TB*/
@media (max-width: 1024px) {
	.pc_only {
		display: none;
	}
}




/*header
=============================================*/
.headerArea {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 80px;
	font-size: 1.4rem;
}
.header_inner {
	width: 100%;
	height: 94px;
	padding: 0 30px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}
.headerArea .logo {
	width: 270px;
	margin-top: -10px;
}
.header_link {
	display: flex;
	align-items: center;
}
.header_link li {
	margin-left: 3em;
	white-space: nowrap;
}


/*トップページの最初のヘッダー(first_header)*/
#top .headerArea.first_header {
	height: 94px;
	color: #fff;
}
#top .headerArea.first_header a {
	color: #fff;
}
#top .headerArea.first_header .logo {
	width: 356px;
	margin-top: 0;
}
#top .headerArea.first_header .hover-line::after{
  background:#fff;
}


/*後から出てくる固定ヘッダー(fixed_header)*/
#fixed_header{
	position: fixed;
	top:0;
	left:0;
	animation: SlideIn 0.6s;
	width:100%;
	z-index:10;
	display: none;
	background-color: #fff;
}
#fixed_header.change{
	width:100%;
	display: block;
	box-shadow: 0px 10px 10px -10px rgba(47,12,21,0.2);
	animation: SlideIn 0.6s forwards;
}
.open #fixed_header.change{
	box-shadow: none;
}
@keyframes SlideIn {
	0% {
	opacity: 0;
	transform: translateY(-64px);
	}
	100% {
	opacity: 1;
	transform: translateY(0);
	}
}


/*gnav*/
.gnav {
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	background-color: #fff;
	width: 100vw;
	height: 0;
	padding: 0;
	box-sizing: border-box;
	z-index: -1;
	overflow-x: none;
	overflow-y: auto;
}
.headerArea .gnav a {
	color: #202020 !important;
	margin-top: 10px;
}
.open .gnav {
	height: 100%;
	z-index: 100;
}
.gnav_bg {
	display: block;
	width: 100%;
	opacity: 0;
	transform-origin: 0 0;
	transition: .4s cubic-bezier(.165,.84,.44,1);
}
.open .gnav_bg {
	opacity: 1;
	transition-delay: 0.3s;
	transition-duration: 1.1s;
	transform: translateY(0) rotate(.0001deg);
}

.gnav .logo {
	width: 270px!important;
	padding: 22px 0 0;
	margin-left: 30px;
}
.gnav .hamburger {
	width: 22px;
	height: 22px;
	position: absolute;
	right: 50px;
	top: 40px;
}
.hamburger {
	cursor: pointer;
}
.gnav_inner {
	width: 1370px;
	margin: 70px auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.gnav01 {
	order: 1;
	width: 990px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 60px;
	margin-bottom: 60px;
}
.gnav01 li {
	border-bottom: 1px solid #e5e5e5;
}
.gnav01 a {
	display: block;
	padding: 30px 0;
	font-size: 1.6rem;
	line-height: 1.4;
}
.gnav01 a {
	transition: opacity .3s;
}
@media (hover) {
	.gnav01 a:hover {
		opacity: 0.7;
	}
}
.gnav02 {
	order: 3;
	width: 990px;
	display: flex;
}
.gnav02 li {
	display: inline-block;
	margin-right: 30px;
}
.gnav02 a {
	display: block;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}
.gnav02 .hover-line:after {
	background: #202020!important;
}
.gnav03 {
	order: 2;
	width: 300px;
}
.gnav03 li {
	width: 100%;
	margin-top: 18px;
}
.gnav03 .btn01 {
	width: 100%;
}

html.open ,.open body{
	overflow: hidden;
}



/*PC--->TB*/
@media (max-width: 1500px) {
	.headerArea img {
		width: 100%;
		height: auto;
	}
	.headerArea {
		font-size: calc(14 / 1500 * 100vw);
	}
	.headerArea.first_header .logo {
		width: calc(356 / 1500 * 100vw);
	}
	#fixed_header.headerArea .logo {
		width: calc(270 / 1500 * 100vw);
	}
	.headerArea .icon_tel {width: calc(17 / 1500 * 100vw);}
	.headerArea .icon_mail {width: calc(23 / 1500 * 100vw);}
	.headerArea .icon_insta {width: calc(20 / 1500 * 100vw);}
	.headerArea .icon_blog {width: calc(27 / 1500 * 100vw);}
	.headerArea .icon_menu {width: calc(34 / 1500 * 100vw);}
	
	
	/*gnav*/
	.gnav .logo {
		width: calc(270 / 1500 * 100vw);
		padding: calc(20 / 1500 * 100vw) 0 0;
		margin-left: calc(30 / 1500 * 100vw);
	}
	.gnav .hamburger {
		width: calc(22 / 1500 * 100vw);
		height: calc(22 / 1500 * 100vw);
		right: calc(45 / 1500 * 100vw);
		top: calc(35 / 1500 * 100vw);
	}
	.gnav_inner {
		width: 990px;
		margin: 70px auto;
	}
	.gnav01 {
		width: 100%;
		gap: 0 calc(60 / 1500 * 100vw);
		margin-bottom: calc(60 / 1500 * 100vw);
	}
	.gnav01 a {
		display: block;
		padding: calc(30 / 1500 * 100vw) 0;
	}
	.gnav02 {
		order: 2;
		width: 100%;
		margin-bottom: calc(60 / 1500 * 100vw);
	}
	.gnav02 li {
		margin-right: calc(30 / 1500 * 100vw);
	}
	.gnav03 {
		order: 3;
		width: 100%;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 0 calc(60 / 1500 * 100vw);
		margin-right: calc(40 / 1500 * 100vw);
	}
	.gnav03 li {
		margin: 0;
	}
}
@media (max-width: 1100px) {
	.gnav_inner {
		width: calc(990 / 1100 * 100vw);
		margin: calc(70 / 1100 * 100vw) auto;
	}
}

/*TB*/
@media (max-width: 1024px) {
	.headerArea {
		height: calc(80 / 1024 * 100vw);
	}
	#top .headerArea.first_header {
		height: calc(94 / 1024 * 100vw);
	}
	.header_inner {
		height: calc(94 / 1024 * 100vw);
		padding: 0 calc(30 / 1024 * 100vw);
	}
	#fixed_header.headerArea .logo {
		width: calc(270 / 1024 * 100vw);
	}
	#top .headerArea.first_header .logo {
		width: calc(356 / 1024 * 100vw);
	}
	
	.header_link li.txt_link {
		display: none;
	}
	.header_link li {
		margin-left: calc(40 / 1024 * 100vw);
	}
	.headerArea .icon_tel {width: calc(17 / 1024 * 100vw);}
	.headerArea .icon_mail {width: calc(23 / 1024 * 100vw);}
	.headerArea .icon_insta {width: calc(20 / 1024 * 100vw);}
	.headerArea .icon_blog {width: calc(25 / 1024 * 100vw);}
	.headerArea .icon_menu {width: calc(34 / 1024 * 100vw);}
	
	.gnav_inner {
		width: calc(990 / 1024 * 100vw);
		margin: calc(75 / 1024 * 100vw) auto;
	}
	.gnav .logo {
		width: calc(270 / 1024 * 100vw);
		padding: calc(20 / 1024 * 100vw) 0 0;
		margin-left: calc(30 / 1024 * 100vw);
	}
	.gnav .hamburger {
		width: calc(22 / 1024 * 100vw);
		height: calc(22 / 1024 * 100vw);
		right: calc(35 / 1024 * 100vw);
		top: calc(30 / 1024 * 100vw);
	}
	.gnav01 {
		margin-bottom: calc(60 / 1024 * 100vw);
	}
	.gnav01 a {
		display: block;
		padding: calc(26 / 1024 * 100vw) 0;
	}
	.gnav02 {
		margin-bottom: calc(60 / 1024 * 100vw);
	}
}





/*=============================================
トップページ
=============================================*/

/*MV
=============================================*/
#main_visual {
	width: 100%;
	height: 100vh;
	position: relative;
	background-color: #fff;
	overflow: hidden;
}
.mv_logo {
	width: 335px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50% , -50%);
	z-index: 10;
}

/*scrolldown*/
.scrolldown {
	position: absolute;
	left: 50%;
	bottom: -60px;
	height:150px;
	transform: translateX(-50%);
	z-index: 10;
}
.scrolldown span{
	position: absolute;
	left:50%;
	top: -40px;
	color: #fff;
	font-size: 1.3rem;
	white-space: nowrap;
	transform: translateX(-50%) rotate(90deg);
}
.scrolldown::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 70px;
	background: #fff;
	animation: pathmove 4s ease-in-out infinite;
	opacity:0;
}
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:60px;
    opacity: 1;
  }
  100%{
    height:0;
    top:100px;
    opacity: 0;
  }
}

/*mv_slide*/
.mv_slide_wrapper {
	width: 100%;
	height: 100%;
	background-color: #fff;
}

.full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
}
.full div.img01 {
  background-image: url("/files/user/img/mv01.jpg");
}
.full div.img02 {
  background-image: url("/files/user/img/mv02.jpg");
}
.full div.img03 {
  background-image: url("/files/user/img/mv03.jpg");
}
.full div.img04 {
  background-image: url("/files/user/img/mv04.jpg");
}
.full div.img05 {
  background-image: url("/files/user/img/mv05.jpg");
}

.full div img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/*TB*/
@media (max-width: 1024px) {
	#main_visual {
		max-height: calc(900 / 1024 * 100vw);
		height: calc(100vh - 38px);
	}
	.mv_logo {
		width: calc(335 / 1024 * 100vw);
	}
	.full div {
		background-size: 190% auto;
	}
	.full div.img01,
	.full div.img05 {
		background-position: center top;
	}
	.full div.img03,
	.full div.img04 {
		background-position: center -100px;
	}
}



/*EVENT (イベント開催情報)
=============================================*/
/*タイトル共通*/
.sec_title {
	text-align: center;
	margin-bottom: 75px;
}
.sec_title .txt_en {
  font-weight: 700;
	font-size: 3.6rem;
	margin-bottom: 20px;
}
.sec_title .txt_jp {
	font-size: 1.4rem;
}
.sec_title + .sec_lead {
	margin-top: -10px;
}
.sec_lead {
	font-size: 1.6rem;
	line-height: 2.4;
}

/*event_sec*/
#event_sec {
	padding: 140px 0 170px;
}

/*event_list*/
.category_list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	margin-bottom: 85px;
}
.category_list .list_type-item a .btn{
    width: 100%;
    text-align: center;
    border: 1px solid #000;
    padding: 1rem;
    line-height: 2;
}
.category_list .list_type-item a .btn.checked,
.category_list .list_type-item a:hover .btn{
    color: #FFF;
    background: #000;
}

.event_list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	margin-bottom: 85px;
}
.event_list .item_img{
  width: 100%;
	aspect-ratio: 360 / 270;
	overflow: hidden;
}
.event_list .item_txt{
  margin-top: 20px;
	padding: 0 5px;
}
.event_list .item_contents_type_nm {
    background: #e9e9e9;
    font-size: 1.4rem;
    line-height: 2;
    display: inline-block;
    padding: 0 1rem;
		text-align: justify;
		margin-bottom: 1.0rem;
}
.event_list .item_ttl{
  font-size: 1.6rem;
	line-height: 2;
	text-align: justify;
}
.event_list .item_data {
	width: 100%;
	display: flex;
  font-size: 1.4rem;
	line-height: 2;
	margin-top: 20px;
}
.event_list .item_data + .item_data {
	margin-top: 10px;
}
.event_list .data_label {
	width: 80px;
	border-right: 1px solid #e8e8e8;
}
.event_list .data_desc {
	width: calc(100% - 80px);
	padding-left: 1em;
}
.event_list .list_item a {
	display: block;
}
/* #top .event_list .list_item:nth-child(n+4) {display: none;} */



/*画像をフィットさせる*/
.item_img{
	display: block;
}
.item_img img {
  width: 100%;
	height: 100%;
	object-fit: cover;
}

/*btn01*/
.btn01 {
	width: 240px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #222;
	font-size: 1.5rem;
	position: relative;
}
.btn01:before,
.btn01:after {
  position: absolute;
  content: '';
}
.btn01:before {
  top: 50%;
  right: -25px;
  width: 50px;
  height: 1px;
  background: #222;
}
.btn01:after {
  top: calc(50% - 6px);
  right: -25px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 8px solid #222;
}
.btn01:before,
.btn01:after{
	transition: transform .3s;
}
.btn01 span{
	transition: opacity .3s;
}
@media (hover) {
	.btn01:hover span{
		opacity: 0.7;
	}
	.btn01:hover:before,
	.btn01:hover:after{
		transform: translateX(6px);
	}
}
.btn_center a {
	margin-left: auto;
	margin-right: auto;
}
.btn_right {
	text-align: right;
}

.btn01 .btn_tel,
.btn01 .btn_mail,
.btn01 .btn_insta,
.btn01 .btn_blog {
	line-height: 20px;
	min-height: 20px;
	padding-left: 27px;
	background-repeat: no-repeat;
	background-position: left center;
}
.btn01 .btn_tel {
	background-image: url("/files/user/img/icon_tel.png");
	background-size: 14px auto;
}
.btn01 .btn_mail {
	background-image: url("/files/user/img/icon_mail.png");
	background-size: 19px auto;
}
.btn01 .btn_insta {
	background-image: url("/files/user/img/icon_insta.png");
	background-size: 18px auto;
}
.btn01 .btn_blog {
	background-image: url("/files/user/img/icon_blog.png");
	background-size: 23px auto;
}


/*PC--->TB*/
@media (max-width: 1200px) {
.category_list {
	margin-bottom: calc(85 / 1200 * 100vw);
	gap: calc(60 / 1200 * 100vw);
}
	.event_list {
		margin-bottom: calc(85 / 1200 * 100vw);
	}
	.event_list .list_item {
		gap: calc(60 / 1200 * 100vw);
	}
}

/*TB*/
@media (max-width: 1024px) {
.category_list {
		width: calc(780 / 1024 * 100vw);
		grid-template-columns: repeat(2, 1fr);
		gap: calc(50 / 1024 * 100vw) calc(60 / 1024 * 100vw);
		margin-left: auto;
		margin-right: auto;
}
	.event_list {
		width: calc(780 / 1024 * 100vw);
		grid-template-columns: repeat(2, 1fr);
		gap: calc(50 / 1024 * 100vw) calc(60 / 1024 * 100vw);
		margin-left: auto;
		margin-right: auto;
	}
	.event_list .list_item:nth-child(n+4) {display: block;}
}


/*CONCEPT (コンセプト)
=============================================*/
#concept_sec {
	height: 904px;
	background-image: url("/files/user/img/top_concept_bg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1920px auto;
	position: relative;
}

.concept_inner {
	position: absolute;
	text-align: right;
	/*width: 990px;*/
	left: 50%;
	top: 50%;
	transform: translateY(-50%) translateX(-86%);
}
.concept_lead {
	font-size: 2.8rem;
	line-height: 2;
	
	padding-right: 80px;
	text-align: left;
	display: inline-block;
}
.concept_inner .btn {
	font-size: 1.4rem;
	position: absolute;
	bottom: -105px;
	right: 0;
	padding-right: 70px;
}
.concept_inner .btn .btn01 {
	display: inline-block;
	width: inherit;
	height: inherit;
	border: none;
}

.concept_inner .btn .btn01:before {
  right: -60px;
}
.concept_inner .btn .btn01:after {
  right: -60px;
}
@media (max-width: 1920px) {
	#concept_sec {
		height: calc(904 / 1920 * 100vw);
		background-size: 100% auto;
	}
	.concept_inner {
		/*width: calc(990 / 1920 * 100vw);*/
	}
	.concept_lead {
		font-size: calc(28 / 1920 * 100vw);
		padding-right: calc(80 / 1920 * 100vw);
	}
	.concept_inner .btn {
		font-size: calc(14 / 1920 * 100vw);
		bottom: calc(-105 / 1920 * 100vw);
		padding-right: calc(70 / 1920 * 100vw);
	}
	.concept_inner .btn .btn01 {
		font-size: calc(14 / 1920 * 100vw);
	}
	
	.concept_inner .btn01:before {
		width: calc(50 / 1920 * 100vw);
	}
	.concept_inner .btn01:after {
		top: 50%;
		margin-top: calc(-5 / 1920 * 100vw);
		right: calc(-25 / 1920 * 100vw);
		border-top: calc(6 / 1920 * 100vw) solid transparent;
		border-left: calc(8 / 1920 * 100vw) solid #222;
	}
	
	
	.concept_inner .btn .btn01:before {
		right: calc(-60 / 1920 * 100vw);
	}
	.concept_inner .btn .btn01:after {
		right: calc(-60 / 1920 * 100vw);
	}
}
/*TB*/
@media (max-width: 1024px) {
	#concept_sec {
		height: calc(480 / 1024 * 100vw);
		background-image: url("/files/user/img/top_concept_bg_tb.jpg");
		background-size: 100% auto;
	}
	.concept_inner {
		/*width: calc(540 / 1024 * 100vw);*/
	}
	.concept_lead {
		font-size: calc(28 / 1024 * 100vw);
		padding-right:  calc(30 / 1024 * 100vw);
		padding-top: 0.3em;
	}
	.concept_inner .btn {
		font-size: 1.4rem;
		position: absolute;
		bottom:  calc(-50 / 1024 * 100vw);
		right: 0;
		padding-right:  calc(90 / 1024 * 100vw);
	}
	
	.concept_inner .btn .btn01 {
		font-size: calc(14 / 1024 * 100vw);
	}
	.concept_inner .btn01:before {
		top: 50%;
		right: calc(-25 / 1024 * 100vw);
		width: calc(50 / 1024 * 100vw);
	}
	.concept_inner .btn01:after {
		top: 50%;
		margin-top: calc(-5 / 1024 * 100vw);
		right: calc(-60 / 1024 * 100vw);
		border-top: calc(6 / 1024 * 100vw) solid transparent;
		border-left: calc(8 / 1024 * 100vw) solid #222;
	}
	.concept_inner .btn .btn01:before {
		right: calc(-60 / 1024 * 100vw);
	}
	.concept_inner .btn .btn01:after {
		right: calc(-60 / 1024 * 100vw);
	}
}



/*BRAND (取り扱いブランド・店頭展示リスト)
=============================================*/
#brand_sec {
	padding: 188px 0 100px;
}
#brand_sec .section_inner {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1620px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*左のブロック*/
#brand_sec .title_block {
	width: 624px;
}
#brand_sec .sec_title {
	text-align: left;
}
#brand_sec .sec_lead {
	margin-bottom: 40px;
}

/*右のブランドリスト*/
#brand_sec .brand_img {
	max-width: 1264px;
	text-align: right;
}
#brand_sec .brand_img img {
	width: 982px;
}


/*PC--->TB*/
@media (max-width: 1420px) {
	#brand_sec .title_block {
		width: calc(624 / 1420 * 100vw);
	}
	#brand_sec .brand_img {
		width: calc(1284 / 1420 * 100vw);
	}
	#brand_sec .brand_img img {
		width: calc(952 / 1420 * 100vw);
		height: auto;
	}
}

/*TB*/
@media (max-width: 1024px) {
	#brand_sec {
		padding: calc(160 / 1024 * 100vw) 0 calc(40 / 1024 * 100vw);
	}
	#brand_sec .title_block {
		width: 100%;
	}
	#brand_sec .sec_title {
		text-align: center;
	}
	#brand_sec .section_inner {
		padding: 0;
		max-width: inherit;
		flex-direction: column;
		align-items: center;
		text-align: center;
		position: relative;
		padding-bottom: calc(190 / 1024 * 100vw);
	}
	#brand_sec .sec_lead {
		margin-bottom: calc(60 / 1024 * 100vw);
	}
	#brand_sec .brand_img {
		width: calc(983 / 1024 * 100vw);
	}
	#brand_sec .brand_img img {
		width: 100%;
	}
	#brand_sec .btn {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
}




/*PRODUCTS (新品・中古品・お買い得展示品)
=============================================*/
#products_sec {
	padding: 110px 0 207px;
	position: relative;
}
#products_sec .section_inner {
	max-width: 100%;
}
.products_slider {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
.products_slider_inner {
	margin: 0 68px;
	overflow: hidden;
}
.products_slider .products_list {
	width: 1798px;
	height: 600px;
	margin-bottom: 80px;
}
.slick-list {
	overflow: visible !important;
}
.products_slider .list_item a{
	max-width: 95%;
	display: block;
}
.arrow_box {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 100vw;
}
.prev-arrow,
.next-arrow {
	display: block;
	width: 50px;
	height: 30px;
	transition: all .3s ease;
	cursor: pointer;
	position:absolute;
	margin-top: -20px;
}
.prev-arrow {left: 10px;}
.next-arrow {right:10px;}
.prev-arrow:before,
.next-arrow:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 10px;
  width: 30px;
  height: 1px;
  background: #222;
}
.prev-arrow:after,
.next-arrow:after {
  position: absolute;
  content: '';
  top: calc(50% - 6px);
  width: 0;
  height: 0;
}
.next-arrow:after {
  left: 32px;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 8px solid #222;
}
.prev-arrow:after {
	left: 10px;
  border-top: 6px solid transparent;
  border-right: 8px solid #222;
  border-bottom: 0 solid transparent;
  border-left: 0 solid transparent;
}
.prev-arrow:before,
.next-arrow:before,
.prev-arrow:after,
.next-arrow:after {
	transition: transform .3s;
}
@media (hover) {
	.next-arrow:hover:before,
	.next-arrow:hover:after{
		transform: translateX(6px);
	}
	.prev-arrow:hover:before,
	.prev-arrow:hover:after{
		transform: translateX(-6px);
	}
}


/*製品写真*/
.products_list .item_img {
	width: 100%;
	height: 210px;
	overflow: hidden;
	position: relative;
}

/*製品スペック*/
.products_list .item_txt {
	margin-top: 28px;
}

/*製品カテゴリー（中古品・スピーカーなど）*/
.products_list .item_label {
	font-size: 1.2rem;
	margin-bottom: 15px;
}
.products_list .item_label span {
	display: inline-block;
	border: 1px solid #222;
	padding: 0.4em 1em;
	margin-right: 5px;
	margin-bottom: 5px;
}

/*製品品番（Accuphase E-480など）*/
.products_list .item_model {
	font-size: 1.6rem;
	padding: 0.5em 1.5em;
	background-color: #efefef;
	display: inline-block;
	margin-bottom: 15px;
}

/*製品タイトル（キャッチコピー）*/
.products_list .item_ttl {
	font-size: 1.6rem;
	line-height: 2;
	margin-bottom: 15px;
}

/*製品価格*/
.products_list .item_price {
	font-size: 2.3rem;
	margin-bottom: 10px;
}
.products_list .item_price span {
	font-size: 1.2rem;
}

/*製品詳細（メーカー希望小売価格・取扱店舗など）*/
.products_list .item_data {
	font-size: 1.4rem;
	line-height: 2;
}
.products_list .item_data .data_label {
	display: inline-block;
	padding-top: 1em;
	padding-bottom: 0.05em;
	border-bottom: 1px solid #222;
}

/*TB*/
@media (max-width: 1024px) {
	#products_sec {
		padding: calc(110 / 1024 * 100vw) 0 calc(180 / 1024 * 100vw);
	}
	.products_slider .products_list {
		width: 100%;
		height: auto;
		margin-bottom: calc(80 / 1024 * 100vw);
	}
	.products_slider .list_item a{
		max-width: 95%;
	}
}





/*SHOP (店舗情報)
=============================================*/
#shop_sec {
	padding: 0 0 180px;
}
#shop_sec .section_inner {
	width: 100%;
	max-width: 1920px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
}

/*右のブロック*/
#shop_sec .title_block {
	width: calc(100% - 1264px);
	min-width: 350px;
	display: flex;
	justify-content: center;
}
#shop_sec .title_block_inner {
	display: inline-block;
	padding: 0 20px;
}
#shop_sec .sec_title {
	text-align: left;
}
#shop_sec .sec_lead {
	margin-bottom: 40px;
}

/*左の店舗リスト*/
#shop_sec .shop_list {
	width: 1264px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
}

.shop_list .list_item{
	height: 300px;
	overflow: hidden;
}

.shop_list .list_item a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	color: #fff;
	transition: all .2s;
}
.shop_list .item_img {
	width: 100%;
	height: 100%;
	position: absolute;
}
.shop_list .item_img::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.45);
}
.shop_list .data01 {
	font-size: 1.8rem;
	line-height: 1.2;
	letter-spacing: 0.08em;
}
.shop_list .data02 dt {
	font-size: 1.8rem;
	line-height: 1.2;
}
.shop_list .data02 dd {
	font-size: 1.2rem;
	line-height: 2;
	margin-top: 1em;
}
.shop_list .data01,
.shop_list .data02 {
	width: 95%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: opacity .5s;
	display: flex;
	flex-direction: column;
	text-align: center;
	z-index: 2;
}
.shop_list a .data02 {
	opacity: 0;
}
@media (hover) {
	.shop_list a:hover .data01{
		opacity:0;
	}
	.shop_list a:hover .data02{
		opacity:1;
	}
}


/*PC--->TB*/
@media (max-width: 1700px) {
	#shop_sec .shop_list {
		width: calc(1264 / 1700 * 100vw);
	}
	.shop_list .list_item{
		height: calc(300 / 1700 * 100vw);
	}
}
@media (max-width: 1300px) {
	.shop_list .data01 {
		font-size: 1.5rem;
	}
	.shop_list .data02 dt {
		font-size: 1.5rem;
	}
	.shop_list .data02 dd {
		font-size: 1rem;
	}
}

/*TB*/
@media (max-width: 1024px) {
	#shop_sec .section_inner {
		width: 100%;
		max-width: inherit;
		flex-direction: column;
		align-items: center;
		text-align: center;
		position: relative;
		padding-bottom: calc(170 / 1024 * 100vw);
	}
	#shop_sec .sec_title {
		text-align: center;
	}
	#shop_sec .sec_lead {
		margin-bottom: calc(50 / 1024 * 100vw);
	}
	#shop_sec .btn {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	#shop_sec .shop_list {
		width: 100%;
	}
	.shop_list .list_item {
		height: calc(300 / 1024 * 100vw);
	}
}




/*NEWS (新着情報)
=============================================*/
#news_sec {
	padding: 120px 20px 86px;
	background-color: #f7f7f7;
}
#news_sec .section_inner {
	display: flex;
	justify-content: space-between;
}
#news_sec .title_block {
	width: 300px;
}
#news_sec .sec_title {
	text-align: left;
}
#news_sec .news_list {
	width: 850px;
}
.news_list li {
	display: flex;
	justify-content: space-between;
	font-size: 1.6rem;
	line-height: 2;
	margin-bottom: 30px;
}
.news_list .news_date {
	width: 140px;
}
.news_list .news_txt {
	width: calc(100% - 140px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


/*PC--->TB*/
@media (max-width: 1240px) {
	#news_sec .news_list {
		width: calc(800 / 1240 * 100vw);
	}
}

/*TB*/
@media (max-width: 1024px) {
	#news_sec {
		padding: calc(85 / 1024 * 100vw) calc(20 / 1024 * 100vw);
	}
	#news_sec .section_inner {
		width: 100%;
		max-width: inherit;
		flex-direction: column;
		align-items: center;
		text-align: center;
		position: relative;
		padding-bottom: calc(110 / 1024 * 100vw);
	}
	#news_sec .sec_title {
		text-align: center;
	}
	#news_sec .btn {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	#news_sec .news_list {
		width: calc(916 / 1024 * 100vw);
		text-align: left;
	}
}




/*banner (バナーリンク)
=============================================*/
#banners_sec {
	padding: 150px 20px 110px;
}
.banner_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.banner_list a {
	display: block;
}
.txt_banner {
	width: 386px;
	margin-bottom: 30px;
}
.txt_banner a {
	width: 100%;
	height: 130px;
	border: 1px solid #222;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 1.6rem;
	background-image: url("/files/user/img/icon_bullet.png");
	background-repeat: no-repeat;
	background-position: 13px 13px;
	background-size: 19px auto;
}
.img_banner {
	max-width: 589px;
	width: 49%;
	margin-bottom: 30px;
}


/*PC--->TB*/
@media (max-width: 1240px) {
	.txt_banner {
		width: calc(386 / 1240 * 100vw);
		margin-bottom: calc(30 / 1240 * 100vw);
	}
	.img_banner {
		margin-bottom: calc(30 / 1240 * 100vw);
	}
	.img_banner img {
		width: 100%;
		height: auto;
	}
}

/*TB*/
@media (max-width: 1024px) {
	#banners_sec {
		padding: calc(190 / 1024 * 100vw) calc(25 / 1024 * 100vw) calc(160 / 1024 * 100vw);
	}
	.txt_banner {
		width: calc(314 / 1024 * 100vw);
		margin-bottom: calc(30 / 1240 * 100vw);
	}
	.img_banner {
		margin-bottom: calc(30 / 1024 * 100vw);
	}
	.txt_banner a {
		height: calc(130 / 1024 * 100vw);
	}
}




/*CONTACT (お問い合わせ)
=============================================*/
#contact_sec {
	padding: 0;
	display: flex;
	width: 100%;
	border-top: 1px solid #e8e8e8;
}
#contact_sec .sec_title {
	text-align: left;
	margin-bottom: 40px;
}
#contact_sec .sec_lead {
	margin-top: 60px;
}
.contact_title {
	width: calc(510 / 1920 * 100vw);
	padding: 100px 0 85px;
	display: flex;
	justify-content: center;
}
.contact_title .contact_title_inner {
	display: inline-block;
	padding: 0 20px;
}
.contact_list {
	display: flex;
}
.contact_list li {
	width: calc(380 / 1920 * 100vw);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-left: 1px solid #e8e8e8;
}
.contact_list li p {
	margin-bottom: 30px;
	font-size: 1.6rem;
}


/*PC--->TB*/
@media (max-width: 1600px) {
	#contact_sec {
		flex-wrap: wrap;
	}
	.contact_list {
		width: 100%;
	}
	.contact_title {
		width: 100%;
		border-bottom: 1px solid #e8e8e8;
		text-align: center;
	}
	#contact_sec .sec_title {
		text-align: center;
	}
	.contact_list li {
		width: calc(100% / 3);
		padding: calc(68 / 1600 * 100vw) 0;
	}
	#contact_sec .pc_only {
		display: none;
	}
}

/*TB*/
@media (max-width: 1024px) {
	.contact_list .btn {
		width: 75%;
	}
	.contact_list .btn a {
		width: 100%;
	}
}



/*footer
=============================================*/
.footer_area img {
	width: 100%;
	height: auto;
}
.footer_area {
	background-color: #222222;
	color: #fff;
	padding: 90px 0 80px;
}
.footer_area a {
	color: #fff;
}
.footer_area + .footer_area {
	border-top: 1px solid #2d2d2d;
}
.footer_link {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.footer_link .logo {
	margin-right: 10px;
	width: 363px;
}
.footer_link ul li {
	vertical-align: middle;
	display: inline-block;
	margin-left: 1.5em;
}
.footer_link .icon_tel {
	width: 17px;
}
.footer_link .icon_mail {
	width: 23px;
}
.footer_link .icon_insta {
	width: 20px;
}
.footer_link .icon_menu {
	width: 30px;
}
.footer_menu {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 100px;
}
.footer_menu ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer_menu li {
	font-size: 1.4rem;
	margin: 0 1.5em;
}
.footer_menu .small_txt li {
	font-size: 1.2rem;
}
.footer_menu .hover-line:after {
	background: #fff;
}
.copyright {
	text-align: center;
	font-size: 1.2rem;
}


/*PC--->TB*/
@media (max-width: 1920px) {
	.footer_menu {
		flex-direction: column;
		margin-bottom: calc(80 / 1200 * 100vw);
	}
	.footer_menu .small_txt {
		margin-top: calc(50 / 1200 * 100vw);
	}
	.footer_menu li {
		margin: 0 1.2em;
	}
}



/*=============================================
下層ページ
=============================================*/

/*pagetitle
=============================================*/
#pagetitle {
	width: 100%;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("/files/user/img/pagetitle_bg.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.pagetitle_txt {
	font-size: 3.2rem;
	font-weight: 700;
	color: #fff;
}


/*パンくずリンク
=============================================*/
#topic_path {
	padding: 32px 0;
	margin-bottom: 55px;
}
#topic_path ul {
	display: flex;
	align-items: center;
}
#topic_path li,#topic_path li::after {
	font-size: 1.2rem;
}
#topic_path ul li:not(:last-child)::after {
	content: "";
	display: inline-block;
	margin: 0 1em 0 0.7em;
	width: 6px;
	height: 6px;
	border-top: 1px solid #202020;
	border-right: 1px solid #202020;
	transform: rotate(45deg) translateY(-50%);
}

@media (max-width: 850px) {
  #topic_path {
      margin-bottom: calc(60 / 1024* 100vw);
      padding: calc(40 / 1024* 100vw);
  }
 }



/*タイトル類
=============================================*/
/*H2*/
.title_h2, .subpage #main_contents h2 {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 2;
	padding: 0 0 27px 0;
	border-bottom: 1px solid #e8e8e8;
	position: relative;
	margin-bottom: 45px;
	display: flex;
	align-items: baseline;
}
.title_h2::after, .subpage #main_contents h2::after {
	content: "";
	width: 30px;
	height: 1px;
	background-color: #222;
	position: absolute;
	left: 0;
	bottom: -1px;
}
.title_h2 .en_txt, .subpage #main_contents h2 .en_txt {
	font-size: 2.2rem;
	font-weight: 700;
	display: inline-block;
	margin-right: 24px;
}
.title_h2 .jp_txt, .subpage #main_contents h2 .jp_txt {
	font-size: 1.5rem;
	font-weight: 500;
	display: inline-block;
}



/*H3*/
.title_h3, .subpage #main_contents h3 {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 2;
	padding: 12px 25px;
	background-color: #f7f7f7;
	margin-bottom: 40px;
}


/*H4*/
.title_h4, .subpage #main_contents h4 {
	font-size: 2rem;
	font-weight: 500;
	line-height: 2;
	padding: 0 0 0 20px;
	border-left: 1px solid #222;
	margin-bottom: 30px;
}


/*本文
=============================================*/
.subpage #main_contents {
	font-size: 1.6rem;
	line-height: 2.4;
}

.inner_block {
	font-size: 1.6rem;
	line-height: 2.4;
	text-align: justify;
	overflow: hidden;
}
.inner_block + .inner_block {
	padding-top: 1em;
}
.inner_block p + p {
	padding-top: 1.8em;
}
.inner_block + .title_h2 {
	margin-top: 45px;
}
.inner_block + .title_h4 {
	margin-top: 35px;
}

.subpage .tbox_box{
	margin-bottom:100px;
}
#topics_detail32 .tbox_box{
	margin-bottom:0;
}
.tbox_ttl{
	margin-top:60px;
}

/*img
=============================================*/
.inner_block .alt_left {
	float: left;
	margin-right: 55px;
	margin-bottom: 45px;
}
.inner_block .alt_right {
	float: right;
	margin-left: 55px;
	margin-bottom: 45px;
}
.inner_block .ph_col {
	width: 280px;
	/* height: 210px; */
	margin-top: 0.5em;
}
.inner_block .ph_col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.inner_block .txt_col {
	overflow: hidden;
}


/*table01
=============================================*/
.table01 {
	width: 100%;
	border: 1px solid #f2f2f2;
	margin-bottom: 100px;
}
.table01 th {
	background-color: #f2f2f2;
	box-sizing: border-box;
	font-size: 1.6rem;
	line-height: 2.4;
	padding: 20px 25px;
	border-bottom: 1px solid #fff;
	text-align: center;
	width: 235px;
	vertical-align: middle;
}
.table01 td {
	box-sizing: border-box;
	width: calc(100% - 235px);
	font-size: 1.6rem;
	line-height: 2.4;
	padding: 20px 25px;
	border-bottom: 1px solid #f2f2f2;
}
.table01 tr:last-child th,
.table01 tr:last-child td {
	border-bottom: 0;
}

table.des {
	width: 100%;
	border: 1px solid #f2f2f2!important;
	margin-bottom: 100px!important;
}
table.des th {
	background-color: #f2f2f2!important;
	box-sizing: border-box;
	font-size: 1.6rem;
	line-height: 2.4;
	padding: 20px 25px!important;
	border: 0!important;
	border-bottom: 1px solid #fff!important;
	text-align: center;
	vertical-align: middle;
}
table.des td {
	box-sizing: border-box;
	font-size: 1.6rem;
	line-height: 2.4;
	padding: 20px 25px!important;
	border: 0!important;
	border-bottom: 1px solid #f2f2f2!important;
}
table.des tr:last-child th,
table.des tr:last-child td {
	border-bottom: 0!important;
}
.contact_form table.des th {
	width: 45%;
}

/*イベントのリスト（3こ並び）
=============================================*/
.list01 {
	margin-bottom: 60px;
	line-height: 1;
}
.list01 ul {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px 20px;
	margin-bottom: 85px;
}
.list01 li a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.list01 .item_img{
  width: 100%;
	aspect-ratio: 270 / 200;
	overflow: hidden;
}
.list01 .item_txt{
  margin: 1em 0 1.5em;
  font-size: 1.8rem;
	line-height: 2;
	text-align: center;
}
.list01 .goto_detail {
	font-size: 1.5rem;
	padding: 1.4em;
	text-align: center;
	border: 1px solid #222;
	margin-top: auto;
}


/*ブログのリスト（2こ並び）
=============================================*/
.list02 {
	margin-bottom: 90px;
}
.list02 ul {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.list02 .txt_banner {
	width: 100%;
	margin-bottom: auto;
}
.list02 a {
	width: 100%;
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn_blog2 {
	line-height: 22px;
	display: inline-block;
	padding-left: 42px;
	background-image: url("/files/user/img/icon_blog.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 30px auto;
}

/*btn02*/
.btn02 {
	width: 300px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #212121;
	color: #fff !important;
	font-size: 1.5rem;
	position: relative;
}
.btn02:before,
.btn02:after {
  position: absolute;
  content: '';
}
.btn02:before {
  top: 50%;
  right: -25px;
  width: 50px;
  height: 1px;
  background: #222;
}
.btn02:after {
  top: calc(50% - 6px);
  right: -25px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 8px solid #222;
}
.btn02:before,
.btn02:after{
	transition: all .3s;
}
.btn02 span{
	transition: opacity .3s;
}
@media (hover) {
	.btn02:hover span:not(.btn_inner){
		opacity: 0.7;
	}
	.btn02:hover:before,
	.btn02:hover:after{
		transform: translateX(10px);
	}
}
.btn02 .btn_mail {
	line-height: 20px;
	min-height: 20px;
	padding-left: 27px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url("/files/user/img/icon_mail_white.png");
	background-size: 20px auto;
}

/*黒ボタンの矢印の白い線部分*/
.btn_inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
.btn_inner:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 0px;
  width: 25px;
  height: 1px;
  background: #fff;
	z-index: 2;
}
.btn01 .btn_inner:after {background: #222;}
.btn_center + .title_h2 {
	margin-top: 120px;
}


/*販売情報のセレクター
=============================================*/
.select_list01 {
	margin-bottom: 60px;
}
.select_list01 ul {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.select_list01 li {
	width: 100%;
}
.select_list01 li a {
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #202020;
	font-size: 1.5rem;
	transition: all .3s;
}
.select_list01 li a.is-active {
	background-color: #202020;
	color: #fff;
}
@media (hover) {
	.select_list01 li a:hover {
		background-color: #202020;
		color: #fff;
		opacity: 1!important;
	}
}


/*検索フォーム
=============================================*/
.search_items {
	padding-bottom: 50px;
	font-size: 16px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 5px;
}
.search_items label {
	display: block;
	margin: 10px 0 20px;
	padding-left: 26px;
	position: relative;
	line-height: 1.3;
	overflow-wrap: anywhere;
}
.search_items input[type="radio"] {
	position: absolute;
	left: 0;
	top: 0.25em;
	width: 16px!important;
	height: 16px;
	border-radius: 50px;
	border: 1px solid #222!important;
	-webkit-appearance: none;
		-moz-appearance: none;
			appearance: none;
}
.search_items input[type="radio"]:checked:before{
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50px;
  content: '';
}
.search_items input[type="checkbox"] {
	position: absolute;
	left: 0;
	top: 0.25em;
	width: 16px!important;
	height: 16px;
	border-radius: 4px;
	border: 1px solid #222!important;
	-webkit-appearance: none;
		-moz-appearance: none;
			appearance: none;
}
.search_items input[type="checkbox"]:checked:before {
  position: absolute;
  top: 0px;
  left: 4px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  content: '';
}
.search_items.col5_list {
	grid-template-columns: repeat(5, 1fr);
}

/*送信ボタン*/
.form_btns {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 25px 0 40px;
}
.form_btns button, .form_btns a {
	margin: 0 25px 80px!important;
	width: 240px !important;
}



/*products_list(pickup_list)
=============================================*/
.subpage .products_list.pickup_list {
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 100px;
	line-height: 1;
}
.subpage .products_list .list_item {
	width: 100%;
	padding-bottom: 30px;
}
.subpage .products_list .list_item a {
	max-width: inherit;
}
.subpage .products_list .item_img {
	position: relative;
	height: 200px;
}

/*製品画像の上のSOLD OUTなど*/
.item_status {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.45);
	z-index: 2;
	color: #fff;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.item_status strong {
	font-size: 2.2rem;
}


/*詳細(product_detail)
=============================================*/
.products_list.product_detail {
	margin-bottom: 70px;
}

/*スペック*/
.spec {
	padding-bottom: 40px;
}
.product_detail .item_model,
.product_detail .item_label {
	display: inline-block;
	vertical-align: top;
}
.product_detail .item_model {
	font-size: 1.8rem;
	padding: 0.5em 0.8em;
	border: 1px solid #efefef;
	margin: 0 10px 15px 0;
}
.product_detail .item_label span {
	font-size: 1.5rem;
	padding: 0.7em 1.5em;
}
.product_detail .item_ttl {
	font-size: 2.6rem;
	line-height: 2;
	margin-top: 5px;
}
.product_detail .item_price {
	color: #b82f34;
	font-size: 1.6rem;
	display: inline-flex;
	align-items: baseline;
}
.product_detail .item_price strong {
	font-size: 3.8rem;
	padding: 0 0.3em;
}
.product_detail .item_data {
	display: flex;
	margin-top: 10px;
}
.product_detail .item_data div {
	margin-right: 2em;
}
.product_detail .item_data span {
	font-size: 1.2rem;
}


/*製品フォトギャラリー*/
.product_gallery {
	width: 100%;
	display: block;
}
.product_gallery .main_ph {
	width: 100%;
	height: 640px;
	margin-bottom: 7px;
}
.product_gallery .main_ph img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product_gallery .thumb_ph {
	width: 100%;
	display: flex;
	justify-content: center;
}
.product_gallery .thumb_ph li {
	width: 100px;
	height: 76px;
	margin: 0 0 0 7px;
}
.product_gallery .thumb_ph li:first-child{
	margin: 0;
}
.product_gallery .thumb_ph li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}




/*CONTACT 店舗の電話番号一覧　＆　SOLD OUT
=============================================*/
.information_block {
	background-color: #f7f7f7;
	padding: 75px 10px;
	margin-bottom: 90px;
	text-align: center;
}
.information_title {
	font-size: 2.6rem;
	font-weight: 700;
	padding-bottom: 20px;
	margin-bottom: 55px;
	position: relative;
}
.information_title::after {
	content: "";
	width: 120px;
	height: 1px;
	background-color: #222;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
.shop_info_list {
	width: 590px;
	margin: 0 auto 70px;
	text-align: left;
}
.shop_info_list li {
	display: flex;
	align-items: center;
}
.shop_info_list li + li {
	margin-top: 46px;
}
.shop_info_list .shop_name {
	font-size: 1.8rem;
	width: 180px;
}
.shop_info_list .tel_num {
	font-size: 2.5rem;
	width: 240px;
	padding-left: 24px;
	background-image: url("/files/user/img/icon_tel.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 14px auto;
}
.shop_info_list .open_time {
	font-size: 1.5rem;
}

.information_lead {
	font-size: 2.1rem;
	line-height: 1.8;
	font-weight: bold;
	padding-bottom: 15px;
}

/*TB*/
@media (max-width: 1024px) {
	.shop_info_list {
		display: inline-block;
		width: inherit;
		margin-left: auto;
		margin-right: auto;
	}
}




/*btn03（枠なしのVIEW MORE）*/
.btn03 {
	font-size: 1.5rem;
	letter-spacing: 0.06em;
	display: inline-block;
	margin-right: 90px;
	position: relative;
}
.btn03:before,
.btn03:after {
  position: absolute;
  content: '';
}
.btn03:before {
  top: 50%;
  right: -70px;
  width: 50px;
  height: 1px;
  background: #222;
}
.btn03:after {
  top: calc(50% - 6px);
  right: -70px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 8px solid #222;
}
.btn03:before,
.btn03:after{
	transition: all .3s;
}
.btn03 span{
	transition: opacity .3s;
}
@media (hover) {
	.btn03:hover span{
		opacity: 0.7;
	}
	.btn03:hover:before,
	.btn03:hover:after{
		transform: translateX(6px);
	}
}

.inner_block .btn_right {
	margin-top: 30px;
}



/*ご利用方法（4こ並び）
=============================================*/
.list03 {
	margin-bottom: 86px;
}
.list03 ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.list03 li {
	width: auto;
}
.list03 li a {
	height: 80px;
}



/*ブランドのリスト（3こ並び）
=============================================*/
.list04 {
	margin-bottom: 100px;
}
.list04 ul {
	display: grid;
	line-height: 1;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.list04 ul li {
	margin-bottom: 30px;
}
.list04 .item_img {
	width: 100%;
	aspect-ratio: 270 / 200;
	overflow: hidden;
	margin-bottom: 20px;
}
.list04 .en_txt {
  font-size: 1.8rem;
	display: inline-block;
	margin-right: 0.6em;
}
.list04 .jp_txt {
  font-size: 1.2rem;
	display: inline-block;
	margin-top: 1rem;
}
.list04 .item_tag {
	margin-top: 25px;
}


/*item_tag（プリメインアンプ・パワーアンプなど）*/
.item_tag {
  font-size: 1.2rem;
	color: #8e8e8e;
	margin-top: 15px;
}
.item_tag span {
	min-height: 20px;
	font-size: 1.2rem;
	display: block;
	margin-right: 1.2em;
	padding-left: 22px;
	background-image: url("/files/user/img/icon_tag.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 14px auto;
}

.brand_detail {
	margin-bottom: 60px;
}

#contact_list ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1em 0;
	border-bottom: 1px dotted #ccc;
}
#contact_list ul li a {
	display: block;
	width: 240px;
	padding: .2em 0;
	margin-left: 2em;
	text-align: center;
	color: #fff;
	background-color: #000;
}

#topics_detail30 .main_img{
	text-align: center;
	margin-bottom: 5em;
}

#topics_detail32 #main_contents{
	line-height: 1;
}

ul.category_list .radiobutton {
  display: none;
}
ul.category_list label {
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #202020;
        font-size: 1.5rem;
        transition: all .3s;
}
ul.category_list .radiobutton:checked + label {
        background-color: #202020;
        color: #fff;
}

/*お問い合わせ情報(電話番号)
=============================================*/

.shop_info_list2 {
	width: 590px;
	margin: 0 auto 70px;
	text-align: left;
}
.shop_info_list2 li {
	display: flex;
	align-items: center;
}
.shop_info_list2 li + li {
	margin-top: 20px;
}
.shop_info_list2 .shop_name {
	font-size: 1.8rem;
	width: 180px;
}
.shop_info_list2 .tel_num {
	font-size: 2.5rem;
	width: 240px;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 14px auto;
}
.shop_info_list2 .open_time {
	font-size: 1.5rem;
}

.information_block2 {
	text-align: center;
}

/*TB*/
@media (max-width: 1024px) {
	.shop_info_list2 {
		display: inline-block;
		width: inherit;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 850px) {
    .subpage #main_contents {
        width: calc(580 / 640* 100vw);
        margin-left: auto;
        margin-right: auto;
    }
}