@charset "UTF-8";
/* ---------------------
- 共通
- BeginPage
- BinPage
- HotelPage
- OptionPage
--- Rentalcar
--- Plan
--- Option
--- Arbitrary
--------------------- */
/* ==============================
- 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_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;
  }
  .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;
  }
}
/* 記号
---------------------*/
.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;
}
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 .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;
}
.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;
}
@media screen and (min-width: 769px) {
  th.AddPrice {
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  th.AddPrice .Comment {
    display: block;
    font-size: 11px;
  }
}
@media screen and (min-width: 769px) {
  th.AddPrice .Comment::before {
    content: "(";
  }
}
@media screen and (min-width: 769px) {
  th.AddPrice .Comment::after {
    content: ")";
  }
}
@media screen and (min-width: 769px) {
  .Header li.AddPrice {
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .Header li.AddPrice .Comment {
    display: block;
    font-size: 11px;
  }
  .Header li.AddPrice .Comment::before {
    content: "(";
  }
  .Header li.AddPrice .Comment::after {
    content: ")";
  }
}
@media screen and (min-width: 769px) {
  .Header li.Vacancy {
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .Header li.Count {
    text-align: center;
  }
}
/* ==============================
- PricecategoryPage
============================== */
.PricecategoryBlock {
  background: #D91B20;
  padding: 15px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .PricecategoryBlock {
    margin: 20px 0 40px;
  }
}
@media screen and (min-width: 769px) {
  .PricecategoryBlock {
    width: 40%;
    margin: 0 auto 40px;
  }
}
.PricecategoryBlock .PriTitle {
  margin: 0 0 15px;
  color: #fff;
  text-align: center;
  font-size: 16px;
}
/* ==============================
- BeginPage
============================== */
@media screen and (max-width: 768px) {
  .BeginPage .Attention {
    padding: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .BeginPage .Attention {
    padding: 0 20px 20px;
  }
}
.BeginPage .Attention p {
  color: #f00;
  font-weight: 600;
  text-align: center;
}
.Interval table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .Interval {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .Interval {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .Interval .TermExt {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px) {
  .Interval .TermExt {
    border: 2px solid #E6E5E3;
    border-bottom: none;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 768px) {
  .Interval .TermExt dl {
    font-size: 0;
    border: 2px solid #E6E5E3;
    background: #F4F4F4;
  }
}
.Interval .TermExt dt,
.Interval .TermExt dd {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .Interval .TermExt dt,
  .Interval .TermExt dd {
    font-size: 13px;
    padding: 5px;
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .Interval .TermExt dt {
    width: 28%;
  }
}
@media screen and (min-width: 769px) {
  .Interval .TermExt dt::after {
    content: "：";
  }
}
@media screen and (max-width: 768px) {
  .Interval .TermExt dt:last-of-type {
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .Interval .TermExt dd {
    width: 72%;
    border-left: 2px solid #E6E5E3;
    background: #fff;
  }
}
@media screen and (min-width: 769px) {
  .Interval .TermExt dd:not(.ReturnExt) {
    margin-right: 10px;
  }
}
@media screen and (min-width: 769px) {
  .Interval .TermExt dd.ReturnExt {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .Interval .TermExt dd:last-of-type {
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .Interval .ClearBtn {
    width: 100%;
    margin: 5px 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 769px) {
  .Interval .ClearBtn {
    float: left;
  }
}
.Interval .ClearBtn .ResetBtn {
  display: block;
  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%);
  padding: 10px;
  cursor: pointer;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
}
.Interval .ClearBtn .ResetBtn: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) {
  .Interval .ClearBtn .ResetBtn {
    display: block;
    margin-left: auto;
  }
}
@media screen and (min-width: 769px) {
  .Interval .Entry {
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  .Interval .Entry table {
    table-layout: fixed;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table thead {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table thead tr:last-child {
    border-bottom: 2px solid #E6E5E3;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table tbody 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: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 0 1px;
    border: 2px solid #E6E5E3;
    border-bottom: none;
    border-top: none;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table tbody tr:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table th {
    padding: 0;
    border-bottom: none;
    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: 100%;
  }
}
@media screen and (min-width: 769px) {
  .Interval .Entry table th {
    background: #F4F4F4;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table th span {
    padding: 3px;
    font-size: 11px;
  }
}
@media screen and (min-width: 769px) {
  .Interval .Entry table th span {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table th span:first-child {
    width: 40%;
    border-right: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table th span.Comment {
    width: 60%;
  }
}
@media screen and (min-width: 769px) {
  .Interval .Entry table th span.Comment {
    font-size: 11px;
    margin: 3px 0 0;
  }
}
.Interval .Entry table th span.Comment:before {
  content: "※";
}
@media screen and (min-width: 769px) {
  .Interval .Entry table th.Type {
    width: 15%;
  }
}
@media screen and (min-width: 769px) {
  .Interval .Entry table th.Number {
    width: 8%;
  }
}
@media screen and (min-width: 769px) {
  .Interval .Entry table th.Count {
    width: 8%;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table td {
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table td:before {
    content: attr(data-text) "";
    display: block;
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
    font-size: 11px;
    padding: 0 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table td.Type {
    width: 100%;
    position: relative;
    padding: 10px;
    background: #4A4A4A;
    color: #fff;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table td.Type: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) {
  .Interval .Entry table td.Type.open {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table td.Type.open:after {
    border-top: none;
    border-bottom: 5px solid #fff;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table td:not(.Type) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table td:not(.Type) .CustomSelect {
    width: 75px;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table td.Number {
    width: 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .Interval .Entry table td.Count {
    padding: 0 5px 5px;
  }
}
.Interval .Entry .TotalPeople {
  display: table;
  width: 20%;
  border: 2px solid #E6E5E3;
}
@media screen and (max-width: 768px) {
  .Interval .Entry .TotalPeople {
    width: 50%;
    margin: 5px 0 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .Interval .Entry .TotalPeople {
    float: right;
  }
}
.Interval .Entry .TotalPeople dt,
.Interval .Entry .TotalPeople dd {
  display: table-cell;
  padding: 10px;
}
.Interval .Entry .TotalPeople dt {
  width: 40%;
  border-right: 2px solid #E6E5E3;
  background: #F4F4F4;
  text-align: center;
}
.Interval .Entry .TotalPeople dd {
  width: 60%;
  text-align: right;
}
/* ==============================
- BinPage
============================== */
.NoVacancy {
  color: #E6E5E3;
}
.NoVacancy select,
.NoVacancy input {
  color: #E6E5E3;
}
.NoVacancy .CustomRadioBtn label input[type="radio"] + .PushIcon:before {
  color: #E6E5E3;
}
@media screen and (max-width: 768px) {
  .BinPage h4 {
    margin: 0 0 5px;
  }
}
.BinPage .ViaConnect {
  text-align: center;
}
.BinPage .ViaConnect: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;
}
.BinPage .Dividing {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .BinPage .Dividing {
    padding: 15px 0;
  }
}
@media screen and (min-width: 769px) {
  .BinPage .Dividing {
    padding: 20px 0;
  }
}
.BinPage .Dividing:before {
  position: absolute;
  top: 50%;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #E6E5E3;
  background: -webkit-linear-gradient(-45deg, transparent, #E6E5E3 10%, #E6E5E3 90%, transparent);
  background: -webkit-linear-gradient(135deg, transparent, #E6E5E3 10%, #E6E5E3 90%, transparent);
  background: -o-linear-gradient(135deg, transparent, #E6E5E3 10%, #E6E5E3 90%, transparent);
  background: linear-gradient(-45deg, transparent, #E6E5E3 10%, #E6E5E3 90%, transparent);
}
.BinPage .Dividing p {
  background: #fff;
  border-radius: 5px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .BinPage .Dividing p {
    font-size: 11px;
    padding: 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .BinPage .Dividing p {
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  .BinArea {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .BinArea {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .BinArea > div {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .BinArea > div {
    margin: 0 0 40px;
  }
}
.BinArea > div:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .BinArea .Inner {
    padding: 10px 20px 0;
  }
}
.BinArea .Caption {
  padding: 5px;
  border: 2px solid #E6E5E3;
  border-bottom: none;
}
.BinArea .Caption span {
  display: inline-block;
}
.BinArea .Caption span.CustomSelect {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .BinArea .Caption span.CustomSelect {
    width: 45.2%;
  }
}
@media screen and (min-width: 769px) {
  .BinArea .Caption span.CustomSelect {
    width: 25%;
  }
}
.BinArea .Caption span.Dir:after {
  content: "⇒";
  padding: 0 3px 0 5px;
}
@media screen and (max-width: 768px) {
  .TransitBox > .Header {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Header {
    border: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Header ul {
    display: table;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Header li {
    display: table-cell;
    background: #F4F4F4;
    padding: 5px;
    border-right: 2px solid #E6E5E3;
    vertical-align: middle;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Header li.Selection {
    width: 4%;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Header li.AddPrice {
    width: 12%;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Header li.Vacancy {
    width: 12%;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Header li:last-child {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .TransitBox > .Body {
    border-top: 2px solid #E6E5E3;
  }
}
.TransitBox > .Body .BinCont {
  border: 2px solid #E6E5E3;
  border-top: none;
  border-bottom: none;
}
.TransitBox > .Body .Select {
  display: table;
  width: 100%;
  border-bottom: 2px solid #E6E5E3;
}
.TransitBox > .Body .Select > dt,
.TransitBox > .Body .Select > dd {
  padding: 5px;
  vertical-align: middle;
}
.TransitBox > .Body .Select > dt {
  display: table-cell;
  border-right: 2px solid #E6E5E3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .TransitBox > .Body .Select > dt {
    width: 14%;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Body .Select > dt {
    width: 4%;
  }
}
@media screen and (max-width: 768px) {
  .TransitBox > .Body .Select > dd {
    display: table;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Body .Select > dd {
    display: table-cell;
    border-right: 2px solid #E6E5E3;
  }
}
.TransitBox > .Body .Select > dd.Name p.Title {
  padding: 0 0 5px;
}
.TransitBox > .Body .Select > dd.Name p.Info .Time + span:before {
  content: "⇒";
  padding: 0 3px;
}
.TransitBox > .Body .Select > dd.Name .Time:before {
  content: "(";
}
.TransitBox > .Body .Select > dd.Name .Time:after {
  content: ")";
}
@media screen and (max-width: 768px) {
  .TransitBox > .Body .Select > dd.Name {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .TransitBox > .Body .Select > dd.AddPrice {
    width: 50%;
    float: left;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Body .Select > dd.AddPrice {
    width: 12%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .TransitBox > .Body .Select > dd.AddPrice:before {
    content: attr(data-text) "";
    display: inline-block;
    font-size: 11px;
    padding: 0 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .TransitBox > .Body .Select > dd.AddPrice .Comment {
    display: block;
    font-size: 11px;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Body .Select > dd.AddPrice .Comment {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .TransitBox > .Body .Select > dd.AddPrice .Comment:before {
    content: "(";
  }
}
@media screen and (max-width: 768px) {
  .TransitBox > .Body .Select > dd.AddPrice .Comment:after {
    content: ")";
  }
}
@media screen and (max-width: 768px) {
  .TransitBox > .Body .Select > dd.Vacancy {
    width: 50%;
    float: left;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Body .Select > dd.Vacancy {
    width: 12%;
    text-align: center;
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .TransitBox > .Body .Select > dd.Vacancy:before {
    content: attr(data-text) "";
    display: inline-block;
    font-size: 11px;
    padding: 0 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .TransitBox > .Body .Select > dd.BinDecided {
    display: none;
    width: 100%;
    border-top: 2px solid #E6E5E3;
    background: #F4F4F4;
  }
  .TransitBox > .Body .Select > dd.BinDecided dl {
    overflow: hidden;
  }
  .TransitBox > .Body .Select > dd.BinDecided dl:not(:last-child) {
    border: 1px dashed #E6E5E3;
    padding: 0 0 5px;
    margin: 0 0 5px;
  }
  .TransitBox > .Body .Select > dd.BinDecided dl dt,
  .TransitBox > .Body .Select > dd.BinDecided dl dd {
    float: left;
  }
  .TransitBox > .Body .Select > dd.BinDecided dl dt {
    width: 60px;
  }
  .TransitBox > .Body .Select > dd.BinDecided dl dd {
    width: 98%;
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
  }
  .TransitBox > .Body .Select > dd.BinDecided dl dd ul li {
    display: inline-block;
    margin: 0 5px 0 0;
  }
  .TransitBox > .Body .Select > dd.BinDecided dl dd ul li:last-child {
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  .TransitBox > .Body .Select > dd.BinDecided {
    display: none;
  }
}
.PathBox {
  display: none;
}
@media screen and (max-width: 768px) {
  .PathBox {
    width: 95%;
    height: 84%;
    margin: 0;
    padding: 10px;
    background-color: #fff;
    position: fixed;
    z-index: 3;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont {
    display: table;
    width: 100%;
    border-right: 2px solid #E6E5E3;
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Header {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Header {
    display: table-header-group;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Header ul {
    display: table-row;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Header li {
    display: table-cell;
    vertical-align: middle;
    padding: 5px;
    background: #F4F4F4;
    border-left: 2px solid #E6E5E3;
    border-top: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body {
    max-height: 77%;
    overflow-y: scroll;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Body {
    display: table-header-group;
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dl {
    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;
    margin: 0 0 5px;
    border-right: 2px solid #E6E5E3;
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Body dl {
    display: table-row;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dl:last-child {
    margin-bottom: 0;
  }
}
.PathBox .Cont .Body dt,
.PathBox .Cont .Body dd {
  padding: 5px;
  border-left: 2px solid #E6E5E3;
  border-top: 2px solid #E6E5E3;
  font-size: 13px;
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Body dt,
  .PathBox .Cont .Body dd {
    display: table-cell;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dt {
    display: table;
    width: 100%;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Body dt {
    vertical-align: top;
  }
}
.PathBox .Cont .Body dt .Time:before {
  content: "(";
}
.PathBox .Cont .Body dt .Time:after {
  content: ")";
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dd:before {
    content: attr(data-text) "";
    display: inline-block;
    font-size: 11px;
    padding: 0 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dd.Count {
    width: 100%;
    border-top: none;
    border-bottom: 1px dashed #E6E5E3;
    padding: 0;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Body dd.Count {
    padding-bottom: 0;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dd.Count ul {
    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;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 5px;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dd.Count ul li {
    padding: 5px 5px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Body dd.Count ul li {
    display: inline-block;
    padding: 0 10px 5px 0;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Body dd.Count ul li:last-child {
    padding-right: 0;
  }
}
.PathBox .Cont .Body dd.Count ul li span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dd.Count ul li span {
    font-size: 11px;
    padding: 0 5px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dd.Count ul li span.CustomSelect {
    width: 70px;
    padding: 0;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Body dd.Count ul li span.CustomSelect {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dd.Count.Data ul {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dd.AddPrice {
    width: 50%;
    border-top: none;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Body dd.AddPrice {
    width: 12%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dd.AddPrice .Comment {
    display: block;
    font-size: 11px;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Body dd.AddPrice .Comment {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dd.AddPrice .Comment:before {
    content: "(";
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dd.AddPrice .Comment:after {
    content: ")";
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .Body dd.Vacancy {
    width: 50%;
    border-top: none;
    border-left: none;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .Body dd.Vacancy {
    width: 12%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .BtnBox {
    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;
    margin: 10px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .PathBox .Cont .BtnBox {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .BtnBox .Close,
  .PathBox .Cont .BtnBox .NextBtn,
  .PathBox .Cont .BtnBox .BackBtn,
  .PathBox .Cont .BtnBox .Decision {
    border: 1px solid;
    cursor: pointer;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    margin: 0 auto;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
  }
}
@media screen and (max-width: 768px) {
  .PathBox .Cont .BtnBox .Close {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 70%;
    max-width: 200px;
    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%);
    border-color: #E6E5E3;
  }
  .PathBox .Cont .BtnBox .Close: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) {
  .PathBox .Cont .BtnBox .BackBtn {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 70%;
    max-width: 200px;
    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%);
    border-color: #E6E5E3;
  }
  .PathBox .Cont .BtnBox .BackBtn: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) {
  .PathBox .Cont .BtnBox .NextBtn {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    width: 90%;
    max-width: 300px;
    margin-bottom: 10px;
    color: #fff;
    border-color: #D91B20;
    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%);
  }
  .PathBox .Cont .BtnBox .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) {
  .PathBox .Cont .BtnBox .Decision {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    width: 90%;
    max-width: 300px;
    margin-bottom: 10px;
    color: #fff;
    border-color: #D91B20;
    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%);
  }
  .PathBox .Cont .BtnBox .Decision: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) {
  .PathBox .ViaConnect {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .PathBox.Open {
    display: block;
    padding: 10px;
    border-bottom: 2px solid #E6E5E3;
    background: #fdffdf;
  }
}
@media screen and (min-width: 769px) {
  .Pt1 .TransitBox > .Header li.Name {
    width: 72%;
  }
}
@media screen and (max-width: 768px) {
  .Pt1 .TransitBox > .Body .Select > dd.Name {
    border-bottom: 1px dashed #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .Pt1 .TransitBox > .Body .Select > dd.Name {
    width: 72%;
  }
}
@media screen and (max-width: 768px) {
  .Pt1 .PathBox .Cont .Body dl {
    display: table;
    width: 100%;
  }
}
.Pt1 .PathBox .Cont .Body dt.Selection {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .Pt1 .PathBox .Cont .Body dt.Selection {
    display: table-cell;
    width: 14%;
    vertical-align: middle;
  }
}
@media screen and (min-width: 769px) {
  .Pt1 .PathBox .Cont .Body dt.Selection {
    width: 5%;
  }
}
@media screen and (max-width: 768px) {
  .Pt1 .PathBox .Cont .Body dd {
    display: table;
  }
}
@media screen and (max-width: 768px) {
  .Pt1 .PathBox .Cont .Body dd.Name {
    border-bottom: 1px solid #E6E5E3;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Pt1 .PathBox .Cont .Body dd.Name:before {
    display: none;
  }
}
.Pt1 .PathBox .Cont .Body dd.Name .Time:before {
  content: "(";
}
.Pt1 .PathBox .Cont .Body dd.Name .Time:after {
  content: ")";
}
@media screen and (max-width: 768px) {
  .Pt1 .PathBox .Cont .Body dd.Count {
    border-top: none;
    text-align: right;
    border-bottom: 1px dashed #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .Pt1 .PathBox .Cont .Body dd.Count:before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .Pt1 .PathBox .Cont .Body dd.AddPrice {
    float: left;
  }
}
@media screen and (max-width: 768px) {
  .Pt1 .PathBox .Cont .Body dd.Vacancy {
    float: left;
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .Pt1 .PathBox .Cont.DropOff {
    display: none;
  }
}
.Pt2 .TransitBox.Via .Caption {
  padding: 10px;
}
@media screen and (min-width: 769px) {
  .Pt2 .TransitBox > .Header li.Name {
    width: 18%;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .Pt2 .TransitBox > .Header li.DepArr {
    width: 54%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .Pt2 .TransitBox > .Body .Select dd.Name {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  .Pt2 .TransitBox > .Body .Select dd.Name {
    width: 18%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .Pt2 .TransitBox > .Body .Select dd.DepArr {
    width: 100%;
    border-bottom: 1px dashed #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .Pt2 .TransitBox > .Body .Select dd.DepArr {
    width: 54%;
    text-align: center;
  }
}
.Pt2 .TransitBox > .Body .Select dd.DepArr li {
  display: inline-block;
}
.Pt2 .TransitBox > .Body .Select dd.DepArr li:first-child::after {
  content: "⇒";
  padding: 0 3px;
}
.Pt2 .TransitBox > .Body .Select dd.DepArr .Time:before {
  content: "(";
}
.Pt2 .TransitBox > .Body .Select dd.DepArr .Time:after {
  content: ")";
}
@media screen and (min-width: 769px) {
  .Pt3 .TransitBox > .Header li.Name {
    width: 84%;
  }
}
@media screen and (max-width: 768px) {
  .Pt3 .TransitBox > .Body .Select dd.Name {
    border-bottom: 1px dashed #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .Pt3 .TransitBox > .Body .Select dd.Name {
    width: 84%;
  }
}
.Pt3 .TransitBox > .Body .Select dd.Name ul li {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .Pt3 .PathBox .Cont {
    width: 100%;
  }
  .Pt3 .PathBox .Cont .Header ul li.Ride,
  .Pt3 .PathBox .Cont .Header ul li.Drop {
    text-align: center;
  }
  .Pt3 .PathBox .Cont .Body dl dt {
    width: 4%;
    text-align: center;
  }
  .Pt3 .PathBox .Cont .Body dl dd.Name {
    width: 32%;
  }
  .Pt3 .PathBox .Cont .Body dl dd.Ride {
    width: 20%;
  }
  .Pt3 .PathBox .Cont .Body dl dd.Drop {
    width: 20%;
  }
  .Pt3 .PathBox .Cont .Body dl dd.AddPrice {
    width: 12%;
  }
  .Pt3 .PathBox .Cont .Body dl dd.Vacancy {
    width: 12%;
  }
}
@media screen and (max-width: 768px) {
  .Pt3 .PathBox .Cont .Body dl {
    display: table;
    width: 100%;
  }
  .Pt3 .PathBox .Cont .Body dl dt {
    display: table-cell;
    width: 14%;
    vertical-align: middle;
    text-align: center;
  }
  .Pt3 .PathBox .Cont .Body dl dd {
    display: table;
  }
  .Pt3 .PathBox .Cont .Body dl dd.Name {
    width: 100%;
  }
  .Pt3 .PathBox .Cont .Body dl dd.Ride,
  .Pt3 .PathBox .Cont .Body dl dd.Drop {
    width: 100%;
    text-align: right;
  }
  .Pt3 .PathBox .Cont .Body dl dd.Ride .CustomSelect,
  .Pt3 .PathBox .Cont .Body dl dd.Drop .CustomSelect {
    width: 76%;
  }
  .Pt3 .PathBox .Cont .Body dl dd.Drop {
    border-top: none;
    border-bottom: 1px dashed #E6E5E3;
    padding-top: 0;
  }
  .Pt3 .PathBox .Cont .Body dl dd.AddPrice {
    float: left;
  }
  .Pt3 .PathBox .Cont .Body dl dd.Vacancy {
    float: left;
    border-left: none;
  }
}
@media screen and (min-width: 769px) {
  .Pt4 .TransitBox > .Header li.Name {
    width: 72%;
  }
}
@media screen and (max-width: 768px) {
  .Pt4 .TransitBox > .Body .Select > dd.Name {
    border-bottom: 1px dashed #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .Pt4 .TransitBox > .Body .Select > dd.Name {
    width: 72%;
  }
}
@media screen and (max-width: 768px) {
  .Pt4 .PathBox .Cont Body dl {
    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;
  }
}
@media screen and (max-width: 768px) {
  .Pt4 .PathBox .Cont Body dt {
    width: 100%;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .Pt4 .PathBox .Cont Body dd.Count {
    width: 100%;
    border-top: none;
    text-align: right;
    border-bottom: 1px dashed #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .Pt4 .PathBox .Cont Body dd.Vacancy {
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .Pt4 .PathBox .Cont.DropOff {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .Pt5 .TransitBox > .Header li.Name {
    width: 72%;
  }
}
@media screen and (max-width: 768px) {
  .Pt5 .TransitBox > .Body .Select > dd.Name {
    border-bottom: 1px dashed #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .Pt5 .TransitBox > .Body .Select > dd.Name {
    width: 72%;
  }
}
@media screen and (max-width: 768px) {
  .Pt5 .PathBox .Cont .Body dl {
    display: table;
    width: 100%;
  }
}
.Pt5 .PathBox .Cont .Body dt.Selection {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .Pt5 .PathBox .Cont .Body dt.Selection {
    display: table-cell;
    width: 14%;
    vertical-align: middle;
  }
}
@media screen and (min-width: 769px) {
  .Pt5 .PathBox .Cont .Body dt.Selection {
    width: 5%;
  }
}
@media screen and (max-width: 768px) {
  .Pt5 .PathBox .Cont .Body dd {
    display: table;
  }
}
@media screen and (max-width: 768px) {
  .Pt5 .PathBox .Cont .Body dd.Name {
    border-bottom: 1px solid #E6E5E3;
    width: 100%;
  }
}
.Pt5 .PathBox .Cont .Body dd.Name .Time:before {
  content: "(";
}
.Pt5 .PathBox .Cont .Body dd.Name .Time:after {
  content: ")";
}
@media screen and (max-width: 768px) {
  .Pt5 .PathBox .Cont .Body dd.Count {
    border-top: none;
    text-align: right;
    border-bottom: 1px dashed #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .Pt5 .PathBox .Cont .Body dd.AddPrice {
    float: left;
  }
}
@media screen and (max-width: 768px) {
  .Pt5 .PathBox .Cont .Body dd.Vacancy {
    float: left;
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .Pt5 .PathBox .Cont.DropOff {
    display: none;
  }
}
/* ==============================
- HotelPage
============================== */
@media screen and (max-width: 768px) {
  .HotelArea {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea {
    padding: 20px;
  }
}
.HotelArea .NightBox {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .HotelArea .NightBox {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .NightBox {
    margin: 0 0 40px;
  }
}
.HotelArea .NightBox:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .HotelArea .Inner {
    padding: 10px 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .StayBox {
    padding: 10px 0;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .StayBox {
    margin: 0 0 10px;
  }
}
.HotelArea .StayBox dl dt,
.HotelArea .StayBox dl dd {
  display: inline-block;
}
.HotelArea .StayBox dl dt {
  padding: 0 5px 0 0;
}
.HotelArea .PlanBox {
  margin: 0 0 10px;
}
.HotelArea .PlanBox:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanBox .RuleCome {
    padding: 10px 0;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanBox .RuleCome {
    padding: 10px 0 5px;
  }
}
.HotelArea .Info {
  border: 2px solid #E6E5E3;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .HotelArea .Info 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;
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .Info ul {
    display: table;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .Info li {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .Info li.Photo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .Info li.Photo {
    display: table-cell;
    width: 15%;
    vertical-align: top;
    padding: 0 10px 0 0;
  }
}
.HotelArea .Info li.Photo img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .HotelArea .Info li.Photo img {
    display: inline-block;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .Info li.Title {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    font-size: 16px;
    margin: 0 0 5px;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .Info li.Detail {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .Info li.Detail table {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .Info li.Detail table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
  }
}
.HotelArea .Info li.Detail table td {
  border: none;
  border-bottom: 1px solid #E6E5E3;
}
@media screen and (max-width: 768px) {
  .HotelArea .Info li.Detail table td {
    display: block;
    width: 100%;
    padding: 10px 0 3px;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .Info li.Detail table td {
    width: 50%;
    vertical-align: bottom;
    padding: 0px 0px 5px;
  }
}
.HotelArea .Info li.Detail table td dl {
  display: inline-block;
}
.HotelArea .Info li.Detail table td dl:nth-child(2) {
  padding: 0 0 0 10px;
}
.HotelArea .Info li.Detail table td dt,
.HotelArea .Info li.Detail table td dd {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .HotelArea .Info li:not(.Photo) {
    display: table;
    width: 100%;
  }
}
.HotelArea .Info .BtnBox .PlanViewBtn {
  display: block;
  width: 180px;
  margin: 0 auto;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  text-align: center;
  border: 1px solid;
  border-color: #D91B20;
  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;
  cursor: pointer;
  height: 32px;
  line-height: 30px;
  letter-spacing: 1px;
}
.HotelArea .Info .BtnBox .PlanViewBtn: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%);
}
.HotelArea .PlanEtc {
  border: 2px solid #E6E5E3;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc {
    border-top: none;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc {
    margin: 5px 0 0;
  }
}
.HotelArea .PlanEtc .Caption {
  border-bottom: 2px solid #E6E5E3;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Caption {
    color: #fff;
    background: #4A4A4A;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Header dl {
    display: table;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Header dl dt,
  .HotelArea .PlanEtc .Header dl dd {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Header dl dt,
  .HotelArea .PlanEtc .Header dl dd {
    display: table-cell;
  }
}
.HotelArea .PlanEtc .Header dl dt {
  border-bottom: 2px solid #E6E5E3;
  padding: 5px;
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Header dl dt {
    border-right: 2px solid #E6E5E3;
    background: #F4F4F4;
    vertical-align: middle;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Header dl dd {
    width: 82%;
  }
  .HotelArea .PlanEtc .Header dl dd ul {
    display: table;
    border-collapse: collapse;
    width: 100%;
    border-bottom: 2px solid #E6E5E3;
  }
  .HotelArea .PlanEtc .Header dl dd ul li {
    display: table-cell;
    padding: 5px;
    background: #F4F4F4;
    vertical-align: middle;
    border-right: 2px solid #E6E5E3;
  }
  .HotelArea .PlanEtc .Header dl dd ul li:last-child {
    border-right: none;
  }
  .HotelArea .PlanEtc .Header dl dd ul li.RoomType {
    width: 19%;
    text-align: center;
  }
  .HotelArea .PlanEtc .Header dl dd ul li.AddPrice {
    width: 15%;
  }
  .HotelArea .PlanEtc .Header dl dd ul li.Vacancy {
    width: 13%;
  }
}
.HotelArea .PlanEtc .Body dl {
  width: 100%;
  border-bottom: 2px solid #E6E5E3;
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl {
    display: table;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dt,
  .HotelArea .PlanEtc .Body dl dd {
    display: table-cell;
    vertical-align: middle;
    min-height: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dt {
    border-bottom: 2px solid #E6E5E3;
    padding: 10px;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dt {
    vertical-align: top;
    border-right: 2px solid #E6E5E3;
    padding: 5px;
  }
}
.HotelArea .PlanEtc .Body dl dt .CustomCheckBtn,
.HotelArea .PlanEtc .Body dl dt .CustomRadioBtn {
  width: 100%;
}
.HotelArea .PlanEtc .Body dl dt .CustomCheckBtn label,
.HotelArea .PlanEtc .Body dl dt .CustomRadioBtn label {
  display: block;
  overflow: hidden;
}
.HotelArea .PlanEtc .Body dl dt .CustomCheckBtn label .PushIcon,
.HotelArea .PlanEtc .Body dl dt .CustomRadioBtn label .PushIcon {
  width: 20px;
  float: left;
}
.HotelArea .PlanEtc .Body dl dt .CustomCheckBtn label p,
.HotelArea .PlanEtc .Body dl dt .CustomRadioBtn label p {
  float: left;
  padding: 2px 0 0;
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dt .CustomCheckBtn label p,
  .HotelArea .PlanEtc .Body dl dt .CustomRadioBtn label p {
    width: 92%;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dt .CustomCheckBtn label p,
  .HotelArea .PlanEtc .Body dl dt .CustomRadioBtn label p {
    width: 85%;
  }
}
.HotelArea .PlanEtc .Body dl dt span {
  vertical-align: middle;
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dt span {
    vertical-align: middle;
  }
}
.HotelArea .PlanEtc .Body dl dt span.Meal:before {
  content: "(";
}
.HotelArea .PlanEtc .Body dl dt span.Meal:after {
  content: ")";
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd {
    width: 82%;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table {
    height: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table tbody {
    display: block;
  }
}
.HotelArea .PlanEtc .Body dl dd table tr:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd 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: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table tr {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td {
    display: block;
    border: none;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table td {
    border: none;
    border-right: 2px solid #E6E5E3;
    text-align: center;
  }
}
.HotelArea .PlanEtc .Body dl dd table td .CustomSelect {
  width: auto;
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.RoomType {
    width: 100%;
    font-weight: 600;
    border-bottom: 1px dashed #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table td.RoomType {
    width: 19%;
  }
}
.HotelArea .PlanEtc .Body dl dd table td.RoomType span:not(.CustomSelect) {
  display: inline-block;
  vertical-align: middle;
  word-break: break-all;
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table td.RoomType span:not(.CustomSelect) {
    width: 43%;
    text-align: left;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table td.RoomType .CustomSelect {
    width: 70px;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.Count {
    width: 100%;
    border-bottom: 1px dashed #E6E5E3;
    padding: 0;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table td.Count {
    text-align: left;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.Count ul {
    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;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 5px;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.Count ul li {
    padding: 5px 5px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table td.Count ul li {
    display: inline-block;
    padding: 0 5px 5px 0;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table td.Count ul li:last-child {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.AddPrice:before,
  .HotelArea .PlanEtc .Body dl dd table td.Vacancy:before {
    content: attr(data-text) "";
    display: inline-block;
    font-size: 11px;
    padding: 0 10px 0 0;
    float: left;
  }
}
.HotelArea .PlanEtc .Body dl dd table td.AddPrice {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.AddPrice {
    width: 100%;
    padding: 5px;
    border-bottom: 1px dashed #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table td.AddPrice {
    width: 15%;
  }
}
.HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList {
  display: table;
}
.HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList caption {
  text-align: right;
  font-size: 10px;
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList caption {
    display: none;
  }
}
.HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList tbody {
  display: table-row-group;
}
.HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList tbody tr {
  display: table-row;
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList tbody tr {
    border: none;
  }
}
.HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList tbody th,
.HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList tbody td {
  display: table-cell;
  border-right: none;
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList tbody th,
  .HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList tbody td {
    font-size: 11px;
    padding: 2px 5px;
  }
}
.HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList tbody th {
  border: none;
}
.HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList tbody td {
  text-align: right;
  width: 55%;
  padding: 5px 2px;
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.AddPrice .PriceList tbody td {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.AddPrice .Comment {
    display: block;
    font-size: 11px;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table td.AddPrice .Comment {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.AddPrice .Comment::before {
    content: "(";
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.AddPrice .Comment::after {
    content: ")";
  }
}
@media screen and (max-width: 768px) {
  .HotelArea .PlanEtc .Body dl dd table td.Vacancy {
    width: 100%;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .HotelArea .PlanEtc .Body dl dd table td.Vacancy {
    width: 13%;
    border-right: none;
  }
}
/* ==============================
- OptionPage
============================== */
.OptionPage table th {
  background: #F4F4F4;
}
.OptionPage table td.Name {
  vertical-align: top;
}
.OptionPage table td.Name p.Title {
  padding: 0 0 5px;
}
.OptionPage table td.Name p.Info {
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .CarArea {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .CarArea {
    padding: 20px;
  }
}
.CarArea .NightBox {
  width: 100%;
  padding: 0 0 20px;
}
.CarArea .NightBox:last-child {
  padding-bottom: 0;
}
.CarArea .TermExt {
  display: inline-block;
  text-align: center;
  padding: 5px 15px;
  margin: 0 0 5px;
  border: 2px solid #E6E5E3;
  font-size: 13px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.CarArea h4 .Plan {
  display: inline-block;
  padding: 0 0 0 20px;
}
.CarArea .Inner {
  margin: 0 0 5px;
}
@media screen and (min-width: 769px) {
  .CarArea .Inner {
    border: 2px solid #E6E5E3;
    border-top: none;
  }
}
.CarArea .Inner:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .CarArea .Borrow {
    margin: 5px 0;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .Borrow {
    padding: 10px 10px 0;
  }
}
.CarArea .Borrow table {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .CarArea .Borrow table {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .Borrow table {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .Borrow table tbody {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .Borrow table tr {
    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;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .Borrow table tr:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .Borrow table th,
  .CarArea .Borrow table td {
    display: inline-block;
    border-bottom: none;
    letter-spacing: normal;
  }
}
.CarArea .Borrow table th {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .CarArea .Borrow table th {
    width: 30%;
    line-height: 38px;
    border-right: none;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .Borrow table th {
    width: 10%;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .Borrow table td {
    width: 70%;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .PlanBox {
    padding: 10px;
  }
}
.CarArea .PlanBox table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table thead {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .PlanBox table thead th:not(.Name):not(.OpitonViewBtn) {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table tr {
    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;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 2px solid #E6E5E3;
    border-top: none;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table tr:first-child {
    border-top: 2px solid #E6E5E3;
  }
}
.CarArea .PlanBox table tr:not(.CarOption) td:not(.Name):not(.OpitonViewBtn) {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table tr:not(.CarOption) td:not(.Name):not(.OpitonViewBtn) {
    width: 33%;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .PlanBox table tr:not(.CarOption) td:not(.Name):not(.OpitonViewBtn) {
    width: 11%;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table tr:not(.CarOption) td:not(.Name):not(.OpitonViewBtn):before {
    display: block;
    content: attr(data-text) "";
    padding: 0 3px 5px;
    text-align: center;
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table tr.CarOption td {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .PlanBox table tr.CarOption dl {
    display: table;
    width: 100%;
    border: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .PlanBox table tr.CarOption dt,
  .CarArea .PlanBox table tr.CarOption dd {
    display: table-cell;
    padding: 5px 5px 0;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table tr.CarOption dt {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .PlanBox table tr.CarOption dt {
    width: 10%;
    border-right: 2px solid #E6E5E3;
    background: #F4F4F4;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table tr.CarOption li {
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 0 5px;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .PlanBox table tr.CarOption li {
    display: inline-block;
    padding: 0 20px 5px 0;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table tr.CarOption li:last-child {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .PlanBox table tr.CarOption li:last-child {
    padding-right: 0;
  }
}
.CarArea .PlanBox table tr.CarOption span {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .CarArea .PlanBox table tr.CarOption span {
    padding: 0 5px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table tr.CarOption span:first-child {
    width: 69%;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table tr.CarOption span.CustomSelect {
    width: 30%;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .PlanBox table tr.CarOption span.CustomSelect {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table td {
    display: block;
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table td.Name {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .PlanBox table td.Name {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .CarArea .PlanBox table td.OpitonViewBtn {
    width: 100%;
    border-top: 1px dashed #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .CarArea .PlanBox table td.OpitonViewBtn {
    width: 20%;
  }
}
.CarArea .PlanBox table td.OpitonViewBtn .CarOptionBtn {
  border: 1px solid;
  border-color: #D91B20;
  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;
  cursor: default;
  text-align: center;
  height: 32px;
  line-height: 30px;
  letter-spacing: 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.CarArea .PlanBox table td.OpitonViewBtn .CarOptionBtn: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) {
  .CarArea .PlanBox table td.OpitonViewBtn .CarOptionBtn {
    width: 180px;
    margin: 0 auto;
  }
}
.CarArea .PlanBox table td.OpitonViewBtn .CarOptionBtn:after {
  content: "+";
  display: inline-block;
  padding: 0 0 0 5px;
}
.CarArea .PlanBox table td.OpitonViewBtn .CarOptionBtn.Open:after {
  content: "ー";
}
@media screen and (max-width: 768px) {
  .TrPlanArea {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea > div {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea > div {
    margin: 0 0 20px;
  }
}
.TrPlanArea > div:last-child {
  margin-bottom: 0;
}
.TrPlanArea .Inner table {
  width: 100%;
  margin: 0 0 10px;
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Inner table {
    min-height: 25px;
    height: 25px;
  }
}
.TrPlanArea .Inner table:last-child {
  margin-bottom: 0;
}
.TrPlanArea .Inner table caption {
  border: 2px solid #E6E5E3;
  border-bottom: none;
  padding: 7px 10px;
  background: #F4F4F4;
  font-size: 16px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table thead {
    display: none;
  }
}
.TrPlanArea .Inner table thead th.Count,
.TrPlanArea .Inner table thead th.UsageDate {
  text-align: center;
}
.TrPlanArea .Inner table tbody tr td.Count ul li span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table tr:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.Name {
    border-bottom: none;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Inner table td.Name {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.Count {
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.Count ul {
    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;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 5px;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.Count li {
    padding: 5px 5px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Inner table td.Count li {
    display: inline-block;
    padding: 0 10px 5px 0;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Inner table td.Count li:last-child {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.Count span {
    font-size: 11px;
    padding: 0 5px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.Count .CustomSelect {
    width: 75px;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Inner table td.Count .CustomSelect {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.AddPrice {
    border-top: 1px dashed #E6E5E3;
    border-bottom: none;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Inner table td.AddPrice {
    width: 14%;
    text-align: center;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.AddPrice:before {
    content: attr(data-text) "";
    display: inline-block;
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.AddPrice .Comment {
    display: block;
    font-size: 11px;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Inner table td.AddPrice .Comment {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.AddPrice .Comment::before {
    content: "(";
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.AddPrice .Comment::after {
    content: ")";
  }
}
.TrPlanArea .Inner table td.AddPrice .PriceList {
  height: 100%;
}
.TrPlanArea .Inner table td.AddPrice .PriceList caption {
  background: none;
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.AddPrice .PriceList caption {
    border: none;
    font-size: 11px;
    padding: 0;
    text-align: right;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Inner table td.AddPrice .PriceList caption {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Inner table td.AddPrice .PriceList tr {
    border-bottom: 2px solid #E6E5E3;
  }
}
.TrPlanArea .Inner table td.AddPrice .PriceList tr:last-of-type {
  border-bottom: none;
}
.TrPlanArea .Inner table td.AddPrice .PriceList th,
.TrPlanArea .Inner table td.AddPrice .PriceList td {
  border: none;
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.AddPrice .PriceList th,
  .TrPlanArea .Inner table td.AddPrice .PriceList td {
    font-size: 11px;
    padding: 5px 2px;
  }
}
.TrPlanArea .Inner table td.AddPrice .PriceList th {
  background: none;
}
.TrPlanArea .Inner table td.AddPrice .PriceList td {
  text-align: right;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Inner table td.AddPrice .PriceList td {
    display: table-cell;
    width: 35%;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Inner table td.AddPrice .PriceList td {
    width: 55%;
  }
}
.TrPlanArea .ExtraArea .BtnBox {
  margin: 0 0 5px;
}
.TrPlanArea .ExtraArea .BtnBox .ExtraBtn {
  display: inline-block;
  text-align: center;
  width: 170px;
  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%);
  cursor: pointer;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  height: 32px;
  line-height: 30px;
  letter-spacing: 1px;
}
.TrPlanArea .ExtraArea .BtnBox .ExtraBtn: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%);
}
.TrPlanArea .ExtraArea .ListBox {
  display: none;
  width: 1000px;
  height: 80%;
  margin: 0;
  padding: 10px;
  background: #fff;
  color: #555;
  position: fixed;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .TrPlanArea .ExtraArea .ListBox {
    width: 95%;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .ListBox {
    max-height: 80%;
  }
}
.TrPlanArea .ExtraArea .ListBox .BtnBox {
  margin: 15px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.TrPlanArea .ExtraArea .ListBox .BtnBox .Close {
  display: block;
  width: 150px;
  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%);
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border: 2px solid #E6E5E3;
  cursor: pointer;
  text-align: center;
  height: 32px;
  line-height: 30px;
  margin: 0 auto;
  letter-spacing: 1px;
}
.TrPlanArea .ExtraArea .ListBox .BtnBox .Close: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%);
}
.TrPlanArea .ExtraArea .ExtraBox {
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .TrPlanArea .ExtraArea .ExtraBox {
    max-height: 88%;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .ExtraBox {
    height: 92%;
  }
}
.TrPlanArea .ExtraArea .PlanExtra {
  margin: 0 0 10px;
}
.TrPlanArea .ExtraArea .PlanExtra:last-child {
  margin: 0;
}
.TrPlanArea .ExtraArea .Caption {
  border: 2px solid #E6E5E3;
  background: #F4F4F4;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .TrPlanArea .ExtraArea .Caption {
    padding: 5px;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Caption {
    padding: 7px 10px;
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .ExtraArea .Header {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Header ul {
    display: table;
    width: 100%;
    border: 2px solid #E6E5E3;
    border-bottom: none;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Header li {
    display: table-cell;
    padding: 5px;
    border-right: 2px solid #E6E5E3;
    background: #F4F4F4;
    vertical-align: middle;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Header li.AddPrice {
    border-right: none;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body dl {
    display: table;
    width: 100%;
    border: 2px solid #E6E5E3;
    border-bottom: none;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body dl:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body dt,
  .TrPlanArea .ExtraArea .Body dd {
    display: table-cell;
    min-height: 25px;
    height: 25px;
  }
}
.TrPlanArea .ExtraArea .Body dt {
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .TrPlanArea .ExtraArea .Body dt {
    border-left: 2px solid #E6E5E3;
    border-right: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body dt {
    vertical-align: top;
    border-right: 2px solid #E6E5E3;
  }
}
.TrPlanArea .ExtraArea .Body dt p.Title {
  padding: 0 0 5px;
}
.TrPlanArea .ExtraArea .Body dt p.Info {
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body .ExtraInner {
    display: table;
    width: 100%;
    border-bottom: 2px solid #E6E5E3;
    min-height: 25px;
    height: 25px;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body .ExtraInner:last-child {
    border-bottom: none;
  }
}
.TrPlanArea .ExtraArea .Body table {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body table {
    min-height: 53px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body thead {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body tr {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body tr:last-child {
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .ExtraArea .Body th.AddPrice {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .ExtraArea .Body th.AddPrice .Comment {
    display: block;
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .ExtraArea .Body th.AddPrice .Comment::before {
    content: "(";
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .ExtraArea .Body th.AddPrice .Comment::after {
    content: ")";
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body td {
    border: none;
    border-right: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .ExtraArea .Body td.Count {
    width: 65%;
    border-left: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .ExtraArea .Body td.AddPrice {
    width: 35%;
    text-align: right;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body td.AddPrice {
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .ExtraArea .Body td:last-child {
    border-right: none;
  }
}
.TrPlanArea .ExtraArea .Body td span {
  display: inline-block;
  margin: 0 5px 0 0;
}
.TrPlanArea .ExtraArea .Body td span:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Plan .Inner table td.Count {
    padding: 0;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Plan .Inner table td.Count {
    width: 51%;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Plan .ExtraArea .Header li.Name {
    width: 55%;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Plan .ExtraArea .Header li.AddPrice {
    width: 12%;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Plan .ExtraArea .Body dt {
    width: 55%;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Plan .ExtraArea .Body td.AddPrice {
    width: 26.9%;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Option .Inner table td.Count {
    width: 51%;
  }
}
.TrPlanArea .Option .Inner table td.Count .CustomSelect {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Option .ExtraArea .Header li.Name {
    width: 40%;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Option .ExtraArea .Header li.ExtraOption {
    width: 30%;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Option .ExtraArea .Header li.Count {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Option .ExtraArea .Body dl:first-child dt {
    border-top: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Option .ExtraArea .Body dt {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Option .ExtraArea .Body dt {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Option .ExtraArea .Body .ExtraOption {
    border-left: 2px solid #E6E5E3;
    border-right: 2px solid #E6E5E3;
    padding: 5px;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Option .ExtraArea .Body .ExtraOption {
    display: table-cell;
    width: 50%;
    border-right: 2px solid #E6E5E3;
    padding: 5px;
    vertical-align: top;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Option .ExtraArea .Body td.Count {
    width: 66.3%;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Arbitrary .Inner table td.UsageDate {
    border-bottom: none;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Arbitrary .Inner table td.UsageDate {
    width: 10%;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Arbitrary .Inner table td.Count {
    padding: 0;
    border-top: 1px dashed #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Arbitrary .Inner table td.Count {
    width: 41%;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Arbitrary .ExtraArea .Header li.Name {
    width: 50%;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Arbitrary .ExtraArea .Header li.UsageDate {
    width: 7.5%;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Arbitrary .ExtraArea .Header li.Count {
    width: 27.7%;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Arbitrary .ExtraArea .Body dt {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Arbitrary .ExtraArea .Body dt {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .TrPlanArea .Arbitrary .ExtraArea .Body .UsageDate {
    border-left: 2px solid #E6E5E3;
    border-right: 2px solid #E6E5E3;
    padding: 5px;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Arbitrary .ExtraArea .Body .UsageDate {
    display: table-cell;
    text-align: center;
    width: 15%;
    border-right: 2px solid #E6E5E3;
    padding: 5px;
    vertical-align: middle;
  }
}
@media screen and (min-width: 769px) {
  .TrPlanArea .Arbitrary .ExtraArea .Body td.Count {
    width: 64.6%;
  }
}
