@charset "utf-8";
/* CSS Document */
/*******************************
* 0.目次
*******************************/
/*
1.共通
  (1)* / ブラウザ対応
  (2)html / body
  (3)width
  (4)margin / padding
  (5)font
  (6)color
  (7)float / align
  (8)display
  (9)a
  (10)ul / ol
  (11)header / footer
  (12)table
  (13)input
  (14)ページ共通
  (15)ボタン
  (16)etc.
2.店舗ページ｜店舗予約一覧
  (1)予約登録/編集
  (2)店舗情報編集エディタ
  (3)店舗情報/カレンダー/予約状況
  (4)サブナビゲーション
  (5)etc.
3.エラー
4.プリント
5.お問い合わせ
6.個人情報の取り扱いについて
7.特定商取引法に基づく表示
8.利用規約｜推奨環境
*/
/*******************************
* 1.共通
*******************************/
/*------------------------------
  (1)* / ブラウザ対応
------------------------------*/
* {
  padding: 0;
  margin: 0;
}
/* For modern browsers */
.cf:before,
.cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}

input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
}

/* IE6 */
.hide {
  visibility: hidden;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
  zoom: 1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}
input:focus,textarea:focus{
  border: solid 1px #F82C6C;
}
div.line {
  border-bottom: 1px solid  #BBBBBB;
  margin-top: 100px;
  width: 880px;
}
div.list input{
  margin-right: 10px;
}
/*div.input input{
  margin-right: 5px;
  margin-left: 10px;
}*/

/* IE8 */
.ie8 img{
  width: auto;
}
/*------------------------------
  (2)hrml / body
------------------------------*/
html, body{
  width: 100%;
  /*height: 100%;*/
  min-height: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
html {
  background-color: rgba(237,239,230,0.1);
}
body {
  width: 100%;
  font-size: 100%;
  line-height: 1.5;
}
/*------------------------------
  (3)width
------------------------------*/
.w50p {
  width: 50%;
}
.w80p {
  width: 80%;
}
.w100p {
  width: 97%;
}
/*------------------------------
  (4)margin / padding
------------------------------*/
/* margin */
.mg00   { margin: 0px !important; }
.mg03   { margin: 3px; }
.mg05   { margin: 5px; }
.mg08   { margin: 8px; }
.mg10   { margin: 10px; }
.mg20   { margin: 20px; }
.m_auto { margin:0 auto; }

/* margin-top */
.mt00  { margin-top: 0px; }
.mt03  { margin-top: 3px; }
.mt05  { margin-top: 5px; }
.mt08  { margin-top: 8px; }
.mt10  { margin-top: 10px; }
.mt15  { margin-top: 15px; }
.mt24  { margin-top: 24px; }
.mt30  { margin-top: 30px; }
.mt35  { margin-top: 35px; }
.mt40  { margin-top: 40px; }
.mt48  { margin-top: 48px; }
.mt50  { margin-top: 50px; }
.mt60  { margin-top: 60px; }
.mt1em  { margin-top: 1em; }
.mt2em  { margin-top: 2em; }
.mt3em  { margin-top: 3em; }
.mt4em  { margin-top: 4em; }
.mt6em  { margin-top: 6em; }
.mt8em  { margin-top: 8em; }
.mt10em { margin-top: 10em; }

/* margin-left */
.ml00 { margin-left: 0px; }
.ml03 { margin-left: 3px; }
.ml05 { margin-left: 5px; }
.ml08 { margin-left: 8px; }
.ml10 { margin-left: 10px; }
.ml15 { margin-left: 15px; }
.ml20 { margin-left: 20px; }
.ml22 { margin-left: 22px; }
.ml24 { margin-left: 24px; }
.ml30 { margin-left: 30px; }
.ml40 { margin-left: 40px; }
.ml60 { margin-left: 60px; }

/* margin-right */
.mr00 { margin-right: 0px; }
.mr03 { margin-right: 3px; }
.mr05 { margin-right: 5px; }
.mr08 { margin-right: 8px; }
.mr10 { margin-right: 10px; }
.mr15 { margin-right: 15px; }
.mr20 { margin-right: 20px; }
.mr24 { margin-right: 24px; }
.mr30 { margin-right: 30px; }
.mr35 { margin-right: 35px; }
.mr40 { margin-right: 40px; }
.mr60 { margin-right: 60px; }

/* margin-bottom */
.mb00  { margin-bottom: 0px !important; }
.mb03  { margin-bottom: 3px; }
.mb05  { margin-bottom: 5px; }
.mb05i { margin-bottom: 5px !important; }
.mb08  { margin-bottom: 8px; }
.mb10  { margin-bottom: 10px; }
.mb15  { margin-bottom: 15px; }
.mb20  { margin-bottom: 20px; }
.mb24  { margin-bottom: 24px; }
.mb30  { margin-bottom: 30px; }
.mb40  { margin-bottom: 40px; }
.mb48  { margin-bottom: 48px; }
.mb50  { margin-bottom: 50px; }
.mb60  { margin-bottom: 60px; }
.mb1em { margin-bottom: 1em; }
.mb2em { margin-bottom: 2em; }
.mb3em { margin-bottom: 3em; }
.mb4em { margin-bottom: 4em; }
.mb6em { margin-bottom: 6em; }
.mb8em { margin-bottom: 8em; }
.mb10em { margin-bottom: 10em; }
.mbm2em { margin-bottom: -2em; }

/* margin top/bottom */
.mgy_10 { margin-top: 10px; margin-bottom: 10px; }

/* margin left/right */
.mgx_n01 { margin-left: 14px; margin-right: 13px; }

/* padding */
.pd00 { padding: 0px !important; }
.pd03 { padding: 3px; }
.pd05 { padding: 5px; }
.pd08 { padding: 8px; }
.pd10 { padding: 10px; }

/* padding-top */
.pdt00 { padding-top:0px; }
.pdt03 { padding-top:3px; }
.pdt05 { padding-top:5px; }
.pdt08 { padding-top:8px; }
.pdt10 { padding-top:10px; }
.pdt15 { padding-top:15px; }
.pdt20 { padding-top:20px; }
.pdt24 { padding-top:24px; }
.pdt30 { padding-top:30px; }
.pdt40 { padding-top:40px; }
.pdt50 { padding-top:50px; }
.pdt60 { padding-top:60px; }

/* padding-left */
.pdl00 { padding-left: 0px; }
.pdl03 { padding-left: 3px; }
.pdl05 { padding-left: 5px; }
.pdl08 { padding-left: 8px; }
.pdl10 { padding-left: 10px; }
.pdl15 { padding-left: 15px; }
.pdl20 { padding-left: 20px; }
.pdl24 { padding-left: 24px; }
.pdl30 { padding-left: 30px; }
.pdl40 { padding-left: 40px; }
.pdl60 { padding-left: 60px; }

/* padding-right */
.pdr00 { padding-right: 0px; }
.pdr03 { padding-right: 3px; }
.pdr05 { padding-right: 5px; }
.pdr08 { padding-right: 8px; }
.pdr10 { padding-right: 10px; }
.pdr15 { padding-right: 15px; }
.pdr20 { padding-right: 20px; }
.pdr24 { padding-right: 24px; }
.pdr30 { padding-right: 30px; }
.pdr40 { padding-right: 40px; }
.pdr60 { padding-right: 60px; }

/* padding-bottom */
.pdb00 { padding-bottom: 0px; }
.pdb03 { padding-bottom: 3px; }
.pdb05 { padding-bottom: 5px; }
.pdb08 { padding-bottom: 8px; }
.pdb10 { padding-bottom: 10px; }
.pdb15 { padding-bottom: 15px; }
.pdb20 { padding-bottom: 20px; }
.pdb24 { padding-bottom: 24px; }
.pdb30 { padding-bottom: 30px; }
.pdb40 { padding-bottom: 40px; }
.pdb45 { padding-bottom: 45px; }
.pdb50 { padding-bottom: 50px; }
.pdb60 { padding-bottom: 60px; }

/* padding top/bottom */
.pdv10 { padding-top: 10px; padding-bottom: 10px; }
.pdv15 { padding-top: 15px; padding-bottom: 15px; }

/*------------------------------
  (5)font
------------------------------*/
/* font-family */
p,th,td,dt,dd,li,label,#headerUnread{
  font-family: "メイリオ","Meiryo"," Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
}
h1,h2,h3,h4,h5,h6 {
  font-family: "メイリオ","Meiryo","Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  text-align: left;
}

/* font-size */
.f12px { font-size: 12px; }
.f14px { font-size: 14px; }
.f05em { font-size: 0.5em; }
.f1em  { font-size: 1em; }
.f1-1em { font-size: 1.1em; }
.f1-2em { font-size: 1.2em; }
.f1-5em { font-size: 1.4em; }
.f1-8em { font-size: 1.8em; }
.f2em { font-size: 2em; }
.f3em { font-size: 3em; }
small { font-size: 0.8em; }

/* line-height */
.lh0 { line-height: 0 !important; }
.lh1 { line-height: 1 !important; }
.lh2 { line-height: 2 !important; }

/* font-weight */
.bold { font-weight: bold; }
strong {
  font-weight: normal;
  font-variant: normal;
}
/*------------------------------
  (6)color
------------------------------*/
/* color */
.colGreen { color: #396C19; }
.colBlue  { color: #003366; }
.colRightBlue { color: #0066CC; }
.colOre   { color: #FF6633; }
.colRed01 { color: #E44C4C; }
.colRed02 { color: #FF0000; }
.colYellow { color: #FF9900; }
.colWineRed { color: #990000; }
.colPrice { color: #CC3300; }
.colPurple { color: #663399; }

/* background-color */
.bgGray  { background-color: #F9F9F9; }
.bgWhite { background-color: #fff; }
.bgRed3  { background-color: #ffbfbf; }
/*------------------------------
  (7)float / align
------------------------------*/
/* float */
.float_L {
  float: left;
}
.float_R {
  float: right;
}
.clear {
  clear: both;
}

/* align */
.tLeft {
  text-align: left !important;
}
.tRight {
  text-align: right !important;
}
.tCenter {
  text-align: center !important;
}
.vTop {
  vertical-align: top;
}
.vMiddle {
  vertical-align: middle;
}
.vBottom {
  vertical-align: bottom;
}
/*------------------------------
  (8)display
------------------------------*/
.dBlock {
  display: block !important;
}
.dIBlock {
  display: inline-block !important;
  *display: inline;
  *zoom: 1;
}
.dNone { display: none; }
.dTcell {
  display: table-cell;
  *display: inline;
  vertical-align: middle;
}
.tlFixed {
  table-layout: fixed;
}
.bgNone {
  background-image: none !important;
}
span.pickUp {
  padding: 0.2em 0.4em;
  color: #fff;
  background-color: rgba(224,15,19,1.00);
  behavior: url(../js/PIE.htc);
  border-radius: 2px;
  margin-right: 1em;
}
/*------------------------------
  (9)a
------------------------------*/
a {
  color: #000;
  text-decoration: underline;
}
a:hover {
  /* color: #FF6928; */
  color: #ff4500;
  cursor: pointer;
  text-decoration: none;
}
a:hover .perspective02 {
  opacity:0.7;
  filter: alpha(opacity=70);
}
/*------------------------------
  (10)ul / ol
------------------------------*/
ul,ol {
  list-style-position: inside;
}
li {
  margin-left: 0px;
  list-style-type: none;
}
li.events{
	float: left;
}
li.bold {
  font-weight: bold;
}

/*------------------------------
  (11)header / footer
------------------------------*/
/* ログイン前・ログイン後共通のヘッダーとフッター */
/* ヘッダー */
header {
  text-align: left;
}
/* スマホ時の新規予約登録ボタン */
.newres-box {
  display:none;
}

@media screen and (max-width:1200px){
  .newres-box {
  	display:block;
  	width:100%;
  	height:50px;
    /* background-color: #ff6928; */
    background: rgba(0,0,0,0.8);
  	position:fixed;
  	bottom:30px;
  	left:0;
  	z-index:2000;
  }
  #topcontrol {
  	bottom:100px !important;
  }
}

/* ヘッダーアップデート情報 */
#header .heder-release {
  height: 50px;
  line-height: 50px;
  float: right;
  color: #fff;
  font-size: 18px;
  color: #62990d;
  margin-left: 35px;
}
#header .heder-release a {
  color: #62990d;
  background-color: #fff;
  border: 1px solid #fff;
  font-size: 14px;
  text-decoration: none;
  padding: 4px 20px;
  border-radius: 3px;
  font-weight: bold;
}
#header .heder-release a:hover {
  background-color: #EFEFEF;
  border: 1px solid #EFEFEF;
}

@media screen and (max-width:950px){
  #header .heder-release {
    display: none;
  }
}

/* フッター */
#footer {
  width: 100%;
  min-width:980px;
  height: 30px;
  /* background-color: #ff6928; */
  background: rgba(0,0,0,0.8);
  position:fixed;
  left:0;
  bottom:0;
  z-index:2000;
}
#footer .footer-wrap {
  width: calc(100% - 40px);
  height:100%;
  margin: 0 auto;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  padding:6px 0;
}

#footer .footer-menu {
  float:left;
}

#footer .footer-menu li {
  float:left;
  font-size:12px;
}
#footer .footer-menu a {
  color:#fff;
}
#footer .copyright {
  float:right;
}
#footer .copyright p {
  color:#fff;
  font-size:12px;
}

/* hao.lt - refs #140032 BRISWELL-863*/
@media screen and (max-width: 800px) {
  #footer {
    height: auto;
    min-width: 0;
  }

  #footer .footer-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  #footer .footer-menu {
    flex: 2;
  }

  #footer .footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  #footer .footer-menu li {
    margin-right: 10px;
    font-size: 12px;
  }

  #footer .copyright {
    flex: 1;
  }

  #footer .copyright p {
    margin: 0;
    text-align: right;
  }

  .newres-box {
  	bottom: 48px;
  }

  #app {
  	padding-bottom: 1em !important;
  }

  .contentsBox {
    padding-bottom: 60px !important;
  }
}

#text {
  font-size: 40px;
  color: #eee;
  padding-top: 50px;
  vertical-align: middle;
  font-weight: bold;
}

/* TOPへボタン調整 */
#topcontrol {
  width:69px;
  height:69px;
  z-index:9999;
}

/*------------------------------
  (12)table
------------------------------*/
table {
  border-collapse: collapse;
}
table th, table td {
  padding: 10px 10px 10px 0;
  text-align: left;
}
table th, table td, table td img {
  vertical-align: middle;
}
table th.vertical-top, table td.vertical-top {
  vertical-align: top;
  padding: 0 10px 20px 0;
}
table input[type="text"] {
  vertical-align: middle;
}
table th.ttl {
  font-weight: bold;
  background-image: url('../img/icon-circle02.gif');
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 20px;
}
/*------------------------------
  (13)input
------------------------------*/
input[type="text"], input[type="email"], input[type="tel"], input[type="url"]{
  padding: 3px 0;
}
/* 新規登録/店舗情報登録checkbox */
.checkBoxType input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}
.checkBoxType input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  line-height: 30px;
  cursor: pointer;
  padding: 0px 0px 0px 24px;
}
.checkBoxType input[type="checkbox"] {
  margin: 0px;
  display: none;
}
.checkBoxType2 input[type=checkbox] {
  display: inline-block;
  margin: 0 6px 0 0;
  width: 30px;
  height: 30px;
}
@media (min-width: 1px) {
  .checkBoxType input[type=radio],
  .checkBoxType input[type=checkbox] {
    display: none;
    margin: 0;
  }
  .checkBoxType input[type=radio] + label,
  .checkBoxType input[type=checkbox] + label {
    padding: 0 0 0 24px;
  }
  .checkBoxType input[type=radio] + label::before,
  .checkBoxType input[type=checkbox] + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: #FFF;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .checkBoxType input[type=radio] + label::before {
  	left:10px;
  }
  .checkBoxType input[type=radio] + label::before {
    border: 2px solid #ccc;
    border-radius: 30px;
  }
  .checkBoxType input[type=checkbox] + label::before {
    border: 2px solid #ccc;
  }
  .checkBoxType input[type=radio]:checked + label::after,
  .checkBoxType input[type=checkbox]:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
  }
  .checkBoxType input[type=radio]:checked + label::after {
    left: 15px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    /* background: #e64a48; */
    background: #E70000;
    border-radius: 8px;
  }
  .checkBoxType input[type=checkbox]:checked + label::after {
    left: 3px;
    width: 16px;
    height: 8px;
    margin-top: -8px;
    /* border-left: 3px solid #e64a48;
    border-bottom: 3px solid #e64a48; */
    border-left: 3px solid #E70000;
    border-bottom: 3px solid #E70000;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .checkBoxType input[type=checkbox]:disabled + label::before {
    border-color:#ddd;
  }
  .checkBoxType input[type=checkbox]:disabled + label::before {
    background: #eee;
  }
  .checkBoxType input[type=checkbox]:disabled + label::after {
    border-left-color:#ec7675;
    border-bottom-color:#ec7675;
  }
  .checkBoxType input[type=checkbox]:disabled + label {
  	cursor:default !important;
  }
}
/*------------------------------
  (14)ページ共通
------------------------------*/
#sample{    }
#sample1{    }
#wrapper {
  padding: 5em 0;
  height: 100%;
}
#container {
  width: 100%;
  position: relative;
  height: auto !important;
  height: 100%;
  min-height: 100%;
}
#contentsArea {
  position: relative;
  /*max-width:1200px;*/
  max-width:80%;
  width:100%;
  min-width: 980px;
  margin: 0 auto;
  text-align: left;
}
#contentsArea .submit {
  margin: 0 auto;
  text-align: center;
}
.contentsBox > p img, #contentsArea > p img {
  vertical-align: middle;
}
.contentsBox {
  position: relative;
  word-wrap: break-word;
  background-color: #fff;
  padding: 42px;
  margin-bottom: 100px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
}
.contentsBox > p {
  text-align: justify;
  margin-bottom: 1em;
  vertical-align: middle;
}
.contentsBox2 {
  background-color: #fff;
  padding: 42px;
}
.contentsBox3 {
  background-color: #fff;
  padding: 42px 42px 0;
}
.contentsBox4 {
  position: relative;
  border: solid 1px #ccc;
  background-color: #fff;
  padding: 42px;
  margin-top: 100px;
  margin-bottom: 100px;
}
#contactArea {
  width: 700px;
  margin: 0 auto;
}

/* タイムテーブルへのリンク */
.btn-totimeline {
  /* background-color: rgba(255,105,40,1); */
  background-color: #ff4500;
  border-radius: 3px;
  border-style: none !important;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 5px;
  height: 30px;
  text-align: center;
  text-decoration: none;
  float: right;
  margin: 6px 20px;
  line-height: 30px;
  padding: 0 12px;
}
.btn-totimeline:hover {
  color:#fff;
}

/* 検索フォーム */
.searchUl {
  margin-top:-40px;
  list-style: none;
  overflow: hidden;
  width: 100%;
}
.searchUl li {
  display: inline;
  line-height: 3;
  float: right;
}
.searchUl li.form {
  display: inline;
  line-height: 3;
  float: right;
}
.searchUl li img {
  vertical-align: middle;
}
.searchUl li input[type=text] {
  padding: 5px;
  margin: 0 0.5em;
  height: 19px;
  border: 1px solid #ccc;
  width: 100px;
}
.searchUl input[type = "image"] {
  margin-bottom: -10px;
}
.search_error {
  clear: right;
  overflow:hidden;
  color: #F55457;
  margin-top: -5px;
}
.searchBlock {
  clear: right;
  overflow: hidden;
  margin-top: -5px;
}
/* 店舗選択の表示ボタン */
#check, #dl {
  /* margin-top: 5px; */
  height: 43px;
}
/* ページタイトル */
h1#pageTitle {
  line-height: 1;
  margin-bottom: 1em;
  clear: both;
}
.title01 {
  clear: both;
  font-size: 1.3em;
  font-weight: bold;
  margin-left: 0.3em;
  margin-bottom: 0.4em;
  background-image: url(../img/icon-circle01.svg);
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 1.3em;
}
.title01sub {
  font-size: 1.2em;
  font-weight: bold;
  display: block;
  margin-right: 0.4em;
  margin-bottom: 0.4em;
  float: left;
  background-image: url(../img/icon-circle01thin.svg);
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 1.3em;
}
.title01sub02 {
  font-size: 1.2em;
  font-weight: bold;
  display: block;
  margin-right: 0.4em;
  margin-bottom: 0.1em;
  float: left;
  background-image: url(../img/icon-circle02.svg);
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 1.3em;
}

.title02 {
  font-weight: bold;
  margin-bottom: 1em;
}
.title02 small {
  font-size: 0.7em;
  color: #BB0003;
  margin-left: 1em;
}
.title03 {
  margin: 2em 0 1em;
  font-size: 1.8em;
}
.title04 {
  color: #FFF;
  background-color: #8C0000;
  line-height: 3;
  text-align: center;
  font-weight: bold;
}
.edittitle04 {
  color: #fff;
  background-color: #8C0000;
  text-align: center;
  font-weight: bold;
}
.title05 {
  margin-bottom: 1em;
  font-size: 1.5em;
}
.titleP {
  font-weight: bold;
  background-image: url('../img/icon-circle02.gif');
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 20px;
  clear: both;
}
.titleP2 {
	font-size: 1.3rem;
}

/* 店舗名 */
.shopName {
  float: left;
  margin-top: 10px;
}
.shopTitle {
  margin-bottom: 2em;
}
.shopTitle .title01 {
  margin: 0;
  margin-bottom: 10px;
}
.shopTitle .dayData {
  margin-top: 0.5em;
}
.shopTitle01 {
  background-image: url(../img/icon-circle01.svg);
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: left center;
  font-weight: bold;
  font-size: 1.3em;
  padding-left: 1.2em;
  margin-right: 1em;
  line-height: 130%;
  float: left;
}
.shopTitle01Margin {
  margin-top: 80px;
  margin-bottom: 0;
  margin-bottom: 5px;
}
.shopTitle02 {
  background-image: url(../img/icon-circle02.svg);
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: left top;
  font-weight: bold;
  font-size: 1.0em;
  padding-top: 0em;
  padding-left: 1.3em;
  line-height: 105%;
  height: 50px;
  word-wrap: break-word;
}
/* テーブル */
.Table01 {
  padding: 0;
  margin: 0;
  border-collapse: collapse;
  min-width: 980px;
  width:100%;
  border-top: solid 10px #FF4500;
  background-color: #FFF;
  margin-bottom: 40px;
  table-layout: fixed;
  word-break: break-all;
  clear: both;
}
.Table01 th,.Table01 td {
  padding: 0;
  margin: 0;
}
.Table01 th {
  font-weight: bold;
  background-color: #FFFFE0;
  border-right: solid 1px #F7F7F7;
  text-align: center;
}
.Table01 tr {
  border: solid 1px #ccc;
  border-right-style: none;
  border-left-style: none;
}
.Table01 td {
  text-align: center;
}
.Table01 img {
  max-width: none!important;
}
.Table02 {
  margin: 0!important;
  margin-bottom: 30px!important;
  table-layout: fixed;
}
.td1 {
  width: 40px;
}
.td2 {
  min-width: 43px;
  width: 5.96%;
}
.td3 {
  /* huu.nv - refs 118045 - BRISWELL-634 */
  width: 6.5rem;
}
/* huu.nv - refs 118045 - BRISWELL-634 */
td .el .customer-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  white-space: pre-wrap;
}
.td4 {
  min-width: 120px;
  width: 14.50%;
}
.td5 {
  /* huu.nv - refs 118045 - BRISWELL-634 */
  width: 6.7rem;
}
.td6 {
  width: 110px;
}
.td7 {
  width: 140px;
}
.td8 {
  min-width: 230px;
  /* huu.nv - refs 118045 - BRISWELL-634 */
  width: 20%;
}
.td9 {
  width: 75px;
}
.td6_v2 {
  min-width: 120px;
  width: 13.57%;
}
.el {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  paddign-right: 50px;
}
.boxSizing {
  table-layout: fixed;
}
.boxSizing tr,.boxSizing th,.boxSizing td {
  box-sizing: border-box;
}
tr.TableBackRed td {
  background-color: #FF9897;
}
tr.TableBackOrange td {
  background-color: #FFCD95;
}
tr.TableBackBlue td {
  background-color: #BEDEFF;
}
tr.TableBackGray td {
  background-color: #EEE;
}
tr.TableBackDGray td {
  background-color: #D3D3D3;
}
.bGray th,.bGray td {
  border-top: 1px solid #CCC;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
}
.tdOf {
  overflow-y: auto;
  max-height: 100px;
  text-align: left;
}
.listTable th {
  font-size: 12px;
  padding: 1em 0.7em !important;
}
.listTable td {
  font-size: 14px;
  padding: 5px 0.5em !important;
  vertical-align: middle;
  border-top: solid 1px #ccc;
}
.listTable .update {
  line-height: 1;
  border-left: none;
  text-align: right;
  font-weight: bold;
}
.listTable .needless {
  border-right: none;
}
.listTable td img {
  vertical-align: middle;
  margin-right: 5px;
}
.btn-wrap2 {
	display: flex;
	align-items: center;
}
div table th, tr .selectname {
  padding: 0;
  white-space: nowrap;
  font-weight: 400;
  vertical-align: middle;
}

/* カルーセル */
/* カルーセル */
.calenderCarouselWrap,.calenderCarouselWrap02 {
  position: relative;
  background-color: #fff;
  margin: 0 auto;
}
.calenderLeft,.calenderRight,.calenderLeft02,.calenderRight02 {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  cursor: pointer;
}
.calenderTable td,.calenderTable th,.calenderTable02 td,.calenderTable02 th   {
  padding: 0 !important;
  text-align: center !important;
  font-weight: bold;
  line-height: 1;
}
.whiteIBox th,.whiteIBox td {
  line-height: 2;
}
/* 予約一覧カルーセル */
.calenderRight {
  right: 3px;
}
.calenderLeft {
  left: 3px;
}
.calenderTableBox {
  width: 200px;
  float: left;
}
.calenderTable {
  width: 155px;
  margin: 10px auto;
}
.calenderTable thead th {
  background: none;
}
.calenderTable tr.yearTr th {
  font-size: 1.2em !important;
  line-height: 2;
}
.calenderTable tr.monthTr th {
  line-height: 1.5;
  border-bottom: solid 2px #000;
}
.calenderTable tr.weekTr td {
  line-height: 1.5;
  font-size: 0.8em;
}
.calenderTable tbody td {
  font-size: 0.8em;
}
.calenderTable td:nth-child(1),.calenderTable02 td:nth-child(1) {
  color: #B50003;
}
.calenderTable td:nth-child(7),.calenderTable02 td:nth-child(7) {
  color: #003280;
  padding-right: 1em;
}
/* イベント登録カルーセル */
.calenderCarouselWrap02 {
  width:520px;
}
.calenderLeft02 {
  left: 0px;
  top: 230px;
}
.calenderRight02 {
  right: 0px;
  top: 230px;
}
.calenderTableBox02 {
  width:520px;
  height: 420px;
  float: left;
  overflow: hidden;
}
.calenderTable02 {
  width:458px;
  margin: 10px auto;
}
.calenderTable02 tbody td {
  cursor: pointer;
}
.calenderTable02 tr.yearTr th {
  font-size: 1.8em !important;
  line-height: 1;
}
.calenderTable02 tr.monthTr th {
  line-height: 1.8;
  border-bottom: solid 2px #000;
}
.calenderTable02 tr.monthTr big {
  font-size: 1.5em;
}
.calenderTable02 tr.weekTr td {
  line-height: 2.4;
  font-size: 0.8em;
}
.calenderTable02 tbody td {
  font-size: 1.2em;
  line-height: 2.5em;
}
.calenderTable02 tbody td a {
  display: block;
}
/* 予約一覧テーブル */
.losesTable {
  border-collapse: collapse;
  width: 100%;
  border-top: 10px solid #ff4500;
  background-color: #fff;
  margin: 2em 0 0;
  display: inline-table;
  word-break: break-all;
}
.losesTable2 {
  border-collapse: collapse;
  width: 100%;
  border-top: 10px solid #ff4500;
  background-color: #fff;
  margin: 0;
  display: inline-table;
  word-break: break-all;
}
.losesTable input[type="text"],
.losesTable select {
  box-sizing: border-box;
}
.losesTable input[type="text"],
.losesTable select,
.losesTable .freeNote {
  width: 100%;
  margin-bottom: 5px;
  border: solid 1px #ccc;
}
.losesTable .updater { width: 25%; }
.losesTable input[type="text"]:focus,
.losesTable select:focus,
.losesTable .freeNote:focus {
  outline: solid 1px #ff9e31;
}
.losesTable thead th {
  border: solid 1px #CCC;
  background-color: #ffffe0;
  text-align: center;
  padding: 1.5em 1em;
}
.losesTable tbody td {
  border-left: solid 1px #CCC;
  border-right: solid 1px #CCC;
  border-bottom: solid 1px #CCC;
  text-align: center;
  padding: 1.5em 1em;
}
.losesTable tbody tr.checkedTr {
  background-color: #E9E9E9;
}
.losesTable tbody td select {
  width: 100%;
  *width: auto !important;
}
/* 忘れ物メッセージ */
.lostArticleArea {
  float: right;
  position: relative;
  margin-top: 10px;
  margin-bottom: 0px;
  vertical-align: middle;
  font-family: "Century Gothic","AppleGothic","メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  display: none; /*メッセージ非表示*/
}
.lostArticleArea p {
  float: left;
  font-weight: bold;
  margin-right: 10px;
}
ul.lostArticle {
  margin: 0 0 2em;
  padding-left: 0;
  list-style-type: none;
  width: 100%;
  overflow: hidden;
}
ul.lostArticle li {
  float: left;
  word-wrap: break-word;
}
ul.lostArticle li a {
  margin-left: 18.6px;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #CCC;
  text-align: center;
  text-decoration: none;
  background-color: #FFF;
  color: #FF5F17;
  font-weight: bold;
  font-size: 1em;
  width: 179px;
  position: relative;
}
ul.lostArticle li a:hover {
  background-color: #ff4500;
  color: #FFF;
}
ul.lostArticle span.demoArea:nth-child(1) li a {
  margin-left: 0px;
}
ul.lostArticle li a .demo2 {
  left: 0;
  bottom: 100%;
}
.demo2 {
  display: none;
  position: absolute;
  z-index: 10;
}.lostArticleArea .demo2 {
  right: 80%;
  top: 10px;
}
.demo2 img.close {
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
}
.lostArticleArea .demoBtn {
  float: left;
  margin-left: 0.5em;
  vertical-align: middle;
}
/* ライトボックス */
#lightBox {
  float: right;
  cursor: pointer;
  text-align: right;
  font-family: "Century Gothic","AppleGothic","メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-weight: bold;
  vertical-align: middle;
}
#lightBoxTable {
  width: 100%;
  background-color: #fff;
  border: 6px solid #FF5F17;
  padding: 5px;
}
#lightBoxTable2 {
  margin: 0;
  background-color: #fff;
  border: 6px solid #FF5F17;
  padding: 5px;
}
#lightBoxTable th {
  text-align: left;
  font-size: 1.0em;
  font-style: normal;
  color: #8C2300;
}
* html #lightBoxTable th {
  background-color: #ddd;
  text-align: left;
  font-weight: bold;
  font-style: normal;
  font-size: 90%;
  color: #333;
}
#lightBoxTable th,#lightBoxTable td {
  padding: 0px 8px 5px 5px;
}
#lightBoxTable th,#lightBoxTable td,#lightBoxTable td img {
  vertical-align: middle;
}
#lightBoxTable input[type="text"],#lightBoxTable select {
  width: 100%;
  vertical-align: middle;
}
#lightBoxTable input[type="text"].calendar {
  width: auto;
  margin-right: 5px;
}
* html #lightBoxTable56 td {
  font-size: 90%;
}
.messageStyle td textarea {
  resize: vertical;
}
.messageStyle textarea {
  width: 100%;
}
.lostArticleArea p {
  float: left;
  font-weight: bold;
}
.mes {
  clear: both;
}
nav.mes {
  width: 100%;
  padding-top: 30px;
}
.calendar {
  position: relative;
}
#ui-datepicker-div    { z-index: 8031 !important; }
#glayLayer {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  background-color: rgba(0,0,0,0.80);
}
* html #glayLayer {
  position: absolute;
}
#setLayer {
  height: 100%;
  overflow-y: scroll;
  position: relative;
}
#overLayer {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
}
* html #overLayer {
  position: absolute;
}
#overLayer.editOverLayer {
  position: absolute;
}
#overLayer img.close {
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
}
input[type="text"],select {
  padding: 3px 0;
}
select#selShopId,select#selectShop {
  padding: 3px 0;
  height: 30px;
  float: left;
  width: 240px;
}

select#selShopId.shopid2 {
  padding: 0;
  height: 44px;
  float: left;
  width: 360px;
}

select#selMonth, select#selYear {
  height: 30px;
}
input[type="password"],select {
  padding: 3px 0;
}
select.select-size {
  height: 30px;
  width: 240px;
}
select.item {
  color: #616161;
  font-size: 16px;
  padding: 10px 6px !important;
  width: 185px;
  border: 0;
  border: solid 1px #9e9d9b;
  border-radius: 4px;
  background: #fff;
  /* margin-bottom: 25px; */
  height: 44px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

select.item.size2 {
	height: 28px;
	padding: 0 !important;
	width: 100%;
}


/* フロートメニュー */
#floatMenu {
background: #fff; /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjU3JSIgc3RvcC1jb2xvcj0iI2U1ZTVlNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
background: -moz-linear-gradient(top,  #fff 0%, #e5e5e5 57%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(57%,#e5e5e5)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #fff 0%,#e5e5e5 57%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #fff 0%,#e5e5e5 57%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #fff 0%,#e5e5e5 57%); /* IE10+ */
background: linear-gradient(to bottom,  #fff 0%,#e5e5e5 57%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-8 */

  border-radius: 5px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  height: auto;
  margin: 150px auto 100px;
  padding: 5px;
  position: absolute;
  right: 23px;
  top: -70px;
  width: 87px;
  z-index: 1800;
}
#floatMenu .store_event {
  color: #E8530C;
  font-family: Meiryo,sans-serif;
  font-size: 25px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  word-break: break-all;
}
#floatMenu .copy_event {
  color: #FF5811;
  font-family: Meiryo,sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}

/* floatMenu - ネット予約 */
#floatMenu2 {
  background-color:#fff;
  border:4px solid #1abc9c;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  height: auto;
  margin: 450px auto 100px;
  padding: 5px;
  position: absolute;
  right: 23px;
  top: -70px;
  width: 79px;
  z-index: 1800;

}
#floatMenu2 .net_list {
}
#floatMenu2 .net_title {
  font-size:12px;
  text-align:left;
}
#floatMenu2 .net_content {
  text-align:right;
  border-bottom:1px solid #ccc;
  margin:5px 0;
}
#floatMenu2 .net_num {
  font-size:18px;
  font-weight:bold;
}
#floatMenu2 .net_unit {
  font-size:12px;
}

#btn-hidden {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  /* background-color: #e64a48; */
  background-color: #E70000;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  text-decoration: none;
  position: absolute;
  top: -11px;
  right: -11px;
  z-index: 5000;
  border: 2px solid #f6f6f6;
  line-height: 1.2em;
}
#event {
  width: 69px;
  margin: 10px;
  z-index: 4000;
  position: relative;
}
#mikakutei {
  width: 69px;
  margin: 10px;
  z-index: 4000;
  position: relative;
}
#gojitukakunin {
  width: 69px;
  margin: 10px;
  z-index: 4000;
  position: relative;
}

#btn-hidden2 {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #1abc9c;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  text-decoration: none;
  position: absolute;
  top: -11px;
  right: -11px;
  z-index: 5000;
  border: 2px solid #1abc9c;
  line-height: 1.2em;
}


/* 種別欄アイコンのスタイル */
img.class_icon {
  width: 30px;
  height: 30px;
}
img.class_icon2 {
  width: 34px;
  height: 34px;
  margin-left: -4px;
  margin-top: -4px;
}
/* ボタン */
.btn01 {
  text-align: center;
}
.btn01 span a {
  background-color: #DBDBDB;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  color: #111;
  font-size: 0.9em;
  font-weight: bold;
  font-family: "Century Gothic","AppleGothic","メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  text-decoration: none;
  padding: 0.7em 8em;
  margin-bottom: 3em;
}
.btn01 span a:hover {
  background-color: #ADADAD;
}
.btn02 span a {
  color: #FF4F02;
  background-color: #fff;
  display: block;
  width: 175px;
  height:50px;
  box-sizing:border-box;
  *zoom: 1;
  font-size: 18px;
  font-weight: bold;
  font-family: "Century Gothic","AppleGothic","メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  text-decoration: none;
  border: solid 1px #fff;
  padding: 11px;
  text-align: center;
  -moz-border-radius:8px;
  -webkit-border-radius:8px;
  border-radius:8px;
  -moz-transition-duration:0.2s;
  -webkit-transition-duration:0.2s;
  -ms-transition-duration:0.2s;
}
.btn02 span a:hover,.btn02 span a.select {
  color: #FF4F02;
  background-color: #fff;
  border: solid 1px #864444;
}
.btn03 span a {
  color: #fff;
  background-color: #FF4F02;
  border: solid 1px #E4E4E4;
  display: block;
  width: 120px;
  *zoom: 1;
  font-size: 0.9em;
  font-weight: bold;
  font-family: "Century Gothic","AppleGothic","メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  text-decoration: none;
  padding: 0.7em 2em;
}
.btn03 span a:hover,.btn03 span a.select {
  color: #FF4F02;
  background-color: #fff;
}
.menuBtnUl {
  list-style: none;
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}
.menuBtnUl li {
  float: left;
  color: #fff;
  background-color: #FF4500;
  margin-right: 2em;
  border: solid 1px #E4E4E4;
  text-align: center;
}
.menuBtnUl li a {
  display: block;
  color: #000;
  text-decoration: none;
  background-color: #FFF;
  padding: 0.7em 0;
}
.menuBtnUl li a:hover {
  background-color: #FF6928;
  color: #FFF;
}
.menuBtnUl li.select {
  padding: 0.7em 0;
}
.menuBtnUl.menuOption li {
  margin-right: 1em;
}
.menuBtnUl.menuOption li a{
  display: block;
  background-color: #E4E4E4;
}
.menuBtnUl.menuOption li a:hover {
  display: block;
  background-color: #f8f8f8;
}
.menuBtnUl li.post {
  border: 2px solid #FF4500;
  float: right;
}
.pageTop02 { /* ページトップへ戻るボタン */
  margin-bottom: 3em;
  float: right;
}
/* 予約数/予約人数*/
.redArea {
  background-color: #FF4F02;
  color: #fff;
  padding: 1.5em;
}
.redArea02 {
  background-color: #FEEFF0;
  padding: 30px;
  height:75px;
}
.redArea02 .redAreaInIdx {
  line-height: 40px;
}
/* 現在掲載しているサイト */
.grayArea {
  background-color: #EEEEEE;
  padding: 10px 30px;
  margin: 0 auto;
  height: 125px;
}
.big01 {
  font-size: 3em;
  font-weight: bold;
  margin-right: 0.1em;
}
.big02 {
  font-size: 2em;
  font-weight: bold;
  margin-right: 0.1em;
}
/* IDEA_DEV_MGR-2710 */
.big03 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0.1em 0 0.15em;
}
.big04 {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0.1em 0 0.15em;
}
 
.unread {
  font-weight: bold;
  margin-left: 1em;
  padding: 0 0.2em;
}
a.select {
  cursor: default;
}
.price {
  font-size: 18px;
}
.price_lf {
  text-align: right;
  font-size: 18px;
}
.sample {
  padding: 6px;
}
.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #53b300;
  border-bottom: 3px solid #53b300;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}
/*h2タグの右にボタンを置く場合のスタイル*/
h2.leftside {
  float: left;
  clear: none !important;
}
/* 区切り線 */
.lines {
  height: 25px;
  clear: both;
  border-bottom: solid 1px #ecf0f1;
  margin-bottom: 30px;
}
/* 通知 */
.notice {
  background: #FF4500;
  margin: 0 5px;
  padding: 0 5px;
  border-radius: 5px;
}
/* ツールチップ */
/* 予約一覧などのアイコン用tooltip */
.tooltip {
  position: relative;
}
a.tooltip:hover {
  background: none repeat scroll 0 0 #fff;
  background-color: rgba(51,51,51,0.0);
  text-decoration: none;
}
a.tooltip span {
  display: none;
  font-size: 12px;
  line-height: 1.6;
  margin-left: 8px;
  padding: 8px;
  text-align: left;
  z-index: 3000 !important;
}
a.tooltip:hover span {
  background-color: #fff;
  border: 1px solid #ff4500;
  color: #000;
  display: inline;
  position: absolute;
  width: 200px;
  min-height: 50px;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
}
a.ttl:hover span {
  width: 350px !important;
}

a.tooltip2:hover{
   text-decoration: none;
}
a.tooltip2 span {
  display: none;
  padding: 8px;
  font-size: 12px;
  margin-left: 8px;
  line-height: 1.6;
  text-align: left;
  right: 85px;
}
a.tooltip2:hover span {
  display: inline;
  position: absolute;
  background-color: #fff;
  border: 1px solid #FF4500;
  color: #000;
  width: 150px;     /* a.tooltip spanに指定すると、IE6以下でspanの領域でマウスが反応してしまう */
}
a.tooltip3:hover {
  text-decoration: none;
}
a.tooltip3 span {
  display: none;
  padding: 8px;
  font-size: 12px;
  margin-left: 8px;
  line-height: 1.6;
  text-align: left;
  right: 85px;
}
a.tooltip3:hover span {
  display: inline;
  position: absolute;
  background-color: #fff;
  border: 1px solid #FF4500;
  color: #000;
  width: 150px;     /* a.tooltip spanに指定すると、IE6以下でspanの領域でマウスが反応してしまう */
}
a.tooltip4:hover {
  text-decoration: none;
}
a.tooltip4 span {
  display: none;
  padding: 8px;
  font-size: 12px;
  margin-left: 8px;
  line-height: 1.6;
  text-align: left;
  right: 85px;
}
a.tooltip4:hover span {
  display: inline;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ff4500;
  color: #000;
  width: 150px;     /* a.tooltip spanに指定すると、IE6以下でspanの領域でマウスが反応してしまう */
}
  /* IE6以下にのみ適用 */
a.tooltip2:hover span {
  width: 150px;
}
a.tooltip3:hover span {
  width: 150px;
}
a.tooltip4:hover span {
  width: 150px;
}
/* IE */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  li.connects input {
    width: 12%;
  }
  .courseUl li .courseLeft {
    width: 175px;
    float: left;
  }
  .courseUl02 ml18p {
    width: 18%;
  }
  .eventLeft01 input[type="text"], .eventLeft02 input[type="text"] {
    width: 64%;
  }
  a.tooltip span {
    display: none;
    font-size: 12px;
    line-height: 1.6;
    margin-left: 8px;
    padding: 8px;
    text-align: left;
  }
  a.tooltip:hover span {
    background-color: #fff;
    border: 1px solid #ff4500;
    color: #000;
    display: inline;
    position: absolute;
    width: 150px;
  }
  a.tooltip:hover span {
    width: 150px;
  }
  a.tooltip2:hover {
    text-decoration: none;
  }
  a.tooltip2 span {
    display: none;
    padding: 8px;
    font-size: 12px;
    margin-left: 8px;
    line-height: 1.6;
    text-align: left;
    top: 0px;
    right:85px;
  }
  a.tooltip2:hover span {
    display: inline;
    position: absolute;
    background-color: #fff;
    border: 1px solid #FF4500;
    color: #000;
    width: 150px;     /* a.tooltip spanに指定すると、IE6以下でspanの領域でマウスが反応してしまう */
  }
  /* IE6以下にのみ適用 */
  a.tooltip2:hover span {
    width: 150px;
  }
  a.tooltip3:hover{
    text-decoration: none;
  }
  a.tooltip3 span {
    display: none;
    padding: 8px;
    font-size: 12px;
    margin-left: 8px;
    line-height: 1.6;
    text-align: left;
    right: 85px;
    top: 0px;
  }
  a.tooltip3:hover span {
    display: inline;
    position: absolute;
    background-color: #fff;
    border: 1px solid #FF4500;
    color: #000;
    width: 150px;     /* a.tooltip spanに指定すると、IE6以下でspanの領域でマウスが反応してしまう */
  }
  /* IE6以下にのみ適用 */
  a.tooltip3:hover span {
    width: 150px;
  }

  a.tooltip4:hover {
    text-decoration: none;
  }
  a.tooltip4 span {
    display: none;
    padding: 8px;
    font-size: 12px;
    margin-left: 8px;
    line-height: 1.6;
    text-align: left;
    right: 85px;
    top: 0px;
  }
  a.tooltip4:hover span {
    display: inline;
    position: absolute;
    background-color: #fff;
    border: 1px solid #FF4500;
    color: #000;
    width: 150px;     /* a.tooltip spanに指定すると、IE6以下でspanの領域でマウスが反応してしまう */
  }
  /* IE6以下にのみ適用 */
  a.tooltip4:hover span {
    width: 150px;
  }
  .courseRight07 {
    width: 140px;
    margin-left: 47px;
  }
  .courseRight07 img {
    margin-left: -10px;
  }
}

/* FireFox */
@-moz-document url-prefix() {
  li.connects input {
    width: 13%;
  }
  .eventLeft01 input[type="text"], .eventLeft02 input[type="text"] {
    width: 64%;
  }
  a.tooltip span {
    display: none;
    font-size: 12px;
    line-height: 1.6;
    margin-left: 8px;
    padding: 8px;
    text-align: left;
  }
  a.tooltip:hover span {
    background-color: #fff;
    border: 1px solid #ff4500;
    color: #000;
    display: inline;
    position: absolute;
    width: 150px;
  }
  a.tooltip:hover span {
    width: 150px;
  }
  a.tooltip2:hover {
    text-decoration: none;
  }
  a.tooltip2 span {
    display: none;
    padding: 8px;
    font-size: 12px;
    margin-left: 8px;
    line-height: 1.6;
    text-align: left;
    right: 85px;
  }
  a.tooltip2:hover span {
    display: inline;
    position: absolute;
    background-color: #fff;
    border: 1px solid #FF4500;
    color: #000;
    width: 150px;     /* a.tooltip spanに指定すると、IE6以下でspanの領域でマウスが反応してしまう */
  }
  /* IE6以下にのみ適用 */
  a.tooltip2:hover span {
    width: 150px;
  }
  a.tooltip3:hover{
    text-decoration: none;
  }
  a.tooltip3 span {
    display: none;
    padding: 8px;
    font-size: 12px;
    margin-left: 8px;
    line-height: 1.6;
    text-align: left;
    right: 85px;
  }
  a.tooltip3:hover span{
    display: inline;
    position: absolute;
    background-color: #fff;
    border: 1px solid #FF4500;
    color: #000;
    width: 150px;     /* a.tooltip spanに指定すると、IE6以下でspanの領域でマウスが反応してしまう */
  }

  /* IE6以下にのみ適用 */
  a.tooltip3:hover span {
    width: 150px;
  }
  a.tooltip4:hover {
    text-decoration: none;
  }
  a.tooltip4 span {
    display: none;
    padding: 8px;
    font-size: 12px;
    margin-left: 8px;
    line-height: 1.6;
    text-align: left;
    right: 85px;
  }
  a.tooltip4:hover span {
    display: inline;
    position: absolute;
    background-color: #fff;
    border: 1px solid #FF4500;
    color: #000;
    width: 150px;     /* a.tooltip spanに指定すると、IE6以下でspanの領域でマウスが反応してしまう */
  }
  /* IE6以下にのみ適用 */
  a.tooltip4:hover span {
    width: 150px;
  }
  .courseRight07 {
    width: 106px;
    margin-left: 47px;
  }
  .courseRight07 img {
    margin-left: 10px;
  }
}
/* 入力エラー用tooltip */
.tooltipAnno {
  position: relative;
}
.tooltipAnno span {
  display: block;
  position: absolute;
  top: -25px;
  left: 230px;
  color: #E44C4C;
  font-weight: bold;
  background-color: #FFBFBF;
  padding: 10px;
  z-index: 100;
}
.tooltipAnno span:before {
  content: '';
  display: block;
  position: absolute;
  height: 0;
  width: 0;
  top: -13px;
  left: 15px;
  border: 13px transparent solid;
  border-right-width: 0;
  border-left-color: #FFBFBF;
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  z-index:100;
}
/* フォーム追加ボタン */
.plus_img img, img.plus_img{
 cursor: pointer;
}
p.plus_img, li.plus_img{
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  clear: both;
}
/* フォーム削除ボタン */
.addDel {
  clear: both;
  float: right;
  line-height: 1.5;
}
/*--- フォームcss ---*/
fieldset {
  border: medium none;
  font-family: "メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic","Century Gothic","AppleGothic",sans-serif;
}
.confirmation_form {
  margin: 0 auto;
  width: 820px;
  background-color: #fff;
  text-align: center;
}
.confirmation_field_txt {
  background-color: #FFCC99;
  line-height: 40px;
  min-height: 40px;
  margin: 0 auto;
}
.confirmation_field_txt_d {
  background-color: #fff;
  line-height: 45px;
  min-height: 80px;
  padding: 20px;
  width: 590px;
  margin: 0 auto;
  word-wrap: break-word;
}
.request_box {
  text-align: left;
  overflow: hidden;
}
/* 注意書き */
.field_txt_caution{
  color:red;
}
/* 必須項目のフォームのスタイル */
.contentsBox:invalid,.contentsBox2:invalid {
  border: 1px solid #f00;
}
/* ↓フォーム上部のパンくずリスト↓ */
#steps {
  list-style: outside none none;
  margin: 35px 0;
  float: left;
  left: 50%;
  position: relative;
  height: 120px;
}
#steps_area {
  background-color: #1abc9c;
  height: 170px;
  overflow: hidden;
  position: relative;
}
#steps li {
  background-color: #888;
  float: left;
  font-size: 24px;
  margin: 0 8px 40px;
  padding: 15px;
  color: #fff;
  padding: 15px 8px;
  background: -moz-linear-gradient(top,#8f8585 0%,#756e6e);
  background: #7f8c8d;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  text-shadow:
    0px -1px 0px rgba(000,000,000,0.4),
    0px 1px 0px rgba(255,255,255,0.3);
  float: left;
  left: -50%;
  position: relative;
}
#steps li span {
  color: #fff;
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  padding-top: 15px;
  width: 150px;
}
#steps li.current {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  padding: 15px 8px;
  background-color: #e74c3c;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  margin:0 8px 40px;
}
legend {
  width: 100%;
  margin-bottom: 40px;
  padding: 30px 0;
  text-align: center;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  background-color: #1abc9c;
}
/* ↑フォーム上部のパンくずリストここまで↑ */
.input_parts {
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  padding: 5px 0;
  width: 820px;
  font-family: "メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic","Century Gothic","AppleGothic",sans-serif;
}
.input_parts.input_parts_new {
  width: 350px;
}
.course_input_parts {
  font-family: "メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic","Century Gothic","AppleGothic",sans-serif;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
}
.form_title {
  background-color: #1abc9c;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  height: 250px;
  margin-bottom: 40px;
  text-align: center;
  line-height:250px;
  width: 100%;
}
.form_title2 {
  background-color: #1abc9c;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  height: 250px;
  margin-bottom: 40px;
  text-align: center;
  line-height: 250px;
  width: 100%;
  padding: 0 !important;
}
.form_area {
  border: 1px solid #fff;
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background: -webkit-linear-gradient(top, #fff, #fff);
  background: -moz-linear-gradient(top, #fff, #fff);
  background: -ms-linear-gradient(top, #fff, #fff);
  background: -o-linear-gradient(top, #fff, #fff);
  background-image: -ms-linear-gradient(top, #fff 0%, #fff 100%);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  border: 1px solid #ccc;
  -webkit-box-shadow: rgba(0,0,0,0.9) 0 0 0, inset rgba(255,255,255,0.4) 0 0 0;
  -moz-box-shadow: rgba(0,0,0,0.9) 0 0 0, inset rgba(255,255,255,0.4) 0 0 0;
  box-shadow: rgba(0,0,0,0.9) 0 0 0, inset rgba(255,255,255,0.4) 0 0 0;
  font-family: 'Helvetica Neue',Helvetica,sans-serif;
  text-decoration: none;
  vertical-align: middle;
  min-width: 300px;
}
.selectHeight {
  border: 1px solid #9e9d9b;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(0,0,0,0.7) 0 0 0;
  -moz-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(0,0,0,0.7) 0 0 0;
  box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(0,0,0,0.7) 0 0 0;
  width: 200px;
  height: 38px;
  margin-bottom: 30px;
  padding: 3px;
  font-size: 24px;
}

/* inbox */
.inbox,
.inbox-radio {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
}

.inbox2 {
  display: block !important;
}

.inbox-radio input[type="checkbox"],
.inbox input[type="radio"]{
  display: none;
}
.inbox-radio input[type="checkbox"] + label,
.inbox input[type="radio"] + label {
  display: block;
  position: relative;
  background-color: #ccc;
  padding: 8px 20px 8px 35px;
  border-radius: 20px;
  float: left;
  margin: 0 5px 10px;
}
.inbox-radio input[type="checkbox"]:checked + label,
.inbox input[type="radio"]:checked + label {
  /* background-color: #E64A48; */
  background-color: #E70000;
  color: #fff;
}
.inbox-radio input[type="checkbox"] + label:before,
.inbox input[type="radio"] + label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #FFF;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 30px;
}
.inbox-radio input[type="checkbox"]:checked + label:after,
.inbox input[type="radio"]:checked + label:after {
  content: "";
  position: absolute;
  margin-top: -4px;
  top: 50%;
  left: 15px;
  width: 8px;
  height: 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  /* background: #e64a48; */
  background: #E70000;
  border-radius: 8px;
}

.inbox input[type="checkbox"]{
  display: none;
}
.inbox input[type="checkbox"] + label {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  color: #666;
  line-height: 1;
  padding: 12px 0 3px 0;
  text-indent: 0;
  position: relative;
  -moz-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  transition-duration: 0.1s;
  }
.inbox input[type="checkbox"]:checked + label {
  color: #33B78F;
}
.inbox input[type="checkbox"]:checked + label:before {
  content: "";
  border-width: 15px !important;
  border-color: #33B78F !important;
  -moz-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  transition-duration: 0.1s;
  border-color: #33B78F;
}
.inbox input[type="checkbox"] + label:before {
  width: 30px;
  height: 30px;
  line-height: 32px;
  font-size: 42px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  content: "";
  color: transparent;
  padding: 0;
  border: 2px solid #aaa;
  background: #fff;
  margin: -2px 5px 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.inbox input[type="checkbox"]:checked + label:after {
  content: "";
  position: absolute;
  top: 24px;
  box-sizing: border-box;
  display: block;
  left: 5px;
  width: 20px;
  height: 12px;
  margin-top: -8px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.area3{
  clear: both;
}
.input_info_field {
  overflow: hidden;
  clear: both;
}
.input_info_field ul {
  margin: 50px 0;
  border: 5px solid #4db6ac;
  overflow: hidden;
}
.field_txt {
  font-size: 21px;
  font-weight: bold;
  line-height: 25px;
  display: block;
  margin-right: 10px;
  margin-bottom: 4px;
  float: left;
  font-family: "メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic","Century Gothic","AppleGothic",sans-serif;
}
.field_img{
  line-height: 25px;
}
.form-container h2 {
  text-shadow: #fff 0 1px 0;
  font-size: 18px;
  margin: 0 0 10px 0;
  font-weight: bold;
  text-align: center;
}
/* 登録ボタン */
.submit-container {
  padding: 50px 0px;
  text-align: center;
  clear: both;
}
.submit-container.submit-container-new {
  padding: 20px 0px;
}
.submit-button {
  /* background-color: #e64a48; */
  background-color: #E70000;
  border-radius: 3px;
  border-style: none;
  color: #fff;
  cursor: pointer;
  font-size: 21px;
  font-weight: bold;
  padding: 30px 45px;
  text-align: center;
  width: 350px;
}
.submit-button:hover {
  background-color: #ff5f17;
}
/* ページ移動ボタン */
#step_button {
  background-color: #fff;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
  clear: both;
}
input.prev[type="button"] {
  background-color: #1abc9c;
  border-radius: 8px;
  border-style: none;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 20px 45px;
  text-align: center;
  width: 240px;
}
input.prev[type="button"]:hover {
  background-color: #ff5f17;
  color: #fff;
  text-decoration: none;
}
.prev { /* 前のページへ戻る */
  background-color: #1abc9c;
  border-radius: 8px;
  border-style: none;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  padding: 20px 45px;
  text-align: center;
  width: 240px;
  float: left;
}
.next { /* 次へ進む */
  background-color: #1abc9c;
  border-radius: 8px;
  border-style: none;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 20px 45px;
  text-align: center;
  width: 240px;
  float: right;
}
.prev:hover,.next:hover {
  background-color: #ff5f17;
  color: #fff;
  text-decoration: none;
}
.right_button {
  display: block;
  text-decoration: none;
}
.right_button a {
  text-decoration: none;
}
.left_button {
  display: block;
  text-decoration: none;
}
.left_button a{
  margin-left: 180px;
  text-align: center;
  text-decoration: none;
}
/* 注意書きエリア */
.annotation_area {
  background-color: #ecf0f1;
  opacity: 1;
  padding: 20px;
  text-align: left;
  float: left;
  margin-bottom: 40px;
  width: 780px;
}
.annotation_area a{
  font-size: 14px;
  color: #00f;
}
.annotation_area.annotation_area_new {
  background-color: #FFF0F3;
  width: 300px;
  margin: 0 auto;
  float: none;
}
.annotation_area2 {
  background-color: #ecf0f1;
  opacity: 1;
  padding: 20px;
  text-align: left;
  float: left;
  margin-bottom: 17px;
  width: 780px;
}
.map_annotation_area {
  background-color: #ecf0f1;
  opacity: 1;
  padding: 20px;
  text-align: left;
  float: left;
  margin: 20px 0 0;
  width: 780px;
}
.annotation {
  font-size: 14px;
  color: #000;
  line-height: 40px;
}
.annotation a {
  font-size: 14px;
  color: #0000ff;
}
.announce{
  color: #FF4500;
  font-weight: bold;
}
/* 入力フォーム設定 */
.form-field {
  border: 1px solid #9e9d9b;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(0,0,0,0.7) 0 0 0;
  -moz-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(0,0,0,0.7) 0 0 0;
  box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(0,0,0,0.7) 0 0 0;
  width: 590px;
  height: 30px;
  margin-bottom: 30px;
  padding: 3px;
  font-size:24px;
}
.form-field:focus {
  background: #fff;
  color: #0d0d0c;
}
.input_area_box {
  padding: 15px 0 0 0.8em;
}
.input_area_box1 {
  padding: 0 0 0 0.8em;
}
.selectOwner { /* オーナー */
  width: 450px;
}
input.form-field_tel { /* 電話番号入力欄 */
  border: 1px solid #9e9d9b;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(0,0,0,0.7) 0 0 0;
  -moz-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(0,0,0,0.7) 0 0 0;
  box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(0,0,0,0.7) 0 0 0;
  height: 30px;
  margin-bottom: 30px;
  width: 200px;
  font-size: 24px;
}
.form-field-pc1 { /* 郵便番号3桁 */
  width: 42px !important;
  float: left;
}
.form-field-pc2 { /* 郵便番号4桁 */
  width: 55px !important;
  float: left;
}
.field-adarea-hyphen { /* 郵便番号のハイフン */
  font-size: 21px;
  margin: 0 2px;
  line-height: 40px;
  width: 20px;
  display: inline;
  float: left;
}
.form-field-zip { /* 郵便番号入力フォーム */
  border: 1px solid #9e9d9b;
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4), 0 0 0 rgba(0,0,0,0.7) inset;
  float: left;
  height: 30px;
  margin-bottom: 30px;
  padding: 3px;
  width: 120px;
  font-size: 24px;
}
.form_input_radio { /* 支払い方法選択ラジオボタン */
  font-family: "メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic","Century Gothic","AppleGothic",sans-serif;
  clear: both;
}
.form_input_radio_type {
  margin: 20px 0 20px 20px;
}
.form_input_area { /* 支払い方法選択エリア */
  margin-bottom: 40px;
}
input.form-field-adarea {
  border: 1px solid #9e9d9b;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(0,0,0,0.7) 0 0 0;
  -moz-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(0,0,0,0.7) 0 0px 0px;
  box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(0,0,0,0.7) 0 0px 0px;
  height: 32px;
  margin-bottom: 30px;
  width: 450px;
  float: left;
  font-size: 24px;
}
input.form-field-adarea.w100 { width: 100px;}
input.form-field-adarea.w200 { width: 200px;}

.form_select {
  padding: 3px 10px;
  font-size: 24px;
}
/* 入力フォームの先頭位置揃え用width調整 */
.field-width-arrange1 {
  width: 170px;
}
.field-width-arrange2 {
  width: 220px;
}
.form-width-arrange1 {
  width: 370px !important;
}
/* input見出し */
.form_input_txt {
  background: none repeat scroll 0 0 #fff;
  color: #000;
  font-family: "メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic","Century Gothic","AppleGothic",sans-serif;
  font-weight: bold;
  width: 100%;
  min-height: 80px;
  line-height: 80px;
  font-size: 21px;
}
p.field-adr {
  clear: both;
  float: left;
  font-size: 21px;
  line-height: 40px;
  margin: 0 40px;
}
p.field-adarea{
  clear: both;
  font-size: 21px;
  margin: 0 40px;
  float: left;
  line-height: 40px;
}
.labelWidth {
  width: 100px;
}
.formMarginL{
  margin-left: 180px;
}
.formMarginL2{
  margin-top: 20px;
}
p.p_bottom {
  padding-bottom: 30px;
}

/*オウンドメディアなどのチェックボックス*/
.typebox {
	display: inline-block;
	margin-bottom: 15px;
}
.typebox >p {
	font-size: 18px;
	line-height: 2.0rem;
}
.typebox:last-child {
	margin-bottom: 0;
}

/* 媒体利用のチェックボックス関係 - 店舗情報変更 */
.mediaChk-sInfo {
  position: relative;
  float: left;
  width: 100%;
  height: 80px;
  line-height: 80px;
}
.mediaChk-sInfo:last-child {
  margin-bottom: 60px;
}
.mediaChk-sInfo .shopCourseUl {
  margin-top: 20px;
}
.mediaChk-sInfo .seatmanager_chk + label {
  margin-left: 350px;
  margin-top: 8px;
  height: 60px;
  line-height: 60px !important;
  z-index: 2;
}
.mediaChk-sInfo .isgroup_chk + label {
  margin-left: 300px;
}
.mediaChk-sInfo .elemR {
  margin-left: 300px;
}
.mediaChk-sInfo .elemR-fl {
  float: left;
}
.mediaChk-sInfo .mNames {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 60px;
  line-height: 60px;
  margin: auto 0 auto 120px;
  font-size: 18px;
  font-weight: bold;
  z-index: 1;
}
.mediaChk-mAc .medialine:first-child {
  border: none;
}
/* 媒体利用のチェックボックス関係 - 媒体アカウント */
.mediaChk-mAc .mNames {
  font-size: 18px;
  font-weight: bold;
}
.mediaChk-mAc .elemR {
  margin-left: 300px;
}
.mediaChk-mAc .elemR-fl {
  float: left;
}
.mediaChk-mAc .isgroup_chk + label {
  margin-left: 300px;
}
.mediaChk-mAc ul li.acc_lock {
  position: relative;
  background: #e3e3e3;
  border: dashed 2px #f00;
}
.mediaChk-mAc ul li .lock-bln { display: none; }
.mediaChk-mAc ul li.acc_lock .lock-bln {
  position: absolute;
  display: block;
  top: -1.4em;
  font-weight: bold;
  color: #f00;
}

/*--- フォームcssここまで ---*/
/* resisterArea */
.r_content {
  width: 990px;
  margin: 0 auto;
  background: none;
  padding: 30px;
  position: relative;
  top: 30px;
}
.resister {
  border: 1px solid #fff;
  border-radius: 6px;
  position: relative;
  background-color: #fff;
  padding: 20px;
  height: 200px;
  margin-bottom: 50px;
}
.resister .r_message p {
  width: 990px;
}
.resister p {
  font-family: 'Segoe UI', 'Segoe UI Semibold', 'Segoe UI Bold';
  font-size: 28px;
  color: #E44C4C;
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 80px;
}
.resister a {
  padding: 12px;
  background-color: #E44C4C;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
}
/* 登録・更新完了画面 */
.form_commit {
  color: #000;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  width: 800px;
  margin: 0 auto;
  font-weight: bold;
  font-family: "メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic","Century Gothic","AppleGothic",sans-serif;
}
.form_commit .form_commit_title {
  margin-top:40px;
  margin-bottom: 40px;
}
.form_commit_d {
  color: #000;
  text-align: center;
  width: 600px;
  margin: 80px auto 80px;
  text-align: left;
  font-family: "メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic","Century Gothic","AppleGothic",sans-serif;
}
.shoptopFont a{
  font-size: 22px;
}
#login_page {
  /* background-color: #e64a48; */
  background-color: #E70000;
  border-radius: 8px;
  border-style: none;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  width: 210px;
  margin-top: 20px;
  margin: 0 auto;
}
#login_page a {
  display: block;
  width: 150px;
  height: 30px;
  padding: 10px 30px;
  color: #fff;
  text-decoration: none;
}
#register_page {
  width: 280px;
  margin-top: 20px;
  margin: 0 auto;
  text-align: center;
  border-radius: 8px;
  border-style: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  /* background-color: #e64a48; */
  background-color: #E70000;
  cursor: pointer;
}
#register_page a {
  display: block;
  width: 220px;
  height: 30px;
  padding: 10px 30px;
  color: #fff;
  text-decoration: none;
}
#register_page_2 {
  background-color: #fff;
  border-radius: 8px;
  /* border: solid 1px #e64a48; */
  border: solid 1px #E70000;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 0;
  text-align: center;
  width: 280px;
  margin: auto;
}
#register_page_2:hover {
  /* background-color: #e64a48; */
  background-color: #E70000;
}
#register_page_2:hover a {
  /* background-color: #e64a48; */
  background-color: #E70000;
  color: #fff;
}
#register_page_2 a {
  display: block;
  width: 220px;
  height: 30px;
  /* color: #e64a48; */
  color: #E70000;
  padding: 10px 30px;
  text-decoration: none;
}
/* View > Layoutsのcss */
.login_mFont    { font-size: 10px; letter-spacing: -0.1em; }
/* easyselectbox.min.jsで使用しているcss */
.easy-select-box {
  background: #fffdf4;
  border: 2px solid #d2ba85;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: left;
  font-size: 14px;
  color: #0c2245;
}
.easy-select-box .esb-displayer {
  width: 195px;
  background: url(../img/select-box-arrow.png) no-repeat right top;
  color: #0c2245;
  cursor: default;
  height: 30px;
  line-height: 30px;
  padding: 0 3px;
  text-indent: 5px;
}
.easy-select-box:hover .esb-displayer {
  text-decoration: none;
}
.easy-select-box.disabled .esb-displayer,
.easy-select-box:hover.disabled .esb-displayer {
  background-position: 0 -36px;
}
.easy-select-box .esb-dropdown {
  background: #fff;
  border: 1px solid #ccc;
  display: none;
  max-height: 200px;
  overflow: auto;
  position: absolute;
  z-index: 999;
  width: 200px;
}
.easy-select-box .esb-item {
  padding: 3px;
  background: #fffdf4;
  color: #0c2245;
  cursor: default;
}
.easy-select-box .esb-item:hover {
  background: #d2ba85;
  color: #fff;
  text-decoration: none;
}
/* リスト色分け */
.scheduleGuide {
  float: right;
  margin-top: 18px;
  margin-bottom: 5px;
  font-weight: bold;
}
/* 後日確認 */
.day { /* 当日 */
  background-color: #FF9897;
  padding-left: 50px;
  margin-right: 5px;
}
.dayBefore { /* 翌日 */
  background-color: #FFCD95;
  padding-left: 50px;
  margin-right: 5px;
}
.beforeLastDay { /* 翌々日 */
  background-color: #BEDEFF;
  padding-left: 50px;
}
/* ネット予約 */
.net_new { /* 新規 */
  background-color: #FFF;
  border: 1px solid #ccc;
  padding-left: 50px;
  margin-right: 5px;
}
.net_change { /* 変更 */
  background-color: #FFCD95;
  padding-left: 50px;
  margin-right: 5px;
}
.net_cancel { /* キャンセル */
  background-color: #D3D3D3;
  padding-left: 50px;
}
/* メッセージ機能共通 */
#shopMenuUl li {
  width: 10em;
}
#shopTable {
  border-collapse: collapse;
  width: 100%;
  border-top: solid 10px #FF4500;
  background-color: #FFF;
  margin-bottom: 3em;
  word-break: break-all;
}
#shopTable tr {
  border-bottom: solid 3px #F7F7F7;
}
#shopTable tr:nth-child(even) {
  background-color: #E9E9E9;
}
#shopTable th, #shopTable td {
  line-height: 1;
  padding: 1.2em 3em;
}
#shopTable th {
  width: 25%;
  font-weight: bold;
  border-right: solid 3px #F7F7F7;
  text-align: center;
}
#shopTable tr:first-child th {
  background-repeat: no-repeat;
  background-position: 8px center;
}
.shopBox {
  border: solid 1px #ccc;
  background-color: #fff;
  padding: 0.3em 0.5em;
  text-align: left;
  min-height: 4em;
}
.shopBox p {
  line-height: 1.5;
  word-wrap: break-word;
}
/* インフォメーション */
#shopInfoRmation {
  width: 100%;
  margin: 0px 0px 25px 0px;
  border: 1px solid #CCC;
  clear: both;
}
#shopInfoRmation p {
  padding: 10px;
  font-size: 1em;
}
.new_icon {
  margin-right: 10px;
}
span.thx {
  margin-bottom: 25px;
  font-size: 24px;
  display: block;
}
/* トピック */
#shopTopic {
  width: 100%;
  margin: 0px 0px 25px 0px;
  border: 1px solid #ccc;
  background-color: #fff;
}
#shopTopic p {
  padding: 10px;
  font-size: 1em;
}
/* その他 */
dt {
  font-weight: bold;
  width: 120px;
  background: #f2f2f2;
  float: left;
  border-right: solid 1px #CCC;
  padding: 0.5em;
}
dd {
  overflow: hidden;
  padding: 0.5em;
}
#tab {
  width: 980px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
}
#tab li {
  list-style: none;
  padding: 10px;
  text-align: center;
  background: #ccc;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
}
#tab li:first-child {
  background: #fb8a7e;
}
#tab li.tapped {
  background: #fb8a7e;
}
#tab li.notTapped {
  background: #ccc;
}
.fixed {
  top: 0;
  width: 980px;
  position: fixed;
  z-index: 99999;
}
.revisionBtn {
  cursor: pointer;
}
/*------------------------------
  (15)ページ共通ボタン
------------------------------*/
/* グレーボタン（トグルボタン用スタイル） */
.button_gray01 {
  background-color: #888;
  border-radius: 8px;
  border: 1px solid #888;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  margin-bottom:10px;
  padding: 10px 30px;
  text-align: center;
  width: 150px;
  float: right;
}
.button_gray02 {
  background-color: #888;
  border-radius: 8px;
  border: 1px solid #888;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  margin-bottom:10px;
  padding: 10px 0;
  text-align: center;
  width: 220px;
  height: 51px;
  float: right;
}
.button_gray03 {
  background-color: #888;
  border-radius: 8px;
  border: none !important;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  margin-bottom:10px;
  padding: 10px 30px;
  text-align: center;
  width: 150px;
}
.button_gray03:hover {
  background-color: #888;
  color: #fff;
}
/* グレーボタン（ログアウト用スタイル） */
.button_gray_s01 {
  background-color: #888;
  border-radius: 3px;
  border: 1px solid #888;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 2px 5px;
  text-align: center;
  text-decoration: none;
}
.button_gray01:hover, .button_gray02:hover, .button_gray_s01:hover {
  background-color: #fff;
  border: 1px solid #888;
  color: #000;
}
/* グレーボタン（削除用スタイル） */
.button_gray_s03 {
  background-color: #888;
  border-radius: 3px;
  border-style: none !important;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  margin-bottom:5px;
  width: 52px;
  height: 30px;
  text-align: center;
  text-decoration: none;
}
.button_gray_s03:hover {
  color: #fff;
}

/* 赤ボタン */
.button_red01 {
  /* background-color: #e64a48; */
  background-color: #E70000;
  border-radius: 8px;
  /* border: 1px solid #e64a48; */
  border: 1px solid #E70000;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  width: 220px;
  float: right;
  text-decoration: none;
}
.button_red_s01 {
  /* background-color: #e64a48; */
  background-color: #E70000;
  border-radius: 3px;
  /* border: 1px solid #e64a48; */
  border: 1px solid #E70000;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 2px 0;
  width: 85px;
  text-align: center;
  text-decoration: none;
}
.button_red01:hover, .button_red_s01:hover {
  /* color: #fff;
  background-color: #ff5f17;
  border: 1px solid #ff5f17; */
  color: #E70000;
  background-color: #fff;
  border: 1px solid #E70000;
}
/* 赤ボタン（検索・表示用スタイル） */
.button_red_s02 {
  /* background-color: #e64a48; */
  background-color: #E70000;
  border-radius: 3px;
  border-style: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  width: 52px;
  height: 30px;
  text-align: center;
  text-decoration: none;
  float: left;
  margin-left: 10px;
}
.button_red_s03 {
  /* background-color: #e64a48; */
  background-color: #E70000;
  border-radius: 3px;
  border-style: none !important;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  /* margin-bottom:5px; */
  width: 52px;
  height: 30px;
  text-align: center;
  text-decoration: none;
}
.button_red_s03.w72 {
  width: 72px;
  height: 46px;
  /* margin-bottom: 27px; */
}
.button_red_s02:hover,
.button_red_s03:hover {
  color: #fff;
}
/* 緑ボタン */
.button_green01 {
  background-color: #1abc9c;
  border-radius: 8px;
  border: 1px solid #1abc9c;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  width: 220px;
  float: right;
  text-decoration: none;
}
.button_green01:hover {
  color: #fff;
  background-color: #ff5f17;
  border: 1px solid #ff5f17;
}
.button_green02 {
  background-color: #1abc9c;
  border-radius: 8px;
  border: none !important;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  margin-bottom:10px;
  padding: 10px 30px;
  text-align: center;
  width: 150px;
  }
.button_green02:hover {
  background-color: #1abc9c;
  color: #fff;
}
/* 白ボタン */
.button_white01 {
  background-color: #fff;
  border-radius: 8px;
  /* border: 1px solid #e64a48; */
  border: 1px solid #E70000;
  /* color: #e64a48; */
  color: #E70000;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  width: 220px;
  float: right;
  text-decoration: none;
}
.button_white01:hover {
  color: #fff;
  /* background-color: #e64a48; */
  background-color: #E70000;
  /* border: 1px solid #e64a48; */
  border: 1px solid #E70000;
}
/* フォーム追加「+」ボタン */
.btn-plus {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  /* background-color: #e64a48; */
  background-color: #E70000;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  text-decoration: none;
  margin: 0 auto;
  z-index: 5000;
  line-height: 1.2em;
}
.btn-plus:hover {
  color: #fff;
}
/*------------------------------
  (16)etc.
------------------------------*/
/* img */
img {
  max-width: 100%;
  height: auto;
  border: none;
  -ms-interpolation-mode: bicubic;
}
/* cursor */
.cPointer {
  cursor: pointer;
}
/* label */
label {
  cursor: pointer;
}
/* box-sizing */
.box-cont {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
/*******************************
* 2.店舗ページ｜店舗予約一覧
*******************************/
/*------------------------------
  (1)予約登録/編集
------------------------------*/
.editBox {
  padding: 0.5em;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border: solid 1px #AC0002;
  background-color: #FFCFBF;
}
.editBox img.close { /* FancyBoxで閉じるボタンに画像を使用しています */
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}
.editArea02, .editBox {
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}
.editBoxPaddingNone {
  padding: 0;
  padding: 0.4em 0.5em;
}
.editTable {
  width: 100%;
  border-collapse: collapse;
}
.editTable th, .editTable td {
  vertical-align: top;
  padding: 0.5em;
  font-size: 1em 0.8em;
}
.editTable th {
  white-space: nowrap;
}
.editTable td {
  line-height: 1.5;
}
.editTable td img {
  vertical-align: middle;
}
.editTable select, .editTable input[type=text] {
  padding: 0.2em 0;
}
/* 見出し左の表示 */
.courseLeft, .courseLeft02 {
  font-weight: bold;
  background-image: url(../../webroot/img/icon-circle02.gif);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 20px;
  clear: both;
}
/* 予約登録/編集 入力フォーム */
.listPlusTd .shopSelect {
  display: block;
}
.resCourse+.resCourse {
  margin-top: 5px;
}
.resCourse select {
  display: block;
}
/* 予約登録/編集 各項目ごとの囲い */
.editTableBox {
  float: left;
}
.editTableBox input[type=text], .editTableBox textarea, .editTableBox input[type=button], .editTableBox select {
  margin-bottom: 5px;
  resize: none;
}
.editTableBox03 .courseRight05 input#name1, .editTableBox03 .courseRight05 input#name2, .editTableBox03 .courseRight05 input#tel1, .editTableBox03 .courseRight05 input#tel2{
  width: 130px;
}
.editTableBox01 {
  width: 190px;
  min-height: 300px;
  margin-right: 8px;
  word-wrap: break-word;
}
.editTableBox02 {
  width: 190px;
  min-height: 300px;
  margin-right: 8px;
}
.editTableBox03 {
  width: 170px;
  min-height: 300px;
  margin-right: 8px;
}
.editTableBox04 {
  width: 200px;
  min-height: 300px;
  margin-right: 8px;
}
.editTableBox05 {
  width: 200px;
}
.editTableBox05_input {
  width: 160px;
}
.courseUl, .courseUl02, .courseUl03, .courseUl04, .courseUl05, .courseUl06 {
  list-style: none;
}
.courseUl li, .courseUl02 li {
  line-height: 1.2;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.courseUl li, .courseUl02 li, .courseUl03 li, .courseUl04 li, .courseUl05 li, .courseUl06 li, .courseUl li img, .courseUl02 li img, .courseUl03 li img, .courseUl04 li img,  .courseUl05 li img, .courseUl06 li img {
  vertical-align: middle;
}
.courseUl li img, .courseUl02 li img, .courseUl03 li img, .courseUl04 li img, .courseUl05 li img, .courseUl06 li img {
  margin-left: 0;
  margin-right: 5px;
}
.courseUl input[type="text"], .courseUl03 input[type="text"], .courseUl04 input[type="text"], .courseUl06 input[type="text"], .redArea input[type="text"] {
  margin-right: 1em;
}
.courseUl input[type="radio"], .courseUl02 input[type="radio"], .courseUl03 input[type="radio"], .courseUl04 input[type="radio"], .courseUl06 input[type="radio"] {
  margin-right: 0.5em;
}
.courseUl input[type="checkbox"], .courseUl02 input[type="checkbox"], .courseUl03 input[type="checkbox"], .courseUl04 input[type="checkbox"], .courseUl06 input[type="checkbox"] {
  margin: 0 0.5em;
}
.courseUl > li {
  width: 100%;
}
.courseUl li .courseLeft {
  width: 160px;
  float: left;
}
.courseUl02 > li {
  float: left;
}
.courseUl02 input[type="text"] {
  margin-left: 5px;
}
.courseUl03 li {
  float: left;
  width: 33.333%;
}
.courseUl04 li {
  float: left;
  width: 50%;
}
.courseUl05 li {
  width: 100%;
  line-height: 2;
}
.courseUl06 li {
  float: left;
  width: 16.666%;
}
.courseRight05 img{
  margin: 0 auto;
  text-align: center;
}
.courseRight05 select+select {
  margin-top: 5px;
}
.courseRight06 {
  width: 160px;
  margin-left: 56px;
}
.editTable .courseUl05 li .courseLeft05 {
  float: left;
  text-align: right;
  clear: both;
  font-size: small;
}
.editTable .courseUl05 li .courseRight05 {
  float: right;
  margin-left: 5%;
  text-align: left;
}
.editTableBox01 .courseUl05 li .courseLeft05 {
  width: 30%;
}
.editTableBox01 .courseUl05 li .courseRight05 {
  width: 63%;
}
.editTableBox02 .courseUl05 li .courseLeft05 {
  width: 36%;
}
.editTableBox02 .courseUl05 li .courseRight05 {
  width: 58%;
  word-wrap: break-word;
}
.editTableBox03 .courseUl05 li .courseLeft05 {
  width: 20%;
}
.editTableBox03 .courseUl05 li .courseRight05 {
  width: 71%;
}
.editTableBox04 .courseUl05 li .courseLeft05 {
  width: 28%;
}
.editTableBox04 .courseUl05 li .courseRight05 {
  width: 60%;
}
.editTableBox05 .courseUl05 li .courseLeft05 {
  width: 20%;
}
.editTableBox05 .courseUl05 li .courseRight05 {
  width: 75%;
}
.editTableBox01 .courseUl05 li .courseRight05 img,.editTableBox02 .courseUl05 li .courseRight05 img {
  margin-bottom: 5px;
}
/* マイナスマージンやIDの追加は怖かったため、 CLASSを新規で追加し打消し追加を行う */
.editTableBox02 .courseUl05 li .courseLeft05none, .editTableBox03 .courseUl05 li .courseLeft05none, .editTableBox04 .courseUl05 li .courseLeft05none, .editTableBox05 .courseUl05 li .courseLeft05none,.editTableBox01 .courseUl05 li .courseLeft05none {
  width: 0;
}
.editTableBox01 .courseUl05 li .courseLeft05none {
  width: 60px;
  font-size: small;
}
.editTableBox02 .courseUl05 li .courseLeft05none,.editTableBox04 .courseUl05 li .courseLeft05none{
  width: 70px;
}
.editTableBox03 .courseUl05 li .courseLeft05none,.editTableBox05 .courseUl05 li .courseLeft05none {
  width: 40px;
}
/* 予約登録・ポップアップ内ボタンスタイル */
/* 赤ボタン */
.button_pop_red {
  /* background-color: #e64a48; */
  background-color: #E70000;
  border-radius: 3px;
  /* border: 1px solid #e64a48; */
  border: 1px solid #E70000;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 8px;
  width: 90px;
  text-align: center;
}
/* 青ボタン（SMSのみ） */
.button_pop_blue {
  background-color: #1a89bc;
  border-radius: 3px;
  border: 1px solid #1a89bc;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 8px;
  width: 90px;
  text-align: center;
}
/* 灰色ボタン */
.button_pop_gray {
  background-color: #888;
  border-radius: 3px;
  border: 1px solid #888;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 8px;
  width: 90px;
  text-align: center;
}
.button_pop_red:hover,
.button_pop_blue:hover,
.button_pop_gray:hover {
  color: #fff;
}
/* リスト内のボタンスタイル（予約一覧） */
/* 共通スタイル */
.button_list_green,
.button_list_orange,
.button_list_red,
.button_list_gray,
.button_list_yellow,
.button_list_blue {
  width: 100%;
  padding: 8px 4px;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
  text-decoration: none;
  float: left;
  line-height: 1.5;
  box-sizing:border-box;
}

/* 緑ボタン */
.button_list_green {
  background-color: #1abc9c;
  border: 1px solid #1abc9c;
}
/* オレンジボタン */
.button_list_orange {
  /* background-color: #ff5f17;
  border: 1px solid #ff5f17; */
  background-color: #FF4500;
  border: 1px solid #FF4500;
}
/* 赤ボタン */
.button_list_red {
  /* background-color: #e64a48; */
  background-color: #E70000;
  /* border: 1px solid #e64a48; */
  border: 1px solid #E70000;
}
/* 灰色ボタン */
.button_list_gray {
  background-color: #888;
  border: 1px solid #888;
}
/* 黄色ボタン */
.button_list_yellow {
	background-color: #ffca00;
  border: 1px solid #ffca00;
}
/* 青色ボタン */
.button_list_blue{
  /* background-color: #7091ef;
  border: 1px solid #7091ef; */
  background-color: #0070e3;
  border: 1px solid #0070e3;
}

.button_list_green:hover,
.button_list_orange:hover,
.button_list_red:hover,
.button_list_gray:hover,
.button_list_yellow:hover,
.button_list_blue:hover{
  opacity: 0.82;
  color: #fff;
}
/* 新規予約登録「×」ボタン */
.btn-putaway {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  /* background-color: #e64a48; */
  background-color: #E70000;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  text-decoration: none;
  z-index: 5000;
  line-height: 1.2em;
  position: absolute;
  right: 5px;
  top: 5px;
}
.btn-putaway:hover {
  color: #fff;
}

/*------------------------------
  (2)店舗情報編集エディタ
------------------------------*/
.listInputArea {
  width: 100%;
  margin: 1.5em auto;
  clear: both;
}
.tabUl01 {
  list-style: none;
  width:50%;
}
.tabUl01 li {
  float: left;
  color: #fff;
  background-color: #FF4500;
  border: solid 1px #E4E4E4;
  text-align: center;
  width: 10em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.tabUl01 li.select {
  padding: 0.7em 0;
}
.tabUl01 li a {
  display: block;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  padding: 0.7em 0;
}
.tabUl01 li a.select, .tabUl01 li a.select:hover {
  color: #fff;
  background-color: #ff4500;
  cursor: default;
}
.tabUl01 li a:hover {
  color: #fff;
  background-color: #FF6928;
}
.listInputBox {
  width: 50%;
  height: 320px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
  float: left;
  overflow: hidden;
}
.listInputBox .ifrm-container {
  width:100%;
  height:320px;
  -webkit-overflow-scrolling:touch;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: solid 1px #888;
  overflow: auto;
}
.listInputBox iframe {
  height: 100% !important;
  width:100% !important;
  display: inline-block !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  border:none !important;
}
.listInputBox textarea {
  width: 100%;
  vertical-align: middle;
  font-size: 13px;
}
.optionBox {
  border: solid 1px #E4E4E5;
  background-color: #E4E4E4;
  padding: 1em;
  clear: both;
  overflow: hidden;
  text-align: right;
}
.tabUl01 .editor-li {
  width: -webroot-calc(100% - 10em);
  width: -moz-calc(100% - 10em);
  width: calc(100% - 10em);
  background-color: #ccc;
}
#editor-toolbar1,
#editor-toolbar2 {
  clear: both;
}
#editor-toolbar1 a,
#editor-toolbar2 a {
  width: -webroot-calc(100% / 5);
  width: -moz-calc(100% / 5);
  width: calc(100% / 5);
  height: 100%;
  float: left;
  border-right: solid 1px #ccc;
  padding: 0.7em 0.2em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 -16px 9px #f8f8f8 inset;
  box-shadow: 0 -16px 9px #f8f8f8 inset;
}
#editor-toolbar1 a:hover,
#editor-toolbar2 a:hover {
  color: #000;
  background-color: #fefefe;
  -webkit-box-shadow: 0 -16px 9px #f0f0f0 inset;
  box-shadow: 0 -16px 9px #f0f0f0 inset;
}
#editor-toolbar1 a:last-child,
#editor-toolbar2 a:last-child {
  border-right: none;
}
#editor-toolbar1 a.bold,
#editor-toolbar2 a.bold {
  font-weight: bold;
}
#editor-toolbar1 a.italic,
#editor-toolbar2 a.italic {
  font-style: italic;
  font-weight: bold;
}
#editor-toolbar1 .pallet,
#editor-toolbar2 .pallet {
  position: relative;
  font-weight: bold;
}
#editor-toolbar1 .colors,
#editor-toolbar2 .colors {
  display: none;
  position: absolute;
  width: 80px;
  text-align: center;
  background-color: #fff;
  padding: 2px 0;
  border: solid 1px #ccc;
  left: 0;
  right: 0;
  margin: auto;
  top: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#editor-toolbar1 .colors li,
#editor-toolbar2 .colors li {
  display: inline-block;
  width: 90%;
  height: 1.5em;
  margin: 1px 5%;
}
#editor-toolbar1 .colors .red,
#editor-toolbar2 .colors .red {
  background-color: #f00;
}
#editor-toolbar1 .colors .green,
#editor-toolbar2 .colors .green {
  background-color: #0f0;
}
#editor-toolbar1 .colors .blue,
#editor-toolbar2 .colors .blue {
  background-color: #00f;
}
#editor-toolbar1 .colors .black,
#editor-toolbar2 .colors .black {
  background-color: #000;
}
/*------------------------------
  (3)店舗情報/カレンダー/予約状況
------------------------------*/
/* 店舗住所等 */
.eventLeft01b {
  width: calc(50% - 128.5px);
  min-width: 361px;
  height: 280px;
  overflow: auto;
  background-color: #fff;
}
.eventLeft01b table {
  margin: 15px 20px;
}
.eventLeft01b table th, .eventLeft01b table td {
  padding: 0.2em;
  font-size: 15px;
}
.eventLeft01b table th {
  white-space: nowrap;
  text-align: left;
  padding-right: 1em;
}
.secondTh {
  background-image: none !important;
  padding-left: 0 !important;
}
/* カレンダー */
.eventMiddle01b {
  width: 197px;
  height: 260px;
  margin: 0 20px;
  padding: 10px;
  background: #fff;
  font-size: 10px;
}
.eventMiddle01b th {
  font-size: 13px;
}
.eventMiddle01b a {
  width: 16px;
}
.eventArea01, .eventArea02 {
  overflow: hidden;
  height: auto;
  font-family: "Century Gothic","AppleGothic","メイリオ"," Meiryo"," Osaka","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
.eventArea01 > div, .eventArea02 > div {
  float: left;
}
/* 予約状況 */
.eventRight01b {
  width: calc(50% - 128.5px);
  min-width: 358px;
}
.eventRight01c {
  width: 361px;
  height: 280px;
  background-color: #FEEFF0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.eventRight02 p, .eventRight01b p, .eventRight01 p img, .eventRight01b p img {
  vertical-align: middle;
}
/* 掲載しているサイト*/
.textLinkUl {
  margin-top: 0.5em;
  height: 85px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.textLinkUl li {
  display: inline;
}
.textLinkUl li a {
  text-decoration: underline;
  display: inline;
  padding-left: 5px;
}
/* 予約一覧 */
.countUl li {
  display: inline;
  margin: 0 1em;
}
.dayCarouselWrap, .dayCarouselWrap2 {
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid #CCC;
  background-color: #FFF;
  margin-bottom: 40px;
  margin-top: 25px;
}
.dayCarouselWrap {
  min-width: 978px;
  width:100%;
  box-sizing:border-box;
}
.dayCarouselWrap2 {
  width: 405px;
}
.dcTitle, .dcTitle2 {
  width: 148px;
  float: left;
  margin-top: 1em;
  text-align: center;
}
.dcTitle {
  margin-top: 1em;
  line-height:1;
}
.dcTitle2 {
  margin-top: 2.5em;
}
.dcArea {
  width: calc(100% - 148px);
  min-width: 830px;
  float: right;
  overflow: hidden;
}
.reservationListBox {
  float: left;
}
.reservationListTable {
  border-collapse: collapse;
  width: 830px;
}
.reservationListTable td {
  line-height: 1;
  vertical-align: middle;
  padding: 1em 0.4em;
  white-space: nowrap;
  text-align: left;
}
.reservationListTable td img {
  vertical-align: middle;
  cursor: pointer;
}
/*------------------------------
  (4)サブナビゲーション
------------------------------*/
.subNavi {
  width:100%;
  border-collapse: collapse;
  margin-top: 10px;
  margin-bottom: 10px;
  /* margin-top: 20px;
  margin-bottom: 20px; */
}
.subNavi td {
  min-width: 78px;
  width:8.333%;
  height: 39px;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  background-color: #fff;
}
.subNavi td a {
  display: block;
  min-width: 80px;
  width:100%;
  height: 40px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-size: 0.9em;
}
.subNavi td a:hover {
  background-color: #FF4500;
  color: #fff;
}
.fontPosition {
  position: relative;
  top: 10px;
}
/* 現在選択しているナビ */
.subNaviRight {
  border-right:1px solid #ccc;
}
.on {
  /*display: block;*/
  background-color: #FF4500 !important;
  color: #FFF !important;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}
.subNaviRight.on a {
  color: #fff !important;
}
/*------------------------------
  (5)etc.
------------------------------*/
/*******************************
* 3.エラー
*******************************/
/* 入力エラーの際のスタイル */
.error {
  border: 1px solid #fff;
  border-radius: 6px;
  position: relative;
  background-color: #fff;
  padding: 20px;
  height: 200px;
  margin-bottom: 50px;
}
.error p {
  width: 990px;
  font-family: 'Segoe UI', 'Segoe UI Semibold', 'Segoe UI Bold';
  font-size: 28px;
  color: #E44C4C;
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 80px;
}
.error a {
  padding: 12px;
  background-color: #E44C4C;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
}
/*******************************
* 4.プリント
*******************************/
/* プリント時のスタイル */
@media print {
  #sticker { display: none; }
}
/*******************************
* 5.お問い合わせ
*******************************/
#contactTable {
  width: 100%;
  border-collapse: collapse;
}
#contactTable th, #contactTable td {
  padding: 1.5em;
  word-break: break-all;
}
#contactTable th {
  text-align: right;
  white-space: nowrap;
  width: 150px;
}
#contactTable th:last-child {
  text-align: center;
}
#contactTable th img {
  margin-left: 1em;
  vertical-align: middle;
}
#contactTable td {
  line-height: 2;
  width: 550px;
}
#contactTable select {
  width: 300px;
}
#contactTable input[type="text"] {
  margin-right: 1em;
  width: 300px;
}
#contactTable textArea {
  width: 550px;
  resize: vertical;
}
#contactTable td #contactResetBtn, #contactTable td #contactBackBtn {
  float: left;
}
#contactTable td #contactCheckBtn, #contactTable td #contactSubmitBtn {
  float: right;
}
#contactTable th #contactCheckBtn {
  margin-left: 50px;
}
.checkTable tr:nth-child(odd) {
  background-color: #F7F7F7;
}
/*******************************
* 6.個人情報の取り扱いについて
*******************************/
#privacyLeft {
  float: left;
  margin-bottom: 3em;
}
#privacyOl {
  clear: both;
  list-style-position: outside;
  list-style-type: decimal;
  margin-bottom: 6em;
}
#privacyOl > li {
  margin-bottom: 3em;
  width: 100%;
  display: inline-block;
}
#privacyOl li p {
  margin: 1em 0;
}
#privacyOl li ul {
  list-style-type: disc;
}
#privacyOl li ol {
  list-style-position: outside;
  list-style-type: lower-roman;
  margin: 1em;
}
.privacyBox .addP {
  margin: 2em 0;
}
.privacyBox h2 {
  margin-bottom: 25px;
}
.privacyBox table {
  margin: 0 auto 3em;
  width: 98%;
  border-collapse: collapse;
  border-spacing: 0;
}
.privacyBox table thead {
  font-weight: 500;
}
.privacyBox table tbody {
  font-weight: 300;
}
.privacyBox table thead th {
  height: 2em;
  vertical-align: middle;
  text-align: center;
  border: solid 1px #687b7f;
  background-color: rgba(104, 123, 127, 0.23);
}
.privacyBox table tbody td {
  height: 2em;
  vertical-align: middle;
  border: solid 1px #687b7f;
  line-height: 1.5em;
  padding: 0.4em;
}
/*******************************
* 7.特定商取引法に基づく表示
*******************************/
#transactionLi {
  clear: both;
  list-style-position: outside;
  margin-bottom: 6em;
}
/*******************************
* 8.利用規約｜推奨環境
*******************************/
.ruleBox p.lead_text {
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 30px;
  word-wrap: break-word;
}
.ruleBox p.lead_text2 {
  line-height: 1.5;
  margin-top: 5px;
  margin-bottom: 15px;
  word-wrap: break-word;
}
.ruleBox ul {
  margin-bottom: 30px;
}
.ruleBox ul.det {
  margin-left: 20px;
  margin-bottom: 15px;
}
.ruleBox li {
  line-height: 1.5;
  margin-bottom: 10px;
  list-style-type: none;
  word-wrap: break-word;
}
.ruleBox li.det {
  line-height: 1.5;
  margin-bottom: 5px;
  list-style-type: none;
  word-wrap: break-word;
}
.ruleBox h4 {
  margin-top: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
}

/*******************************
* 9.アップデートのお知らせ
*******************************/
.informationBox {
  overflow: hidden;
  margin-bottom: 1rem;
  display: -webkit-flex;
  display: flex;
  webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.informationBox h2 {
  margin: 0 1rem 3rem 0;
  width: 12rem;
}
.informationBox p {
  width: calc(100% - 13rem);
  font-size: 18px;
}
.informationBox a {
  /* color: #e64a48; */
  color: #E70000;
}
.informationBox a {
  margin: 0 auto;
}


/*******************************
* 9.オプトアウトについて
*******************************/
.privacyBox .optout p {
 margin-bottom: 30px;
}
.privacyBox .optout p:last-of-type,
.privacyBox .optout p:last-of-type span {
 margin: 0;
}
.privacyBox .optout p:last-of-type a +span {
 margin-top: 20px;
}
.privacyBox .optout p span {
 display: block;
 margin-top: 10px;
}
.privacyBox .optout .bold {
 margin-bottom: 10px;
}
