@charset "utf-8";



/*Google Fontsの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Cinzel');

/*slide.cssとmenu.cssの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@import url(slide.css);
@import url(menu.css);



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;overflow-x: hidden;}
body {
	margin: 0px;
	padding: 0px;
	color: #777;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 13px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #777;		/*リンクテキストの色*/
	text-decoration: underline;	/*リンクに下線を表示*/
	/* transition: 0.4s;	 */
	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: #000;			/*マウスオン時の文字色*/
	text-decoration: none;	/*下線を消す設定。残したいならこの１行削除。*/
}

/*各ページの背景イメージ
---------------------------------------------------------------------------*/
.bgimg {
	text-indent: -9999px;
	position: fixed;top: 0px;z-index: -1;
	width: 100%;
	height: 100%;
}
/*Aboutページの背景画像*/
#bgimg-about {
	background: url(../images/img_about.jpg) no-repeat right bottom / auto 60%;		/*背景画像を右(right)下(bottom)に配置。幅は自動、高さを60%に。*/
}
/*Shoppingページの背景画像*//*背景画像を右(right)上(top)に配置。幅は自動、高さを60%に。*/
/* #bgimg-shopping {
	background: url(../images/img_shopping.jpg) no-repeat right top / auto 60%;		
} */
/*Accessページの背景画像*/
#bgimg-access {
	background: url(../images/img_access.jpg) no-repeat right bottom / auto 60%;	/*背景画像を右(right)下(bottom)に配置。幅は自動、高さを60%に。*/
}
/*Contactページの背景画像*/
#bgimg-contact {
	background: url(../images/img_contact.jpg) no-repeat right bottom / auto 60%;	/*背景画像を右(right)下(bottom)に配置。幅は自動、高さを60%に。*/
}

/*トップページのcontainerとsub共通
---------------------------------------------------------------------------*/
.home #container,.home #sub {
	height: 100%;
}

/*トップページのmain共通
---------------------------------------------------------------------------*/
.home #main {
	height: 95%;
}

/*container。サイト全体を囲むブロック
---------------------------------------------------------------------------*/
#container {
	max-width: 1500px;	/*最大幅の制限。これ以上広がらない。*/
}

/*mainブロック
---------------------------------------------------------------------------*/
#main {
	overflow: hidden;
	float: right;		/*右に回り込み*/
	width: 69%;			/*ブロックの幅*/
	padding: 0 3% 0;	/*上、左右、下へのブロック内の余白*/
}
/*トップページでの追加設定*/
.home #main {
	width: 75%;	/*ブロックの幅*/
	padding: 0;	/*余白のリセット*/
}
/*h2タグ*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	font-size: 36px;				/*文字サイズ*/
	color: #aea863;					/*文字色*/
	font-family: 'Cinzel',"游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro";	/*フォントの指定*/
	line-height: 1.4;				/*行間*/
	border-bottom: 1px solid #aea863;	/*下線の幅、線種、色*/
	padding-bottom: 15px;				/*h2タグ内の下側に空ける余白。小文字と下線との間のスペースです。*/
}
/*h2タグの小文字*/
#main h2 span {
	display: block;
	font-size: 12px;		/*文字サイズ*/
	padding-left: 3px;		/*左に空ける余白*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
}
/*h3タグ*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 16px;	/*文字サイズ*/
	color: #333;		/*文字色*/
}
/*h3タグの左のアクセントライン*/
#main h3::first-letter {
	border-left: 2px solid #333;	/*左側の線の幅、線種、色*/
	padding-left: 10px;		/*ラインと文字との間の余白*/
}
/*段落(p)タグ*/
#main p {
	padding: 0 20px 20px;	/*上、左右、下への余白*/
}
/*他*/
#main p + p {
	margin-top: -10px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -7px;
}
#main section + section {
	clear: both;
	padding-top: 30px;
}

/*listボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list {
	position: relative;
	width: 31%;		/*幅*/
	margin: 0% 1% 5%;	/*外側に空けるスペース*/
	float: left;	/*左に回り込み*/
	background: #fff;	/*背景色*/
	padding: 0 0 5%;	
	border-bottom: 1px solid #aea863;
}
/*画像*/
#main .list img {
	opacity: 1;	/*透明度。50%色がついた状態。*/
}
/*マウスオン時の画像*/
#main .list a img:hover {
	opacity: 0.5;		/*透明度。100%色がついた状態。*/
}
/*タイトル*/
#main .list span {
	position: absolute;
	bottom: 45%;		/*下から10pxの場所に配置*/
	left: 0px;			/*左から0pxの場所に配置*/
	width: 90%;		/*幅*/
	padding: 5px 5%;		/*余白*/
	font-size: 10px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	display: none;		/*デフォルトでは非表示にしておく*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒のことで0.7は70%色がついた状態のこと。*/
	color: #fff;	/*文字色*/
}
/*マウスオン時*/
#main .list:hover span {
	display: block;	/*表示させる*/
}

/*subブロック
---------------------------------------------------------------------------*/
#sub {
	float: left;		/*左に回り込み*/
	width: 25%;			/*ブロックの幅*/
	max-width: 375px;	/*最大幅。これ以上広がらないようにする。*/
	text-align: center;	/*ブロック内を中央に*/
	position: fixed;	/*画面をスクロールしても固定させる指定*/
}
/*subブロックのロゴ。menu.cssにもアニメーションに関連する指定が入っています。*/
#sub .logo {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 50px 0;	/*上下、左右への余白*/
}
/*ロゴ画像*/
#sub .logo img {
	width: 90%;	/*幅*/
}

/*footerブロック
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: right;	/*右寄せ*/
	padding-right: 3%;	/*右に空ける余白*/
	padding-top: 40px;	/*上に空ける余白*/
}
.home footer {padding-top: 0px;}
footer a {text-decoration: none;}
footer .pr {display: block;}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;		/*ボックス内の余白*/
}
/*ta1設定*/
.ta1 {
	width: 100%;
	table-layout: fixed;
	margin-bottom: 20px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}

/*フォーム関連
---------------------------------------------------------------------------*/
/*ボタン（btn）*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 7px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: linear-gradient(#fafafa, #eee);/*背景グラデーション*/
}
/*マウスオン時のボタン（btn）設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;	/*背景色*/
}
/*input,textarea共通*/
input,textarea {
	outline: none;background: transparent;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*input,textareaのフォーカス時*/
input:focus,textarea:focus {
	border: 1px solid #333;	/*枠線の幅、線種、色*/
}

/*ボタン(cart-btn)の設定。詳細ページ(item.html)のかごに入れるボタンで使用。
---------------------------------------------------------------------------*/
input[type="submit"].cart-btn,
input[type="button"].cart-btn {
	width: 100%;
	padding: 15px 0px;	/*上下、左右へのボタン内の余白*/
	margin-bottom: 20px;
	border: 2px solid #910000;	/*枠線の幅、線種、色*/
	border-radius: 3px;	/*角丸のサイズ*/
	background: #ea0000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#ea0000, #b40000 50%, #910000 50%);	/*グラデーション*/
	font-size: 20px;	/*文字サイズ*/
	color: #fff;	/*文字色*/
}
/*マウスオン時の設定*/
input[type="submit"].cart-btn:hover,
input[type="button"].cart-btn:hover {
	border: 2px solid #c10000;	/*枠線の幅、線種、色*/
	background: #fe0000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fe0000, #d50000 50%, #c10000 50%);	/*グラデーション*/
	position: relative;top: 1px;left: 1px;	/*マウスオン時に上から1px、左から1px場所を移動する*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body .nav-fix-pos-pagetop a {
	display: none;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;position: fixed;animation-name: opa1;animation-duration: 1s;animation-fill-mode: forwards;
	width: 80px;		/*ボタンの幅*/
	line-height: 80px;	/*ボタンの高さ*/
	bottom: 50px;		/*画面の下からの配置場所指定*/
	right: 3%;			/*画面の右からの配置場所指定*/
	background: rgba(255,255,255,0.5);	/*背景色*/
	border: 1px dashed #ccc;			/*枠線の幅、線種、色*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すると正方形になります。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #fff;	/*背景色*/
	border: 1px dashed #b4c19a;			/*枠線の幅、線種、色*/
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}


/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #222;padding: 5px 10px;border-radius: 4px;border: 1px solid #333;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #aea863 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 50px;}
.big2 {font-size: 24px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.dn {display: none;}
.sh {display: none;}
#sh-sub {display: none;}




/*画面の高さが620px以下の場合の（大きな端末用）設定。
左メニューが620px以下になると切れて見えなくなるので、固定からスクロール表示に切り替えます。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-height:620px){

/*subブロック
---------------------------------------------------------------------------*/
#sub {
	position: absolute;	/*固定からスクロール表示に変更*/
	height: auto;
}



}



/*画面を横向きにした場合の高さが500px以下の場合の設定。
※小さな端末用メニューを２列にします。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li a {
	float: left;		/*左に回り込み*/
	width: 44%;			/*幅*/
	line-height: 1.2;	/*行間*/
}


}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。
透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
@keyframes menubar {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: fixed;
	top: 70px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	animation-name: menubar;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-family: 'Cinzel', serif;	/*冒頭で読み込んでいるGoogleFontsの指定*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 10px 3%;	/*メニュー内の余白。上下、左右。*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
}
/*説明表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/* スマホは2列 */
#main .list {
	position: relative;
	width: 48%;		/*幅*/
	margin: 1%;	/*外側に空けるスペース*/
	float: left;	/*左に回り込み*/
	background: #fff;	/*背景色*/
}


/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 50;
	top: 8px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: url(../storage/images//icon_menu.png) no-repeat center top/50px;	/*背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: url(../storage/images//icon_menu.png) no-repeat center bottom/50px;	/*背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*mainブロック
---------------------------------------------------------------------------*/
#main {
	float: none;
	width: auto !important;
	padding: 75px 3% 0;	/*上、左右、下へのブロック内の余白*/

}

/*subブロック
---------------------------------------------------------------------------*/
#sub {
	display: none;
}

/*小さな端末用(800px以下)で表示させるブロック
---------------------------------------------------------------------------*/
#sh-sub {
	display: block;	/*非表示から表示に切り替える*/
	position: relative;z-index: 2;
}
/*ロゴブロック*/
#sh-sub .logo {
	position: fixed;z-index: 2;
	top: 0px;			/*上から0pxの場所に配置*/
	height: 70px;		/*ブロックの高さ*/
	width: 100%;		/*ブロックの幅*/
	background: #000;	/*背景色*/
}
/*ロゴ画像*/
#sh-sub .logo img {
	width: 200px;		/*画像の幅*/
	margin-top: 22px;	/*上に空けるスペース。上下間をここで調整して下さい。*/
	margin-left: 3%;	/*左に空けるスペース。*/
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big1 {font-size: 24px;}
.fl {float: none;}
.fr {float: none;}
.sh {display:block;}
.pc {display:none;}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*mainブロック
---------------------------------------------------------------------------*/
/*h2タグ*/
#main h2 {
	font-size: 24px;
}
/*h3タグ*/
#main h3 {
	font-size: 14px;	/*文字サイズ*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px;	/*ボックス内の余白*/
}
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;	/*幅*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.upper a {
	width: 50px;		/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
}

}

/*影
---------------------------------------------------------------------------*/

.kage {
	filter: drop-shadow(5px 10px 5px #aaa);	
}

/*テンプレートでは↑出ないので対策
---------------------------------------------------------------------------*/

.upper{
	position:fixed;
	width: 80px;		/*ボタンの幅*/
	line-height: 80px;	/*ボタンの高さ*/
	bottom: 50px;		/*画面の下からの配置場所指定*/
	right: 3%;			/*画面の右からの配置場所指定*/
	background: rgba(255,255,255,0.5);	/*背景色*/
	border: 1px dotted #ccc;			/*枠線の幅、線種、色*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すると正方形になります。*/

}

.upper:hover{
	background: #fff;	/*背景色*/
	border: 1px solid #b4c19a;			/*枠線の幅、線種、色*/
}



/* ボタン */

.shiny-btn8 {
	display: inline-block;
	position: relative;
	width: 45%;/*ボタンの幅*/
	padding: 10px 0;
	margin: auto;
	background-color: #ed4545;/*ボタンの色*/
	box-shadow: 0 3px 0 0 rgba(198, 39, 39, 1);/*影の色(rgbaの値を変更)*/
	border-radius: 5px;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	overflow: hidden;
	transition: 0.2s;
  }
  .shiny-btn8:hover {
	text-decoration: none;
	color: #fff;
	opacity: 0.7;
	box-shadow: none;
	-webkit-transform: translateY(3px);
  }
  .shiny-btn8::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fff;
	animation: shiny-btn8 3s ease-in-out infinite;
  }
  .shiny-btn8::after {
	/* content: "\f054"; */
	/* font-family: 'Font Awesome 5 Free'; */
	font-size: 18px;
	font-weight: bold;
	margin-left: 0.5em;
  }
  @-webkit-keyframes shiny-btn8 {
	0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
  }

  .btn7 {
	display: inline-block;
	position: relative;
	width: 45%;/*ボタンの幅*/
	padding: 10px 0;
	margin: auto;
	background-color: #ed4545;/*ボタンの色*/
	box-shadow: 0 3px 0 0 rgba(198, 39, 39, 1);/*影の色(rgbaの値を変更)*/
	border-radius: 5px;
	/* font-weight: bold;
	font-size: 18px; */
	color: #fff;
	text-align: center;
	text-decoration: none;
	overflow: hidden;
	transition: 0.2s;
  }
  .btn7:hover {
	text-decoration: none;
	color: #fff;
	opacity: 0.7;
	box-shadow: none;
	-webkit-transform: translateY(3px);
  }
  .btn7::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fff;
	
  }
  .btn7::after {
	/* content: "\f054"; */
	/* font-family: 'Font Awesome 5 Free'; */
	font-size: 18px;
	font-weight: bold;
	margin-left: 0.5em;
  }

.review {
	background-color: #ffa126;/*ボタンの色*/
	box-shadow: 0 3px 0 0 rgb(198, 182, 39);/*影の色(rgbaの値を変更)*/
}

.chuo {
	text-align: center;
	margin: 0 0 20px;

}

.coverimg{
	width:100%;
	margin:0 auto; 
	overflow:hidden; 
}
.coverimg img{
	transition:0.5s all;
}
.coverimg img:hover{
		transform:scale(1.2,1.2);
		transition:0.5s all;
}

fieldset {
	border: 1px solid #ccc;	/*下線の幅、線種、色*/
	border-radius:5px;
	/* width: 50%;  */
	/* min-width: 320px; */
}

.horizon > ul > li{
	display: inline;
}

.badge{
	position: relative;
}

.kindle {
    position: absolute;
    top: 2%;
    left: 2%;
	background-color: rgba(228,121,17,0.8);
	/* #e47911; */
	color: #fff;
	border-radius: 5%;
	padding :2px 8px;
	margin :0;
}

.amazon {
    position: absolute;
    top: 2%;
    left: 2%;
	background-color: rgba(255,255,255,0.8);
	/* #e47911; */
	color: #e47911;
	border-radius: 5%;
	padding :2px;
	margin :0;
}

.booth {
    position: absolute;
    top: 2%;
    left: 2%;
	background-color: rgba(252,77,80,0.8);
	/* #fc4d50; */
	color: #fff;
	border-radius: 5%;
	padding :2px 4px;
	margin :0;
}

pre {
	white-space: pre-wrap;
}

.swiper-container {
    max-width:1200px;
    text-align: center;
  }


/* .page-item{
	display: inline;
	border: 1px solid #ccc;
	margin: 3px;
	padding: 10px;
}

.page-link {
	width:100%;
	height:100%;
	
} */

.pagination {
	display: flex;
	padding-left: 0;	
	list-style: none;
	border-radius: 0.25rem;	
  }
  
  .page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
  }
  
  .page-item:last-child .page-link {
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
  }
  
  .page-item.active .page-link {
	z-index: 3;
	color: #fff;
	background-color: #3490dc;
	border-color: #3490dc;
  }
  
  .page-item.disabled .page-link {
	color: #6c757d;
	pointer-events: none;
	cursor: auto;
	background-color: #fff;
	border-color: #dee2e6;
  }
  
  .page-link {
	position: relative;
	display: block;
	padding: 0.5rem 0.75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #3490dc;
	background-color: #fff;
	border: 1px solid #dee2e6;
  }
  
  .page-link:hover {
	z-index: 2;
	color: #1d68a7;
	text-decoration: none;
	background-color: #e9ecef;
	border-color: #dee2e6;
  }
  
  .page-link:focus {
	z-index: 3;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  }


