@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

/* リスト要素をリセットする ---------------- */
dl,dt,dd,ol,ul,li	{
	list-style-position: outside;
	list-style-type: none;
}
/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* floatの解除 ------------- */
.fbox{
	clear:both;
	_display: inline-block;
	min-height: 1%;
}
.fbox:after {
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	content: ".";
	line-height: 0;
}



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

	スタイルの設定

=================================================================== */
html {
	font-size:14px;
}
body{
	color:#272727;
	line-height:1.5;
	margin:0;
	background:#ffffff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}
#contents {
	box-sizing: border-box;
}
#contents * {
	box-sizing: border-box;
	min-height:0;
	min-width : 0;
}
img {
	max-width: 100%;
}



/* ---------------- 上書き ------------- */
strong {font-weight:bold;}
p,li,dl,dt,dd {line-height:1.5;}
.red{	color:#F40027;}
.red2{	color:#DC0000;}
.blue{	color:blue;}
.blue{	color:blue;}
.txt-left {	text-align:left;}
.txt-right {	text-align:right;}


.bg {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(51,51,51,0.3);
	display: none;
}

/* ===================================================================
	通常のリンク
=================================================================== */
a:link {
	color: #272727;
	text-decoration: none;
}
a:visited {
	color: #272727;
	text-decoration:none;
}
a:hover {
	color: #272727;
	text-decoration:none;
	opacity: 0.7;
}
a:active {
	color: #272727;
	text-decoration:none;
}
/* メインエリアはリンクにアンダーライン */
/*#main a{
	text-decoration:underline;
}*/

.sp_login_img,
#btn_sp_menu {
	display: none;
}

/* ===================================================================
	#header
	ヘッダー
=================================================================== */

header {
	height: 80px;
	padding: 0;
}
/* ログイン後のヘッダー */
.page_header {
	padding: 0 20px;
	background: #F1EFEA;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* ログインのヘッダー */
.header_login {
	padding: 0 20px;
	display: flex;
	align-items: center;
}
.header_login .header_logo {
}
.header_logo a {
	display: block;
	line-height: 1;
	vertical-align: middle;
}
.header_logo img {
	vertical-align: middle;
	line-height: 1;
}

#gmenu_nav_sp {
	display: none;
}

/*ヘッダーメニュー ------------- */
.header_menu {
	display: flex;
	height: 100%;
}
.gmenu {
	margin-right: 50px;
}

.gmenu ul {
	display: flex;
	justify-content: space-between;
	height: 100%;
}

.gmenu ul li a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 1.5em;
	text-align: center;
	color: #333333;
	position: relative;
}
.gmenu ul li a:hover:after {
	content: '';
	width: 100%;
	height: 5px;
	background: #A99245;
	position: absolute;
	left: 0;
	bottom: 0;
}
.gmenu ul li a.active:after {
	content: '';
	width: 100%;
	height: 5px;
	background: #A99245;
	position: absolute;
	left: 0;
	bottom: 0;
}

/*ユーザー名・ドロップダウンメニュー ------------- */
.header_prof {
	display: flex;
	cursor: pointer;
	position: relative;
	align-items: center;
}
.header_prof_name {
	padding: 0 10px;
}
.header_prof_name i {
	margin-left: 20px;
}

.submenu {
	display: none;
}
.submenu.open {
	display: block;
	width: 13em;
	min-width: 100%;
	position: absolute;
	right: 0;
	left: auto;
	top: 100%;
	background: #FBFBFA;
	border: 1px solid #E4E2DB;
}
.submenu li {
	border-bottom: 1px solid #E4E2DB;
}
.submenu a {
	display: block;
	padding: 0.8em 1em;
	color: #333;
}



/* ===================================================================
	#footer
	フッター
=================================================================== */

footer {
	padding: 20px;
}

/* ログイン後のフッター */
.page_footer {
	background: #EFEDE8;
}

address {
	margin: 0;
	text-align: center;
	font-style: normal;
	font-size: 0.8rem;
	font-weight: 500;
}



/* タブレット */
@media ( max-width : 960px ){
	.header_logo img {
		width: 250px;
	}

	.page_header {
		padding: 0 0 0 20px;
	}
	
	.gmenu {
		margin-right: 10px;
	}
	.gmenu ul li a {
		padding: 0 1em;
		font-size: 0.9em;
	}
	
	/*ユーザー名・ドロップダウンメニュー ------------- */
	.header_prof {
		font-size: 0.9em;
	}
	.header_prof_name {
		padding: 0 1em;
	}
	.header_prof_name i {
		margin-left: 10px;
	}
	
	.submenu.open {
		width: 10em;
	}
	
	.submenu a {
		font-size: 0.9em;
		padding: 15px;
	}
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	header {
		height: 50px;
	}
	.header_logo {
		vertical-align: middle;
		line-height: 1;
	}
	.header_logo img {
		width: 152px;
	}
	.header_menu {
		display: none;
	}
	.page_header {
		padding: 10px 20px;
	}
	
	/*スマホ用メニュー ------------- */
	/*
	#gmenu_nav_sp_head ul li #btn_sp_menu {
		display: block;
		height: 100%;
		padding: 0;
		font-size: 8px;
		text-align: center;
	}*/
	#btn_sp_menu,
	#btn_sp_menu span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	#btn_sp_menu {
		position: relative;
		width:5.5em;
		height: 34px;
		font-size: 6px;
	}
	#btn_sp_menu span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #333333;
	}
	#btn_sp_menu span:nth-of-type(1) {
		top: 0;
	}
	#btn_sp_menu span:nth-of-type(2) {
		top: 7px;
	}
	#btn_sp_menu span:nth-of-type(3) {
		top: 14px;
	}
	#btn_sp_menu p {
		font-size: 6px;
		position: absolute;
		bottom: 0;
		right: 0;
		left: 0;
		text-align: center;
		font-weight: 400;
	}
	
	#gmenu_nav_sp {
		display: block;
		transition: all 0.2s;
		transform: translate(300px);
		width: 300px;
		height: 100%;
		background: #FBFBFA;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	#gmenu_nav_sp.open {
		transform: translate(0);
	}
	.gmenu_sp_menu_close {
		text-align: right;
	}
	.gmenu_sp_close {
		display: inline-block;
		padding: 5px 10px 10px;
		text-align: center;
	}
	
	.sp_close_btn {
		display: block;
		font-size: 6px;
	}
	
	.close_txt {
		padding-top: 0px;
		display: block;
	}
	.close_icon {
		display: block;
		position: relative;
		font-size: 6px;
		width: 5em;
		height: 5em;
	}
	.close_icon:before,
	.close_icon:after {
		content: '';
		display: block;
		position: absolute;
		top: 12px;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: #272727;
	}
	.close_icon:before {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.close_icon:after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.gmenu_nav_sp_user_name {
		text-align: center;
		font-size: 0.9rem;
		padding-bottom: 10px;
	}
	#gmenu_nav_sp ul {
		border-top: 1px solid #E4E2DB;
	}
	#gmenu_nav_sp li {
		border-bottom: 1px solid #E4E2DB;
	}
	#gmenu_nav_sp li a {
		display: block;
		padding: 15px;
		font-size: 12px;
		color: #333333;
	}
	
	#gmenu_nav_sp ul li ul {
		margin-left: 15px;
	}
	#gmenu_nav_sp ul li ul li {
		border-top: none;
	}
	#gmenu_nav_sp ul li ul li:last-child {
		border-bottom: none;
	}
	#gmenu_nav_sp ul li ul li a {
		border-top: none;
		padding: 10px;
		font-size: 90%;
	}
	
	/*パンくずリスト ------------- */
	.breadcrumb {
		margin-bottom: 20px;
	}
}

/* スマホ用（縦） */
@media screen and (max-width: 480px) {
}







/* ===================================================================
	共通CSS
=================================================================== */


.mainarea {
	max-width: 1000px;
	width: 94%;
	margin: 0 auto;
	padding: 40px 0 100px;
}



/* フォーム用 */
input[type="text"],
input[type="password"],
input[type="email"] {
	width: 100%;
	height: 2.6em;
	line-height: 2.6em;
	padding: 0 0.5em;
	border: solid 1px #D7CDC0;
	outline: none;
}

textarea {
	width: 100%;
	height: 150px;
	border: 1px solid #D7CDC0;
	padding: 0.5em;
	font-family: Noto Sans Japanese,Noto Sans JP,-apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial,  sans-serif;
}

select {
	width: 100%;
	padding: 0.5em;
	border: solid 1px #D7CDC0;
}

.btn {
	text-align: center;
}

input.btn_submit,
button.btn_submit {
	display: inline-block;
	margin: 0 1em;
	padding: 1em 1.5em;
	background: #AD9645;
	color: #fff;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-family: 'Noto Serif JP', serif;
	outline: none;
}

/*パンくずリスト ------------- */
.breadcrumb {
	margin: 0 0 40px;
	padding: 0;
}

.breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
}

.breadcrumb ul li {
	position: relative;
	font-size: 12px;
	color: #333333;
}

.breadcrumb ul li a {
	color: #333333 !important;
}

.breadcrumb ul li::after {
	content: "＞";
	padding-left: 0.5em;
	padding-right: 0.5em;
}

.breadcrumb ul li:last-child::after {
	content: none;
}

.item_list_inner {
	max-width: 1000px;
	margin: 0 auto; 
	width: 94%;
}





/* 検索用サイド ----------------------------- */
#search_btn_open,
#search_btn_close {
	width: 70px;
	height: 60px;
	margin-top: 100px;
	display: none;
	border-radius: 0 8px 8px 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;
	line-height: 1;
	cursor: pointer;
	box-shadow: 5px 0px 5px rgba(0,0,0,0.15);
}
#search_btn_open {
	background: #6E6858;
	color: #fff;
}
#search_btn_close {
	background: #EDEBE6;
	color: #6E6858;
}
#search_btn_open.active,
#search_btn_close.active {
	display: flex;
}
.search_btn_icon {
	margin-bottom: 5px;
	font-size : 20px;
}
.search_btn_txt {
	font-size : 12px;
}

#search_nav {
	display: flex;
	height: 100%;
	transition: all 0.2s;
	transform: translateX(-250px);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
	
}
#search_nav.open {
	transform: translateX(0);
}
#search_nav_detail {
	width: 250px;
	height: 100%;
	padding: 10px 1em;
	background: #EDEBE6;
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	box-shadow: 5px 0px 5px rgba(0,0,0,0.15);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
#search_nav_detail a {
	color: #272727;;
}
.search_txt {
	margin-bottom: 20px;
}
.search_h2 {
	padding: 1em;
	font-size: 1.4rem;
	font-weight: 500;
	background: #D2CEC3 url(../img/search_title_bk.png) no-repeat right center;
}
.search_h3 {
	margin: 10px 0;
	padding-left: 20px;
	font-size: 1.1rem;
	font-weight: 500;
	color: #6E6858;
	position: relative;
}
.search_h3:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 10px;
	height: 1px;
	background: #6E6858;
}
.search_cate_list {
	margin: 0 0 1em 20px;
}
.search_cate_list li {
	margin-bottom: 0.3em;
}



/* タブレット */
@media ( max-width : 960px ){
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	.mainarea {
		padding: 20px 0 50px;
	}
	
	.breadcrumb {
		margin-bottom: 20px;
	}
}

/* スマホ用（縦） */
@media screen and (max-width: 480px) {
}


/* ===================================================================
	ログイン
=================================================================== */

.login_main {
	position: relative;
}

/* トップ画像 ------------- */
.login_img img {
	width: 100%;
}

/* ログインフォーム ------------- */
.top_login {
	width: 300px;
	padding: 30px;
	position: absolute;
	top: 50% ;
	right: 50px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background: rgba(255,255,255,0.95);
}
.login_title {
	text-align: center;
	font-size: 24px;
	margin-bottom: 15px;
	font-weight: 600;
}

.form {
	margin-bottom: 30px;
}
dl.form_dl {
	margin-bottom: 15px;
}
dl.form_dl dt {
	margin-bottom: 5px;
	font-weight: 600;
}
.login_submit {
	margin-top: 30px;
	text-align: center;
}

.login_btn {
	color: #fff;
	font-size: 14px;
	background: #9B8262;
	padding: 10px 0;
	width: 160px;
	outline: none;
	border: none;
	font-family: 'Noto Serif JP', serif;
	cursor: pointer;
	font-weight: 600;
}

.forgot_link_area {
	text-align: center;
}

.forgot_link {
	font-size: 12px;
	font-weight: 500;
	text-decoration: underline !important;
}

/* タブレット */
@media ( max-width : 960px ){
	.login_img {
		display: none;
	}
	/* トップ画像 ------------- */
	.sp_login_img {
		display: block;
	}
	.sp_login_img img {
		width: 100%;
	}
	.top_main {
		position: relative;
	}
	
	/* ログインフォーム ------------- */
	
	.top_login {
		max-width: 610px;
		width: 94%;
		margin: 40px auto 0;
		position: relative;
		top: 0;
		right: 0;
		background: #EFEBE6;
		transform: none;
		-webkit-transform: none;
		-ms-transform: none;
	}

}

/* スマホ（横） */
@media screen and (max-width: 600px) {

}

/* スマホ用（縦） */
@media screen and (max-width: 480px) {

}




/* ===================================================================
	ログイン後トップ
=================================================================== */
.tab_choice {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	border-bottom: 1px solid #E0DED7;
}
.tab_choice li {
	width: 28%;
	margin: 0 5px -1px;
	padding: 1em 2em;
	cursor: pointer;
	border:1px solid #ffffff;
	border-bottom: 1px solid #E0DED7;
	text-align: center;
}
.tab_choice li:hover {
	background: #F3F2EF;
}
.tab_choice li.is_active {
	border:1px solid #E0DED7;
	border-bottom: 1px solid #fff;
}
.tab_panel > div {
	display: none;
	padding: 10px;
}
.tab_panel > div.is_show {
	display: block;
}

.tab_cate_list {
	display: flex;
	flex-wrap: wrap;
}
.tab_cate_list li {
	width: 31%;
	margin: 0 calc(7% / 6) calc(7% / 3);
}
.tab_cate_list li a {
	display: block;
	padding: 1.5em 0.5em;
	text-align: center;
	background: #AB9445 url(../img/cate_bk.png) no-repeat right center;
	background-size: contain;
	color: #fff;
	font-size: 1.6em;
}
/* タブレット */
@media ( max-width : 960px ){
	.tab_choice li {
		width: auto;
		margin: 0 5px -1px;
		padding: 0.5em 0.8em;
	}
	.tab_cate_list li a {
		font-size: 1.4rem;
	}
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	.tab_choice li {
		margin: 0 2px -1px;
		font-size: 0.8rem;
	}
	
	.tab_cate_list li {
		width: 46%;
		margin: 0 2% 4%;
	}
	.tab_cate_list li a {
		font-size: 1rem;
	}
}

/* スマホ用（縦） */
@media screen and (max-width: 480px) {
}



/* ===================================================================
	商品一覧
=================================================================== */
/*仏像一覧 ------------- */
.buddhist_statue_list_content {
	margin-bottom: 45px;
}

.list_title {
	margin-bottom: 40px;
	padding-bottom: 20px;
	text-align: center;
	font-size: 22px;
	background: url(../img/title_bg.png)no-repeat center bottom;
	font-weight: 600;
}

.buddhist_statue_list {
	margin-bottom: 60px;
	padding-bottom: 50px;
	border-bottom: 1px solid #E0DED7;
}

.buddhist_statue_list ul {
	display: flex;
	flex-wrap: wrap;
}
.buddhist_statue_list ul li {
	width: 22%;
	margin-right: 4%;
	padding-bottom: 40px;
}
.buddhist_statue_list ul li:nth-child(4n) {
	margin-right: 0;
}

/* 低価格帯 */
.buddhist_statue_list_lowprice {
}

.buddhist_statue_list_lowprice ul {
	display: flex;
	flex-wrap: wrap;
}
.buddhist_statue_list_lowprice ul li {
	width: 14%;
	margin-right: 3.2%;
	padding-bottom: 40px;
}
.buddhist_statue_list_lowprice ul li:nth-child(6n) {
	margin-right: 0;
}

.list_img {
	margin: 0 auto 10px auto;
	position: relative;
}

/* 商談中 */
.list_img_syoudanchu {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}
.list_img_syoudanchu_txt {
	display: block;
	padding: 0.8em;
	text-align: center;
	color: #BA4145;
	border: 1px solid #BA4145;
	background: #fff;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1;
}

.buddhist_statue_list ul li h3 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	font-weight: 500;
}
.buddhist_statue_list_lowprice ul li h3 {
	font-size: 1rem;
	margin-bottom: 10px;
	font-weight: 500;
}

.price {
	text-align: right;
	font-size: 1.3rem;
	font-weight: 600;
	display: block;
}
.buddhist_statue_list_lowprice .price {
	font-size: 1.2rem;
}
.price span {
	font-size: 50%;
}

/*カタログ一覧 ------------- */

.catalog_list {
}
.catalog_list {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 40px;
}

.catalog_list li {
	width: 22%;
	margin-right: 4%;
	margin-bottom: 50px;
	text-align: center;
}
.catalog_list li:nth-child(4n) {
	margin-right: 0;
}

.catalog_img {
	margin-bottom: 15px;
}

.catalog_list li h3 {
	font-size: 1.3rem;
}


/* タブレット */
@media ( max-width : 960px ){
	/*仏像一覧 ------------- */
	.list_title {
		font-size: 1.3rem;
		margin-bottom: 30px;
	}
	.buddhist_statue_list ul li h3 {
		font-size: 1.1rem;
		margin-bottom: 5px;
	}
	.price {
		font-size: 15px;
	}
	.buddhist_statue_list_content {
		margin-bottom: 30px;
	}
	.buddhist_statue_list ul li {
	}
	.buddhist_statue_list_lowprice ul li {
		width: 18%;
		margin-right: 2.5%;
	}
	.buddhist_statue_list_lowprice ul li:nth-child(5n) {
		margin-right: 0;
	}
	.buddhist_statue_list_lowprice ul li:nth-child(6n) {
		margin-right: 2.5%;
	}
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	/*仏像一覧 ------------- */
	.list_title {
		padding-bottom: 10px;
	}
	.buddhist_statue_list ul li {
		width: 47%;
		margin-right: 6%;
	}
	.buddhist_statue_list ul li:nth-child(2n) {
		margin-right: 0;
	}
	
	.buddhist_statue_list_lowprice ul li {
		width: 22%;
		margin-right: 4%;
	}
	.buddhist_statue_list_lowprice ul li:nth-child(6n) {
		margin-right: 4%;
	}
	.buddhist_statue_list_lowprice ul li:nth-child(5n) {
		margin-right: 4%;
	}
	.buddhist_statue_list_lowprice ul li:nth-child(4n) {
		margin-right: 0;
	}
	
	
	
	
	.buddhist_statue_list ul li h3 {
		margin-bottom: 10px;
	}
	.buddhist_statue_list_content {
 	margin-bottom: 40px;
	}
	
	/*カタログ一覧 ------------- */
	.catalog_list {
	}
	.catalog_list li {
		width: 30%;
		margin-right: 5%;
		margin-bottom: 30px;
	}
	.catalog_list li:nth-child(4n) {
		margin-right: 5%;
	}
	.catalog_list li:nth-child(3n) {
		margin-right: 0;
	}
	.catalog_list li h3 {
		font-size: 1rem;
	}
	.catalog_img {
		margin-bottom: 10px;
	}
}

/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	.buddhist_statue_list_lowprice ul li {
		width: 31%;
		margin-right: 3.5%;
	}
	.buddhist_statue_list_lowprice ul li:nth-child(6n) {
		margin-right: 0;
	}
	.buddhist_statue_list_lowprice ul li:nth-child(5n) {
		margin-right: 3.5%;
	}
	.buddhist_statue_list_lowprice ul li:nth-child(4n) {
		margin-right: 3.5%;
	}
	.buddhist_statue_list_lowprice ul li:nth-child(3n) {
		margin-right: 0;
	}
	
	
	
}




/* ===================================================================
	商品詳細ページ
=================================================================== */

.sp_item_name,
.sp_br {
	display: none;
}


/*商品詳細トップ ------------- */

.item_detail {
	margin: 0 auto 150px;
	display: flex;
	justify-content: space-between;
}

.item_image_area {
	width: 50%;
	position: relative;
}

/* 商談中 */
.item_image_syoudanchu {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}
.item_image_syoudanchu_txt {
	display: block;
	padding: 1em 3em;
	text-align: center;
	color: #BA4145;
	border: 1px solid #BA4145;
	background: #fff;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1;
}

/*商品画像スライダー ------------- */

.item_img_slider {
	margin-bottom: 10px;
}
.item_img_slider .slick-slide {
	bottom: 0;
}
.item_img_slider .slick-track {
	bottom: 0;
}
.item_img {
/*	position: relative;*/
	position: relative;
}
.item_img img {
	margin: 0 auto;
}
.item_img_comment {
	width: 100%;
	padding: 10px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: rgba(255,255,255,0.9);
	font-size: 1.1rem;
}
/*
.hold {
	position: absolute;
	top: 0;
	width: 100%;
	background: rgba(0,0,0,0.5);
	height: 100%;
}

.hold p {
	text-align: center;
	color: #fff;
	padding: 15px 0;
	border: #fff solid 1px;
	font-size: 40px;
	width: 300px;
	margin: 50% auto 0 auto;
	font-weight: bold;
}
*/

/*サムネイル画像 ------------- */

.item_img_thumb {
	margin: 0 20px 20px;
}

.item_img_thumb .item_thumb {
	margin: 0;
	padding: 0 2px;
	opacity: 0.5;
}
.item_img_thumb .item_thumb img {
	width: 100%;
}
.slick-current .item_thumb {
	opacity: 1;
}

/* サムネイルのスライダー */
.slide_arrow {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 10px;
	height: 30px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);

	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
	z-index: 9999;
}
.prev_arrow {
	left: -20px;
}
.next_arrow {
	right: -20px;
}

/*360度ビュー確認ボタン ------------- */
.view_btn {
	display: block;
	color: #AD9645 !important;
	border: 1px solid #AD9645;
	text-align: center;
	padding: 10px 0;
	font-size: 1.1rem;
	font-weight: 600;
}

/*商品説明 ------------- */

.about_item_area {
	width: 42%;
}
.about_item_top {
	margin-bottom: 30px;
}
.item_name {
	font-size: 30px;
	color: #272727;
	margin-bottom: 30px;
	font-weight: 600;
}
.about_item_top p {
	margin-bottom: 20px;
	line-height: 1.8;
}

.item_price {
	font-size: 2rem;
	text-align: right;
	font-weight: 600;
}

.item_price span {
	font-size: 50%;
}

/*ボタンエリア ------------- */

.item_btn_area {
	margin-bottom: 30px;
}

/*取り置き依頼・サンプル発注ボタン ------------- */

.item_btn_top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.item_btn_top a {
	display: block;
	width: 49%;
	padding: 15px 0;
	text-align: center;
	color: #fff !important;
	background: #AD9645;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1;
}

/*商品発注ボタン ------------- */

.item_order_btn {
	display: block;
	margin-bottom: 30px;
	padding: 15px 0;
	text-align: center;
	color: #fff !important;
	background: #BA4145;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1;
}

/*PDFダウンロードボタン ------------- */

.pdf_dl_btn {
	display: block;
	color: #AD9645 !important;
	border: 1px solid #AD9645;
	text-align: center;
	padding: 10px 0;
	font-size: 1.1rem;
	font-weight: 600;
}

/* 商談中　ボタンの代わりに出る */
.item_syoudanchu {
	display: block;
	margin-bottom: 30px;
	padding: 15px 0;
	text-align: center;
	color: #BA4145;
	border: 1px solid #BA4145;
	background: #fff;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1;
}

/*特長 ------------- */

.features {
	margin-bottom: 20px;
}

.about_item_btm h4 {
	margin-bottom: 5px;
	font-size: 1.3rem;
	color: #AD9645;
	font-weight: 600;
}

.features ul li {
	list-style: disc;
	margin-left: 20px;
}

.features ul li,
.spec ul li {
	margin-bottom: 5px;
}

.features ul li:last-child,
.spec ul li:last-child {
	margin-bottom: 0;
}

/*仕様 ------------- */

.spec ul li {
	padding-left: 1.1em;
	text-indent: -1.1em;
}
.spec ul li::before {
	content: '●';
	margin-right: 0.1em;
}

.spec ul li span {
	display: block;
	padding: 5px 0 0 15px;
}

/*商品詳細ボトム ------------- */

.item_detail_btm {
}

/*おすすめの仏像・最近見た仏像------------- */

.item_detail_btm_inner {
	margin-bottom: 90px;
}

.item_detail_btm_list {
	display: flex;
	justify-content: space-between;
}

.item_detail_btm_list li {
	text-align: center;
	width: 19%;
}

.item_detail_btm_list li a {
	color: #272727;
	font-size: 1.1rem;
	text-align: center;
	font-weight: 500;
	outline: none;
}

.item_detail_btm_list li img {
	margin: 0 auto 10px auto;
	display: block;
}

/* タブレット */
@media ( max-width : 960px ){
	.item_name {
		display: none;
	}
	
	/*商品詳細トップ------------- */
	.item_detail {
		display: block;
		margin: 0 auto 60px;
	}
	.item_image_area {
		max-width: 600px;
		width: 100%;
		margin:0 auto 30px;
	}
	
	.sp_item_name {
		display: block;
		font-size: 1.5rem;
		margin-bottom: 30px;
		font-weight: 600;
	}
	
	/*商品画像スライダー------------- */
	.slick-slide img {
		width: 100%;
	}
	.hold p {
		padding: 20px 0;
		font-size: 27px;
		width: 210px;
	}
	.item_img_slider {
		margin-bottom: 10px;
	}
	
	/*サムネイル------------- */
	.item_img_thumb {
		margin-bottom: 15px;
	}
	
	/*商品説明------------- */
	.about_item_area {
		width: 100%;
	}
	.item_price {
		font-size: 1.8rem;
	}
	/*
	.sp_br {
		display: block;
	}*/
	
	
	
	/*ボタンエリア------------- */
	.item_btn_top a {
		font-size: 1.2rem;
	}
	.item_order_btn {
		font-size: 1.2rem;
		margin-bottom: 15px;
	}
	.pdf_dl_btn {
		padding: 15px 0;
	}
	
	/*おすすめの仏像・最近見た仏像------------- */
	.item_detail_btm_inner h2 {
		font-size: 1.3rem;
		margin-bottom: 20px;
		padding-bottom: 15px;
	}
	
	.item_detail_btm_list {
		position: relative;
	}
	
	.item_detail_btm_list li img {
		margin: 0 auto 15px auto;
		width: 170px;
		height: 300px;
	}
	
	.slick-arrow.prev {
		position: absolute;
		top: 40%;
		left: 0%;
	}
	.slick-arrow.next {
		position: absolute;
		top: 40%;
		right: 0%;
	}
	.slick-arrow.prev img,
	.slick-arrow.next img {
		width: 11px;
	}

	
	.item_detail_btm_list li a {
		font-size: 1rem;
	}
	.item_detail_btm_inner {
		margin-bottom: 50px;
	}
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	
	/*おすすめの仏像・最近見た仏像------------- */
	.item_detail_btm_list li img {
		margin: 0 auto 10px auto;
		width: auto;
		height: 200px;
	}
}

/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	
	
	/*商品説明------------- */
	.hold p {
		padding: 15px 0;
		font-size: 25px;
	}
	
	.item_img_slider {
		margin-bottom: 5px;
	}
	
	.item_img_thumb {
		margin-bottom: 10px;
	}
	
	.item_image_area {
		margin-bottom: 20px;
	}
	
	.about_item_top p {
		margin-bottom: 10px;
	}
	
	
	.item_btn_top a {
		font-size: 1rem;
	}
	.item_order_btn {
		font-size: 1rem;
	}
	.pdf_dl_btn {
		font-size: 1rem;
	}
	
	
	
	/*特長------------- */
	
	.features {
		margin-bottom: 15px;
	}
	
	/*おすすめの仏像・最近見た仏像------------- */
	.item_detail_btm_list li img {
		height: 150px;
	}
	
}





/* モーダル */
.close {
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 2em;
	height: 2em;
	line-height: 2em;
	font-size: 1.2rem;
	border-radius: 1em;
	background: #AD9645;
	color: #fff;
	text-align: center;
}
.close a {
	color: #fff;
}
.modal_inner {
	padding: 50px 20px 20px;
}

.irai_kanryou {
	text-align: center;
	font-weight:600;
	font-size: 1.6rem;
}
.irai_sample {
	margin-top: 2em;
	text-align: center;
}



/* ===================================================================
	お知らせ
=================================================================== */

/* ページャー ------------------------ */
.paging {
	text-align: center;
}
.paging span {
	margin: 0 2px;
}
.paging span:first-child {
	margin: 0 8px 0 0;
}
.paging span:last-child {
	margin: 0 0 0 8px;
}
.paging span a {
	display: inline-block;
	padding: 2px 10px;
	background: #ffffff;
	border: 1px solid #AB9445;
}
.paging span.current {
	padding: 2px 10px;
	color: #ffffff;
	background: #AB9445;
	border: 1px solid #AB9445;
}
.paging span.disabled,
.paging span.next {
	padding: 2px 0;
	color: #ADADAD;
	background: none;
	border: none;
}
.paging span a.disabled,
.paging span a.next {
	padding: 2px 0;
	background: none;
	border: none;
}




.news_area {
	max-width: 800px;
	margin: 0 auto;
}


/* お知らせ一覧 
---------------------------------- */
.news_list {
	margin: 0 0 50px;
	border-top: 1px solid #E2E0D9;
}

.news_list li {
	display: flex;
	padding: 20px;
	border-bottom: 1px solid #E2E0D9;
}
.news_date {
	margin-right: 2em;
	color: #AB9445;
	flex-shrink: 0;
	flex-grow: 0;
	font-weight: 500;
}



/* お知らせ詳細
---------------------------------- */
.news_title {
	margin-bottom: 20px;
	font-size: 1.6rem;
	font-weight: 400;
}

.news_detail_date {
	margin-bottom: 40px;
	color: #AB9445;
	font-size: 1.1rem;
}
.news_honbun {
	margin-bottom: 80px;
	line-height: 1.8;
}

.news_back {
	text-align: center;
}



/* タブレット */
@media ( max-width : 960px ){
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	.news_list li {
		display: block;
		padding: 10px;
	}
	.news_list li span {
		display: block;
	}
	.news_date {
		margin: 0 0 0.2em;
	}
	.news_title {
		margin-bottom: 10px;
		font-size: 1.3rem;
	}

	.news_detail_date {
		margin-bottom: 20px;
	}
	.news_honbun {
		margin-bottom: 40px;
	}
}

/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	
}



/* ===================================================================
	マイページ
=================================================================== */

.mypage_area {
	display: flex;
	justify-content: space-between;
}

/* マイページのメニュー */
.mypage_nav {
	width: 11em;
	margin-right: 40px;
	flex-grow: 0;
	flex-shrink: 0;
}
.mypage_nav ul {
	border: 1px solid #E0DED7;
	border-bottom: none;
}
.mypage_nav ul li {
	margin: 0;
	border-bottom: 1px solid #E0DED7;
}
.mypage_nav ul li a {
	display: block;
	padding: 0.8em 1em;
	text-align: left;
}
.mypage_nav ul li a:hover {
	background: #F3F2EF;
}
.mypage_nav ul li.current a {
	background: #F3F2EF;
}


.mypage_main {
	flex-grow: 1;
}



/* 販売を支援 */
.mypage_top_shien {
	padding: 40px;
	background: #EDEBE6;
}
.top_shien_title {
	margin-bottom: 40px;
	font-size: 1.8rem;
	text-align: center;
}
.top_shien_bn {
	display: flex;
	justify-content: space-between;
}
.top_shien_bn > div {
	width: 48%;
	background: #fff;
}
.top_shien_bn > div a {
	display: block;
}
.top_shien_bn > div h4 {
	padding: 40px 10px;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	color: #fff;
}
.top_shien_tool h4 {
	background: url(../img/hansoku_tool_bk.png) no-repeat center center;
	background-size: cover;
}
.top_shien_knowhow h4 {
	background: url(../img/hansoku_knowhow_bk.png) no-repeat center center;
	background-size: cover;
}
.top_shien_bn > div p {
	font-size: 0.9rem;
	padding: 20px;
}

/* 一覧テーブル */
.tbl_list {
	width:100%;
	margin:0 0 20px;
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
	clear:both;
	border-top: 1px solid #E2E0D9;
	font-size: 0.9rem;
}
.tbl_list th,
.tbl_list td {
	padding: 10px;
	border-bottom: 1px solid #E2E0D9;
	text-align: left;
	font-weight: 400;
	vertical-align: middle;
}
.tbl_list th {
	background: #F3F2EF;
	text-align: center;
}
.tbl_list td.sousa {
	text-align: center;
}
.tbl_list td.tbl_state {
	text-align: center;
}

.icon_state {
	padding: 0.2em 0.5em;
	color: #fff;
	line-height: 1;
	background: #ccc;
}

.btn_area {
	margin-bottom: 20px;
}
a.btn_add {
	display: inline-block;
	margin: 0;
	padding: 0.8em;
	background: #AD9645;
	color: #fff;
	line-height: 1;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-family: 'Noto Serif JP', serif;
	outline: none;
}
.btn_edit,
.btn_delete {
	display: inline-block;
	margin: 0 0.2em;
	padding: 0.5em;
	background: #AD9645;
	color: #fff;
	line-height: 1;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-family: 'Noto Serif JP', serif;
	outline: none;
}
.btn_edit {
	background: #AD9645;
}
.btn_delete {
	background: #BA4145;
}


/* 	フォーム */
.tbl_form {
	width:100%;
	margin:0 0 40px;
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
	clear:both;
	border-top: 1px solid #E2E0D9;
}
.tbl_form th,
.tbl_form td {
	padding: 20px;
	border-bottom: 1px solid #E2E0D9;
	text-align: left;
	font-weight: 400;
}



/* マイページ商品検索
-------------------------------------------------*/
.search_area {
	margin: 0 0 40px;
	padding: 20px;
	background: #F3F2EF;
}
.search_clm02 {
	display: flex;
	justify-content: space-between;
}
.search_box {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.search_clm02 .search_box {
	width: 48%;
}
.search_box dt {
	width: 5em;
	margin-right: 0.5em;
	text-align: right;
}
.search_box dd {
	flex-grow: 1;
}
.search_btn {
	margin: 20px 0 0;
	text-align: center;
}
.btn_search {
	display: inline-block;
	padding: 1em 2em;
	text-align: center;
	color: #fff;
	background: #AD9645;
	font-weight: 600;
	line-height: 1;
	border: none;
	outline: none;
	cursor: pointer;
}

input[type="text"].input_price {
	width: 8em;
}


.mypage_buddhist_list {
}

.mypage_buddhist_list ul {
	display: flex;
	flex-wrap: wrap;
}

.mypage_buddhist_list ul li {
	width: 22%;
	margin-right: 4%;
	padding-bottom: 40px;
}
.mypage_buddhist_list ul li:nth-child(4n) {
	margin-right: 0;
}
.cart_check {
	margin: 10px 0 0;
	text-align: center;
}

.search_cart {
	margin: 20px 0;
	text-align: right;
}
a.btn_search_cart {
	display: inline-block;
	padding: 0.5em 1em;
	background: #AD9645;
	color: #fff;
}

/* マイページ カート
-------------------------------------------------*/
.cart_item {
	display: flex;
}
.cart_img {
	max-width: 100px;
	margin-right: 10px;
}
.cart_item_info {
	font-size: 1.2rem;
	font-weight: 500;
}
.cart_delete {
	margin-top: 15px;
	text-align: center;
}
.btn_cart_delete {
	display: inline-block;
	padding: 0;
	text-align: center;
	color: #BA4145;
	background: none;
	font-weight: 600;
	line-height: 1;
	border: none;
	outline: none;
	cursor: pointer;
}

.tbl_price {
	white-space: nowrap;
	text-align: right;
}

.tbl_list .tbl_goukei td {
	text-align: right;
}
.goukei {
	background: #F3F2EF;
	font-size: 1.2rem;
}
.tbl_goukei .tbl_price {
	font-size: 1.6rem;
}

.cart_kakutei {
	margin: 40px 0 0;
	text-align: center;
}
.btn_cart_kakutei {
	display: inline-block;
	padding: 1em 2em;
	text-align: center;
	color: #fff;
	background: #BA4145;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1;
	border: none;
	outline: none;
	cursor: pointer;
}
.cart_end {
	text-align: center;
	font-size: 1.2rem;
}

/* タブレット */
@media ( max-width : 960px ) {
	
	.search_clm02 {
		display: block;
	}
	.search_clm02 .search_box {
		width: auto;
	}
	
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	.mypage_area {
		display: block;
	}
	/* マイページのメニュー */
	.mypage_nav {
		width: auto;
		margin:0 0 20px;
	}
	.mypage_nav ul {
		border: none;
		display: flex;
		flex-wrap: wrap;
	}
	.mypage_nav ul li {
		margin: 0 5px 5px 0;
		border:none;
	}
	.mypage_nav ul li a {
		display: block;
		padding: 0.4em 1em;
		text-align: center;
		border: 1px solid #E0DED7;
	}
	.mypage_nav ul li a:hover {
		background: #F3F2EF;
	}
	.mypage_nav ul li.current a {
		background: #F3F2EF;
	}
}

/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	.top_shien_bn {
		display: block;
	}
	.top_shien_bn > div {
		width: auto;
		margin-bottom: 20px;
	}
	.top_shien_bn > div:last-child {
		margin-bottom: 0;
	}
}






/* タブレット */
@media ( max-width : 960px ){
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
}

/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	
}
