@charset "UTF-8";

/* ========全般======== */
html, body, div, span, figure, img, fieldset,
a, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, small, strong, dl, dt, dd, ol, ul, li,
table, caption, tbody, tfoot, thead, tr, th, td{
	margin:0;
	padding:0;
	border:none;
	outline:none;
	font-size:1vw;
}

html{
	font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

body{
	background-color:#fff;
	color:#222;
}

section{
	overflow:hidden;
}

a{
	color:#b8a68d;
}

a:hover{
	color:#dadada;
}

.tan {
	color:#b8a68d;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 959px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}


/* ========フローティングバナー======== */
.floating-banner {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: block;
	border:0;
	padding:0;
	text-align:center;
}

.close-button {
	position: absolute;
	right: 0;
	top: 0;
	color:#000;
	border: none;
	cursor: pointer;
	padding:10px 15px;
}

.floating-banner img {
	width:250px;
	height:auto;
	vertical-align:bottom;
}


/* ========ヘッダー======== */
header {
	top: 0px;
	right: 0px;
	width: 100%;
	margin:0;
	padding:0;
	text-align:right;
	z-index:2;
	background-color:rgba(255,255,255,0.8);
}

#nav-drawer {
	margin:0;
	position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 20px;
	vertical-align: middle;
	padding:2% 5% 2% 5%;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 40px;/*長さ*/
  border-radius: 5px;
  background: #222;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 80%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 500px;/*最大幅（調整してください）*/
  height: 100%;
  background: #eee;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#hmenu {
	margin:0;
	padding:8% 8%;
	text-align:center;
}

#hmenu .hmenu_list_1 {
	margin:0 0 5% 0;
	padding:0;
}

#hmenu .hmenu_list_1 img {
	width:120px;
}

#hmenu .hmenu_list_2 {
	margin:0;
	padding:0;
}

#hmenu .hmenu_list_2 p {
	float:left;
	width:36%;
	margin:0 2%;
	padding:10% 5%;
	font-size:0.9em;
	font-weight:bold;
	text-align:center;
	background:#fff;
	border-radius:15px;
}

#hmenu .hmenu_list_2 a {
	color:#222;
	text-decoration:none;
}

.clear {
	clear:both;
}

#hmenu .hmenu_list_3 {
	margin:5% 0;
	padding:0;
}

#hmenu .hmenu_list_3 p {
	margin:0;
	padding:5% 5%;
	font-size:0.9em;
	font-weight:bold;
	text-align:left;
	border-bottom:1px solid #dadada;
}

#hmenu .hmenu_list_3 a {
	color:#222;
	text-decoration:none;
}

#hmenu .hmenu_list_3 p.list_in {
	margin:0;
	padding:5% 5% 5% 10%;
	font-size:0.8em;
	font-weight:normal;
	text-align:left;
	border-bottom:1px solid #dadada;
}

#top_logo {
	position:absolute;
	top:0;
	left:5%;
	padding:1.7% 0 2% 0;
	text-align:center;
}

#top_logo img {
	width:220px;
	height:auto;
}


/* ========カバーイメージ======== */
#cover {
	margin:0 5%;
	padding:0;
}

#cover img {
	width:100%;
	height:auto;
}


/* ========イントロ======== */
#product {
	margin:0;
	padding:0;
}

#intro {
	margin:0;
	padding:8% 10%;
	text-align:center;
}

#intro .intro_left {
	float:left;
	width:50%;
	margin:0 10% 0 0;
	text-align:left;
}

#intro .intro_right {
	float:left;
	width:40%;
	margin:10% 0 0 0;
}

#intro .intro_left h1 {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	margin:0;
	padding:3% 0 8% 0;
	font-size:2rem;
	font-weight:400;
	line-height:1.6;
}

#intro .intro_left p {
	margin:0 0 5% 0;
	padding:0;
	font-size:1.1rem;
	font-weight:500;
	line-height:2.2;
}

#intro .intro_left p.title {
	margin:0;
	padding:0;
	font-family: 'Cormorant Garamond', serif;
	font-size:2.5rem;
	font-weight:400;
	line-height:1.6;
	color:#b8b8b8;
}

#intro .intro_right img {
	width:100%;
	height:auto;
}

.clear {
	clear:both;
}


/* ========カテゴリー======== */
#category {
	margin:0;
	padding:0 9%;
}

#category .category_list {
	float:left;
	width:23%;
	margin:0 1%;
}

#category .category_list h2 {
	margin:2% 0 0 0;
	padding:0;
	font-size:1.1rem;
	font-weight:500;
	line-height:1.8;
}

#category .category_list h2 .category_list_t {
	font-family: 'Cormorant Garamond', serif;
	font-size:1.4rem;
	font-weight:400;
	line-height:1.6;
}

#category .category_list a {
	text-decoration:none;
	color:#222;
}

#category .category_list img {
	width:100%;
	height:auto;
}

.clear {
	clear:both;
}


/* ========お知らせ======== */
#news {
	margin:8% 0;
	padding:0 10%;
	text-align:center;
}

#news p.title {
	margin:0;
	padding:0;
	font-family: 'Cormorant Garamond', serif;
	font-size:2.5rem;
	font-weight:300;
	line-height:1.6;
}

.news_list {
	margin:5% 0;
	padding:5% 0 0 0;
	border-top:1px solid #dcdcdc;
}

.news_list_end {
	margin:5% 0;
	padding:5% 0;
	border-top:1px solid #dcdcdc;
	border-bottom:1px solid #dcdcdc;
}

.news_left {
	float:left;
	width:50%;
}

.news_right {
	float:left;
	width:45%;
	margin:1% 0 0 5%;
	text-align:left;
}

.news_list h2 {
	margin:0 0 5% 0;
	padding:0;
	font-size:1.8rem;
	font-weight:500;
	line-height:1.6;
	letter-spacing:2px;
}

.news_list_end h2 {
	margin:0 0 5% 0;
	padding:0;
	font-size:1.8rem;
	font-weight:500;
	line-height:1.6;
	letter-spacing:3px;
}

.news_list p {
	margin:0;
	padding:0 0 5% 0;
	font-size:0.9rem;
	font-weight:500;
	line-height:2;
}

.news_list_end p {
	margin:0;
	padding:0 0 5% 0;
	font-size:0.9rem;
	font-weight:500;
	line-height:2;
}

.news_list p.news_s {
	padding:0 0 0 0;
	color:#999;
}

.news_list_end p.news_s {
	padding:0 0 0 0;
	color:#999;
}

.under {
	border-bottom:1px solid #222;
	font-size:0.9rem;
	font-weight:500;
}

.news_list img {
	width:100%;
	height:auto;
}

.news_list_end img {
	width:100%;
	height:auto;
}

.news_list .news_btn_1 {
	margin:3% 0 0 0;
	padding:3.5% 0;
	font-size:1rem;
	font-weight:600;
	line-height:2.2;
	letter-spacing:2px;
	text-align:center;
	background:#88795b;
	color:#fff;
	border-radius:5px;
}

.news_list .news_btn_2 {
	margin:0;
	padding:3.5% 0;
	font-size:1rem;
	font-weight:600;
	line-height:2.2;
	letter-spacing:1px;
	text-align:center;
	background:#fff;
	border-radius:5px;
}

.news_list_end .news_btn_1 {
	float:left;
	width:47.5%;
	margin:5% 2% 0 0;
	padding:2% 0;
	font-size:0.9rem;
	font-weight:500;
	line-height:2.2;
	letter-spacing:1px;
	text-align:center;
	background:#eee;
}

.news_list_end .news_btn_2 {
	float:left;
	width:47.5%;
	margin:5% 0 0 2%;
	padding:2% 0;
	font-size:0.9rem;
	font-weight:500;
	line-height:2.2;
	letter-spacing:1px;
	text-align:center;
	background:#eee;
}

.news_list a {
	color:#222;
	text-decoration:none;
}

.news_list_end a {
	color:#222;
	text-decoration:none;
}

.clear {
	clear:both;
}

#bnr_line {
	margin:0 25% 8% 25%;
	padding:0;
	text-align:center;
}

#bnr_line img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}


/* ========ルース一覧======== */
#loose {
	margin:0;
	padding:0 0 10% 0;
	text-align:center;
}

#loose h2 {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	margin:0;
	padding:0.5% 0 0 0;
	font-size:1.6rem;
	font-weight:400;
	line-height:1.6;
}

#loose p {
	margin:0 0 5% 0;
	padding:0;
	font-size:1.1rem;
	font-weight:500;
	line-height:2.2;
}

#loose p.title {
	margin:0;
	padding:0;
	font-family: 'Cormorant Garamond', serif;
	font-size:2rem;
	font-weight:400;
	line-height:1.6;
	color:#b8b8b8;
}

#loose_box {
	margin:0;
	padding:3% 7% 0 7%;
}

#loose .loose_list {
	float:left;
	width:23%;
	margin:0 1% 5% 1%;
	padding:0;
}

#loose .loose_list h3 {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	margin:5% 0;
	padding:0;
	font-size:1.1rem;
	font-weight:400;
	line-height:1.5;
	text-align:left;
}

#loose .loose_list p {
	margin:5% 0;
	padding:0;
	font-size:0.9rem;
	font-weight:500;
	line-height:1.5;
	text-align:left;
}

#loose .loose_list img {
	width:100%;
	height:auto;
}

#loose .loose_list a {
	color:#222;
	text-decoration:none;
}

#loose .loose_list p.loose_price {
	padding:0;
	font-size:1rem;
	font-weight:500;
}

#loose .loose_list p.loose_price a {
	text-decoration:underline;
	color:#222;
}

.clear {
	clear:both;
}

#loose a {
	text-decoration:none;
}

#loose .loose_btn {
	margin:0 38% 0 38%;
	padding:0.5% 0;
	font-size:1rem;
	font-weight:500;
	line-height:2.2;
	text-align:center;
	border:1px solid #222;
}

#loose a {
	text-decoration:none;
	color:#222;
}

#loose_info {
	margin:5% 8% 0 8%;
	padding:3% 10%;
	background:#f9f9f9;
}

#loose_info h3 {
	margin:0 0 2% 0;
	padding:0;
	font-size:1.1rem;
	font-weight:600;
	line-height:1.8;
}

#loose_info p {
	margin:0;
	padding:0;
	font-size:1.1rem;
	font-weight:500;
	line-height:1.8;
}

#loose .loose_info_btn_box {
	margin:0 15%;
}

#loose .loose_info_btn {
	float:left;
	width:47%;
	margin:4% 1% 0 1%;
	padding:1% 0;
	font-size:1rem;
	font-weight:500;
	line-height:2.2;
	text-align:center;
	background:#e7e7e7;
}

.clear {
	clear:both;
}


/* ========ジュエリー製作事例======== */
#past-work {
	margin:0;
	padding:0;
	text-align:center;
}

#past-work h2 {
	margin:1% 0 5% 0;
	padding:0;
	font-size:2rem;
	font-weight:500;
	line-height:1.6;
}

#past-work p.title {
	margin:0;
	padding:0;
	font-family: 'Biryani', sans-serif;
	font-size:0.9rem;
	font-weight:200;
	line-height:1.6;
	color:#303c52;
}

#past-work_box {
	margin:0;
	padding:0 5% 0 10%
}

#past-work .past-work_list {
	position:relative;
	float:left;
	width:28.3%;
	margin:0 5% 5% 0;
	padding:0;
}

#past-work .past-work_list h3 {
	margin:3% 0 0 0;
	padding:0;
	font-size:1.1rem;
	line-height:1.6;
	font-weight:500;
	text-align:left;
}

#past-work .past-work_list p {
	margin:5% 0 0 0;
	padding:0;
	font-family: 'Biryani', sans-serif;
	font-size:0.9rem;
	font-weight:200;
	text-align:left;
	color:#a0a0a0;
}

#past-work .past-work_list img {
	width:100%;
	height:auto;
}

#past-work .past-work_list a {
	color:#222;
	text-decoration:none;
}

.clear {
	clear:both;
}


/* ========婚約指輪======== */
#engagement-ring {
	margin:0;
	padding:8% 0;
	text-align:center;
}

#engagement-ring h2 {
	margin:1% 0 5% 0;
	padding:0;
	font-size:2rem;
	font-weight:500;
	line-height:1.6;
}

#engagement-ring p.title {
	margin:0;
	padding:0;
	font-family: 'Biryani', sans-serif;
	font-size:0.9rem;
	font-weight:200;
	line-height:1.6;
	color:#303c52;
}

#engagement-ring_1 {
	margin:0;
	padding:0 10%;
}

#engagement-ring_1_left {
	float:right;
	width:50%;
}

#engagement-ring_1_left img {
	width:100%;
	height:auto;
}

#engagement-ring_1_right {
	float:right;
	width:40%;
	margin:3% 10% 0 0;
	text-align:left;
}

#engagement-ring_1_right h3 {
	margin:0 0 10% 0;
	padding:0;
	font-size:1.5rem;
	font-weight:500;
	line-height:1.6;
}

#engagement-ring_1_right p {
	margin:0;
	padding:0;
	font-size:1rem;
	font-weight:500;
	line-height:2;
}

#engagement-ring_1_right .engagement-ring_btn {
	width:70%;
	margin:8% 0 0 0;
	padding:2% 0;
	font-size:1rem;
	font-weight:500;
	line-height:2.2;
	text-align:center;
	border:1px solid #303c52;
}

#engagement-ring_1_right a {
	text-decoration:none;
	color:#303c52;
}

.clear {
	clear:both;
}

#engagement-ring_2 {
	margin:0;
	padding:3% 6% 0 6%;
	text-align:center;
}

.ngagement-ring_2_list {
	float:left;
	width:25%;
}

.ngagement-ring_2_list img {
	width:90%;
	height:auto;
}

.ngagement-ring_2_list p {
	margin:-10% 0 0 0;
	padding:0 15% 0 15%;
	font-size:0.9rem;
	font-weight:500;
	line-height:1.6;
	text-align:left;
}

.ngagement-ring_2_more {
	float:left;
	width:15%;
	margin:0 0 0 5%;
	padding:0.8% 0;
	font-size:1rem;
	font-weight:500;
	line-height:2.2;
	text-align:center;
	border:1px solid #303c52;
}

#engagement-ring_2 a {
	text-decoration:none;
	color:#303c52;
}

.clear {
	clear:both;
}


/* ========リング一覧======== */
#ring {
	margin:0;
	padding:8% 0 0 0;
	text-align:center;
	background:#f9f9f9;
}

#ring h2 {
	margin:1% 0 0 0;
	padding:0;
	font-size:2rem;
	font-weight:500;
	line-height:1.6;
}

#ring p.title {
	margin:0;
	padding:0;
	font-family: 'Biryani', sans-serif;
	font-size:0.9rem;
	font-weight:200;
	line-height:1.6;
	color:#303c52;
}

#ring_box {
	margin:0;
	padding:5% 8% 5% 10%;
}

#ring .ring_list {
	float:left;
	width:30.3%;
	margin:0 3% 0 0;
	padding:0;
}

#ring .ring_list h3 {
	margin:0 0 3% 0;
	padding:0;
	font-size:0.9rem;
	font-weight:500;
	line-height:1.6;
	text-align:left;
}

#ring .ring_list p {
	margin:5% 0;
	padding:0;
	font-size:1.2rem;
	font-weight:500;
	line-height:1.5;
	text-align:left;
}

#ring .ring_list img {
	width:100%;
	height:auto;
}

#ring .ring_list a {
	color:#222;
	text-decoration:none;
}

#ring .ring_list p.ring_price {
	padding:3% 0;
	font-size:1.1rem;
	font-weight:600;
	color:#666;
	border-top:1px solid #ddd;
}

#ring .ring_list p.ring_price a {
	text-decoration:underline;
	color:#666;
}

.clear {
	clear:both;
}

#ring a {
	text-decoration:none;
}

#ring .ring_btn {
	margin:0 40% 8% 40%;
	padding:1% 0;
	font-size:0.9rem;
	font-weight:500;
	line-height:2.2;
	text-align:center;
	border:1px solid #303c52;
}

#ring a {
	text-decoration:none;
	color:#303c52;
}


/* ========レポート======== */
#report {
	margin:0;
	padding:0 0 5% 0;
	text-align:center;
	background:#f9f9f9;
}

#report h2 {
	margin:2% 0 0 0;
	padding:0;
	font-size:1.2rem;
	font-weight:500;
	line-height:1.6;
}

#report p.title {
	margin:0;
	padding:0;
	font-family: 'Cormorant Garamond', serif;
	font-size:2.5rem;
	font-weight:300;
}

#report_box {
	margin:0;
	padding:5% 5% 0 10%
}

#report .report_list {
	position:relative;
	float:left;
	width:28.3%;
	margin:0 5% 5% 0;
	padding:0;
}

#report .report_list h3 {
	margin:4% 0 0 0;
	padding:0;
	font-size:1.1rem;
	line-height:1.6;
	font-weight:500;
	text-align:left;
}

#report .report_list p {
	margin:5% 0 0 0;
	padding:0;
	font-family: 'Cormorant Garamond', serif;
	font-size:1.1rem;
	font-weight:400;
	text-align:left;
	color:#a0a0a0;
}

#report .report_list img {
	width:100%;
	height:auto;
}

#report .report_list a {
	color:#222;
	text-decoration:none;
}

#report .report_list .writer {
	position:absolute;
	width:20%;
	top:52%;
	right:5%;
	margin:0;
	padding:0;
}

#report .report_list .writer img {
	width:100%;
	border:2px solid #fff;
	border-radius:50%;
}

#report .report_list .writer p {
	font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	margin:0;
	padding:0;
	font-size:0.7rem;
	line-height:1;
	font-weight:500;
	text-align:center;
}

.clear {
	clear:both;
}


/* ========コンテンツ======== */
#content {
	margin:0;
	padding:8% 0 0 0;
}


/* ========カラーグレード======== */
#content_1_1 {
	margin:0;
	padding:0 5%;
	text-align:center;
}

#content_1_1 .content_p {
	margin:5% 0 0 0;
	padding:0 10%;
}

#content_1_1 .content_p img {
	width:100%;
	height:auto;
}

#content_1_1 .content_t {
	margin:0;
	padding:0;
}

#content_1_1 .content_t h2 {
	margin:1% 0 3% 0;
	padding:0;
	font-size:1.2em;
	font-weight:normal;
	line-height:1.6;
}

#content_1_1 .content_t p {
	margin:0;
	padding:0;
	font-size:0.95em;
	line-height:2;
}

#content_1_1 .content_t p.title {
	font-family: 'Cormorant Garamond', serif;
	font-size:2.5em;
	font-weight:300;
	text-align:center;
}

#content_1_2 {
	margin:10% 0;
	padding:0 5%;
	text-align:center;
}

#content_1_2 .content_p {
	margin:5% 0 0 0;
	padding:0 10%;
}

#content_1_2 .content_p .content_1_2_list {
	margin:3% 0 6% 0;
	padding:0;
}

#content_1_2 .content_p .content_1_2_list p {
	margin:0;
	padding:0;
	font-size:0.85em;
	line-height:1.6;
	text-align:center;
}

#content_1_2 .content_p .content_1_2_list img {
	width:100%;
	height:auto;
}

#content_1_2 .content_t {
	margin:0;
	padding:0;
}

#content_1_2 .content_t h2 {
	margin:1% 0 3% 0;
	padding:0;
	font-size:1.2em;
	font-weight:normal;
	line-height:1.6;
}

#content_1_2 .content_t p {
	margin:0;
	padding:0;
	font-size:0.95em;
	line-height:2;
}

#content_1_2 .content_t p.title {
	font-family: 'Cormorant Garamond', serif;
	font-size:2.5em;
	font-weight:300;
	text-align:center;
}


/* ========鉱山======== */
#content_2_1 {
	margin:0;
	padding:10% 10% 5% 10%;
	background:#222;
	color:#fff;
}

#content_2_1 .content_p {
	float:left;
	width:40%;
	margin:0;
	padding:0;
}

#content_2_1 .content_p img {
	width:100%;
	height:auto;
}

#content_2_1 .content_t {
	float:left;
	width:50%;
	margin:0 0 0 10%;
	padding:0;
}

#content_2_1 .content_t h2 {
	margin:3% 0 6% 0;
	padding:0;
	font-size:1.2em;
	font-weight:normal;
	line-height:1.6;
}

#content_2_1 .content_t p {
	margin:0 0 5% 0;
	padding:0;
	font-size:0.95em;
	line-height:2;
}

#content_2_1 .content_t p.title {
	margin:0;
	padding:0;
	font-family: 'Cormorant Garamond', serif;
	font-size:2.5em;
	font-weight:300;
}

#content_2_2 {
	margin:0;
	padding:0 10% 5% 10%;
	background:#222;
	color:#fff;
}

#content_2_2 .content_p {
	float:right;
	width:40%;
	margin:0;
	padding:0;
}

#content_2_2 .content_p img {
	width:100%;
	height:auto;
}

#content_2_2 .content_t {
	float:right;
	width:50%;
	margin:0 10% 0 0;
	padding:0;
}

#content_2_2 .content_t h2 {
	margin:3% 0 6% 0;
	padding:0;
	font-size:1.2em;
	font-weight:normal;
	line-height:1.6;
}

#content_2_2 .content_t p {
	margin:0 0 5% 0;
	padding:0;
	font-size:0.95em;
	line-height:2;
}

#content_2_2 .content_t p.title {
	margin:0;
	padding:0;
	font-family: 'Cormorant Garamond', serif;
	font-size:2.5em;
	font-weight:300;
}

#content_2_2 a {
	text-decoration:none;
}

#content_2_2 .content_2_2_btn {
	margin:8% 0;
	padding:3% 0;
	font-size:1em;
	text-align:center;
	border:1px solid #fff;
	border-radius:5px;
	color:#fff;
}

.clear {
	clear:both;
}


/* ========店舗案内======== */
#shop {
	margin:0;
	padding:8% 10% 10% 10%;
	text-align:center;
}

#shop h2 {
	margin:2% 0 3% 0;
	padding:0;
	font-size:1.6em;
	font-weight:normal;
	line-height:1.6;
	letter-spacing:3px;
}

#shop p {
	margin:0;
	padding:0;
	font-size:0.9em;
	line-height:2.2;
	letter-spacing:1px;
}

#shop p.shop_s {
	font-family: 'Noto Serif JP', serif;
	letter-spacing:2px;
}

#shop .shop_list {
	float:left;
	width:40%;
	margin:8% 5% 0 5%;
	padding:0;
	text-align:center;
}

#shop .shop_list h3 {
	margin:8% 0 3% 0;
	padding:0;
	font-size:1.2em;
	font-weight:normal;
	line-height:1.6;
	letter-spacing:2px;
	text-align:left;
}

#shop .shop_list p {
	margin:0 0 8% 0;
	padding:0;
	font-size:0.9em;
	line-height:2;
	text-align:left;
}

#shop .shop_list img {
	width:100%;
	height:auto;
}

#shop .shop_list .shop_btn_1 {
	float:left;
	width:47.5%;
	margin:0 2% 0 0;
	padding:2% 0;
	font-size:0.9em;
	line-height:2.2;
	letter-spacing:1px;
	border:1px solid #222;
}

#shop .shop_list .shop_btn_2 {
	float:left;
	width:47.5%;
	margin:0 0 0 2%;
	padding:2% 0;
	font-size:0.9em;
	line-height:2.2;
	letter-spacing:1px;
	background:#eee;
}

#shop .shop_list a {
	color:#222;
	text-decoration:none;
}

.clear {
	clear:both;
}


/* ========オンラインショップ======== */
#onlineshop {
	position:relative;
	margin:0;
	padding:0;
}

#onlineshop .onlineshop_bg {
	margin:0;
	padding:0;
}

#onlineshop .onlineshop_bg img {
	width:100%;
	height:auto;
	vertical-align:top;
}

.onlineshop_box {
	position:absolute;
	top:0;
	padding:8% 15%;
	color:#fff;
}

.onlineshop_left {
	float:left;
	width:40%;
	padding:0 10% 0 0;
}

.onlineshop_right {
	float:left;
	width:50%;
}

.onlineshop_left h3 {
	margin:0 0 10% 0;
	padding:0;
	font-size:1.6em;
	font-weight:normal;
	line-height:1.6;
	letter-spacing:3px;
}

.onlineshop_left p {
	margin:0;
	padding:0;
	font-size:0.9em;
	line-height:2;
	text-align:left;
}

.onlineshop_right p {
	margin:8% 0;
	padding:0 0 1% 0;
	font-size:1em;
	line-height:2;
	text-align:left;
	border-bottom:2px solid #fff;
}

.onlineshop_right a {
	color:#fff;
	text-decoration:none;
}

.clear {
	clear:both;
}


/* ========フッター======== */
footer {
	margin:0;
	padding:5% 10% 3% 15%;
	background:#222;
	color:#fff;
}

.footer_list_1 {
	float:left;
	width:23%;
}

.footer_list_2 {
	float:left;
	width:31%;
}

.footer_list_1 p {
	margin:0 0 10% 0;
	padding:0;
	font-size:0.9em;
	line-height:2;
	letter-spacing:2px;
}

.footer_list_2 p {
	margin:0 0 7% 0;
	padding:0;
	font-size:0.9em;
	line-height:2;
	letter-spacing:2px;
}

.footer_list_1 a {
	color:#fff;
	text-decoration:none;
}

.footer_list_2 a {
	color:#fff;
	text-decoration:none;
}

ul {
	list-style:none;
}

li {
	margin:0;
	padding:0 0 3% 0;
	font-size:0.9em;
	line-height:1.8;
}

.under_1 {
	border-bottom:1px solid #d2b48c;
}

.footer_btn_1 {
	width:50%;
	margin:3% 0;
	padding:2% 0;
	font-size:0.9em;
	line-height:2.2;
	letter-spacing:1px;
	background:#88795b;
	text-align:center;
}

.clear {
	clear:both;
}

#copyright p {
	margin:5% 0 0 0;
	padding:0;
	font-size:0.65em;
	line-height:2;
	text-align:right;
}


