@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:3.5vw;
}

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

body{
	width:100%;
	background-color:#f3f3f3;
	color:#222;
}

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: 10px;
	bottom: 10px;
	z-index: 9999;
	display: block;
	border:0;
	padding:0;
	text-align:center;
}

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

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


/* ========ヘッダー======== */
header {
	position: fixed;
	top:0;
	right:0;
	width:100%;
	margin:0;
	padding:0;
	text-align:right;
	z-index:2;
	background-color:#fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

#header_info {
	margin:0;
	padding:1.5% 0;
	background:#b8a68d;
	color:#fff;
	text-align:center;
}

#header_info p {
	font-size:0.8rem;
	font-weight:500;
}

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

#header_info a:hover {
	text-decoration:underline;
	color:#fff;
}

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

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

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

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  z-index:3;
  height: 1.5px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius:50px;
  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: 999;/*最前面に*/
  width: 85%;/*右側に隙間を作る（閉じるカバーを表示）*/
  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:50%;
	height:auto;
}

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

#hmenu .hmenu_list_2 p {
	margin:0 0 5% 0;
	padding:5% 0;
	font-size:0.9rem;
	font-weight:400;
	text-align:center;
	background:#fff;
}

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

#hmenu .hmenu_list_3 {
	margin:10% 0;
	padding:0;
	border-top:1px solid #dadada;
}

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

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

#top_logo {
	position:absolute;
	width:40%;
	top:56%;
	left:5%;
}

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

#top_reserve {
	position:absolute;
	width:20%;
	top:52%;
	right:20%;
	padding:0.4% 0 0.9% 0;
	text-align:center;
	background:#333;
}

#top_reserve a {
	font-size:0.8rem;
	font-weight:500;
	color:#fff;
	text-decoration:none;
}


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


/* ========カバー画像======== */
#cover {
	margin:0;
	position:relative;
	width:100%;
}

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


/* ========コンセプト======== */
#concept {
	margin:0;
	padding:0;
	position:absolute;
	top:25%;
	left:5%;
	color:#fff;
	text-align:left;
}

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

#concept p {
	margin:3% 0 0 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:1px;
}


/* ========カテゴリーリスト======== */
#category {
	margin:15% 5% 0 5%;
	padding:0;
}

#category .category_list_top {
	text-align:left;
}

#category .category_list {
	position:relative;
	margin:5% 0 10% 0;
	padding:0;
}

#category h2 {
	margin:3% 0 13% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:500;
	line-height:1.4;
	letter-spacing:3px;
	text-align:left;
}

#category .category_list_left {
	float:left;
	width:35%;
	margin:0 8% 0 0;
}

#category .category_list_right {
	float:left;
	width:57%;
}

#category .category_list p {
	margin:8% 0 8% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:500;
	line-height:1.4;
	text-align:left;
}

#category p.category_s {
	margin:0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.4rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:1px;
	color:#a76f79;
}

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

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

#category .category_btn {
	margin:0 40% 0 0;
	padding:4% 0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:0;
	text-align:center;
	background:#222;
	color:#fff;
}

.clear {
	clear:both;
}


/* ========イントロ======== */
#intro {
	margin:0;
	padding:8% 0 0 0;
	text-align:center;
	position:relative;
}

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

#intro_1 {
	margin:0;
	padding:0 5%;
	position:absolute;
	top:4%;
}

#intro_1 h2 {
	margin:0 0 15% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:400;
	line-height:1.4;
	letter-spacing:3px;
	text-align:left;
}

#intro_1 p {
	margin:0 0 8% 0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#intro_2 {
	margin:105% 0 0 0;
	padding:0;
	position:relative;
}

#intro_2 .intro_p {
	margin:13% 5% 0 5%;
	padding:0;
}

#intro_2 .intro_p img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#intro_2 .intro_t {
	margin:5% 5% 0 5%;
	padding:0;
}

#intro_2 .intro_t h3 {
	margin:10% 0 5% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2rem;
	font-weight:400;
	line-height:1.5;
	letter-spacing:1px;
	text-align:left;
}

#intro_2 .intro_t p {
	margin:0 0 8% 0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#intro_2 .intro_t p.intro_s {
	margin:0;
	padding:0 0 13% 0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.1rem;
	font-weight:200;
	line-height:1.8;
}

.clear {
	clear:both;
}

#intro_3 {
	margin:13% 0 0 0;
	padding:0;
}

#intro_3 .intro_p {
	margin:13% 5% 0 5%;
	padding:0;
	text-align:left;
}

#intro_3 .intro_p img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#intro_3 .intro_t {
	margin:5% 5% 0 5%;
	padding:0;
}

#intro_3 .intro_t h3 {
	margin:10% 0 5% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2rem;
	font-weight:400;
	line-height:1.5;
	letter-spacing:1px;
	text-align:left;
}

#intro_3 .intro_t p {
	margin:0 0 8% 0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#intro_3 .intro_t p.intro_s {
	margin:0;
	padding:0 0 13% 0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.1rem;
	font-weight:200;
	line-height:1.8;
}

#intro_3 .trim {
	width:100%;
    padding-top:100%;
    position:relative;
}

#intro_3 video {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	object-fit:cover;
}

.clear {
	clear:both;
}


/* ========ピンクダイヤモンドの石言葉======== */
#ishikotoba {
	margin:0;
	padding:10% 0 10% 0;
	text-align:center;
}

#ishikotoba .ishikotoba_p {
	margin:5% 0 0 0;
	padding:0 5%;
}

#ishikotoba .ishikotoba_p img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#ishikotoba .ishikotoba_t {
	margin:5% 5% 0 5%;
	padding:0;
}

#ishikotoba h2 {
	margin:3% 0 10% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:500;
	line-height:1.4;
	letter-spacing:3px;
	text-align:left;
}

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

#ishikotoba .ishikotoba_t p.ishikotoba_s {
	margin:0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.4rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:1px;
	color:#a76f79;
}

.clear {
	clear:both;
}


/* ========ピンクダイヤモンドとは======== */
#about {
	margin:0;
	padding:0;
	position:relative;
	width:100%;
	color:#fff;
}

#about .about_p {
	margin:0;
	position:relative;
}

#about .about_p img {
	width:100%;
	height:auto;
}

#about .about_t {
	margin:0;
	padding:0;
	position:absolute;
	top:20%;
	text-align:center;
}

#about h2 {
	margin:0 0 8% 0;
	padding:0 5%;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:400;
	line-height:1.4;
	letter-spacing:1px;
	text-align:left;
}

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

.about_btn {
	margin:8% 0 0 0;
	padding:0 5%;
	text-align:left;
}

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

#about .under {
	padding:0.5% 0;
	border-bottom:1px solid #fff;
	font-size:1.2rem;
	font-weight:500;
	line-height:2;
}

.clear {
	clear:both;
}


/* ========シチュエーション）======== */
#situation {
	margin:0;
	padding:10% 5% 5% 5%;
}

.situation_list {
	margin:10% 0 15% 0;
	padding:0;
}

#situation .situation_p_1 {
	margin:0 30% 0 0;
	padding:0;
}

#situation .situation_t_1 {
	margin:10% 0 0 0;
	padding:0;
}

#situation .situation_p_2 {
	margin:0 0 0 30%;
	padding:0;
}

#situation .situation_t_2 {
	margin:10% 0 0 0;
	padding:0;
}

#situation .situation_p_3 {
	margin:0 30% 0 0;
	padding:0;
}

#situation .situation_t_3 {
	margin:10% 0 0 0;
	padding:0;
}

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

#situation h2 {
	margin:8% 0 2% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:500;
	line-height:1.4;
	letter-spacing:3px;
	text-align:left;
}

#situation p {
	margin:0 0 5% 0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#situation p.situation_s {
	margin:0;
	padding:0 0 8% 0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:200;
	line-height:1.8;
}

.clear {
	clear:both;
}


/* ========オリジナルジュエリー======== */
#jewelry_1 {
	margin:0;
	padding:0;
	position:relative;
	color:#fff;
}

#jewelry_1 .jewelry_1_p {
	margin:0;
	position:relative;
}

#jewelry_1 .jewelry_1_p img {
	width:100%;
	height:auto;
}

#jewelry_1 .jewelry_1_t {
	margin:0;
	padding:0;
	position:absolute;
	top:20%;
	text-align:center;
}

#jewelry_1 h2 {
	margin:5% 0 13% 0;
	padding:0 5%;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:400;
	line-height:1.4;
	letter-spacing:1px;
	text-align:left;
}

#jewelry_1 .jewelry_1_t p {
	margin:0 0 5% 0;
	padding:0 5%;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#jewelry_1 .jewelry_1_t p.jewelry_1_s {
	margin:0;
	padding:0 5%;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.4rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:1px;
}

#jewelry_2 {
	margin:20% 0;
	padding:0;
	position:relative;
}

#jewelry_2_intro {
	margin:0;
	padding:0;
}

#jewelry_2_intro h2 {
	margin:0 0 5% 0;
	padding:0 5%;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2rem;
	font-weight:500;
	line-height:1.4;
	letter-spacing:1px;
	text-align:left;
}

#jewelry_2_intro p {
	margin:0;
	padding:0 5%;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#jewelry_2_intro p.jewelry_2_s {
	margin:0 0 10% 0;
	padding:0 5%;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:200;
	line-height:1.8;
}

.jewelry_2_list_1 {
	margin:10% 0;
	padding:0;
}

.jewelry_2_list_1_p {
}

.jewelry_2_list_1_t {
}

.jewelry_2_list_2 {
	margin:10% 0;
	padding:0;
}

.jewelry_2_list_2_p {
}

.jewelry_2_list_2_t {
}

#jewelry_2 .jewelry_2_list_1 p {
	margin:0 0 8% 0;
	padding:0 5%;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#jewelry_2 .jewelry_2_list_2 p {
	margin:0 0 8% 0;
	padding:0 5%;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

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

#jewelry_2 h3 {
	margin:0 0 5% 0;
	padding:0 5%;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.6rem;
	font-weight:500;
	line-height:2;
	letter-spacing:3px;
	text-align:left;
}

#jewelry_2 p.detail {
	margin:0 0 0 0;
	font-size:1rem;
	color:#808080;
}

#jewelry_2 .under {
	padding:0.5% 0;
	border-bottom:1px solid #222;
	font-size:1.2rem;
	font-weight:500;
	line-height:2;
}


/* ========製作事例======== */
#production_1 {
	margin:0;
	position:relative;
}

#production_1_intro {
	margin:0;
	padding:0;
}

#production_1_intro h2 {
	margin:5% 0 5% 0;
	padding:0 5%;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:500;
	line-height:1.4;
	letter-spacing:1px;
	text-align:left;
}

#production_1_intro p {
	margin:0 0 5% 0;
	padding:0 5%;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#production_1_intro p.production_1_s {
	margin:0;
	padding:0 5%;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:1px;
}

#production_1_left {
	margin:0;
}

#production_1_right {
	margin:13% 3%;
}

#production_1_t {
	margin:0;
	padding:0 5%;
}

#production_1_t h3 {
	margin:0 0 8% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.6rem;
	font-weight:500;
	line-height:1.5;
	letter-spacing:3px;
	text-align:left;
}

#production_1_t p {
	margin:0 0 5% 0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#production_1_t p.production_1_k {
	margin:0 0 1% 0;
	padding:0;
	font-size:1.2rem;
	font-weight:500;
	line-height:2;
	text-align:left;
	color:#a76f79;
}
#production_1_t .production_btn {
	margin:10% 0 0 0;
	padding:2.5% 0;
	width:60%;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:500;
	line-height:2;
	text-align:center;
	background:#222;
	border-radius:5px;
}

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

.production_1_p_1 {
	margin:0 1.5% 1.5% 1.5%;
	padding:0;
}

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

.production_1_p_2 {
	margin:0;
	padding:0;
}

.production_1_p_2 img {
	float:left;
	width:47%;
	margin:0 1.5%;
	height:auto;
}

.clear {
	clear:both;
}

#production_2 {
	margin:0;
	position:relative;
}

#production_2_left {
	margin:13% 3%;
}

#production_2_right {
	margin:0;
}

#production_2_t {
	margin:0;
	padding:0 5%;
}

#production_2_t h3 {
	margin:0 0 8% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.6rem;
	font-weight:500;
	line-height:1.5;
	letter-spacing:3px;
	text-align:left;
}

#production_2_t p {
	margin:0 0 5% 0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#production_2_t p.production_2_k {
	margin:0 0 1% 0;
	padding:0;
	font-size:1.2rem;
	font-weight:500;
	line-height:2;
	text-align:left;
	color:#a76f79;
}
#production_2_t .production_btn {
	margin:10% 0 0 0;
	padding:2.5% 0;
	width:60%;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:500;
	line-height:2;
	text-align:center;
	background:#222;
	border-radius:5px;
}

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

.production_2_p_1 {
	margin:0 1.5% 1.5% 1.5%;
	padding:0;
}

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

.production_2_p_2 {
	margin:0;
	padding:0;
}

.production_2_p_2 img {
	float:left;
	width:47%;
	margin:0 1.5%;
	height:auto;
}

.clear {
	clear:both;
}

#production_3 {
	margin:0;
	padding:0 0 15% 0;
	position:relative;
}

#production_3_1 {
	margin:5% 0;
	padding:0;
}

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

#production_3_2 {
	margin:0;
	padding:0 5%;
}

.production_3_2_left {
	margin:0;
}

.production_3_2_right {
	margin:0;
}

#production_3_2 .production_3_2_left h2 {
	margin:8% 0 5% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:500;
	line-height:1.4;
	letter-spacing:1px;
	text-align:left;
}

#production_3_2 .production_3_2_left p {
	margin:0 0 8% 0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#production_3_2 .production_3_2_left p.production_3_s {
	margin:0 0 10% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:1px;
}

#production_3_2 .under {
	padding:0.5% 0;
	border-bottom:1px solid #222;
	font-size:1.1rem;
	font-weight:500;
	line-height:2;
}

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


/* ========ルース======== */
#loose_1 {
	margin:0;
	padding:0;
	position:relative;
	width:100%;
	color:#fff;
}

#loose_1 .loose_1_p {
	margin:0;
	position:relative;
}

#loose_1 .loose_1_p img {
	width:100%;
	height:auto;
}

#loose_1 .loose_1_t {
	margin:0;
	padding:0;
	position:absolute;
	top:30%;
	left:10%;
	text-align:center;
}

#loose_1 h2 {
	margin:0 0 8% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:3.8rem;
	font-weight:300;
	line-height:1.2;
	letter-spacing:3px;
	text-align:left;
}

#loose_1 .loose_1_t p {
	margin:0 0 5% 0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

.clear {
	clear:both;
}

#asset {
	margin:0;
	padding:15% 5%;
	background:#333;
	color:#fff;
}

#asset_1 {
	margin:0;
}

.asset_1_left {
	margin:0;
}

.asset_1_right {
	margin:0;
}

#asset_1 .asset_1_left h2 {
	margin:8% 0 5% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:400;
	line-height:1.4;
	letter-spacing:1px;
	text-align:left;
}

#asset_1 .asset_1_left p {
	margin:0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#asset_1 .asset_1_left p.asset_s {
	margin:0 0 13% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:1px;
}

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

#asset_2 {
	margin:15% 0 0 0;
}

.asset_2_left {
	margin:0;
}

.asset_2_right {
	margin:0;
}

#asset_2 .asset_2_right h2 {
	margin:8% 0 5% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:400;
	line-height:1.4;
	letter-spacing:1px;
	text-align:left;
}

#asset_2 .asset_2_right p {
	margin:0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#asset_2 .asset_2_right p.asset_s {
	margin:0 0 13% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:1px;
}

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

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

#loose_2 h2 {
	margin:2% 0 8% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:500;
	line-height:1.4;
	letter-spacing:3px;
	text-align:left;
}

#loose_2 p {
	margin:0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#loose_2 p.loose_s {
	margin:0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.4rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:1px;
	color:#a76f79;
}

.loose_2_box {
	margin:8% 1% 0 0;
	padding:3% 5%;
	border:2px solid #a76f79;
}

.loose_2_box p {
	color:#a76f79;
}

.loose_list {
	float:left;
	width:46%;
	margin:15% 2% 0 2%;
	padding:0;
}

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

#loose_2 .loose_list p.price {
	margin:5% 0 0 0;
	color:#808080;
}

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

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

#loose_2 .loose_btn {
	margin:15% 0 15% 0;
	padding:2.5% 0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:500;
	line-height:2;
	text-align:center;
	background:#222;
	border-radius:8px;
	color:#fff;
}

.clear {
	clear:both;
}

#loose_bnr {
	margin:0;
	padding:0 0 10% 0;
	position:relative;
}

#loose_bnr .loose_bnr_img {
}

#loose_bnr .loose_bnr_img img {
	width:100%;
	height:auto;
}

#loose_bnr .loose_bnr_text {
	position:absolute;
	top:15%;
	left:5%;
}

#loose_bnr .loose_bnr_text p {
	margin:0 0 5% 0;
	font-size:1.1rem;
	font-weight:400;
	line-height:1.8;
	text-align:left;
}

#loose_bnr .loose_bnr_text p.loose_bnr_text_s {
	font-size:1rem;
	font-weight:500;
}

.border_loose_bnr {
	border-bottom:1px solid #000;
}


/* ========ケース======== */
#case_1 {
	margin:0;
	padding:0;
	position:relative;
	width:100%;
	color:#fff;
}

#case_1 .case_1_p {
	margin:0;
	position:relative;
}

#case_1 .case_1_p img {
	width:100%;
	height:auto;
}

#case_1 .case_1_t {
	margin:0;
	padding:0;
	position:absolute;
	top:45%;
	text-align:center;
}

#case_1 h2 {
	margin:3% 0 8% 0;
	padding:0 5%;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:400;
	line-height:1.4;
	letter-spacing:3px;
	text-align:left;
}

#case_1 .case_1_t p {
	margin:0;
	padding:0 5%;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#case_1 .case_1_t p.case_1_s {
	margin:0;
	padding:0 5%;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.4rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:1px;
}

.clear {
	clear:both;
}


/* ========ストーリー======== */
#story {
	margin:15% 5%;
	padding:5% 0;
	border-top:1px solid #c4c4c4;
	border-bottom:1px solid #c4c4c4;
}

#story_left {
}

#story_left h2 {
	margin:0 0 3% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:3rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:3px;
}

#story_left p {
	margin:0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:1.6;
	text-align:left;
}

#story_right {
	margin:0;
}

#story_right .story_list {
	margin:13% 0 8% 0;
}

#story_right .story_list img {
	width:100%;
	height:auto;
}

#story_right .story_list h3 {
	margin:8% 0 6% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.6rem;
	font-weight:500;
	line-height:1.4;
	letter-spacing:1px;
	text-align:left;
}

#story_right .story_list p {
	margin:0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:1.8;
	text-align:left;
}

.clear {
	clear:both;
}


/* ========店舗案内======== */
#shop {
	margin:15% 0 5% 0;
	padding:0 5%;
	position:relative;
}

#shop h2 {
	margin:3% 0 10% 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:2.2rem;
	font-weight:500;
	line-height:1.4;
	letter-spacing:3px;
	text-align:left;
}

#shop p {
	margin:0 0 8% 0;
	padding:0;
	font-size:1.2rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

#shop p.shop_s {
	margin:0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.4rem;
	font-weight:400;
	line-height:1.8;
	letter-spacing:1px;
	color:#a76f79;
}

#shop a {
	text-decoration:none;
}

#shop .shop_btn_left_1 {
	margin:10% 0 0 0;
	padding:3% 0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:500;
	line-height:2;
	text-align:center;
	background:#222;
	border-radius:8px;
	color:#fff;
}

#shop .shop_btn_left_2 {
	margin:5% 0 0 0;
	padding:3% 0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:500;
	line-height:2;
	text-align:center;
	background:#222;
	border-radius:8px;
	color:#fff;
}

#shop_btn_left_seminar {
	margin:10% 0 0 0;
	padding:0;
}

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

.shop_left {
	margin:0;
}

.shop_right {
	margin:20% 0 0 0;
}

.shop_list {
	margin:0 0 20% 0;
	padding:0;
}

#shop .shop_list h3 {
	margin:3% 0 0 0;
	padding:0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.4rem;
	font-weight:500;
	line-height:1.4;
	letter-spacing:3px;
	text-align:left;
}

#shop .shop_list p {
	margin:0;
	padding:0;
	font-size:1.1rem;
	font-weight:400;
	line-height:2;
	text-align:left;
}

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

#shop .shop_btn_right_1 {
	margin:5% 0 0 0;
	padding:5% 0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:500;
	line-height:2;
	text-align:center;
	border:1px solid #222;
	border-radius:8px;
	color:#222;
}

#shop .shop_btn_right_2 {
	margin:5% 0 0 0;
	padding:5% 0;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size:1.2rem;
	font-weight:500;
	line-height:2;
	text-align:center;
	background:#222;
	border:1px solid #222;
	border-radius:8px;
	color:#fff;
}

.clear {
	clear:both;
}


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

.footer_list_1 {
	margin:0 0 15% 0;
}

.footer_list_2 {
	margin:0 0 15% 0;
}

.footer_list_1 p {
	margin:0 0 5% 0;
	padding:0;
	font-size:1rem;
	line-height:2;
	letter-spacing:2px;
}

.footer_list_2 p {
	margin:0 0 5% 0;
	padding:0;
	font-size:1rem;
	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 2% 0;
	font-size:0.9rem;
	line-height:1.6;
}

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

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

#copyright p {
	margin:0;
	padding:0;
	font-size:0.8rem;
	text-align:right;
}

#contact_btn {
	position: fixed;
	bottom:0px;
	left:0px;
	width:100%;
	margin:0;
	padding:0 0 3% 0;
	z-index:1;
	background:#222;
}

#contact_btn img {
	width:33.33%;
}


