/* ************************************************ 
 *	共通設定
 * ************************************************ */

@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);

* {
	margin: 0px;
	padding: 0px;
}

body {
	/*color: #000000;*/
	font-size: small;
	font-family: 'Noto Sans Japanese' , sans-serif;
	line-height: 1.3em;
	background-color: #fff;
	text-align:center;
}

a { text-decoration: none; }
a:link { color: #000000; } 
a:visited { color: #000000; } 
a:hover { color: #797979; } 
a:active { color: #000000; }

br.clear {
	clear: both;
	font: 0pt/0pt sans-serif;
}

.logo {
	text-align:center;
	margin-top: 10px;
}


img {
	border: 0px;
}



/* ------------------------------------- 
 *	ページレイアウト
 * ------------------------------------- 
 *※ページ全体の幅は960pxとなっています。
    幅を広げる場合は、.sideと.mainのwidth
    の合計値が#containerのwidthになるよう
    設定してください。
 * ------------------------------------- */

/*ページ全体の幅、レイアウトをセンタリング*/
#container {
	margin:0px auto;
	width:960px;
	text-align: left;
}

/*ヘッダー（ページタイトル、グローバルメニュー）*/
.header {
	font-size: 10px;
	width:960px;
	clear:left;
position: relative;
}

.headlink {
    position: absolute;
    right: 0px;
    top: 0px;
}

.headlink ul{
    position: absolute;
    right: 0px;
    top: 0px;
}

.headlink ul li{
    list-style: none outside none;
}

#search {
    font-size: 10px;
    width: 100%;
    position: absolute;
    left: 396px;
    top: 4px;
}

/*　画面右側メニューの幅　*/
.side {
	/*float: left;*/
	width:270px;
}

/*　画面左側の幅　*/
.main {
	width: 960px;
}

/* 特定商取引法に基づく表記（返品など）ボタン */
p#sk_link_other {
	text-align:left;
	margin-top:10px;
}

p#sk_link_other a {
	font-size:12px;
}

/*　フッター（コピーライト）　*/
.footer {
    font-size: 10px;
    width: 960px;
    clear: left;
    margin: 20px auto 20px;
    position: relative;
    padding-right: 20px;
}

#group-list {
	border-top:#838383 dotted 1px;
	padding:5px 0px 0px;
	margin:10px 0px 0px;
}

/* ************************************************ 
 *	tarot
 * ************************************************ */

#tarot {
	font-size: 10px;
}

.tarot_text1 {font-size: 10px}
.tarot_text2 {font-size: 10px; color: #333333; }


/* ************************************************ 
 *	ikgm追記
 * ************************************************ */

/* ************************************************ 
 *	ikgm追記
 * ************************************************ */

/*　float:left;解除　*/
.clear-both {
    clear: both;
    height: 1px;
    font-size: 1px;
    text-align: center;
    overflow: hidden;
    visibility: hidden;
}

/*　float:left;　*/
.nv {
    width: 160px;
    height: auto;
    padding: 5px 5px 5px 5px;
    font-size: 10px;
    float: left;
    text-align: left;
}

/*　navi　*/
#navi {
    position: relative;
}

.dropmenu {
    list-style-type: none;
    margin: 5px auto 10px;
    padding: 0;
    font-family: 'roboto';

    display: flex;
    justify-content: center;
    gap: 30px; /* メニュー間の余白 */
    flex-wrap: wrap; /* 幅が足りない場合は折り返す */
}

.dropmenu:before, .dropmenu:after {
    content: "";
    display: table;
}

.dropmenu:after {
    clear: both;
}

.dropmenu li {
    position: relative;
    flex: 1 1 auto; /* 可変幅 */
    min-width: 160px; /* 文字が詰まらない最小幅 */
    text-align: center;
}

.dropmenu li a {
    display: block;
    margin: 0;
    padding: 15px 0 0px;
    background: #fff;
    color: #000;
    line-height: 1;
    text-decoration: none;
}

.dropmenu li ul {
    list-style: none;
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
}

.dropmenu li ul li {
    width: 100%;
}

.dropmenu li ul li a {
    padding: 14px 18px 11px;
    background: rgba(255,255,255,0.75);
    text-align: center;
}

.dropmenu li:hover > a {
    color: #444;
}

.dropmenu li a:hover {
    color: #444;
}

/* ========= 検索フォーム専用スタイル ========= */
.dropmenu li.menu-search {
  display: flex;
  align-items: flex-end; /* 下揃え */
  padding-bottom: 11px;  /* 他メニューと同じ下余白 */
}

.dropmenu li.menu-search form {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropmenu li.menu-search input[type="text"] {
  padding: 4px 6px;
  font-size: 12px;
  line-height: 1.2;
}

.dropmenu li.menu-search input[type="image"] {
  margin-bottom: 2px; /* アイコン位置の微調整 */
}
/* ========= /検索フォーム専用スタイル ========= */

/* シャッタアニメーション */

#dropmenu li ul li{
  overflow: hidden;
  height: 0;
  transition: .2s;
}
#dropmenu li:hover ul li{
  overflow: visible;
  height: 38px;
}

/* 左からスライド */

#left-to-right ul{
  overflow: hidden;
  width: 0;
  transition: .5s;
}
#left-to-right li:hover ul{
  width: 100%;
}
#left-to-right li:hover ul li a{
  white-space: nowrap;
}

/*それ以外*/

#dropmenu li span {
  background: #fff none repeat scroll 0 0;
color: #000;
display: block;
line-height: 1;
margin: 0;
padding: 0px 0 11px;
text-decoration: none;
}


/*　navi　*/

/* ************************************************ 
 *	SHOPPING GUIDE 
 * ************************************************ */

#sguide {
	font-size:10px;
	margin: 30px 0 0 0;
}

. {
	font-size:10px;

}

input {
  margin-right: 5px;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.left {
float: left;
}

.brandsite {
    position: absolute;
    top: 0px;
    left: 10px;
}

.submenu {
    position: absolute;
    top: 0;
    right: 10px;
    list-style: none;
}

.submenu li {
      margin-left: 10px;
}

.sns {
    position: absolute;
    right: 10px;
    bottom: 24px;
}

.sns li {
  list-style: none;
  margin-left: 5px;
}