@charset "UTF-8";   
/* -----------------------------------======================== 共通 ========================----------------------------------- */
/* リンク設定 */
a {
	opacity: 1;
	transition-property: opacity,color,filter;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
	text-decoration: none !important;
}
a:hover{
		opacity: 0.7;
}

/* PC・SP表示設定 */
.none_pc{/* PCとタブレットでは表示消える */
	display: none;
}
.none_sp{/* PCとタブレットでは表示 */
	display:inline;
}


/* ========================1200px以上（PC）======================== */


/* ========================1200px～768px 変換（タブレット）======================== */
@media screen and (min-width: 768px) and (max-width: 1200px) {
/* PC・SP表示設定 */
.none_pc{/* PCとタブレットでは表示消える */
	display:none;
}
.none_sp{/* PCとタブレットでは表示 */
	display:inline;
}
.br-none{/* タブレットとSPで改行無し */
	display: none;
}
}

/* ========================767px以下になったら変換（スマートフォン））======================== */
@media screen and (max-width: 767px) {

/* PC・SP表示設定 */
.none_pc{/* SPのみ表示 */
	display:inline;
}
.none_sp{/* SPのみ非表示 */
	display:none;
}
.br-none{/* タブレットとSPで改行無し */
	display: none;
}
}


/* -----------------------------------======================== TOPのナビゲーション設定 ========================----------------------------------- */

/* ========================1200px以上（PC）======================== */
/* ナビを追尾 */
#access.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
body.admin-bar #access.nav-fixed {/* 管理バー対策 */
  top: 32px;
}


/* 幅を1200pxから1920pxに変更 */
nav#access .menu{
    max-width: 1920px !important;
    text-align: center;
}
#access > .menu > ul {/* 左詰めを中央に変更 */
    display: inline-block;
    vertical-align: top;
}

/* ========================1200px～768px 変換（タブレット）======================== */
@media screen and (min-width: 768px) and (max-width: 1200px) {

}

/* ========================767px以下になったら変換（スマートフォン））======================== */
@media screen and (max-width: 767px) {
    /* スマホだけは追尾させない */
    #access.nav-fixed {
    position: static;
  }

}