/******************************************************************
Theme Name: Kindal2
Theme URI: 
Description: 
Author: 
Author URI: 
*/

/*追加 上書き*/
html,body { overflow-x: hidden; }

/* =====================
メイン 上書き
===================== */
main {
	margin: 0 auto 100px;
	width: auto!important;
	overflow-x: hidden;
}
@media screen and (max-width: 768px) {
	main { margin: 0 auto 50px; }
}

/* =====================
非表示
===================== */
.title-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* =====================
フェードイン
===================== */
.fadein-x-left {
	opacity : 0;
	transform: translateX(-50px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fadein-x-right {
	opacity : 0;
	transform: translateX(50px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fadein-y-bottom {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fadein-y-top {
	opacity: 0;
	transform: translateY(-50px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* =====================
メインエリア
===================== */
.main_area {
	margin: 0 auto;
	padding: 0;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.main_area {
		border-top: 1px solid #ccc;
	}
}

/* =====================
スライダー
=====================*/
.main_area .swiper-container {
	margin: 0;
	position: relative;
	overflow: hidden;
}
.main_area .swiper-slide {
	position: relative;
}
.main_area .swiper-slide span.mask {
	display: block;
	line-height: 0;
	overflow: hidden;
	margin: 0 0 10px;
}
.main_area .swiper-slide img {
	width: 100%;
	filter: brightness(100%);
	height: auto;
	transition: all 1.5s linear;
}
.main_area .swiper-slide img:hover {
	filter: brightness(1.1);
	transform: scale(1.05);
	transition: all 1.5s linear;
}
.swiper-main {
	width: 100%;
	margin: 0;
}
.js-swiper-main .swiper-wrapper {
	transition-timing-function: linear!important; /* スムーズな動き */
}
.js-swiper-main {
	opacity: 0;
	transition: opacity 0.3s ease;
}
.js-swiper-main.swiper-initialized {
	opacity: 1;
}


/* =====================
メインメニュー
===================== */
.main_menu {
	width: 60%;
	margin: 50px auto;
	display: flex;
	justify-content: center;
	gap: 80px;
}
.main_menu a {
	color: #000;
	text-decoration: none;
	position: relative;
	font-size: 16px;
	letter-spacing: 2px;
}
.main_menu a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #000;
	bottom: -10px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.main_menu a:hover::after {
	visibility: visible;
	bottom: -7px;
	opacity: 1;
}
.main_menu a:hover {
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.main_menu {
		margin: 20px auto;
		flex-direction: column;
		gap: 0px;
		width: 95%;
		border: 2px solid #e6e6e6;
	}
	.main_menu a {
		color: #4d4d4d;
		font-size: min(4.5vw,16px);
		letter-spacing: 1px;
		width: 100%;
		display: block;
		border-bottom: 2px solid #e6e6e6;
		padding: 10px 0;
		text-align: center;
	}
	.main_menu a:last-child {
		border-bottom: none;
	}
	.main_menu a::after {
		display: none;
	}
	.main_menu a:hover,
	.main_menu a:active {
		color: #000;
		background: #f2f2f2;
	}
}

/* =====================
見出し＆テキスト
===================== */
.heading1,
.pickup_brand .ttl {
	width: 80%;
	max-width: 1200px;
	margin: 30px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: min(4vw,28px);
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 2;
	font-family: "Century Gothic", sans-serif;
}
.description_text {
	width: 80%;
	max-width: 1200px;
	margin: 120px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: min(1.5vw,16px);
	text-align: center;
	letter-spacing: 2px;
	line-height: 3;
}
@media screen and (max-width: 768px) {
	.heading1 {
		width: 85%;
		margin: 10px auto;
 		font-size: min(5vw,22px);
		line-height: 1.8;
	}
	.description_text {
		width: 95%;
		margin: 30px auto;
		font-size: max(2.5vw,12px);
		letter-spacing: 0;
		line-height: 2;
		text-align: left;
	}
}


/* =====================
PICK UP BRAND 
===================== */
.pickup_brand {
	width: 100%;
	margin: 0 auto;
	max-width: 1200px;
}
.pickup_brand .ttl {
	font-size: min(3vw,24px);
	letter-spacing: 1px;
}
.pickup_brand_item {
	display: flex;
	flex-wrap: wrap;
	margin: 20px auto;
	width: 100%;
}
.pickup_brand_item .item {
	width: calc((100% - 100px) / 5 );
	margin: 0 25px 25px 0;
	position: relative;
}
.pickup_brand_item .item:nth-child(5n) {
	margin-right: 0;
}
.pickup_brand_item h3 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}
.pickup_brand_item span.brand_name {
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
}
.pickup_brand_item span.mask {
	display: block;
	line-height: 0;
	overflow: hidden;
}
.pickup_brand_item img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	filter: brightness(0.7);
	transition: all 0.2s linear;
}
.pickup_brand_item a:hover img {
	transform: scale(1.05);
	filter: brightness(1);
	transition: all 0.2s linear;
}
.pickup_brand_item a:hover {
	opacity: 1;
}
.pickup_brand_item a span.brand_name::before,
.swiper1 .swiper-slide a span.brand_name::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	position: absolute;
	width: 30px;
	height: 1px;
	background: #fff;
	margin: 56px 0 0;
	transition: all 0.2s linear;
}
.pickup_brand_item a span.brand_name::after,
.swiper1 .swiper-slide a span.brand_name::after {
	content: '';
	width: 8px;
	height: 8px;
	border: 1px solid #fff;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	transform-origin: top right;
	position: absolute;
	right: 50%;
	margin: 65px 0 0;
	margin-right: -17px;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.pickup_brand .ttl {
		font-size: min(4.5vw,20px);
		letter-spacing: 1px;
	}
	.pickup_brand_item .item {
		width: calc((100% - 15px) / 2 );
		margin: 0 15px 15px 0;
	}
	.pickup_brand_item .item:nth-child(5n) {
		margin-right: 15px;
	}
	.pickup_brand_item .item:nth-child(2n),
	.pickup_brand_item .item:nth-child(10) {
		margin-right: 0;
	}
	.pickup_brand_item span.brand_name {
		font-size: 11px;
		text-align: center;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}
	.pickup_brand_item a span.brand_name::before,
	.swiper1 .swiper-slide a span.brand_name::before {
		width: 20px;
		margin: 54px 0 0;
	}
	.pickup_brand_item a span.brand_name::after,
 	.swiper1 .swiper-slide a span.brand_name::after {
		width: 6px;
		height: 6px;
		margin: 60px 0 0;
		margin-right: -11px;
	}
}

/* =====================
バイヤー注目ブランド
===================== */
.buyer_hotbrand {
	margin: 0 auto;
	max-width: 1200px; 
}
.buyer_hotbrand .ttl {
	width: 100%;
	margin: 0 auto 30px;
	font-family: "Century Gothic", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 24px;
	letter-spacing: 2px;
	text-align: center;
}
.buyer_hotbrand .ttl span {
	display: block;
	font-size: 18px;
	padding: 10px 0;
}
.buyer_hotbrand h3 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}
@media screen and (max-width: 768px) {
	.buyer_hotbrand .ttl {
		width: 100%;
		margin: 0 auto 10px;
		font-size: 16px;
		letter-spacing: 1px;
	}
	.buyer_hotbrand .ttl span {
		font-size: 12px;
		padding: 2px 0;
	}
}

/* =====================
スライダー
=====================*/
.swiper-container {
	margin: 0;
	position: relative;
	overflow: hidden;
}
.swiper-pagination-bullet {
	background-color: #333;
	height: 10px;
	width: 10px;
	margin: 50px 10px 0!important;
}
.swiper-pagination1 {
	text-align: center;
}
@media screen and (max-width: 768px) {
	.swiper-pagination-bullet {
		height: 7px;
		width: 7px;
		margin: 20px 10px 0!important;
	}
}

/* バイヤーピックブランドスライダー */
.swiper1 {
	margin: 0 auto;
	padding: 50px 0;
	border-top: 1px solid #000;
}
.swiper1 .swiper-wrapper {
	transition-timing-function: linear;
}
.swiper1 .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	position: relative;
}
.swiper1 .swiper-slide span.brand_name {
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
}
.swiper1 .swiper-slide span.mask {
	display: block;
	line-height: 0;
	overflow: hidden;
}
.swiper1 .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	filter: brightness(0.7);
	transition: all 0.2s linear;
}
.swiper1 .swiper-slide a:hover img {
	transform: scale(1.05);
	filter: brightness(1);
	transition: all 0.2s linear;
}
.swiper1 .swiper-slide a:hover {
	opacity: 1;
}

.swiper1 [class^="swiper-button-"]::after{
    content: "";
}
.swiper1 .swiper-button-next,
.swiper1 .swiper-button-prev {
	top: 25px;
	background: none;
}
.swiper1 .swiper-button-prev {
	left: auto;
	right: 50px;
}
.swiper1 .swiper-slide a span.brand_name::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	position: absolute;
	width: 30px;
	height: 1px;
	background: #fff;
	margin: 56px 0 0;
	transition: all 0.2s linear;
}
.swiper1 .swiper-slide a span.brand_name::after {
	content: '';
	width: 8px;
	height: 8px;
	border: 1px solid #fff;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	transform-origin: top right;
	position: absolute;
	right: 50%;
	margin: 65px 0 0;
	margin-right: -17px;
	box-sizing: border-box;
}
.dli-arrow-left,
.dli-arrow-right {
	display: inline-block;
	vertical-align: middle;
	color: #000;
	line-height: 1;
	position: relative;
	width: 20px;
	height: 2px;
	background: currentColor;
}
.dli-arrow-left::before,
.dli-arrow-right::before {
	content: '';
	width: 7px;
	height: 7px;
	border: 2px solid currentColor;
	border-right: 0;
	border-bottom: 0;
	transform: rotate(-45deg);
	transform-origin: top left;
	position: absolute;
	top: 50%;
	left: -1px;
	box-sizing: border-box;
}
.dli-arrow-right::before {
	border: 2px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	transform-origin: top right;
	left: auto;
	right: -1px;
}

@media screen and (max-width: 768px) {
	.swiper1 {
		margin: 5px auto;
		padding: 40px 0 0;
	}
	.swiper1 .swiper-wrapper {
		justify-content: flex-start;
	}
	.swiper1 .swiper-slide span.brand_name {
		font-size: 11px;
		text-align: center;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}
	.swiper1 .swiper-button-next,
	.swiper1 .swiper-button-prev {
		top: 25px;
		right: 0px;
	}
	.swiper1 .swiper-button-prev {
		left: auto;
		right: 35px;
	}
	.swiper1 .swiper-slide a span.brand_name::before {
		width: 20px;
		margin: 54px 0 0;
	}
 	.swiper1 .swiper-slide a span.brand_name::after {
		width: 6px;
		height: 6px;
		margin: 60px 0 0;
		margin-right: -11px;
	}
}


/* =====================
contents
===================== */
.contents {
	width: 80%;
	margin: 50px auto;
}
.contents h3.title {
	margin: 0 0 50px;
	font-size: 30px;
}

.w100 {
	width: 100%;
}
.bg_gray {
	background: #efefef;
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	padding: 100px 0;
}
@media screen and (max-width: 768px) {
	.contents {
		width: 90%;
		margin: 30px auto;
	}
	.contents h3.title {
		font-size: 18px;
		margin: 0 auto;
	}
	.bg_gray {
		padding: 40px 0;
	}
}


/* =====================
買取実績
===================== */
.kaitori_achieve {
	margin: auto;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 40px 0;
}
.kaitori_achieve h2.title {
	width: 100%;
	font-size: 24px;
	text-align: center;
	letter-spacing: 1px
}
.kaitori_achieve .item {
	width: calc((100% - 160px) / 5 );
	display: block;
	margin: 20px 40px 40px 0;
}
.kaitori_achieve .item:nth-of-type(5n) {
	margin-right: 0;
}
.kaitori_achieve .item:nth-of-type(n+6) {
	display: none;
}
.kaitori_achieve .item figure {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	width: 100%;
	background: #fff;
	border: 1px solid #000;
}

.kaitori_achieve figure img {
	width: 80%;
	padding: 10% 0;
}
.kaitori_achieve .item .detail {
	margin: 10px 0;
	font-size: 12px;
}
.kaitori_achieve .detail .kai {
	display: none;
}
@media screen and (max-width: 768px) {
	.kaitori_achieve {
		display: block;
		padding: 0;
		border: none;
	}
	.kaitori_achieve h2.title {
		font-size: 18px;
	}
	.kaitori_achieve .item {
		display: flex;
		width: 100%;
		margin: 20px 0;
	}
	.kaitori_achieve .item figure {
		width: 40%;
	}
	.kaitori_achieve .item .detail {
		width: 60%;
		margin: 0 0 0 10px;
		font-size: 11px;
	}
}


/* =====================
MORE ボタン
===================== */
.more_link {
	width: 100%;
	text-align: right;
}
.more_link a {
	position: relative;
	display: inline-block;
	margin: 0 50px 0 0;
	color: #000;
	text-decoration: none;
	outline: none;
	font-size: 24px;
	font-weight: bold;
}
.more_link span {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	position: relative;
	width: 40px;
	height: 2px;
	background: #000;
	margin: 0 0 0 15px;
	transition: all 0.2s linear;
}
.more_link span::before {
	content: '';
	width: 10px;
	height: 10px;
	border: 2px solid #000;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	transform-origin: top right;
	position: absolute;
	top: 50%;
	right: -1px;
	box-sizing: border-box;
}
.more_link a:hover {
	opacity: 1;
}
.more_link a:hover span {
	width: 60px;
	margin-right: -20px;
}
@media screen and (max-width: 768px) {
	.more_link a {
		font-size: 16px;
		margin: 0;
	}
	.more_link a:hover span {
		width: 40px;
		margin-right: 0;
	}
}

/* =====================
ジャンルボックス
===================== */
.genre_box {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	width: 80%;
	max-width: 1200px;
	margin: 100px auto;
	font-family: "Century Gothic", sans-serif;
}
.genre_box div {
	width: 100%;
	text-align: center;
	font-size: 25px;
	font-weight: bold;
	letter-spacing: 2px;
}
.genre_box h3 {
	width: calc((100% - 150px) /4);
	margin: 0;
	padding: 0;
}
.genre_box a {
	color: #000;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	font-size: max(0.9vw,14px);
}
.genre_box figure {
	margin: 0;
	position:relative;
}
.genre_box img {
	width :100%;
	transition: 0.3s;
}
.genre_box span {
	display: block;
	margin: 10px 0;
}
.genre_box figure::before,
.genre_box figure::after {
	content: "";
	position: absolute;
	display: block;
	box-sizing: border-box;
	width: 0;
	height: 0;
	opacity: 0;
	transition: width 0.3s, height 0.3s, opacity 0.3s;
}
.genre_box figure::before {
	top: 0;
	left: 0;
	border-top: 2px solid #000;
	border-left: 2px solid #000;
	margin: 1.5% 0 0;
}
.genre_box figure::after {
	right: 0;
	bottom: 0;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	margin: 0 0 4.5%;
}
.genre_box a:hover figure::before,
.genre_box a:hover figure::after {
	width: 30%;
	height: 30%;
	opacity: 1;
}
.genre_box a:hover img {
	transform: scale(.9);
}
.genre_box a:hover {
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.genre_box {
		gap: 15px;
		width: 100%;
		margin: 50px auto;
	}
	.genre_box div {
		font-size: min(5vw,16px);
		letter-spacing: 1px;
		margin: 10px 0;
	}
	.genre_box h3 {
		width: calc((100% - 15px) /2);
	}
	.genre_box a {
		font-size: min(3.5vw,16px);
	}
	.genre_box span {
		margin: 5px 0;
	}
	.genre_box a:hover figure::before,
	.genre_box a:hover figure::after,
	.genre_box a:active figure::before,
	.genre_box a:active figure::after {
		width: 30%;
		height: 30%;
		opacity: 1;
	}
	.genre_box a:hover img,
	.genre_box a:active img {
		transform: scale(.9);
	}
}

/* =====================
買取方法
===================== */
.kaitori_method {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto;
	max-width: 1200px;
}
.kaitori_method div {
	width: calc(80% / 3 );
	text-align: center;
	position: relative;
}
.kaitori_method a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.kaitori_method figure {
	margin: 0 auto 30px;
	width: 100%;
}
.kaitori_method figure span {
	width: 100%;
	display: inline-block;
	border-radius: 50%;
	background: #efefef;
}
.kaitori_method figure img {
	display: block;
	width: 100%;
	border-radius: 50%;
}
.kaitori_method h3 {
	margin: 0 auto;
	font-size: 26px;

	letter-spacing: 4px;
	text-align: center;
}
.kaitori_method p {
	width: 80%;
	margin: 20px auto;
	font-size: 14px;
	line-height: 180%;
	letter-spacing: 1px;
	text-align: left;
}
.kaitori_method .more_link {
	width: 100%;
	text-align: center;
}
.kaitori_method .more_link {
	margin: 0;
	font-size: 20px;
	font-weight: bold;
}
.kaitori_method .more_link span {
	width: 24px;
	height: 2px;
	margin: 0 -24px 0 10px;
}
.kaitori_method .more_link span::before {
	width: 7px;
	height: 7px;
}
.kaitori_method a:hover {
	opacity: 1;
}
.kaitori_method div:hover .more_link span {
	margin: 0 -34px 0 10px;
	width: 34px;
	right: -0px;
}
.kaitori_method div:nth-child(2) img.fadein-y-bottom {
	transition: 2s ease .4s;
}
.kaitori_method div:nth-child(3) img.fadein-y-bottom {
	transition: 2s ease .8s;
}
@media screen and (max-width: 768px) {
	.kaitori_method {
		width: 100%;
		display: block;
	}
	.kaitori_method div {
		width: 90%;
		margin: 0 auto 70px;
	}
	.kaitori_method figure {
		margin: 0 auto -20px;
		width: 80%;
	}
	.kaitori_method h3 {
		text-align: center;
		font-size: 20px;
		letter-spacing: 2px;
		margin: 0 auto 10px;
	}
	.kaitori_method p {
		margin: 10px auto;
		font-size: 11px;
	}
	.kaitori_method .more_link a {
		font-size: 16px;
	}
	.kaitori_method div:nth-child(2) img.fadein-y-bottom,
	.kaitori_method div:nth-child(3) img.fadein-y-bottom {
		transition: 2s;
	}
}




/* ===　↓ここからVINTAGEページ用↓　=== */

/* =====================
VINTAGEページ用のフォント上書き
===================== */
.pickup_brand .ttl-vintage,
.buyer_hotbrand .ttl-vintage {
	font-family: "adobe-hebrew",'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}

/* =====================
vintage contents
===================== */
.vintage_contents {
	padding: 80px 0;
}
.vintage_contents h2 {
	font-family: "adobe-hebrew", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 50px;
	letter-spacing: 4px;
	margin: 0 auto;
	line-height: 2;
	text-align: center;
}
.vintage_contents h2 span {
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	display: block;
	letter-spacing: 0;
	font-size: 20px;
}
.vintage_contents p {
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	margin: 50px auto;
	line-height: 2;
}
@media screen and (max-width: 768px) {
	.vintage_contents {
		padding: 20px 0;
	}
	.vintage_contents h2 {
		font-size: 24px;
		line-height: 1.85;
		letter-spacing: 2px;
	}
	.vintage_contents h2 span {
		font-size: 12px;
	}
	.vintage_contents p {
		margin: 30px auto;
		line-height: 1.6;
		font-size: 11px;
		letter-spacing: 0;
	}
}

/* =====================
コンテンツ幅
===================== */
.width600,
.width800,
.width1000 {
	display: block;
	margin: auto;
	width: 600px;
}
.width800 { width: 800px; }
.width1000 { width: 1000px; }
@media screen and (max-width: 768px) {
	.width600,
	.width800,
	.width1000 {
		width: 85%;
	}
}

/* =====================
背景デザイン
===================== */
.bg_p {
	background: #f4e9e9;
	width: 100vw!important;
	margin: 0 calc(50% - 50vw);
	padding: 100px 0 150px;
}
.bg_p_d1 {
	width: 1000px;
	margin: 50px auto;
	padding: 50px 0;
	background: #f4e9e9;
	position: relative;
	z-index: 0;
}
.bg_p_d1:after {
	content: "";
	position: absolute;
	border: 1px solid #000;
	top: 15px;
	bottom: 15px;
	left: 15px;
	right: 15px;
	z-index: -1;
}
.bg_p_d2 {
	width: 800px;
	margin: 50px auto;
	padding: 50px 0;
	background: #f4e9e9;
	border: 15px solid #dcd5cf;
}
@media screen and (max-width: 768px) {
	.bg_p {
		padding: 40px 0;
	}
	.bg_p_d1 {
		width: 100%;
		margin: 40px auto;
		padding: 20px 0;
	}
	.bg_p_d1:after {
		top: 10px;
		bottom: 10px;
		left: 10px;
		right: 10px;
	}
	.bg_p_d2 {
		width: 100%;
		margin: 40px auto;
		padding: 20px 0;
		border: none;
		position: relative;
	}
	.bg_p_d2:after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: block;
		border: 10px solid #dcd5cf;
		box-sizing: border-box;
	}
}

/* =====================
スライダー
===================== */
.slider-thumbnail,
.slider-thumbnail-images {
	max-width: 800px;
	width: 100%;
	margin: 10px auto;
}
.slider-thumbnail-images .swiper-slide {
	filter: brightness(50%);
	transition: 1s;
	width: calc(100% / 3);
}
.slider-thumbnail-images .swiper-slide.swiper-slide-thumb-active {
	filter: brightness(1);
	border: none!important;
}
.slider-thumbnail .swiper-slide img,
.slider-thumbnail-images .swiper-slide img {
	height: auto;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.slider-thumbnail,
	.slider-thumbnail-images {
		width: 85%;
		margin: 2px auto;
	}
}

/* =====================
Item introduction
===================== */
.Item_introduction {
	margin: 30px auto;
	width: 600px;
}
.Item_introduction img {
	display: block;
	width: 160px;
	margin: 20px auto;
}
.Item_introduction .ttl {
	display: block;
	position: relative;
	margin-bottom: 0;
	padding: 10px 0 5px;
	border-top: 2px solid;
	border-bottom: 2px solid;
	font-family: "adobe-hebrew", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 26px;
	text-align: center;
	letter-spacing: 1px
}
.Item_introduction .ttl::before,
.Item_introduction .ttl::after {
	content: '';
	position: absolute;
	top: -5px;
	left: 0rem;
	right: 0rem;
	border-bottom: 1px solid;
}
.Item_introduction .ttl::after {
	top: 0;
	bottom: -5px;
}
@media screen and (max-width: 768px) {
	.Item_introduction {
		margin: 20px auto;
		width: 85%;
	}
	.Item_introduction img {
		width: 110px;
		margin: 15px auto;
	}
	.Item_introduction .ttl {
		padding: 8px 0 4px;
		font-size: 18px;
	}
}

/* =====================
CATEGORY
===================== */
.category_item {
	display: flex;
	justify-content: center;
	margin: 50px auto;
	width: 80%;
}
.category_item img {
	display: block;
	/*width: 270px;*/
	width: 15vw;
	filter: grayscale(100%);
	transition: .5s;
}
.category_item a {
	margin: 0 10px;
	text-align: center;
}
.category_item a span {
	display: inline-block;
	font-family: "adobe-hebrew", sans-serif;
	position: relative;
	font-size: 16px;
}
.category_item a span::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
	bottom: -2px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
}
.category_item a:hover {
	opacity: 1;
}
.category_item a:hover img {
	filter: none;
}
.category_item a:hover span::after {
	transform: scale(1, 1);
}
@media screen and (max-width: 768px) {
	.category_item {
		margin: 30px auto;
		width: 90%;
	}
	.category_item img {
		width: 28vw;
		margin: auto;
	}
	.category_item a {
		margin: 0;
	}
	.category_item a span {
		font-size: 10px;
		letter-spacing: 0;
	}
}

/* =====================
カード型スライダー
===================== */
.card-slider {
	width: 100vw;
	margin: 0 calc(50% - 50vw) 100px;
	overflow: visible;
	position: relative;
	z-index: 10;
}
.card-slider .swiper-slide {
	padding: 0 0 80px;
	border-radius: 20px;
	background: #83897d;
	box-shadow: 0 8px 8px 0 rgb(0 0 0 /40%);
}
.card-slider .swiper-slide:after {
	content: "";
	position: absolute;
	border: 5px solid #fff;
	border-radius: 20px;
	top: -1px;
	bottom: -1px;
	left: -1px;
	right: -1px;
	z-index: -1;
}
.card-slider img {
	width: 95%;
	display: block;
	margin: 20px auto;
	vertical-align: bottom;
}
@media screen and (max-width: 768px) {
	.card-slider {
		width: 70vw;
		margin: 0 calc(50% - 35vw) 70px;
		overflow: visible;
	}
	.card-slider .swiper-slide {
		overflow: visible;
		border-radius: 15px;
		box-shadow: 0 3px 6px 0 rgb(0 0 0 /30%);
	}
	.card-slider .swiper-slide:after {
		border: 4px solid #fff;
		border-radius: 15px;
	}
	.card-slider img {
		width: 90%;
	}
}

/* =====================
アコーディオンメニュー
===================== */
.card-explanation-area {
	position: absolute;
	width: 100%;
	top: 77%;
}
.toggle-name {
	width: 90%;
	margin: auto;
	background: #fff;
	border: 1px solid #000;
	border-bottom: none;
	text-align: center;
	padding: 8px 0;
	font-size: 12px;
}
.toggle-name span {
	width: 90%;
	display: block;
	margin: auto;
}
.toggle-button {
	width: 90%;
	margin: auto;
	display: flex;
	align-items: center;
	cursor: pointer;
	border: 1px solid #000;
	background: #fff;
	color: #000;
	font-size: 12px;
	text-align: center;
	transition: transform 0.3s;
}
.toggle-button .text {
	width: 75%;
}
.dli-plus, .dli-minus {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	line-height: 1;
	width: 25%;
	height: 36px;
	position: relative;
	border-left: 1px solid currentColor; /* 枠線追加 */
}
/* ＋ の横線 */
.dli-plus::before, .dli-minus::before {
	content: '';
	position: absolute;
	width: 12px;
	height: 1px;
	background: currentColor;
}
/* ＋ の縦線（dli-minus には適用しない） */
.dli-plus::after {
	content: '';
	position: absolute;
	height: 12px;
	width: 1px;
	background: currentColor;
}
.toggle-button:hover .dli-plus {
	background-color: #000;
}
.toggle-button:hover .dli-plus::before,
.toggle-button:hover .dli-plus::after {
	background-color: #fff;
}
.explanation {
	display: none;
	width: 90%;
	margin: auto;
	padding: 20px 0;
	border: 1px solid #000;
	border-top: none;
	background-color: #fff;
	font-size: 12px;
}
.explanation span {
	width: 90%;
	display: block;
	margin: auto;
}
@media screen and (max-width: 768px) {
	.card-explanation-area {
		top: 75%;
		letter-spacing: 0;
	}
	.toggle-name {
		font-size: 10px;
	}
	.toggle-name span {
		width: 95%;
	}
	.toggle-button {
		font-size: 10px;
	}
	.dli-plus, .dli-minus {
		height: 30px;
	}
	.dli-plus::before, .dli-minus::before {
		width: 10px;
	}
	.dli-plus::after {
		height: 10px;
	}
	.explanation {
		padding: 15px 0;
		font-size: 11px;
	}
}