/* ************************************************ 
 *  全般
 * ************************************************ */
* {
  margin: 0px;
  padding: 0px;
}
:root {
  --base-color: #143046;
  --link-color: #14259B;
  //--link-color: #036;
  --link2-color: #27acd9;
  --base-dispsize: 1080px;
  --cart-color: #C33;
  --nocart-color: #FFF;
}
html {
  height: 100%;
  overflow: scroll;
}
body {
  background-color: #fff;
  color: var(--base-color);
  font-size: 16px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
body {
  /* chromeの印刷設定対応 */
  -webkit-print-color-adjust: exact;
}
body{
  -webkit-text-size-adjust: 100%;
}
a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  opacity: 0.9;
  text-decoration: none;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

/* ************************************************ 
 *  フォームボタンデザイン（全般）
 * ************************************************ */
select, input, textarea, button {
  vertical-align: middle;
  position: relative;
}
input.edit_btn {
  padding: 2px 6px;
  font-size: 0.9em;
  border: 2px solid var(--base-color);
  background: var(--base-color);
  border-radius: 3px;
  -webkit-border-radius: 3px;  
  -moz-border-radius: 3px;
  color: #fff;
}
input.edit_btn:hover {
  background: #fff;
  color: var(--base-color);
}
input.delete_btn {
  padding: 2px 6px;
  font-size: 0.9em;
  border: 2px solid var(--base-color);
  background: var(--base-color);
  border-radius: 3px;
  -webkit-border-radius: 3px;  
  -moz-border-radius: 3px;
  color: #fff;
}
input.delete_btn:hover {
  background: #fff;
  color: var(--base-color);
}
input.basic_btn {
  padding: 3px 20px;
  font-size: 0.9em;
  border: 2px solid var(--link-color);
  background: var(--link-color);
  border-radius: 3px;
  -webkit-border-radius: 3px;  
  -moz-border-radius: 3px;
  color: #fff;
}
input.basic_btn:hover {
  background: #fff;
  color: var(--link-color);
}
input.order_btn {
  padding: 3px 20px;
  font-size: 1.0em;
  border: 2px solid #fff;
  background: var(--link-color);
  border-radius: 3px;
  -webkit-border-radius: 3px;  
  -moz-border-radius: 3px;
  color: #fff;
  text-align: center;
  margin-top: 5px;
}
input.order_btn:hover {
  background: #fff;
  color: var(--link-color);
}
input.cart_btn {
  width: 100%;
  padding: 5px 20px;
  font-size: 0.9em;
  border: 2px solid var(--cart-color);
  background: var(--cart-color);
  border-radius: 3px;
  -webkit-border-radius: 3px;  
  -moz-border-radius: 3px;
  color: #fff;
}
input.cart_btn:hover {
  background: #fff;
  color: var(--cart-color);
}
input.nocart_btn {
  width: 100%;
  padding: 5px 20px;
  font-size: 0.9em;
  border: 2px solid var(--nocart-color);
  background: var(--nocart-color);
  border-radius: 3px;
  -webkit-border-radius: 3px;  
  -moz-border-radius: 3px;
  color: #666;
}
input.cart_btn2 {
  width: 100%;
  padding: 5px 20px;
  font-size: 0.9em;
  border: 2px solid #666;
  background: #666;
  border-radius: 3px;
  -webkit-border-radius: 3px;  
  -moz-border-radius: 3px;
  color: #fff;
}
input.order2_btn {
  padding: 3px 20px;
  font-size: 1.0em;
  border: 2px solid #fff;
  background: var(--cart-color);
  border-radius: 3px;
  -webkit-border-radius: 3px;  
  -moz-border-radius: 3px;
  color: #fff;
  text-align: center;
  margin-top: 5px;
}
input.order2_btn:hover {
  background: #fff;
  color: var(--cart-color);
}
input.look_btn {
  padding: 3px 20px;
  font-size: 0.9em;
  border: 2px solid var(--cart-color);
  background: var(--cart-color);
  border-radius: 3px;
  -webkit-border-radius: 3px;  
  -moz-border-radius: 3px;
  color: #fff;
}
input.look_btn:hover {
  background: #fff;
  color: var(--cart-color);;
}
button.basic_btn {
  padding: 3px 20px;
  font-size: 0.9em;
  border: 2px solid var(--link-color);
  background: var(--link-color);
  border-radius: 3px;
  -webkit-border-radius: 3px;  
  -moz-border-radius: 3px;
  color: #fff;
}
button.basic_btn:hover {
  background: #fff;
  color: var(--link-color);
}

/* ************************************************ 
 *  共通
 * ************************************************ */


/* ************************************************ 
 *  ヘッダー
 * ************************************************ */
header {
  max-width: 100%;
  height: 75px;
  background-color: #eee;
}
.header {
  margin: 0 auto;
  max-width: var(--base-dispsize);
}
.header .logo {
  padding-top: 10px;
}
.header .logo h1 {
  color: var(--base-color);
  font-size: 20px;
  font-family: 'Ubuntu', sans-serif;
}
.header .logo img {
  max-width: 250px;
  padding-left: 20px;
}
.information {
  max-width:100%;
}
.information ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 5px auto;
  max-width: var(--base-dispsize);
}
.information ul li{
  padding: 5px 10px;
  font-size: 14px;
}
.information ul li u{
  padding: 0 5px;
  font-size: 18px;
  color: #C30;
}
.information ul li a {
  background: var(--link2-color);
  border-radius: 3px;
  -webkit-border-radius: 3px;  
  -moz-border-radius: 3px;
  color: #fff;
  padding: 1px 12px;
  border: 2px solid var(--link2-color);
}

/* ************************************************ 
 *  メニュー
 * ************************************************ */
/* 全体調整CSS */
.hamburger-demo-menubox *{
	font-size: 16px;
}
.hamburger-demo-menubox li{
	font-size: 14px;
}
/* hamburgerここから */
	/* inputを非表示 */
.input-hidden{
	display: none;
}
	/* label */
.hamburger-demo-switch{
	cursor: pointer;
	position: absolute;
	right: 3%;
	top: 1%;
	z-index: 9999;
	width: 4em; /* アイコン（クリック可能領域）の幅 */
	height: 4em; /* アイコン（クリック可能領域の）高さ */
}
/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-demo1:checked ~ .hamburger-demo-switch{
	position: fixed;
}
/* ハンバーガーアイコン */
.hamburger-switch-line1, .hamburger-switch-line1:before, .hamburger-switch-line1:after{
	width: 25px;
	height: 3px;
	background: #333; /* ハンバーガーアイコンの色 */
	position: absolute;
	top: 50%;
	left: 50%;
	transition: .3s;
	content: "";
}
.hamburger-switch-line1{
		transform: translate(-50%, -50%);
}
.hamburger-switch-line1:before{
	transform: translate(-50%, -300%);
}
.hamburger-switch-line1:after{
	transform: translate(-50%, 200%);
}
/* ハンバーガーアイコン･アニメーション */
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1{
	width: 0;
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:before{
	transform: rotate(45deg) translate(-40%, 325%);
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:after{
	transform: rotate(-45deg) translate(-40%, -325%);
}
/* メニューエリア */
.hamburger-demo-menuwrap{
	position: fixed;
	height: 100%;
	background: #fafafa; /* メニューエリアの背景色 */
	padding: 5em 3% 2em;
	z-index: 9998;
	transition: .3s;
	overflow-y: scroll; /* メニュー内容が多い場合に縦スクロールする */
	top: 0;
	left: 100%;
	width: 70%;
}
/* メニューリスト */
.hamburger-demo-menulist{
	margin-right: 3%;
	padding-left: 5% !important; /* !important不要な場合もあり */
	list-style: none;
}
.hamburger-demo-menulist li a{
	text-decoration: none;
	color: #333; /* メニューリストの文字色 */
	display: block;
	padding: .5em 0;
}
/* メニューエリア･アニメーション */
	/* 右から */
#hamburger-demo1:checked ~ .hamburger-demo-menuwrap{
	left: 30%;
}
	/* コンテンツカバー */
#hamburger-demo1:checked ~ .hamburger-demo-cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9997;
	background: rgba(3,3,3,.5);
	display: block;
}


/* ************************************************ 
 *  コンテンツ（全般）
 * ************************************************ */
.content {
  margin: 0 auto;
  max-width: var(--base-dispsize);
  min-height: 500px;
}
.content .warn {
  color: #C00 !important;
  font-size: 12px !important;
}
.content .chk {
  color: #36F !important;
  font-size: 12px !important;
}
.content .info {
  color: #FF0 !important;
  font-size: 12px !important;
  padding: 0 0 0 10px;
}
.content .nostatus {
  text-decoration: line-through;
  color:#C00;
}
.content .btn_bar {
  margin: 0 auto;
  width: 98%;
  padding: 0;
  text-align: right;
}
.content .btn_bar ul {
  
}
.content .btn_bar ul li {
  display: inline-block;
  list-style: none;
}

/* ************************************************ 
 *  ページング
 * ************************************************ */
div.paging {
  overflow: hidden;
  margin: 0 0 20px 0;
}

div.paging ul {
  list-style: none;
  position: relative;
  text-align: center;
}
div.paging ul li {
  //margin: 0 2px;
  position: relative;
  display: inline-block;
}
div.paging ul li span,
div.paging ul li input.page_btn {
  display: block;
  font-size: 14px;
  padding: 0.3em 0.5em;
  border-radius: 3px;
}
div.paging ul li input.page_btn {
  border: 2px solid #EEE;
  background: #EEE;
  color:#262626;
  text-decoration: none;
}
div.paging ul li input.page_btn:hover {
  background: #262626;
  border: 2px solid #262626;
  color: #FFF;
}

/* ************************************************ 
 *  ログイン
 * ************************************************ */
.content .login-logo {
  margin: 0 auto;
  max-width: 400px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.content .login-logo h1 {
  font-family: 'Ubuntu', sans-serif;
  text-align: center;
  font-size: 30px;
  font-weight: normal;
}
.content .login-logo h2 {
  font-family: 'Ubuntu', sans-serif;
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  margin-top: 10px;
}
.content .login-logo img {
  display: block;
  margin:auto;
}
.content .login {
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 0 auto;
  max-width: 400px;
  min-height: 200px;
  background-color: var(--base-color);
  border-radius: 4px;
}
.content .login .login-body {
  margin: 0 auto;
  width: 300px;
}
.content .login .login-body .cp_iptxt {
  position: relative;
  width: 100%;
}
.content .login .login-body .cp_iptxt input[type=text] {
  font: 15px/24px sans-serif;
  box-sizing: border-box;
  width: 100%;
  margin: 8px 0;
  padding: 0.3em;
  transition: 0.3s;
  border: 1px solid #1b2538;
  border-radius: 4px;
  outline: none;
}
.content .login .login-body .cp_iptxt input[type=text]:focus {
  border-color: #69C;
}
.content .login .login-body .cp_iptxt input[type=text] {
  padding-left: 40px;
}
.content .login .login-body .cp_iptxt i {
  position: absolute;
  top: 8px;
  left: 0;
  padding: 9px 8px;
  transition: 0.3s;
  color: #aaaaaa;
}
.content .login .login-body .cp_iptxt input[type=text]:focus + i {
  color: #69C;
}
.content .login .login-body .cp_ippass {
  position: relative;
  width: 100%;
}
.content .login .login-body .cp_ippass input[type=password] {
  font: 15px/24px sans-serif;
  box-sizing: border-box;
  width: 100%;
  margin: 8px 0;
  padding: 0.3em;
  transition: 0.3s;
  border: 1px solid #1b2538;
  border-radius: 4px;
  outline: none;
}
.content .login .login-body .cp_ippass input[type=password]:focus {
  border-color: #69C;
}
.content .login .login-body .cp_ippass input[type=password] {
  padding-left: 40px;
}
.content .login .login-body .cp_ippass i {
  position: absolute;
  top: 8px;
  left: 0;
  padding: 9px 8px;
  transition: 0.3s;
  color: #aaaaaa;
}
.content .login .login-body .cp_ippass input[type=password]:focus + i {
  color: #69C;
}
.content .login .login-body .cp_ipsel {
  position: relative;
  width: 100%;
}
.content .login .login-body .cp_ipsel select {
  /* MAC対策 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.content .login .login-body .cp_ipsel select {
  font: 15px/24px sans-serif;
  box-sizing: border-box;
  width: 100%;
  height: 36px;
  margin: 8px 0;
  padding: 0.3em;
  transition: 0.3s;
  border: 1px solid #1b2538;
  border-radius: 4px;
  outline: none;
  background-color: #fff;
}
.content .login .login-body .cp_ipsel select:focus {
  border-color: #69C;
}
.content .login .login-body .cp_ipsel select {
  padding-left: 36px !important;
}
.content .login .login-body .cp_ipsel i {
  position: absolute;
  top: 8px;
  left: 0;
  padding: 9px 8px;
  transition: 0.3s;
  color: #aaaaaa;
}
.content .login .login-body .cp_ipsel select:focus + i {
  color: #69C;
}
.content .login .login-body .msg_area {
  margin-top: 5px;
  font-size:12.5px;
  color:#FE5656;
  height:25px;
}
.content .login .login-body .btn_area {
  margin-top: 15px;
  text-align: center;
}
.content .login .login-msg {
  margin: 0 auto;
  max-width: 400px;
  margin-top: 30px;
  color: #262626;
  text-align: center;
  font-size:13px;
}
.content .login .login-msg a {
  padding: 0 12px;
  color: #00A6F9 !important;
}
.content .login .login-body .login-btn-submit{
  /* MAC対策 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.content .login .login-body .login-btn-submit{
  width: 100%;
  padding: 10px 0;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  background: var(--link2-color);
  border-style: none;
  border-radius: 5px;         /* CSS3草案 */  
  -webkit-border-radius: 5px; /* Safari,Google Chrome用 */  
  -moz-border-radius: 5px;    /* Firefox用 */  
}
.content .login .login-body .login-btn-submit:hover{
  opacity: 0.8;
}

.content .login-warm {
  margin: 0 auto;
  max-width: 400px;
  margin-top: 10px;
  color: #F00;
  text-align: left;
  font-size:12px;
}
.content .login-warm p {
  padding-bottom: 2px;
}
.content .login-info {
  margin: 0 auto;
  max-width: 400px;
  margin-top: 10px;
  color: #8DCFEF;
  text-align: right;
  font-size:14px;
}
.content .login-info p {
  padding-bottom: 5px;
}
.content .login-info a {
  color: var(--link2-color);
}


/* ************************************************ 
 *  入力フォーム
 * ************************************************ */
.Form {
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 18px;
  padding-bottom: 18px;
  max-width: 100%;
  display: flex;
  align-items: center;
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 320px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 14px;
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 90px;
  display: inline-block;
  text-align: center;
  background: #CC0000;
  color: #fff;
  font-size: 12px;
}
.Form-Item-Label-Any {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 90px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 12px;
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 10px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 800px;
  background: #eaedf2;
  font-size: 18px;
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 10px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 800px;
  background: #eaedf2;
  font-size: 18px;
}
.Form-Item-Select {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 10px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 800px;
  background: #eaedf2;
  font-size: 18px;
}
.Form-List {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.Form-List li {
  display: inline-block;
}
.Form-Msg {
  margin-top: 10px;
  font-size: 12px;
  color: #F00;
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 200px;
  background: var(--link-color);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
  .Form-Item-Label-Any {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
  .Form-List {
    max-width: 290px;
  }
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 140px;
    font-size: 14px;
  }
}


/* ************************************************ 
 *  コンテンツ（タイトル）
 * ************************************************ */
.content .title_viewer {
  border-bottom: 1px dotted #666;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.content .title_viewer h2 {
  font-size: 20px;
  color: #222;
  padding: 0 5px;
  margin: 10px 0;
  font-weight: bold;
}

.content .title_viewer p {
  font-size: 14px;
  color: #666;
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 2px;
}
.content .title_viewer h3 {
  margin: 0 auto;
  max-width: var(--base-dispsize);
  background-color: var(--base-color);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 18px;
  color: #fff;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .content .title_viewer p {
    font-size: 12px;
  }	
}
 
/* ************************************************ 
 *  コンテンツ（検索）
 * ************************************************ */
.content .search_viewer input[type=text] {
  height:20px;
  border:1px solid #666;
  background-color: #eee;
  padding-left:2px;
}
.content .search_viewer input[type=date] {
  height:20px;
  border:1px solid #666;
  background-color: #eee;
  padding-left:2px;
}
.content .search_viewer input[type=file] {
  height:26px;
  border:1px solid #666;
  background-color: #eee;
  padding-left:2px;
}
.content .search_viewer input[type=check] {
  height:20px;
  border:1px solid #666;
  background-color: #eee;
  padding-left:2px;
}
.content .search_viewer input[type=paasword] {
  height:20px;
  border:1px solid #666;
  background-color: #eee;
  padding-left:2px;
}
.content .search_viewer input[type=email] {
  height:20px;
  border:1px solid #666;
  background-color: #eee;
  padding-left:2px;
}
.content .search_viewer select {
  height:24px;
  border:1px solid #666;
  background-color: #eee;
}
.content .search_viewer textarea {
  margin: 4px 0;
  padding: 3px;
  font-size: 14px;
  background-color: #eee;
}
.content .search_viewer {
  margin-bottom: 20px;
}
.content .search_viewer .search_record {
  padding: 10px 0 20px 0;
  border-bottom: 1px dotted var(--base-color);
}
.content .search_viewer table {
  margin: 0 auto;
  border: 1px solid var(--base-color);
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}
.content .search_viewer th {
  color: #fff;
  background-color: #333;
  font-size: 12px;
  font-weight: normal;
  border-style: none;
  border:1px solid var(--base-color);
  text-align:left;
  padding: 1px 10px;
}
.content .search_viewer td {
  border-style: none;
  border: 1px solid var(--base-color);
  vertical-align: middle;
  font-size: 12px;
  height: 30px;
  padding: 1px 10px 1px 5px;
}
.content .search_viewer .err_area {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: #F00;
}
.content .search_viewer .submit_area {
  text-align: center;
  margin-top: 10px;
}
.content .search_viewer ul {
  list-style: none;
  padding-left: 10px;
}
.content .search_viewer ul li {
  display: inline-block;
  margin: 2px 0;
  padding: 0;
}
.content .search_viewer ul li input[type=text] {
    height: 27px;
    font-size: 0.9em;
    border: 1px solid #666;
    background-color: #eee;
    padding: 0 5px;
}
.content .search_viewer ul li select {
    height: 29px;
    font-size: 0.8em;
    background-color: #eee;
}
.content .search_viewer .vertical-scroll-table{
  max-height: 150px;
  overflow: auto;
  overflow-x: hidden;
}


/* ************************************************ 
 *  コンテンツ（基本ベース）
 * ************************************************ */
.content .base_viewer {
  max-width: var(--base-dispsize);
  padding-top: 0;
  padding-bottom: 50px;
}
.content .base_viewer h3 {
  font-size: 18px;
  padding: 0;
  text-align: right;
}
.content .base_viewer p {
  font-size: 16px;
  padding: 10px 0 10px 60px;
}
.content .base_viewer table {
  width: 98%;
  margin: 0 auto;
  border: 1px solid #666;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  margin-top: 10px;
}
.content .base_viewer table caption {
  text-align: left;
  padding-left: 5px;
}
.content .base_viewer .viewer_scroll {
  margin-top: 10px;
  max-height: 500px;
  white-space: nowrap;
  overflow: auto;
}
.content .base_viewer th {
  color: #fff;
  background-color: var(--base-color);
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  height: 20px;
  border: 1px solid #666;
  padding: 6px 5px;
}
.content .base_viewer td {
  border-style: none;
  border: 1px solid #666;
  vertical-align: middle;
  font-size: 12px;
  height: 20px;
  text-align: center;
  padding: 6px 5px;
}
.content .base_viewer td.rtext {
  text-align: right;
  padding-right: 3px;
}
.content .base_viewer td.ltext {
  text-align: left;
  padding-left: 3px;
}

/* ************************************************ 
 *  トップスライドショー
 * ************************************************ */
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:94%;
    margin:0 auto;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

/* ************************************************ 
 *  トップ画面
 * ************************************************ */
.content .top_viewer {
  max-width: 1080px;
  padding-top: 20px;
  padding-bottom: 50px;
}
.content .top_viewer h2 {
  width: 100%;
  margin: 0 auto;
  font-size: 18px;
  padding: 6px 0;;
  text-align: center;
  border-bottom: 2px solid #262626;
  margin-bottom: 10px;
  background-color: #eee;
}
.content .top_viewer ul.top_banner {
  display: flex;
  flex-wrap:wrap;
  list-style: none;
}
.content .top_viewer ul.top_banner li {
  width: calc(100%/4);
  padding: 5px 5px 10px 5px;
  box-sizing: border-box;
}
.content .top_viewer ul.top_banner li img {
  max-width: 100%;
  height: auto;
  border:solid 1px #ccc;
}
.content .top_viewer ul.top_banner li h3 {
  font-size: 12px;
  font-weight: bold;
  color: #369;
}
.content .top_viewer ul.top_banner li h4 {
  font-size: 14px;
  font-weight: normal;
}
.content .top_viewer .top_banner_wrap {
  margin-bottom: 20px;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .content .top_viewer ul.top_banner li {
    width: calc(100%/2);
  }
}

.content .top_viewer ul.top_brand {
  display: flex;
  flex-wrap:wrap;
  list-style: none;
}
.content .top_viewer ul.top_brand li {
  width: calc(100%/4);
  padding: 5px 5px 10px 5px;
  box-sizing: border-box;
}
.content .top_viewer ul.top_brand a {
  display: block;
  height: 100%;
  width: 100%;
  color: #333;
  position: relative;
  border: 1px solid #999;
  border-radius: 2px;
  font-size: 18px;
  padding: 28px 0;
  font-weight: bold;
  text-align: center;
}
.content .top_viewer ul.top_brand a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #333 transparent;
}
.content .top_viewer ul.top_brand:hover {
  opacity: 0.8;
}
.content .top_viewer .top_brand_wrap {
  margin-bottom: 20px;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .content .top_viewer ul.top_brand li {
    width: calc(100%/2);
  }
}

/* ************************************************ 
 *  トップ画面(発注)
 * ************************************************ */
.content .top_season {
  display: flex;
  flex-flow: column;
  list-style: none;
}
.content .top_season li.t1 {
  flex: 1;
  margin: 10px 0;
  border: 1px solid var(--base-color);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px; 
}
.content .top_season li.t1 table {
  width: 96%;
  border: 1px solid #222;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  margin: 10px 10px;
}
.content .top_season li.t1 table th {
  color: #fff;
  background-color: #999;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  height: 20px;
  border: 1px solid var(--base-color);
  padding: 6px 5px;
}
.content .top_season li.t1 table td {
  border-style: none;
  border: 1px solid var(--base-color);
  vertical-align: middle;
  font-size: 12px;
  height: 20px;
  text-align: center;
  padding: 6px 15px;
}
.content .top_season li.t1 table td.txt-limit {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.content .top_season li.t1 h3 {
  color: var(--base-color);
  font-size: 16px;
  padding: 6px 0;
  text-align: center;
  border-bottom: 1px solid var(--base-color);
}
.content .top_season li.t1 h3 span.datemsg {
  color: #F33;
  font-size: 14px;
  padding: 0 10px;
}
.content .top_season li.t1 h3 span.memomsg {
  color: #36F;
  font-size: 12px;
  padding: 0 5px;
}

.content .top_season li.t1 .top_brand {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.content .top_season li.t1 .top_brand li.s1 {
  width: calc(100% / 4 - 42px);
  background-color: var(--link-color);
  padding: 	10px 10px;
  margin: 10px;
  border: 1px solid var(--link-color);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px; 
  text-align: center;
}
.content .top_season li.t1 .top_brand li.s1 {
  background-color: var(--link-color);
  border: 1px solid var(--link-color);
}
.content .top_season li.t1 .top_brand li.s2 {
  background-color: #C03;
  border: 1px solid #C03;
}
.content .top_season li.t1 .top_brand li.s3 {
  background-color: #aaa;
  border: 1px solid #aaa;
}
.content .top_season li.t1 .top_brand li h4 {
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.content .top_season li.t1 .top_brand li.s1 img {
  width: 100%;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .content .top_season li.t1 .top_brand li.s1 {
    width: calc(100% / 2 - 42px);
  }
  
  .content .top_season li.t1 table {
    width: 98%;
    margin: 3px 3px;
  }
  .content .top_season li.t1 table th {
    font-size: 10.5px;
    padding: 6px 2px;
  }
  .content .top_season li.t1 table td {
    font-size: 10.5px;
    height: 20px;
    padding: 6px 3px;
  }
  .content .top_season li.t1 table td.txt-limit {
    max-width: 80px;
  }
}

/* ************************************************ 
 *  注文明細
 * ************************************************ */
.content .order_header {
  margin: 0 auto;
  max-width: var(--base-dispsize);
}
.content .order_header input[type=text] {
  height: 24px;
  border: 1px solid #666;
  background-color: #eee;
  padding: 0 2px;
}
.content .order_header select {
  height:25px;
  border:1px solid #999;
  background-color: #eee;
}
.content .order_header h2 {
  font-size: 24px;
  padding: 0;
  text-align: center;
}
.content .order_header p {
  font-size: 14px;
  padding: 0;
  text-align: left;
}
.content .order_header table {
  width: 100%;
  text-align: center;
  border-collapse:collapse;
  margin-top: 5px;
  margin-bottom: 10px;
}
.content .order_header tr:hover td {
  background-color: #ddd;
}
.content .order_header table th {
  font-size: 12px;
  text-align: center;
  background-color: var(--base-color);
  color: #fff;
  border-style: none;
  border:1px solid #666;
  padding: 2px;
}
.content .order_header table td {
  font-size: 12px;
  text-align: center;
  border-style: none;
  border:1px solid #666;
  padding: 2px;
}
.content .order_model {
  margin: 0 auto;
  max-width: var(--base-dispsize);
  padding-bottom: 30px;
}
.content .order_model ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  list-style: none;
}
.content .order_model ul li {
  width: calc(100% / 3 - 7px);
  margin: 10px 0;
  border: 1px solid var(--base-color);
  margin: 2px 2px;
}
.content .order_model ul li table {
  width: 100%;
  text-align: center;
  margin: 0;
  border-collapse:collapse; 
}
.content .order_model ul li table th {
  font-size: 10.5px;
  text-align: center;
  border-style: none;
  border:1px solid #666;
  height: 21px;
}
.content .order_model ul li table th.ts {
  font-size: 10px;
  text-align: center;
  height: 34px;
}
.content .order_model ul li table th.tss {
  font-size: 9px;
  text-align: center;
  height: 36px;
  //white-space: nowrap;
  //overflow: hidden;
  width: 50px;
}
.content .order_model ul li table th.btn {
  height: 32px;
  font-size: 14px;
}
.content .order_model ul li table td {
  font-size: 11px;
  text-align: center;
  border-style: none;
  border:1px solid #666;
}
.content .order_model ul li table td img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
  margin: 1px auto;
}

.content .order2_model {
  margin: 0 auto;
  max-width: var(--base-dispsize);
  padding-bottom: 30px;
}
.content .order2_model ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  list-style: none;
}
.content .order2_model ul li {
  width: calc(100% / 2 - 6px);
  border: 1px solid var(--base-color);
  margin: 2px 2px;
}
.content .order2_model ul li table {
  width: 100%;
  text-align: center;
  margin: 0;
  border-collapse:collapse; 
}
.content .order2_model ul li table th {
  font-size: 10.5px;
  text-align: center;
  border-style: none;
  border:1px solid #666;
  height: 21px;
}
.content .order2_model ul li table th.ts {
  font-size: 10px;
  text-align: center;
  height: 34px;
}
.content .order2_model ul li table th.tss {
  font-size: 9px;
  text-align: center;
  height: 36px;
  //white-space: nowrap;
  //overflow: hidden;
  width: 50px;
}
.content .order2_model ul li table th.btn {
  height: 32px;
  font-size: 14px;
}
.content .order2_model ul li table td {
  font-size: 11px;
  text-align: center;
  border-style: none;
  border:1px solid #666;
}
.content .order2_model ul li table td img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
  margin: 1px auto;
}

/* ************************************************ 
 *  インボイス
 * ************************************************ */
.content .invoice_header {
  margin: 0 auto;
  max-width: var(--base-dispsize);
}
.content .invoice_header h2 {
  font-size: 24px;
  padding: 0;
  text-align: center;
}

.content .invoice_header table {
  margin-left: auto;
  border-collapse: collapse;
  margin-top: 5px;
  margin-bottom: 10px;
  margin-right: 5px;
}
.content .invoice_header table th {
  font-size: 12px;
  text-align: left;
  border-style: none;
  padding: 2px 5px 0 5px;
}
.content .invoice_header table td {
  font-size: 12px;
  text-align: center;
  border-style: none;
  padding: 2px 5px 0 5px;
  border-bottom: 1px solid var(--base-color);
}
.content .invoice_header .invoice_container {
  display: grid;
  grid-template-columns: 50% 50%;
  margin-bottom: 10px;
}
.content .invoice_header .invoice_container .items {
  border: 1px solid var(--base-color);
  margin-bottom: -1px;
  margin-right: -1px;
  padding-bottom: 10px;
}
.content .invoice_header .invoice_container .items h3 {
  font-size: 12px;
  font-weight: bold;
  padding: 10px 10px 2px 10px;
  margin-bottom: 5px;
}
.content .invoice_header .invoice_container .items h4 {
  font-size: 12px;
  font-weight: normal;
  padding: 0 10px;
  margin-bottom: 5px;
}
.content .invoice_header .invoice_container .items p {
  font-size: 12px;
  padding: 0 10px;
}
.content .invoice_header .invoice_container .items p.items_sep {
  border-bottom: 1px solid var(--base-color);
  margin-bottom: 5px;
}
.content .invoice_viewer {
  max-width: var(--base-dispsize);
  padding-top: 0;
  padding-bottom: 50px;
}
.content .invoice_viewer table {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #666;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  margin-top: 5px;
}
.content .invoice_viewer th {
  color: #fff;
  background-color: #666;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  border: 1px solid #666;
  padding: 4px 5px;
}
.content .invoice_viewer td {
  border-style: none;
  border: 1px solid #666;
  font-size: 12px;
  text-align: center;
  padding: 2px 5px;
}

/* ************************************************ 
 *  一覧画面（展示会発注）
 * ************************************************ */
.content .model {
  margin: 0 auto;
  max-width: var(--base-dispsize);
}
.content .model .modellist {
  width: 350px;
  height: 380px;
  margin-top: 10px;
  box-shadow: 0 0 0 1px #605d54 inset;
  float: left;
  margin: 5px;
}
.content .model .modellist .model_title {
  width: 100%;
}
.content .model .modellist .model_title h2 {
  font-size:18px;
  margin-bottom: 3px;
  background: #222;
  background: var(--base-color);
  color:#fff;
  text-align: center;
  padding: 5px 0;
}
.content .model .modellist .model_title h2 a {
  color:#fff;
}
.content .model .modellist .model_title h2 a:hover {
  color:#FFF10F;
}
.content .model .modellist .model_title p {
  font-size:12px;
  padding: 5px 12px 0 12px;
  color: #333;
}
.content .model .modellist .model_bar {
  width: 90%;
  margin: 0 auto;
  text-align: right;
}
.content .model .modellist .model_bar .btn_red {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  display: inline-block;
  padding: 2px 10px;
  font-size:14px;
  color:#fff;
  background-color:#F30;
}
.content .model .modellist .model_bar .btn_white {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  display: inline-block;
  padding: 2px 10px;
  font-size:14px;
  color:#fff;
  background-color:#fff;
}
.content .model .modellist .model_img {
  margin: 0 auto;
  width: 270px;
  height: 200px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.content .model .modellist .model_img img {
  width: 270px;
  height: 200px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.content .model .modellist .model_img a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
}
.content .model .modellist .model_desc {
  margin: 0 auto;
  width: 290px;
}
.content .model .modellist .model_desc table.tm {
  width: 290px;
  color: #333;
}
.content .model .modellist .model_desc table.tm th {
  font-size:11px;
  width: 45px;
  text-align: left;
  vertical-align: top;
}
.content .model .modellist .model_desc table.tm td {
  font-size:12px;
}

/* ************************************************ 
 *  一覧画面（追加発注）
 * ************************************************ */
.content .model {
  margin: 0 auto;
  max-width: var(--base-dispsize);
}
.content .model .modellist2 {
  width: 350px;
  height: 475px;
  margin-top: 10px;
  box-shadow: 0 0 0 1px #605d54 inset;
  float: left;
  margin: 5px;
}
.content .model .modellist2 .model_title {
  width: 100%;
}
.content .model .modellist2 .model_title h2 {
  font-size:18px;
  margin-bottom: 3px;
  background: #222;
  background: var(--base-color);
  color:#fff;
  text-align: center;
  padding: 5px 0;
}
.content .model .modellist2 .model_title h2 a {
  color:#fff;
}
.content .model .modellist2 .model_title h2 a:hover {
  color:#FFF10F;
}
.content .model .modellist2 .model_title p {
  font-size:12px;
  padding: 5px 12px 0 12px;
  color: #333;
}
.content .model .modellist2 .model_bar {
  width: 90%;
  margin: 0 auto;
  text-align: right;
}
.content .model .modellist2 .model_bar .btn_red {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  display: inline-block;
  padding: 2px 10px;
  font-size:14px;
  color:#fff;
  background-color:#F30;
}
.content .model .modellist2 .model_bar .btn_white {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  display: inline-block;
  padding: 2px 10px;
  font-size:14px;
  color:#fff;
  background-color:#fff;
}
.content .model .modellist2 .model_img {
  margin: 0 auto;
  width: 250px;
  height: 180px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.content .model .modellist2 .model_img img {
  width: 250px;
  height: 180px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.content .model .modellist2 .model_img a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
}
.content .model .modellist2 .model_desc {
  margin: 0 auto;
  width: 320px;
}
.content .model .modellist2 .model_desc table.tm {
  width: 320px;
  color: #333;
}
.content .model .modellist2 .model_desc table.tm th {
  font-size:11px;
  width: 25px;
  text-align: left;
  vertical-align: middle;
}
.content .model .modellist2 .model_desc table.tm td {
  font-size:10.5px;
}
.content .model .modellist2 .model_desc table.tm .st {
  text-align: center;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .content .model .modellist2 {
    width: 96%;
    height: 475px;
    box-shadow: 0 0 0 1px #605d54 inset;
    float: none;
    margin: 0 auto;
	margin-bottom: 10px;
  }
  .content .model .modellist2 .model_desc {
    max-width: 400px;
  }
  .content .model .modellist2 .model_desc table.tm {
    width: 100%;
  }
  .content .model .modellist2 .model_desc table.tm th {
    font-size:12px;
	padding: 2px 0;
  }
  .content .model .modellist2 .model_desc table.tm td {
    font-size:12px;
	padding: 2px 0;
  }
}

/* ************************************************ 
 *  商品詳細
 * ************************************************ */
.content .model .showwrapper {
  display: table;
  table-layout: fixed;
  text-align: center;
  width: 100%;
}
.contentt .model .slidewrapper {
  display: table-cell;
  background-color: #fff;
  margin-top: 20px;
}
.content .model .slidewrapper img {
//  height: 100%;
}
.content .model .slidewrapper .image .galleria-info {
  margin-top: 280px;
  left: 50px !important;
}
.content .model .slidewrapper .image .galleria-info .galleria-info-text {
  background-color: rgba(255,255,255,0.5) !important;
}
.content .model .detail {
  width: 100%;
  margin-top: 10px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}
.content .model .detail table {
  margin-bottom: 30px;
  width: 100%;
}
.content .model .detail th {
  width: 80px;
  background: var(--base-color);
  color:#fff;
  font-size:12px;
  padding: 5px;
}
.content .model .detail td {
  font-size:12px;
  padding: 5px;
  background-color: #fbfaf3;
}
.content .model .editwrapper {
  margin-top: 20px;
  display: table-cell;
  vertical-align: top;
}
.content .model .editwrapper table {
  margin: 5px;;
}
.content .model .editwrapper th {
  background: var(--base-color);
  color:#fff;
  font-size: 10.5px;
  padding: 5px 10px;
}
.content .model .editwrapper th.allsize {
  background: #F63;
}
.content .model .editwrapper input.orderall {
  background-color: #ddd;
}
.content .model .editwrapper table.desc th {
  width: 70px;
}
.content .model .editwrapper table.desc td {
  font-size:12px;
  background-color: #fbfaf3;
  padding: 5px;
}
.content .model .editwrapper table.edit td {
  font-size:10.5px;
  text-align: center;
  width: 75px;
}
.content .model .editwrapper table.memo th {
  background-color: #999;
  color: #fff;
}
.content .model .editwrapper table.memo td {
  font-size:12px;
  text-align:center;
  background-color: #fbfaf3;
  padding: 5px;
}
.content .model .editwrapper .number-spinner input {
  /* MAC対策 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.content .model .editwrapper .number-spinner input {
  height: 30px;
  border: solid 1px #CCC;
  ime-mode: disabled;
  text-align:right;
  width: 30px;
  font-size:12px;
  float:left;
}
.content .model .editwrapper .number-spinner .up,
.content .model .editwrapper .number-spinner .down {
  /* MAC対策 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.content .model .editwrapper .number-spinner .up {
  width: 20px;
  height:30px;
}
.content .model .editwrapper .number-spinner .down {
  width: 20px;
  height:30px;
}
.content .model .editwrapper input {
  //float:left;
}
.content .model .editwrapper .title {
  width: 98%;
  margin-top: 20px;
  background: #222;
  background: var(--base-color);
  color:#fff;
  margin-left: 10px;
  font-size: 12.5px;
  padding: 6px 0;
}
.content .model .editwrapper .msg_area {
  margin-top: 5px;
  margin-left: 10px;
  font-size:11px;
  color:#C00;
  height:25px;
}
.content .model .editwrapper .update_btn {
  margin-left: 12px;
  margin-right: 5px;
}
.content .model .editwrapper .info_msg {
  font-size: 12px;
  color: #C03;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  text-align: left;
}

@media (max-width: 767px) {
  .content .model .slidewrapper {
    width: 98%;
    display: table;
  }
  .content .model .detail {
    width: 100%;
  }
  .content .model .editwrapper {
    width: 100%;
    display: table;
  }
  .content .model .editwrapper table {
    margin-left: 0;
  }
  .content .model .editwrapper .msg_area {
    margin-left: 2px;
  }
  .content .model .editwrapper .update_btn {
    margin-left: 2px;
    margin-right: 2px;
  }
  .content .model .editwrapper  table.edit td {
    width:75px;
  }
  .content .model .editwrapper  table.edit td select {
    width: 44px;
  }
}

/* ************************************************ 
 *  発注画面画像ギャラリー
 * ************************************************ */
.image {
  margin: 0 auto;
  min-width: 480px;
  max-width: 480px;
  min-height: 480px;
  position: relative;
  background-color: #fff;
  margin-bottom: 20px;
}

.image__main__photo {
  width: 100%;
  height: 480px;
  vertical-align: bottom;
  object-fit: contain;
}
.image__sub {
  line-height: 0;
  margin-top: 10px;
}
.image__sub__thumb {
  display: block;
  float: left;
  width: 60px;
  height: 60px;
  cursor: pointer;
  padding-bottom: 15px;
}
.image__sub__thumb img {
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.image__sub__thumb__photo {
  padding: 0;
  margin: 0;
  width: 58px;
  height: 58px;
}
.image__sub__thumb:not(.active) {
  opacity: 0.8;
}
.image__sub__thumb figure {
  position: relative;
}
.image__sub__thumb figure figcaption {
  position: absolute;
  font-size: 10px;
  color: #262626;
  opacity: 1.0 !important;
  bottom: -7px;
  left: 3px;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .image {
    min-width: 400px;
    max-width: 400px;
    min-height: 400px;
  }
  .image__main__photo {
    height: 400px;
  }
  .image__sub__thumb {
    width: 66px;
    height: 66px;
  }
}

/* ************************************************ 
 *  固定エリア
 * ************************************************ */
.total_fixed {
  width: 100%;
  background: var(--base-color);
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
}
.total_fixed .total_fixed_inner {
  margin: 0 auto;
  max-width: var(--base-dispsize);
  padding: 10px 20px;
}

.total_fixed .total_fixed_inner .cart_btn {
  margin: 0 auto;
  max-width: 500px;
}
.total_fixed .total_fixed_inner .cart_btn p {
  font-size: 12px;
  color: #C30;
}
.total_fixed .total_fixed_inner table {
  text-align: center;
  margin: auto;
  border-collapse:collapse; 
}
.total_fixed .total_fixed_inner table th {
  font-size: 14px;
  text-align: center;
  border:1px solid #fff;
  padding: 10px;
  font-weight: bold;
  color: #FF0;
}
.total_fixed .total_fixed_inner table td {
  font-size: 14px;
  text-align: center;
  border: 1px solid #fff;
  padding: 5px 20px;
  color: #fff;
}

/* ************************************************ 
 *  カート
 * ************************************************ */
.content .cart_model {
  margin: 0 auto;
  max-width: var(--base-dispsize);
  padding-bottom: 30px;
}
.content .cart_model .msg_area {
  margin: 15px 5px;
  font-size: 12px;
  color:#C00;
}
.content .cart_model .msg_area span {
  font-weight: bold;
  text-decoration: underline;
}
.content .cart_model .err_area {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  color: #F00;
}
.content .cart_model .memo_area {
  margin-bottom: 20px;
  margin-left: 5px;
}
.content .cart_model .memo_area a {
  color: var(--link2-color);
  font-size: 16px;
}
.content .cart_model .memo_area p {
  margin-top: 10px;
  margin-bottom: 3px;
  font-size: 12px;
}
.content .cart_model .memo_area select {
  height: 40px;
  background: #eee;
  border: 1px solid #bebebe;
  font-size: 1em;
  padding: 5px;
}
.content .cart_model .memo_area textarea {
  width: 98%;
  height: 60px;
  background: #eee;
  border: 1px solid #bebebe;
  font-size: 1em;
  padding: 5px;
}
.content .cart_model .no_cart {
  margin: 0 auto;
  width: 100%;
}
.content .cart_model .no_cart p {
  margin-top: 50px;
  font-size:18px;
  text-align:center;
}
.content .cart_model ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  list-style: none;
}
.content .cart_model ul li {
  width: calc(100% / 3 - 10px);
  margin: 10px 0;
  border: 1px solid var(--base-color);
  margin: 4px;
}
.content .cart_model ul li table {
  width: 100%;
  text-align: center;
  margin: 0;
  border-collapse:collapse; 
}
.content .cart_model ul li table th {
  font-size: 10.5px;
  text-align: center;
  border-style: none;
  border:1px solid var(--base-color);
  height: 24px;
}
.content .cart_model ul li table th.ts {
  font-size: 10px;
  text-align: center;
  height: 40px;
  padding: 0 3px;
}
.content .cart_model ul li table th.tss {
  font-size: 10px;
  text-align: center;
  height: 40px;
  //white-space: nowrap;
  //overflow: hidden;
  width: 50px;
}
.content .cart_model ul li table th.btn {
  height: 30px;
  font-size: 14px;
}
.content .cart_model ul li table td {
  font-size: 11px;
  text-align: center;
  border-style: none;
  border:1px solid var(--base-color);
}
.content .cart_model ul li table td img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .content .cart_model ul li {
    width: calc(98%);
    margin: 10px 3px;
    border: 1px solid var(--base-color);
  }
  .content .cart_model .memo_area textarea {
    width: 96%;
  }
}

/* ************************************************ 
 *  フッター
 * ************************************************ */
footer {
  clear:both;
  max-width:100%;
  height:100px;
  background-color: #eee;
  opacity: 0.6;
}
.footer {
  margin:0 auto;
  max-width:var(--base-dispsize);
}
.footer p {
  font-size:12px;
  text-align: center;
  padding-top: 15px;
}

/* ************************************************ 
 *  ローディング
 * ************************************************ */
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #262626;
  opacity: 0.8;
  z-index: 10001;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: s00px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 10002;
}

