@charset "UTF-8";
/* ---------------------
- 共通
- LoginPage
--- CurrentSel
--- Terms
--- Agreement
--- Login
- PersonPage
- KakuninPage
- AllocationPage
- FinalCfmPage
- BookingPage
- ForgetPage
- ErrorPage
- RePaymentPage
--------------------- */
/* ==============================
- less setting
============================== */
.box-sizing {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.font-icon {
  display: inline-block;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 5px 0 0;
}
.float-clear {
  clear: both;
  content: '';
  display: block;
}
/* flex関連
---------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flex-direction_column {
  -webkit-box-direction: vertical;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.justify-content_space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.justify-content_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.justify-content_flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-wrap_wrap {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.align-items_start {
  -webkit-box-align: start;
  -ms-align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
      align-items: start;
}
.align-items_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.align-items_flex-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.align-self_center {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.align-self_flex-end {
  -ms-flex-item-align: end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
}
/* color
---------------------*/
/* site
---------------------*/
/* font-size
---------------------*/
/* site-width
---------------------*/
/* gradient
---------------------*/
.backgara-white {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#E6E6E6), to(white));
  background-image: -webkit-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: -o-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: linear-gradient(to top, #E6E6E6 0%, white 100%);
}
.backgara-white:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(#E6E6E6));
  background-image: -webkit-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: -o-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: linear-gradient(to top, white 0%, #E6E6E6 100%);
}
.backgara-base {
  background: #d66060;
  background: -webkit-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d66060), color-stop(50%, #d91b20), to(#d80003));
  background: -o-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: linear-gradient(to bottom, #d66060 0%, #d91b20 50%, #d80003 100%);
}
.backgara-base:hover {
  background: #d80003;
  background: -webkit-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d80003), color-stop(50%, #d91b20), to(#d66060));
  background: -o-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: linear-gradient(to bottom, #d80003 0%, #d91b20 50%, #d66060 100%);
}
.backgara-yellow {
  background: #fddb57;
  background: -webkit-linear-gradient(top, #fddb57 0%, #fdb032 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#fddb57), to(#fdb032));
  background: -o-linear-gradient(top, #fddb57 0%, #fdb032 100%);
  background: linear-gradient(to bottom, #fddb57 0%, #fdb032 100%);
}
.backgara-yellow:hover {
  background: #fdb032;
  background: -webkit-linear-gradient(top, #fdb032 0%, #fddb57 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#fdb032), to(#fddb57));
  background: -o-linear-gradient(top, #fdb032 0%, #fddb57 100%);
  background: linear-gradient(to bottom, #fdb032 0%, #fddb57 100%);
}
.backgara-gray {
  background: #636363;
  background: -webkit-linear-gradient(top, #636363 0%, #4a4a4a 50%, #333333 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#636363), color-stop(50%, #4a4a4a), to(#333333));
  background: -o-linear-gradient(top, #636363 0%, #4a4a4a 50%, #333333 100%);
  background: linear-gradient(to bottom, #636363 0%, #4a4a4a 50%, #333333 100%);
}
.backgara-gray:hover {
  background: #333333;
  background: -webkit-linear-gradient(top, #333333 0%, #333333 0%, #4a4a4a 50%, #636363 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#333333), color-stop(0%, #333333), color-stop(50%, #4a4a4a), to(#636363));
  background: -o-linear-gradient(top, #333333 0%, #333333 0%, #4a4a4a 50%, #636363 100%);
  background: linear-gradient(to bottom, #333333 0%, #333333 0%, #4a4a4a 50%, #636363 100%);
}
/* hight
---------------------*/
/* title design
---------------------*/
@media screen and (max-width: 768px) {
  .title-design {
    background: #4A4A4A;
    padding: 10px;
    color: #fff;
    position: relative;
    margin-bottom: 1px;
    font-size: 15px;
  }
  .title-design:after {
    position: absolute;
    top: 5px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 5px;
    height: 5px;
    border: 5px solid transparent;
    border-top: 5px solid #fff;
  }
}
@media screen and (min-width: 769px) {
  .title-design {
    border-bottom: 1px solid;
    padding: 4px 0;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: #D91B20;
  }
  .title-design::before {
    content: "　";
    background: #D91B20;
    display: inline-block;
    width: 3px;
    margin-right: 5px;
  }
}
.translateY50 {
  top: 50%;
  -o-transform: translateY(-50%);
     transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.translateYX50 {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
   -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
.translateX50 {
  left: 50%;
  -o-transform: translatex(-50%);
     transform: translatex(-50%);
  -webkit-transform: translatex(-50%);
  -ms-transform: translatex(-50%);
}
/* 記号
---------------------*/
.S_Paren_S {
  content: "(";
}
.S_Paren_L {
  content: ")";
}
.S_Emphasis_S {
  content: "【";
}
.S_Emphasis_L {
  content: "】";
}
.S_Colon {
  content: "：";
}
.S_Arrow {
  content: "⇒";
}
.S_Attention {
  content: "※";
}
.S_Reading {
  content: "、";
}
.Arrow {
  text-align: center;
}
.Arrow:before {
  display: inline-block;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 5px 0 0;
  padding: 0;
  content: '\f0d7';
  font-size: 30px;
}
/* ==============================
- 共通
============================== */
h3 {
  border-bottom: 1px solid;
  padding: 4px 0;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  color: #D91B20;
}
h3:before {
  content: "　";
  background: #D91B20;
  display: inline-block;
  width: 3px;
  margin-right: 5px;
}
h3 .Come {
  font-size: 13px;
  font-weight: normal;
}
h3 .Come::before {
  content: "※";
}
h4 {
  border: 2px solid #E6E5E3;
  padding: 10px;
}
.BtnChoiceBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 760px;
}
@media screen and (max-width: 768px) {
  .BtnChoiceBox {
    width: 100%;
    -webkit-box-direction: vertical;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin: 0 auto 10px auto;
  }
}
@media screen and (min-width: 769px) {
  .BtnChoiceBox {
    margin: 0 auto 20px auto;
  }
}
.BtnChoiceBox form {
  margin: auto;
}
.BtnChoiceBox .HistoryBack,
.BtnChoiceBox .NextBtn {
  width: 200px;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  display: block;
  margin: 0 auto;
  color: #4A4A4A;
  font-size: 16px;
  letter-spacing: 2px;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  height: 44px;
  text-decoration: none;
}
.BtnChoiceBox .HistoryBack {
  border: 1px solid #E6E5E3;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#E6E6E6), to(white));
  background-image: -webkit-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: -o-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: linear-gradient(to top, #E6E6E6 0%, white 100%);
}
.BtnChoiceBox .HistoryBack:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(#E6E6E6));
  background-image: -webkit-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: -o-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: linear-gradient(to top, white 0%, #E6E6E6 100%);
}
@media screen and (max-width: 768px) {
  .BtnChoiceBox .HistoryBack {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 200px;
  }
}
.BtnChoiceBox .NextBtn {
  background: #d66060;
  background: -webkit-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d66060), color-stop(50%, #d91b20), to(#d80003));
  background: -o-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: linear-gradient(to bottom, #d66060 0%, #d91b20 50%, #d80003 100%);
  color: #fff;
  border: 1px solid;
  border-color: #D91B20;
}
.BtnChoiceBox .NextBtn:hover {
  background: #d80003;
  background: -webkit-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d80003), color-stop(50%, #d91b20), to(#d66060));
  background: -o-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: linear-gradient(to bottom, #d80003 0%, #d91b20 50%, #d66060 100%);
}
@media screen and (max-width: 768px) {
  .BtnChoiceBox .NextBtn {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    width: 250px;
    margin-bottom: 10px;
  }
}
th {
  font-weight: normal;
}
.Box {
  width: 100%;
}
/* ==============================
- LoginPage
============================== */
@media screen and (max-width: 768px) {
  .LoginPage .Main h3 ~ div {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .LoginPage .Main h3 ~ div {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .LoginPage .Main h3 ~ div h4 {
    font-size: 13px;
    position: relative;
    background: #4A4A4A;
    color: #fff;
    border: none;
    letter-spacing: 1px;
  }
  .LoginPage .Main h3 ~ div h4:after {
    position: absolute;
    top: 5px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 5px;
    height: 5px;
    border: 5px solid transparent;
    border-top: 5px solid #fff;
  }
  .LoginPage .Main h3 ~ div h4.open:after {
    border-top: none;
    border-bottom: 5px solid #fff;
    top: 0;
  }
}
@media screen and (min-width: 769px) {
  .LoginPage .Main h3 ~ div h4 {
    background: #F4F4F4;
  }
}
@media screen and (max-width: 768px) {
  .LoginPage .Main h3 ~ div.Terms {
    height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .LoginPage .Main h3 ~ div.Terms iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) {
    margin-bottom: 1px;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) {
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Inner {
    border-top: 2px solid #E6E5E3;
    margin: 5px 0;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) dl {
    display: table;
    width: 100%;
  }
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) dt {
  border: 2px solid #E6E5E3;
  border-top: none;
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) dt {
    width: 100%;
    padding: 5px;
    background: #F4F4F4;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) dt {
    display: table-cell;
    width: 14%;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
  }
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) dt .Hope {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) dt .Hope {
    display: inline-block;
    margin-left: 10px;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) dt .Hope {
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) dd {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) dd {
    display: table-cell;
    width: 92%;
  }
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Entries {
    border: 2px solid #E6E5E3;
    border-top: none;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Entries {
    display: table;
    width: 100%;
    border-bottom: 2px solid #E6E5E3;
  }
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Entries.JrdpConf .Bin,
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Entries.JrdpAdv .Bin,
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Entries.JrdpConf .SeatHope,
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Entries.JrdpAdv .SeatHope {
  display: inline-block;
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Entries.JrdpConf .Bin,
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Entries.JrdpAdv .Bin {
  margin-right: 15px;
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Entries.JrdpConf .SeatHope,
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Entries.JrdpAdv .SeatHope {
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Info {
    width: 100%;
    border-bottom: 1px dashed #E6E5E3;
    padding: 10px;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Info {
    display: table-cell;
    width: 60%;
    vertical-align: middle;
    padding: 10px;
  }
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Info p.Date {
  padding: 0 0 5px;
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Info p.NameBox span {
  display: inline-block;
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Info p.NameBox span.Name {
  display: block;
  padding: 0 0 3px;
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Info p.NameBox span.Time::before,
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Info p.NameBox span.Meal::before {
  content: "(";
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Info p.NameBox span.Time::after,
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Info p.NameBox span.Meal::after {
  content: ")";
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Info p.Bin,
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Info p.Hotel,
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .Info p.OptionName {
  padding: 0 0 5px;
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail {
    display: table-cell;
    width: 40%;
    min-height: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail table {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail table {
    height: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail tr:first-child td {
    border-top: none;
  }
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail tr:last-child td {
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail td {
    padding: 5px 5px 0;
    border: none;
    font-size: 11px;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail td {
    padding: 5px;
    text-align: right;
    border-bottom: none;
    vertical-align: bottom;
  }
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail td:first-child {
    width: 70%;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail td:first-child {
    width: 70%;
  }
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail td:last-child {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail td:last-child {
    text-align: right;
  }
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail ul {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail li.Kubun {
    max-width: 52%;
  }
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail li.Kubun::after {
  content: "：";
}
.CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail li.Kubun span {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .CurrentSel > div:not(.TotalPrice):not(.TotalPointGet):not(.TotalPointUse):not(.GotoPrice) .PriceDetail li.Kubun span {
    max-width: 84%;
  }
}
.CurrentSel .BasicDetail table {
  width: 100%;
}
.CurrentSel .BasicDetail table tr:first-child td {
  border-top: none;
}
.CurrentSel .BasicDetail table td {
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .CurrentSel .BasicDetail table td {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .CurrentSel .BasicDetail table td.kubun {
    width: 34%;
  }
}
.CurrentSel .BasicDetail table td.Basic {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .CurrentSel .BasicDetail table td.Basic {
    width: 36%;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel .BasicDetail table td.Basic {
    width: 25.8%;
  }
}
.CurrentSel .BasicDetail table td.Basic li {
  display: inline-block;
}
.CurrentSel .BasicDetail table td.Subtotal {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .CurrentSel .BasicDetail table td.Subtotal {
    width: 30%;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel .BasicDetail table td.Subtotal {
    width: 11%;
  }
}
.CurrentSel .BinDetail .Info p.NameBox span.Time + span::before {
  content: "⇒";
  padding: 0 3px;
}
@media screen and (min-width: 769px) {
  .CurrentSel .RentaCar .Info p.CarPlace {
    display: inline-block;
  }
}
.CurrentSel .RentaCar .Info p.CarPlace:last-child {
  padding: 3px 0 0;
}
@media screen and (min-width: 769px) {
  .CurrentSel .RentaCar .Info p.CarPlace:last-child {
    padding-left: 10px;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel .SetOption .Other .Info {
    width: 65.8%;
    border-left: 2px solid #E6E5E3;
  }
}
.CurrentSel .TotalPrice {
  text-align: right;
}
@media screen and (min-width: 769px) {
  .CurrentSel .TotalPrice {
    padding: 20px 10px 10px;
    margin: 10px 0 0 auto;
  }
}
.CurrentSel .TotalPrice dl {
  display: block;
  border-bottom: 2px solid #E6E5E3;
  padding: 0 10px 5px;
}
@media screen and (max-width: 768px) {
  .CurrentSel .TotalPrice dl {
    width: 280px;
    margin: 15px 0 5px;
    margin-left: auto;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel .TotalPrice dl {
    width: 30%;
    margin-left: auto;
  }
}
.CurrentSel .TotalPrice dl dt {
  display: inline-block;
  padding-right: 15px;
}
.CurrentSel .TotalPrice dl dd {
  display: inline-block;
  color: #D91B20;
  letter-spacing: 2px;
}
.CurrentSel .TotalPrice dl dd .Price {
  font-size: 25px;
  font-weight: 600;
}
.CurrentSel .TotalPrice dl dd .Unit {
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .CurrentSel .TotalPrice .PriceInfo {
    padding: 0 10px 0 0;
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel .TotalPrice .PriceInfo {
    margin: 10px 0 0;
  }
}
.CurrentSel .GotoPrice {
  padding: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .CurrentSel .GotoPrice .BasicDetail .Inner {
    border-top: 2px solid #E6E5E3;
    margin: 5px 0;
  }
}
@media screen and (min-width: 769px) {
  .CurrentSel .GotoPrice .TotalPrice:last-of-type {
    padding-top: 0;
  }
}
.CurrentSel .GotoInfo {
  margin: 10px auto;
  border: 2px solid #D91B20;
  padding: 10px;
  color: #D91B20;
  line-height: 1.4;
}
.CurrentSel .GotoInfo dt {
  font-weight: bold;
  margin-bottom: 5px;
}
.Agreement .CustomCheckBtn {
  display: table;
  background: #E6E5E3;
  padding: 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .Agreement .CustomCheckBtn {
    padding: 10px;
  }
}
.Agreement .CustomCheckBtn:first-child {
  margin-bottom: 10px;
}
.Agreement .CustomCheckBtn:last-of-type {
  margin-bottom: 0;
}
.Agreement .CustomCheckBtn label {
  display: table-cell;
}
.Agreement .CustomCheckBtn label ~ span {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .Agreement .CustomCheckBtn label ~ span {
    font-size: 16px;
  }
}
.Agreement .CustomCheckBtn label ~ span a {
  color: #f00;
}
.Agreement .CustomCheckBtn label ~ span a:hover {
  text-decoration: none;
}
.Agreement .CustomCheckBtn label .PushIcon {
  margin: 0 5px 0 0;
}
@media screen and (max-width: 768px) {
  .EntryBlock .Entry {
    margin: 10px 5px;
  }
}
.EntryBlock .Entry .Contact {
  margin-bottom: 10px;
}
.EntryBlock .Entry .Contact a {
  display: block;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .EntryBlock .Entry .Contact a {
    width: 100%;
    margin: 10px auto;
    padding: 7px;
    border: 2px solid;
    border-color: #D91B20;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#E6E6E6), to(white));
    background-image: -webkit-linear-gradient(bottom, #E6E6E6 0%, white 100%);
    background-image: -o-linear-gradient(bottom, #E6E6E6 0%, white 100%);
    background-image: linear-gradient(to top, #E6E6E6 0%, white 100%);
  }
  .EntryBlock .Entry .Contact a:hover {
    background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(#E6E6E6));
    background-image: -webkit-linear-gradient(bottom, white 0%, #E6E6E6 100%);
    background-image: -o-linear-gradient(bottom, white 0%, #E6E6E6 100%);
    background-image: linear-gradient(to top, white 0%, #E6E6E6 100%);
  }
}
@media screen and (min-width: 769px) {
  .EntryBlock .Entry .Contact a {
    pointer-events: none;
    font-size: 16px;
  }
}
.EntryBlock .Entry .Contact a:link {
  text-decoration: none;
  color: #555;
}
@media screen and (min-width: 769px) {
  .EntryBlock .Entry .Contact .Office {
    margin: 0 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .EntryBlock .Entry .Contact .Office {
    display: block;
    font-size: 11px;
    padding: 0 0 5px;
  }
}
.EntryBlock .Entry .Contact .Tel {
  color: #D91B20;
}
.EntryBlock .Entry .Contact .Tel::before {
  display: inline-block;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 5px 0 0;
  content: "\f095";
}
@media screen and (max-width: 768px) {
  .EntryBlock .Entry .Contact .Tel {
    font-size: 19px;
  }
}
@media screen and (max-width: 768px) {
  .EntryBlock .Entry .Contact {
    display: block;
    max-width: 350px;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .EntryBlock .Entry > p {
    line-height: 17px;
  }
}
.EntryBlock .Entry dl {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .EntryBlock .Entry dl {
    margin: 0 0 10px;
  }
  .EntryBlock .Entry dl:last-child {
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  .EntryBlock .Entry dl {
    display: table;
    border-top: 1px solid #E6E5E3;
    border-left: 1px solid #E6E5E3;
    border-right: 1px solid #E6E5E3;
  }
  .EntryBlock .Entry dl:last-of-type {
    border-bottom: 1px solid #E6E5E3;
  }
}
.EntryBlock .Entry dl dt,
.EntryBlock .Entry dl dd {
  padding: 2px;
}
@media screen and (min-width: 769px) {
  .EntryBlock .Entry dl dt,
  .EntryBlock .Entry dl dd {
    display: table-cell;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .EntryBlock .Entry dl dt::before {
    display: inline-block;
    padding-right: 2px;
    content: "[";
  }
  .EntryBlock .Entry dl dt::after {
    display: inline-block;
    padding-left: 2px;
    content: "]";
  }
}
@media screen and (min-width: 769px) {
  .EntryBlock .Entry dl dt {
    background-color: #F4F4F4;
    width: 20%;
    border-right: 1px solid #E6E5E3;
  }
}
.EntryBlock .Entry .Manager dd p {
  margin: 5px 0 0;
  line-height: 1.4;
}
.RepresentSelect dl {
  margin: 0 auto 0;
  background: #E6E5E3;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .RepresentSelect dl {
    width: 50%;
    padding: 15px 10px;
  }
}
@media screen and (max-width: 768px) {
  .RepresentSelect dl {
    padding: 10px;
  }
}
.RepresentSelect dl dt {
  font-size: 16px;
  padding: 0 0 10px;
}
.RepresentSelect dl dd:first-of-type {
  margin-bottom: 10px;
}
.RepresentSelect dl dd .CustomRadioBtn {
  margin: 0 10px 0 0;
}
.RepresentSelect dl dd .CustomCheckBtn {
  margin: 0 10px 0 0;
}
.RepresentSelect .NoteTxtBox {
  margin-top: 10px;
  line-height: 1.5;
}
.RepresentSelect .NoteTxtBox .MinorTxt {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .Login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 86%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .Login > div {
    border: 2px solid #E6E5E3;
    padding: 10px;
  }
}
.Login .Title {
  text-align: center;
  font-size: 16px;
  margin: 0 0 10px;
}
.Login .CustomSubmit {
  border: none;
}
.Login .CustomSubmit::before {
  display: inline-block;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 5px 0 0;
}
.Login .LoginBtn .RegdBtn,
.Login .LoginBtn .OkRegBtn,
.Login .LoginBtn .NoRegBtn {
  display: block;
  text-align: center;
  border-color: #D91B20;
  border: 1px solid;
  background: #d66060;
  background: -webkit-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d66060), color-stop(50%, #d91b20), to(#d80003));
  background: -o-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: linear-gradient(to bottom, #d66060 0%, #d91b20 50%, #d80003 100%);
  color: #fff;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  height: 44px;
  font-size: 16px;
  padding: 10px 0;
}
.Login .LoginBtn .RegdBtn:hover,
.Login .LoginBtn .OkRegBtn:hover,
.Login .LoginBtn .NoRegBtn:hover {
  background: #d80003;
  background: -webkit-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d80003), color-stop(50%, #d91b20), to(#d66060));
  background: -o-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: linear-gradient(to bottom, #d80003 0%, #d91b20 50%, #d66060 100%);
}
@media screen and (min-width: 769px) {
  .Login .NewReg {
    width: 34%;
    height: 202px;
    margin: auto;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
@media screen and (min-width: 769px) {
  .Login .NewReg .LoginBtn {
    position: relative;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
     -o-transform: translateY(-50%);
        transform: translateY(-50%);
  }
}
.Login .NewReg .CustomSubmit::before {
  width: 20px;
  position: absolute;
  bottom: 14px;
  left: 20px;
  font-size: 16px;
  color: #fff;
}
.Login .NewReg .CustomSubmit.OkReg::before {
  content: "\f2be";
}
.Login .NewReg .CustomSubmit.NoReg::before {
  content: "\f044";
}
.Login .NewReg .CustomSubmit.NoReg .NoRegBtn {
  border: 1px solid #a7a7a7;
  background: #c4c4c4;
  background: -webkit-linear-gradient(top, #c4c4c4 0%, #9b9b9b 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#c4c4c4), to(#9b9b9b));
  background: -o-linear-gradient(top, #c4c4c4 0%, #9b9b9b 100%);
  background: linear-gradient(to bottom, #c4c4c4 0%, #9b9b9b 100%);
}
.Login .NewReg .CustomSubmit.NoReg .NoRegBtn:hover {
  background: #9b9b9b;
  background: -webkit-linear-gradient(top, #9b9b9b 0%, #c4c4c4 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#9b9b9b), to(#c4c4c4));
  background: -o-linear-gradient(top, #9b9b9b 0%, #c4c4c4 100%);
  background: linear-gradient(to bottom, #9b9b9b 0%, #c4c4c4 100%);
}
@media screen and (min-width: 769px) {
  .Login .RegDone {
    width: 64%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    border-left: 1px dashed #E6E5E3;
    padding-left: 20px;
    margin: 0 0 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .Login .RegDone {
    margin: 0 0 10px;
  }
}
.Login .RegDone table {
  margin: 0 0 10px;
}
@media screen and (min-width: 769px) {
  .Login .RegDone table {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Login .RegDone table {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .Login .RegDone table tbody {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .Login .RegDone table tbody tr {
    display: block;
  }
  .Login .RegDone table tbody tr:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .Login .RegDone table tbody tr th,
  .Login .RegDone table tbody tr td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
.Login .RegDone table tbody tr th {
  background: #F4F4F4;
}
.Login .RegDone .Come {
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .Login .RegDone .CustomSubmit {
    display: block;
    width: 200px;
    margin: 0 auto;
  }
}
.Login .RegDone .CustomSubmit::before {
  content: "\f090";
  width: 20px;
  position: absolute;
  bottom: 14px;
  left: 20px;
  font-size: 16px;
  color: #fff;
}
/* ==============================
- PersonPage
============================== */
@media screen and (max-width: 768px) {
  .Person {
    margin: 0 0 10px;
  }
}
.Person > div {
  margin: 0 0 20px;
}
.Person > div:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .Person .Inner {
    padding: 20px;
  }
}
.Person .CustomRadioBtn {
  margin: 0 10px 0 0;
}
.Person .CustomRadioBtn:last-child {
  margin-right: 0;
}
.InfoEntry table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Name .CustomText,
  .InfoEntry table tr.NameKana .CustomText,
  .InfoEntry table tr.NameAlphabet .CustomText,
  .InfoEntry table tr.Passport .CustomText {
    margin: 0 0 5px;
    max-width: 382px;
  }
}
@media screen and (min-width: 769px) {
  .InfoEntry table tr.Name .CustomText,
  .InfoEntry table tr.NameKana .CustomText,
  .InfoEntry table tr.NameAlphabet .CustomText,
  .InfoEntry table tr.Passport .CustomText {
    width: 35%;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Name .CustomText:last-child,
  .InfoEntry table tr.NameKana .CustomText:last-child,
  .InfoEntry table tr.NameAlphabet .CustomText:last-child,
  .InfoEntry table tr.Passport .CustomText:last-child {
    margin: 0;
  }
}
.InfoEntry table tr.Age .AgeSelect {
  display: inline-block;
  padding: 0 0 0 5px;
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Post .CustomTel {
    width: 50%;
  }
}
@media screen and (min-width: 769px) {
  .InfoEntry table tr.Post .CustomTel {
    width: 20%;
  }
}
.InfoEntry table tr.Post .PostNoBtn {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #E6E5E3;
  cursor: pointer;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#E6E6E6), to(white));
  background-image: -webkit-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: -o-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: linear-gradient(to top, #E6E6E6 0%, white 100%);
  height: 32px;
  line-height: 30px;
  padding: 0 10px;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
}
.InfoEntry table tr.Post .PostNoBtn:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(#E6E6E6));
  background-image: -webkit-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: -o-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: linear-gradient(to top, white 0%, #E6E6E6 100%);
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Post .PostNoBtn {
    display: block;
    width: 185px;
    margin-top: 5px;
  }
}
.InfoEntry table tr.Post .PostNoBtn:before {
  content: "\f002";
  display: inline-block;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 5px 0 0;
}
.InfoEntry table tr.Address .CustomText {
  margin: 0 0 5px;
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Address .CustomText {
    max-width: 382px;
  }
}
@media screen and (min-width: 769px) {
  .InfoEntry table tr.Address .CustomText {
    width: 60%;
  }
}
.InfoEntry table tr.Address .CustomText:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Tel .CustomTel {
    max-width: 382px;
  }
}
@media screen and (min-width: 769px) {
  .InfoEntry table tr.Tel .CustomTel {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Mail .CustomMail {
    max-width: 382px;
  }
}
@media screen and (min-width: 769px) {
  .InfoEntry table tr.Mail .CustomMail {
    width: 60%;
  }
}
.InfoEntry table tr.Mail .RuleCome {
  padding: 5px 0 0;
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.HotelName .CustomText {
    max-width: 382px;
  }
}
@media screen and (min-width: 769px) {
  .InfoEntry table tr.HotelName .CustomText {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Coupon .CustomText {
    width: 66%;
  }
}
@media screen and (min-width: 769px) {
  .InfoEntry table tr.Coupon .CustomText {
    width: 30%;
  }
}
.InfoEntry table tr.Coupon .CouponBtn {
  color: #555;
  text-decoration: none;
  padding: 0 15px;
  border: 1px solid #E6E5E3;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#E6E6E6), to(white));
  background-image: -webkit-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: -o-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: linear-gradient(to top, #E6E6E6 0%, white 100%);
  height: 32px;
  line-height: 30px;
  cursor: pointer;
}
.InfoEntry table tr.Coupon .CouponBtn:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(#E6E6E6));
  background-image: -webkit-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: -o-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: linear-gradient(to top, white 0%, #E6E6E6 100%);
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Insurance ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: vertical;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Insurance li:first-child {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
@media screen and (min-width: 769px) {
  .InfoEntry table tr.Insurance li:first-child {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Insurance li.Pamphlet {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    margin: 5px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .InfoEntry table tr.Insurance li.Pamphlet {
    display: inline-block;
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Insurance li.Pamphlet p {
    display: inline-block;
  }
}
.InfoEntry table tr.Insurance li.Pamphlet p .PamphletBtn {
  display: block;
  color: #555;
  text-decoration: none;
  padding: 0 10px;
  border: 1px solid #E6E5E3;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#E6E6E6), to(white));
  background-image: -webkit-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: -o-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: linear-gradient(to top, #E6E6E6 0%, white 100%);
  height: 32px;
  line-height: 30px;
}
.InfoEntry table tr.Insurance li.Pamphlet p .PamphletBtn:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(#E6E6E6));
  background-image: -webkit-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: -o-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: linear-gradient(to top, white 0%, #E6E6E6 100%);
}
.InfoEntry table tr.Insurance li.Pamphlet p .PamphletBtn:after {
  content: '';
  /*何も入れない*/
  display: inline-block;
  /*忘れずに！*/
  width: 22px;
  /*画像の幅*/
  height: 22px;
  /*画像の高さ*/
  background-image: url(../img/icon_pdf.png);
  -webkit-background-size: contain;
       -o-background-size: contain;
          background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Insurance li.InsuranceCat {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    margin: 5px 0 0;
  }
}
.InfoEntry table tr.Insurance li .Come::before {
  content: "(";
}
.InfoEntry table tr.Insurance li .Come::after {
  content: ")";
}
@media screen and (max-width: 760px) {
  .InfoEntry table tr.SetLocation .CustomSelect {
    width: 100%;
    max-width: 382px;
  }
}
@media screen and (min-width: 760px) {
  .InfoEntry table tr.SetLocation .CustomSelect {
    width: 60%;
  }
}
.InfoEntry table tr.Pay .RuleCome {
  padding: 0 0 5px;
}
.InfoEntry table tr.Company th:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Pass .CustomPassword {
    max-width: 382px;
  }
}
@media screen and (min-width: 769px) {
  .InfoEntry table tr.Pass .CustomPassword {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Secret_A .CustomText {
    max-width: 382px;
  }
}
@media screen and (min-width: 769px) {
  .InfoEntry table tr.Secret_A .CustomText {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr.Secret_Q .CustomSelect {
    max-width: 382px;
  }
}
@media screen and (max-width: 768px) {
  .InfoEntry table tr:last-child td {
    border-bottom: 2px solid #E6E5E3;
  }
}
.InfoEntry table th {
  background: #F4F4F4;
  font-weight: normal;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .InfoEntry table th {
    display: block;
    border-bottom: none;
  }
}
@media screen and (min-width: 769px) {
  .InfoEntry table th {
    width: 28%;
    padding: 10px;
    vertical-align: top;
  }
}
.InfoEntry table th .Required {
  content: "必須";
  display: inline-block;
  background: #f00;
  color: #fff;
  font-size: 11px;
  padding: 3px 5px 2px;
  margin-left: 5px;
  border-radius: 3px;
}
.InfoEntry table th .Come::before {
  content: "(";
}
.InfoEntry table th .Come::after {
  content: ")";
}
.InfoEntry table td {
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .InfoEntry table td {
    display: block;
    border-bottom: none;
  }
}
.InfoEntry table td .ConveniSelect {
  padding: 5px 0 0;
  margin: 5px 0 0;
  border-top: 1px dashed #E6E5E3;
}
.InfoEntry table td .Info {
  padding: 5px 0 0;
}
.InfoEntry table td .Alert {
  padding: 5px 0 0;
  color: #f00;
}
.InfoEntry table td label {
  display: inline-block;
  padding: 0 15px 0 0;
}
.InfoEntry table td label:last-child {
  padding: 0;
}
.InfoEntry table td .CustomSelect {
  width: auto;
}
.QsArea .Alert {
  color: #f00;
}
.EntrySelect {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .EntrySelect {
    padding: 10px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .EntrySelect {
    padding: 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .EntrySelect .CustomRadioBtn {
    width: 47%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.EntrySelect .CustomRadioBtn:last-of-type {
  margin: 0;
}
.EntrySelect .CustomRadioBtn label {
  display: block;
  border: 1px solid;
  border-color: #D91B20;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#E6E6E6), to(white));
  background-image: -webkit-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: -o-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: linear-gradient(to top, #E6E6E6 0%, white 100%);
  color: #D91B20;
  cursor: pointer;
}
.EntrySelect .CustomRadioBtn label:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(#E6E6E6));
  background-image: -webkit-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: -o-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: linear-gradient(to top, white 0%, #E6E6E6 100%);
}
@media screen and (max-width: 768px) {
  .EntrySelect .CustomRadioBtn label {
    width: 100%;
    margin: 0 10px 0 0;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 769px) {
  .EntrySelect .CustomRadioBtn label {
    padding: 0 10px;
    height: 32px;
    line-height: 28px;
  }
}
.EntrySelect .CustomRadioBtn label.Select {
  background: #d66060;
  background: -webkit-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d66060), color-stop(50%, #d91b20), to(#d80003));
  background: -o-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: linear-gradient(to bottom, #d66060 0%, #d91b20 50%, #d80003 100%);
  color: #fff;
}
.EntrySelect .CustomRadioBtn label.Select:hover {
  background: #d80003;
  background: -webkit-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d80003), color-stop(50%, #d91b20), to(#d66060));
  background: -o-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: linear-gradient(to bottom, #d80003 0%, #d91b20 50%, #d66060 100%);
}
.EntrySelect .CustomRadioBtn label span {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .EntrySelect .CustomRadioBtn label span.PushIcon {
    margin: 0 5px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .EntrySelect .CustomRadioBtn label span:last-child {
    display: inline-block;
    width: 80%;
    vertical-align: middle;
  }
}
@media screen and (min-width: 769px) {
  .EntrySelect .CustomRadioBtn label span:last-child {
    font-size: 16px;
  }
}
.EntrySelect .CustomRadioBtn label input[type="radio"] + .PushIcon:before {
  color: #D91B20;
}
.EntrySelect .CustomRadioBtn label input[type="radio"]:checked + .PushIcon:before {
  color: #fff;
}
.Accompanying {
  padding: 0 0 20px 0;
}
.Accompanying:last-child {
  padding: 0;
}
.Accompanying .Kubun {
  padding: 0 0 5px;
}
.Accompanying .Kubun dl {
  letter-spacing: -0.4em;
}
.Accompanying .Kubun dl dt,
.Accompanying .Kubun dl dd {
  display: inline-block;
  padding: 7px 10px 5px;
  font-size: 13px;
  letter-spacing: normal;
}
.Accompanying .Kubun dl dt {
  background: #E6E5E3;
}
.Accompanying .Kubun dl dd {
  background: #F4F4F4;
}
/* ==============================
- ClientDesPage
============================== */
@media screen and (max-width: 768px) {
  .ClientDesPage .ClientDes {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  .ClientDesPage .ClientDes {
    padding: 20px;
  }
}
.ClientDesPage .ClientDes :disabled {
  background: #F4F4F4;
}
.ClientDesPage .Ledger {
  margin-bottom: 10px;
}
.ClientDesPage .Ledger dt,
.ClientDesPage .Ledger dd {
  display: inline-block;
}
.ClientDesPage .Ledger dt {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .ClientDesPage .Ledger dt {
    margin-bottom: 5px;
    vertical-align: top;
    padding: 10px 0 0;
  }
}
.ClientDesPage .Ledger dt .CustomRadioBtn p {
  display: inline-block;
}
.ClientDesPage .Ledger dd .CustomText {
  margin-bottom: 0;
}
.ClientDesPage .Ledger dd .CustomText:first-of-type {
  width: 64px;
}
.ClientDesPage .Ledger dd .CustomText:last-of-type {
  width: 120px;
}
.ClientDesPage .Ledger dd .Hyphen {
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  .ClientDesPage .Ledger dd .SchBtnBox {
    padding: 5px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .ClientDesPage .Ledger dd .SchBtnBox {
    display: inline-block;
    margin-left: 10px;
  }
}
.ClientDesPage .Ledger dd .SchBtnBox .SchBtn {
  display: block;
  width: 60px;
  background: #d66060;
  background: -webkit-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d66060), color-stop(50%, #d91b20), to(#d80003));
  background: -o-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: linear-gradient(to bottom, #d66060 0%, #d91b20 50%, #d80003 100%);
  color: #fff;
  border: 1px solid;
  border-color: #D91B20;
  cursor: pointer;
  text-align: center;
  padding: 5px;
  margin: 0 auto;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.ClientDesPage .Ledger dd .SchBtnBox .SchBtn:hover {
  background: #d80003;
  background: -webkit-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d80003), color-stop(50%, #d91b20), to(#d66060));
  background: -o-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: linear-gradient(to bottom, #d80003 0%, #d91b20 50%, #d66060 100%);
}
.ClientDesPage .Ledger dd .SchBtnBox .SchBtn:disabled {
  background: #F4F4F4;
  border-color: #E6E5E3;
  color: #555;
  cursor: default;
}
.ClientDesPage .ListData table {
  width: 100%;
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .ClientDesPage .ListData table {
    border: 2px solid #E6E5E3;
    background: #F4F4F4;
  }
}
@media screen and (max-width: 768px) {
  .ClientDesPage .ListData table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .ClientDesPage .ListData table tr:last-of-type {
    border-bottom: none;
  }
}
.ClientDesPage .ListData table th {
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .ClientDesPage .ListData table th {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ClientDesPage .ListData table td:before {
    content: attr(data-text) "";
  }
}
@media screen and (max-width: 768px) {
  .ClientDesPage .ListData table td:not(.Number):not(.CheckSele) {
    display: table;
    width: 100%;
    border-bottom: none;
    border-right: none;
    border-left: none;
    background: #fff;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .ClientDesPage .ListData table td:not(.Number):not(.CheckSele):before {
    display: table-cell;
    width: 30%;
    padding: 5px;
    border-right: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .ClientDesPage .ListData table td:not(.Number):not(.CheckSele) span {
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .ClientDesPage .ListData table .Number,
  .ClientDesPage .ListData table .CheckSele {
    border-bottom: none;
    border-top: none;
    border-right: none;
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .ClientDesPage .ListData table .Number {
    border-left: none;
    margin-right: auto;
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
  }
}
@media screen and (min-width: 769px) {
  .ClientDesPage .ListData table .Number {
    width: 40px;
  }
}
.ClientDesPage .ListData table .CheckSele {
  text-align: center;
  border-left: none;
}
@media screen and (max-width: 768px) {
  .ClientDesPage .ListData table .CheckSele {
    width: 60px;
  }
}
@media screen and (min-width: 769px) {
  .ClientDesPage .ListData table .CheckSele {
    width: 50px;
  }
}
.ClientDesPage .ListData table .CheckSele .PushIcon {
  padding: 0;
}
@media screen and (min-width: 769px) {
  .ClientDesPage .ListData table .Sei,
  .ClientDesPage .ListData table .Mei {
    width: 120px;
  }
}
@media screen and (min-width: 769px) {
  .ClientDesPage .ListData table .Sex {
    width: 50px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .ClientDesPage .ListData table .Age {
    width: 50px;
    text-align: right;
  }
}
@media screen and (min-width: 769px) {
  .ClientDesPage .ListData table .Rep {
    width: 100px;
  }
}
@media screen and (min-width: 769px) {
  .ClientDesPage .ListData table .ClDay {
    width: 90px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .ClientDesPage .ListData table .Code {
    text-align: right;
  }
}
.ClientDesPage .AppClient {
  margin: 20px 0 0;
}
.ClientDesPage .AppClient dt,
.ClientDesPage .AppClient dd {
  display: inline-block;
}
.ClientDesPage .AppClient dt {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .ClientDesPage .AppClient dt {
    width: 126px;
    margin-bottom: 5px;
    vertical-align: top;
    padding: 10px 0 0;
  }
}
.ClientDesPage .AppClient dt .CustomRadioBtn p {
  display: inline-block;
}
.ClientDesPage .AppClient dd .CustomText {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .ClientDesPage .AppClient dd .CustomText {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 769px) {
  .ClientDesPage .AppClient dd .CustomText {
    width: 100px;
    display: inline-block;
  }
}
.ClientDesPage .AppClient dd .NameData {
  background: #F4F4F4;
  padding: 0 10px;
  height: 36px;
  line-height: 34px;
}
@media screen and (max-width: 768px) {
  .ClientDesPage .AppClient dd .NameData {
    margin: 0 0 5px;
  }
}
@media screen and (min-width: 769px) {
  .ClientDesPage .AppClient dd .NameData {
    display: inline-block;
    vertical-align: middle;
    min-width: 140px;
  }
}
@media screen and (min-width: 769px) {
  .ClientDesPage .AppClient dd .SchBtnBox {
    display: inline-block;
    margin-left: 10px;
  }
}
.ClientDesPage .AppClient dd .SchBtnBox .SchBtn {
  display: block;
  width: 60px;
  background: #d66060;
  background: -webkit-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d66060), color-stop(50%, #d91b20), to(#d80003));
  background: -o-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: linear-gradient(to bottom, #d66060 0%, #d91b20 50%, #d80003 100%);
  color: #fff;
  border: 1px solid;
  border-color: #D91B20;
  cursor: pointer;
  text-align: center;
  padding: 5px;
  margin: 0 auto;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.ClientDesPage .AppClient dd .SchBtnBox .SchBtn:hover {
  background: #d80003;
  background: -webkit-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d80003), color-stop(50%, #d91b20), to(#d66060));
  background: -o-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: linear-gradient(to bottom, #d80003 0%, #d91b20 50%, #d66060 100%);
}
.ClientDesPage .AppClient dd .SchBtnBox .SchBtn:disabled {
  background: #F4F4F4;
  border-color: #E6E5E3;
  color: #555;
  cursor: default;
}
/* ==============================
- KakuninPage
============================== */
.Kakunin .InfoEntry table th:after {
  display: none;
}
.Kakunin .QsArea .Inner .InfoEntry {
  border: 2px solid #E6E5E3;
  padding: 10px;
}
@media screen and (min-width: 769px) {
  .Point .Inner {
    padding: 20px;
  }
}
.Point .PointGetArea {
  margin-bottom: 10px;
}
.Point .PointGetArea .PointGet {
  border: 2px solid #E6E5E3;
  padding: 10px;
}
.Point .PointGetArea .PointGet dl {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .Point .PointGetArea .PointGet dl {
    text-align: center;
  }
}
.Point .PointGetArea .PointGet dl dt {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .Point .PointGetArea .PointGet dl dt {
    padding: 0 0 5px;
  }
}
@media screen and (min-width: 769px) {
  .Point .PointGetArea .PointGet dl dt {
    display: inline-block;
    margin-right: 15px;
  }
}
@media screen and (min-width: 769px) {
  .Point .PointGetArea .PointGet dl dd {
    display: inline-block;
  }
}
.Point .PointGetArea .PointGet dl dd .Point {
  color: #D91B20;
  font-size: 20px;
  font-weight: bold;
}
.Point .PointUseArea h4 {
  font-weight: 600;
  background-color: #F4F4F4;
}
@media screen and (min-width: 769px) {
  .Point .PointUseArea h4 {
    font-size: 16px;
  }
}
.Point .PointUseArea .PointUse {
  border: 2px solid #E6E5E3;
  border-top: none;
}
@media screen and (max-width: 768px) {
  .Point .PointUseArea .PointUse {
    padding: 10px;
  }
}
@media screen and (min-width: 769px) {
  .Point .PointUseArea .PointUse {
    padding: 10px 20px;
  }
}
.Point .PointUseArea .PointUse dl {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .Point .PointUseArea .PointUse dl {
    text-align: center;
  }
}
.Point .PointUseArea .PointUse dl dt {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .Point .PointUseArea .PointUse dl dt {
    padding: 0 0 5px;
  }
}
@media screen and (min-width: 769px) {
  .Point .PointUseArea .PointUse dl dt {
    display: inline-block;
    margin-right: 20px;
  }
}
@media screen and (min-width: 769px) {
  .Point .PointUseArea .PointUse dl dd {
    display: inline-block;
  }
}
.Point .PointUseArea .PointUse dl dd .Point {
  color: #555;
  font-size: 20px;
  font-weight: bold;
}
.Point .PointUseArea .PointUse ul li {
  margin-bottom: 10px;
}
.Point .PointUseArea .PointUse ul li .CustomRadioBtn label {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .Point .PointUseArea .PointUse ul li .CustomRadioBtn label .CustomText {
    width: 130px;
  }
}
@media screen and (min-width: 769px) {
  .Point .PointUseArea .PointUse ul li .CustomRadioBtn label .CustomText {
    width: 150px;
  }
}
.Point .PointInfo li {
  font-size: 13px;
  font-weight: normal;
}
.Point .PointInfo li::before {
  content: "※";
  color: #D91B20;
}
/* ==============================
- AllocationPage
============================== */
@media screen and (max-width: 768px) {
  .AllotArea {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .AllotArea {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .AllotArea h4 {
    margin: 0 0 5px;
  }
}
.AllotArea .UsageCount {
  width: 100%;
  margin: 0 0 5px;
}
@media screen and (max-width: 768px) {
  .AllotArea .UsageCount table {
    width: 100%;
  }
}
.AllotArea .UsageCount table tbody tr th,
.AllotArea .UsageCount table tbody tr td {
  padding: 10px;
}
.AllotArea .UsageCount table tbody tr th {
  text-align: center;
  font-weight: normal;
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .AllotArea .UsageCount table tbody tr th {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .AllotArea .UsageCount table tbody tr td {
    width: 60%;
  }
}
.AllotArea .UsageCount table tbody tr td dl {
  display: inline-block;
}
.AllotArea .UsageCount table tbody tr td dl dt,
.AllotArea .UsageCount table tbody tr td dl dd {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .AllotArea .NightBox {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .AllotArea .NightBox {
    margin: 0 0 40px;
  }
}
.AllotArea .NightBox:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .AllotArea .NightBox .Inner {
    padding: 10px 20px 0;
  }
}
.AllotArea .NightBox .Inner dl {
  border: 2px solid #E6E5E3;
  margin: 0 0 5px;
}
.AllotArea .NightBox .Inner dl:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .AllotArea .NightBox .Inner dl {
    display: table;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .AllotArea .NightBox .Inner dl dt,
  .AllotArea .NightBox .Inner dl dd {
    display: table-cell;
  }
}
.AllotArea .NightBox .Inner dl dt {
  padding: 10px;
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .AllotArea .NightBox .Inner dl dt {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .AllotArea .NightBox .Inner dl dt {
    border-right: 2px solid #E6E5E3;
    text-align: center;
    vertical-align: middle;
  }
}
@media screen and (min-width: 769px) {
  .AllotArea .NightBox .Inner dl dd {
    width: 86%;
  }
}
.AllotArea .NightBox .Inner dl dd .Entries {
  border-bottom: 2px solid #E6E5E3;
}
.AllotArea .NightBox .Inner dl dd .Entries:last-child {
  border-bottom: none;
}
@media screen and (min-width: 769px) {
  .AllotArea .NightBox .Inner dl dd .Entries {
    display: table;
    width: 100%;
  }
}
.AllotArea .NightBox .Inner dl dd .Entries .Info {
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .AllotArea .NightBox .Inner dl dd .Entries .Info {
    border-bottom: 1px dashed #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .AllotArea .NightBox .Inner dl dd .Entries .Info {
    display: table-cell;
    width: 36%;
    border-right: 2px solid #E6E5E3;
  }
}
.AllotArea .NightBox .Inner dl dd .Entries .Info .NameBox {
  margin: 0 0 3px;
}
.AllotArea .NightBox .Inner dl dd .Entries .Info .NameBox .Name {
  display: block;
  margin: 0 0 3px;
}
.AllotArea .NightBox .Inner dl dd .Entries .Info .NameBox span.Time::before,
.AllotArea .NightBox .Inner dl dd .Entries .Info .NameBox span.Meal::before {
  content: "(";
}
.AllotArea .NightBox .Inner dl dd .Entries .Info .NameBox span.Time::after,
.AllotArea .NightBox .Inner dl dd .Entries .Info .NameBox span.Meal::after {
  content: ")";
}
.AllotArea .NightBox .Inner dl dd .Entries .Info .NameBox span.Time + span::before {
  content: "⇒";
  padding: 0 3px;
}
.AllotArea .NightBox .Inner dl dd .Entries .Info .NameBox span.Time + span:first-of-type::before {
  display: none;
}
.AllotArea .NightBox .Inner dl dd .Entries .Entry {
  display: table-cell;
  padding: 10px;
}
.AllotArea .NightBox .Inner dl dd .Entries .Entry > p {
  margin: 0 0 5px;
}
.AllotArea .NightBox .Inner dl dd .Entries .Entry ul {
  margin: 0 0 5px;
}
.AllotArea .NightBox .Inner dl dd .Entries .Entry ul li {
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 4px;
}
.AllotArea .NightBox .Inner dl dd .Entries .Entry .CustomCheckobx label:before {
  display: inline-block;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 5px 0 0;
  content: "\f096";
}
.AllotArea .NightBox .Inner dl dd .Entries .Entry .CustomCheckobx input:checked + label:before {
  content: "\f14a";
}
.AllotArea .NightBox .Inner dl dd .Entries .Entry .SeleRel {
  display: inline-block;
  border-radius: 5px;
  letter-spacing: -5px;
}
.AllotArea .NightBox .Inner dl dd .Entries .Entry .SeleRel .Allset,
.AllotArea .NightBox .Inner dl dd .Entries .Entry .SeleRel .Reset {
  display: inline-block;
  border: 1px solid #E6E5E3;
  color: #555;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#E6E6E6), to(white));
  background-image: -webkit-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: -o-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: linear-gradient(to top, #E6E6E6 0%, white 100%);
  padding: 7px 10px;
  letter-spacing: 0;
  cursor: pointer;
}
.AllotArea .NightBox .Inner dl dd .Entries .Entry .SeleRel .Allset:hover,
.AllotArea .NightBox .Inner dl dd .Entries .Entry .SeleRel .Reset:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(#E6E6E6));
  background-image: -webkit-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: -o-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: linear-gradient(to top, white 0%, #E6E6E6 100%);
}
.AllotArea .NightBox .Inner dl dd .Entries .Entry .SeleRel .Allset {
  border-radius: 5px 0 0 5px;
}
.AllotArea .NightBox .Inner dl dd .Entries .Entry .SeleRel .Reset {
  border-radius: 0 5px 5px 0;
}
/* ==============================
- FinalCfmPage
============================== */
@media screen and (max-width: 768px) {
  .FinalCfmPage h4 {
    font-size: 13px;
    position: relative;
    background: #4A4A4A;
    color: #fff;
    border: none;
    letter-spacing: 1px;
  }
}
@media screen and (min-width: 769px) {
  .FinalCfmPage h4 {
    background: #f4f4f4;
  }
}
@media screen and (max-width: 768px) {
  .FinalCfmPage h4:after {
    position: absolute;
    top: 5px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 5px;
    height: 5px;
    border: 5px solid transparent;
    border-top: 5px solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .FinalCfmPage h4.open:after {
    border-top: none;
    border-bottom: 5px solid #fff;
    top: 0;
  }
}
@media screen and (min-width: 769px) {
  .FinalCfmPage .CurrentSel {
    padding: 20px;
  }
}
.FinalCfmPage .CurrentSel .Entries .Info .Entry {
  margin: 10px 0 0;
}
.FinalCfmPage .CurrentSel .Entries .Info .Entry dt {
  display: inline-block;
  border-top: 2px solid #e6e5e3;
}
@media screen and (max-width: 768px) {
  .FinalCfmPage .CurrentSel .Entries .Info .Entry dt {
    width: 20%;
    text-align: center;
    padding: 3px 0px;
  }
}
@media screen and (min-width: 769px) {
  .FinalCfmPage .CurrentSel .Entries .Info .Entry dt {
    width: 14%;
    vertical-align: top;
    padding: 5px 10px;
  }
}
.FinalCfmPage .CurrentSel .Entries .Info .Entry dd {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .FinalCfmPage .CurrentSel .Entries .Info .Entry dd {
    width: auto;
    padding: 3px 5px;
  }
}
@media screen and (min-width: 769px) {
  .FinalCfmPage .CurrentSel .Entries .Info .Entry dd {
    width: 85%;
    padding: 5px 10px;
  }
}
.FinalCfmPage .CurrentSel .Entries .Info .Entry span {
  display: inline-block;
}
.FinalCfmPage .CurrentSel .Entries .Info .Entry span.Title {
  border: 2px solid #e6e5e3;
  padding: 5px 10px;
}
.FinalCfmPage .CurrentSel .Entries .Info .Entry span:not(.Title) {
  display: inline-block;
}
.FinalCfmPage .CurrentSel .Entries .Info .Entry span:not(.Title):after {
  content: "、";
  display: inline-block;
  margin: 0 0 0 5px;
}
.FinalCfmPage .CurrentSel .Entries .Info .Entry span:not(.Title):last-of-type:after {
  display: none;
}
.FinalCfmPage .TotalPointGet {
  text-align: right;
}
.FinalCfmPage .TotalPointGet dl {
  display: inline-block;
  margin-bottom: 10px;
}
.FinalCfmPage .TotalPointGet dl dt {
  display: inline-block;
  margin-right: 15px;
}
.FinalCfmPage .TotalPointGet dl dt::before {
  content: "(";
}
.FinalCfmPage .TotalPointGet dl dd {
  display: inline-block;
}
.FinalCfmPage .TotalPointGet dl dd::after {
  content: ")";
}
.FinalCfmPage .TotalPointGet dl dd .Point {
  color: #D91B20;
  font-weight: bold;
}
.FinalCfmPage .PayState .Inner {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .FinalCfmPage .PayState {
    margin: 5px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .FinalCfmPage .PayState {
    margin: 5px 0 20px;
  }
}
.FinalCfmPage .PayState table {
  width: 100%;
}
.FinalCfmPage .PayState table thead th {
  background: #F4F4F4;
}
@media screen and (min-width: 769px) {
  .FinalCfmPage .PayState table thead th {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .FinalCfmPage .PayState table thead {
    display: none;
  }
}
.FinalCfmPage .PayState table td .PayMethod {
  margin-left: 5px;
}
.FinalCfmPage .PayState table td .PayMethod::before {
  content: "(";
}
.FinalCfmPage .PayState table td .PayMethod::after {
  content: ")";
}
@media screen and (max-width: 768px) {
  .FinalCfmPage .PayState table td {
    display: table;
    width: 100%;
    border-bottom: none;
  }
  .FinalCfmPage .PayState table td:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .FinalCfmPage .PayState table td {
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .FinalCfmPage .PayState table td:before {
    content: attr(data-text) "";
    display: table-cell;
    width: 40%;
    background: #F4F4F4;
    border-right: 2px solid #E6E5E3;
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .FinalCfmPage .PayState table td span {
    display: table-cell;
    padding: 5px;
    text-align: right;
    vertical-align: middle;
  }
}
.FinalCfmPage .PayState table.BankDeadline,
.FinalCfmPage .PayState table.CvsDeadline {
  margin: 10px 0 0;
}
@media screen and (min-width: 769px) {
  .FinalCfmPage .PayState table.BankDeadline {
    width: auto;
  }
}
.FinalCfmPage .PayState table.BankDeadline th {
  min-width: 175px;
}
@media screen and (min-width: 769px) {
  .FinalCfmPage .PayState table.CvsDeadline td {
    text-align: left;
  }
}
.FinalCfmPage .PayState table.CvsDeadline td.SpecCvs span {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .FinalCfmPage .PayState table.CvsDeadline td.PaymentMethod span {
    display: block;
    text-align: left;
  }
}
@media screen and (min-width: 769px) {
  .FinalCfmPage .PayState table.CvsDeadline td.BalanceDead {
    text-align: right;
  }
}
.FinalCfmPage .PayState table.CvsDeadline td p {
  padding: 3px 0 0;
}
.FinalCfmPage .PayState table.CvsDeadline td p:first-child {
  padding: 0;
}
@media screen and (min-width: 769px) {
  .FinalCfmPage .Person {
    padding-bottom: 0;
  }
}
.FinalCfmPage .Person .LastTerm .InfoEntry {
  padding: 15px;
  background: #E6E5E3;
  text-align: center;
}
.FinalCfmPage .Person .LastTerm .InfoEntry .Come {
  padding: 0 0 10px;
  font-weight: 600;
}
.FinalCfmPage .ErrorWording #ErrMsg {
  text-align: center;
  margin: 0 0 15px;
  color: #f00;
}
/* ==============================
- BookingPage
============================== */
.BookingPage .TtourFlow {
  text-align: center;
  padding: 10px 0 30px;
}
.BookingPage .TtourFlow a {
  font-size: 16px;
  color: #D91B20;
}
.BookingPage .TtourFlow a:hover {
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .Booking {
    padding: 0 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .Booking {
    margin: 0px 0px 10px;
  }
}
@media screen and (min-width: 769px) {
  .Booking .Inner {
    padding: 20px;
  }
}
.Booking .Inner dl {
  border: 2px solid #E6E5E3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .Booking .Inner dl {
    padding: 20px;
  }
}
@media screen and (min-width: 769px) {
  .Booking .Inner dl {
    padding: 30px;
  }
}
.Booking .Inner dt,
.Booking .Inner dd {
  font-size: 16px;
}
.Booking .Inner dt {
  padding: 0 0 10px;
}
.Booking .Inner .ReservedInfo {
  padding: 20px 0 0;
  line-height: 17px;
}
.Booking .Inner .ReservedInfo p {
  padding: 0 0 15px;
}
.Booking .Inner .ReservedInfo p:last-child {
  padding: 0;
}
/* ==============================
- ForgetPage
============================== */
@media screen and (max-width: 768px) {
  .ForgetArea {
    padding: 15px 0;
  }
}
@media screen and (min-width: 769px) {
  .ForgetArea {
    padding: 40px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .ForgetArea .Inner {
    padding: 10px;
  }
}
.ForgetArea .Inner .Info {
  line-height: 18px;
}
.ForgetArea table {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .ForgetArea table {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .ForgetArea table {
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .ForgetArea table tr:last-child td:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .ForgetArea table th,
  .ForgetArea table td {
    display: block;
    border-bottom: none;
  }
}
.ForgetArea table th {
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .ForgetArea table th {
    padding: 8px 5px 5px;
  }
}
.ForgetArea table th .Required {
  content: "必須";
  display: inline-block;
  background: #f00;
  color: #fff;
  font-size: 11px;
  padding: 3px 5px 2px;
  margin-left: 5px;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .ForgetArea table td .CustomText {
    margin-bottom: 5px;
  }
  .ForgetArea table td .CustomText:last-child {
    margin-bottom: 0;
  }
}
.ForgetArea .BtnChoiceBox {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .RepassArea {
    padding: 15px 0;
  }
}
@media screen and (min-width: 769px) {
  .RepassArea {
    padding: 40px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .RepassArea .Inner {
    padding: 10px;
  }
}
.RepassArea .Inner .Info {
  line-height: 18px;
}
.RepassArea table {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .RepassArea table {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .RepassArea table {
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .RepassArea table tr:last-child td:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .RepassArea table th,
  .RepassArea table td {
    display: block;
    border-bottom: none;
  }
}
.RepassArea table th {
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .RepassArea table th {
    padding: 8px 5px 5px;
  }
}
.RepassArea table th .Required {
  content: "必須";
  display: inline-block;
  background: #f00;
  color: #fff;
  font-size: 11px;
  padding: 3px 5px 2px;
  margin-left: 5px;
  border-radius: 3px;
}
.RepassArea .BtnChoiceBox {
  margin-top: 30px;
}
/* ==============================
- ErrorPage
============================== */
.ErrorPage .Main {
  padding: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .ErrorPage .Error {
    margin: 0px 0px 20px;
  }
}
@media screen and (min-width: 769px) {
  .ErrorPage .Error .Inner {
    padding: 20px;
  }
}
.ErrorPage .Error .Inner dl {
  border: 2px solid #E6E5E3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ErrorPage .Error .Inner dl {
    padding: 20px;
  }
}
@media screen and (min-width: 769px) {
  .ErrorPage .Error .Inner dl {
    padding: 30px;
  }
}
.ErrorPage .Error .Inner dt,
.ErrorPage .Error .Inner dd {
  font-size: 16px;
}
.ErrorPage .Error .Inner dt {
  padding: 0 0 10px;
}
.ErrorPage .BtnChoiceBox .NextBtn {
  width: 230px;
  text-decoration: none;
}
/* ==============================
- RePaymentPage
============================== */
.RePaymentPage .Main {
  padding: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .RePaymentPage .RePayment {
    margin: 0px 0px 20px;
  }
}
@media screen and (min-width: 769px) {
  .RePaymentPage .RePayment {
    padding: 20px;
  }
}
.RePaymentPage .RePayment .Inner {
  border: 2px solid #E6E5E3;
}
@media screen and (max-width: 768px) {
  .RePaymentPage .RePayment .Inner {
    padding: 20px 10px 10px;
  }
}
@media screen and (min-width: 769px) {
  .RePaymentPage .RePayment .Inner {
    padding: 20px;
  }
}
.RePaymentPage .RePayment .Inner dl {
  text-align: center;
}
.RePaymentPage .RePayment .Inner dt,
.RePaymentPage .RePayment .Inner dd {
  font-size: 16px;
}
.RePaymentPage .RePayment .Inner dt {
  padding: 0 0 10px;
}
.RePaymentPage .RePayment .Inner table {
  width: 100%;
  font-size: 13px;
  margin: 20px 0 0;
}
.RePaymentPage .RePayment .Inner table th {
  background: #F4F4F4;
  font-weight: normal;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .RePaymentPage .RePayment .Inner table th {
    display: block;
    border-bottom: none;
  }
}
@media screen and (min-width: 769px) {
  .RePaymentPage .RePayment .Inner table th {
    width: 28%;
    padding: 10px;
    vertical-align: top;
  }
}
.RePaymentPage .RePayment .Inner table th:after {
  content: "必須";
  display: inline-block;
  background: #f00;
  color: #fff;
  font-size: 11px;
  padding: 3px 5px 2px;
  margin-left: 5px;
  border-radius: 3px;
}
.RePaymentPage .RePayment .Inner table td {
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .RePaymentPage .RePayment .Inner table td {
    display: block;
  }
}
.RePaymentPage .RePayment .Inner table td .ConveniSelect {
  padding: 5px 0 0;
  margin: 5px 0 0;
  border-top: 1px dashed #E6E5E3;
}
.RePaymentPage .RePayment .Inner table td .SalesOfficeSelect {
  padding: 5px 0 0;
  margin: 5px 0 0;
  border-top: 1px dashed #E6E5E3;
}
.RePaymentPage .RePayment .Inner table td .SalesOfficeSelect .CustomSelect {
  width: auto;
  min-width: 170px;
}
.RePaymentPage .RePayment .Inner table td .Info {
  padding: 5px 0 0;
}
.RePaymentPage .RePayment .Inner table td .Alert {
  padding: 5px 0 0;
  color: #f00;
}
.RePaymentPage .RePayment .Inner table td label {
  display: inline-block;
  padding: 0 15px 0 0;
}
.RePaymentPage .RePayment .Inner table td label:last-child {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .RePaymentPage .RePayment .Inner table td .CustomRadioBtn {
    display: block;
    margin: 0 0 5px;
  }
}
@media screen and (min-width: 769px) {
  .RePaymentPage .RePayment .Inner table td .CustomRadioBtn {
    margin: 0 10px 0 0;
  }
}
.RePaymentPage .RePayment .AppFeeBil {
  text-align: center;
  padding: 30px 0 0;
  color: #f00;
  font-size: 15px;
}
.RePaymentPage .ProcessBox {
  text-align: center;
  font-size: 16px;
  margin: 0 0 20px;
}
.RePaymentPage .BtnChoiceBox .NextBtn {
  width: 230px;
  text-decoration: none;
}
