@charset "UTF-8";
/* ---------------------
- LoginPage
- TourSelectionPage
- JrdpResePage
- JrdpToursResePage
- PersonPage
--------------------- */
/* ==============================
- 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;
}
th {
  font-weight: normal;
}
.PageLink {
  position: relative;
}
@media screen and (max-width: 768px) {
  .PageLink {
    margin-top: 10px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .PageLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.PageLink li {
  display: inline-block;
  min-width: 130px;
  text-align: center;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  .PageLink li {
    margin-bottom: 10px;
  }
}
.PageLink li:hover .AccHd:before,
.PageLink li:hover .AccHd:after {
  visibility: visible;
  opacity: 1;
}
.PageLink li:hover .Jrlinl {
  visibility: visible;
  opacity: 1;
}
.PageLink li .ReseSelect {
  display: block;
  text-decoration: none;
  height: 32px;
  border: 1px solid;
  font-size: 16px;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  padding: 5px;
  text-align: center;
  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: 1px solid #E6E5E3;
  color: #555;
}
.PageLink li .ReseSelect: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%);
}
.PageLink li .ReseSelect.Active {
  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%);
  border-color: #D91B20;
  color: #fff;
}
.PageLink li .ReseSelect.Active: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%);
}
.PageLink li:last-of-type {
  margin-right: 0;
}
.PageLink li .AccHd {
  position: relative;
  display: block;
  color: #555;
}
@media screen and (min-width: 769px) {
  .PageLink li .AccHd:before,
  .PageLink li .AccHd:after {
    visibility: hidden;
    opacity: 0;
  }
}
@media screen and (min-width: 769px) {
  .PageLink li .AccHd:before {
    content: "";
    position: absolute;
    bottom: -11px;
    border: 5px solid transparent;
    border-bottom: 10px solid #fff;
    left: 50%;
    -o-transform: translatex(-50%);
       transform: translatex(-50%);
    -webkit-transform: translatex(-50%);
    -ms-transform: translatex(-50%);
    z-index: 12;
  }
}
@media screen and (min-width: 769px) {
  .PageLink li .AccHd:after {
    content: "";
    position: absolute;
    bottom: -10px;
    border: 6px solid transparent;
    border-bottom: 11px solid #D91B20;
    left: 50%;
    -o-transform: translatex(-50%);
       transform: translatex(-50%);
    -webkit-transform: translatex(-50%);
    -ms-transform: translatex(-50%);
    z-index: 11;
  }
}
.PageLink li .AccHd .ReseSelect {
  cursor: default;
}
.PageLink li .AccHd .ReseSelect:after {
  content: "\f078";
  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;
  font-size: 10px;
  margin-left: 10px;
  vertical-align: middle;
  padding-right: 0;
}
.PageLink li .Jrlinl {
  background: #fff;
  border: 1px solid #D91B20;
  padding: 20px;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .PageLink li .Jrlinl {
    position: absolute;
    top: 41px;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
  }
}
@media screen and (max-width: 768px) {
  .PageLink li .Jrlinl {
    display: none;
    width: 100%;
  }
}
.PageLink li .Jrlinl a {
  display: block;
  text-decoration: none;
  color: #555;
  margin-bottom: 10px;
}
.PageLink li .Jrlinl a:before {
  content: "\f0da";
  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;
}
.PageLink li .Jrlinl a:hover {
  text-decoration: underline;
}
.PageLink li .Jrlinl a:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .PageLink .JrSele {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .PageLink .JrSele li {
    display: block;
    width: 80%;
    margin: auto;
    margin-bottom: 10px;
  }
}
.MyInfo {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .MyInfo {
    padding: 15px 5px 0;
  }
}
@media screen and (min-width: 769px) {
  .MyInfo {
    padding: 10px 20px 0;
    position: relative;
  }
}
.MyInfo .Member {
  font-size: 16px;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .MyInfo .Member {
    display: inline-block;
  }
}
.MyInfo .Member .Name {
  font-weight: bold;
}
.MyInfo .Member .Setting {
  margin-left: 3px;
  color: #555;
}
.MyInfo .Member .Setting:after {
  content: "\f013";
  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;
}
.MyInfo .SettingBox {
  border: 2px solid #E6E5E3;
  padding: 10px 20px;
  background: #fff;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .MyInfo .SettingBox {
    position: relative;
    margin: 10px 0;
  }
}
@media screen and (min-width: 769px) {
  .MyInfo .SettingBox {
    right: -5px;
    top: 45px;
    position: absolute;
  }
}
@media screen and (min-width: 769px) {
  .MyInfo .SettingBox:before,
  .MyInfo .SettingBox:after {
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 769px) {
  .MyInfo .SettingBox:before {
    top: -24px;
    border: 12px solid transparent;
    border-bottom: 12px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .MyInfo .SettingBox:after {
    top: -20px;
    border: 10px solid transparent;
    border-bottom: 10px solid #fff;
  }
}
.MyInfo .SettingBox a {
  display: block;
  text-decoration: none;
  color: #555;
}
.MyInfo .SettingBox a:before {
  content: "\f0da";
  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;
}
.MyInfo .SettingBox a:hover {
  text-decoration: underline;
}
.MyInfo .SettingBox a:first-child {
  /*margin: 0 0 8px;*/
}
/* ==============================
- LoginPage
============================== */
.LoginArea {
  /* 左側 */
  /* 右側 */
  /* 対応ブラウザ */
}
@media screen and (max-width: 768px) {
  .LoginArea {
    padding: 15px 0;
  }
}
@media screen and (min-width: 769px) {
  .LoginArea {
    padding: 40px 0 0;
    overflow: hidden;
  }
}
.LoginArea h3 {
  border-bottom: 1px solid;
  padding: 4px 0;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  color: #D91B20;
}
.LoginArea h3:before {
  content: "　";
  background: #D91B20;
  display: inline-block;
  width: 3px;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .LoginArea .Inner {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .LoginArea .Inner {
    padding: 20px;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  .LoginArea .AgentMain {
    width: 68%;
    float: left;
  }
}
@media screen and (max-width: 768px) {
  .LoginArea .AgentMain {
    margin: 0 0 10px;
  }
}
.LoginArea .Login table {
  margin: 0 0 10px;
}
@media screen and (min-width: 769px) {
  .LoginArea .Login table {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .LoginArea .Login table {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .LoginArea .Login table tbody {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .LoginArea .Login table tbody tr {
    display: block;
  }
  .LoginArea .Login table tbody tr:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .LoginArea .Login table tbody tr th,
  .LoginArea .Login table tbody tr td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
.LoginArea .Login table tbody tr th {
  background: #F4F4F4;
}
.LoginArea .Login .Come {
  color: #f00;
  margin-bottom: 10px;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .LoginArea .Login .LoginBtn {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px) {
  .LoginArea .Login .LoginBtn {
    margin: 30px 0;
  }
}
.LoginArea .Login .CustomSubmit {
  border: none;
}
@media screen and (min-width: 769px) {
  .LoginArea .Login .CustomSubmit {
    display: block;
    width: 200px;
    margin: 0 auto;
  }
}
.LoginArea .Login .CustomSubmit::before {
  content: "\f090";
  width: 20px;
  position: absolute;
  bottom: 14px;
  left: 20px;
  color: #fff;
  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;
  font-size: 16px;
}
.LoginArea .Login .CustomSubmit .RegdBtn {
  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;
}
.LoginArea .Login .CustomSubmit .RegdBtn: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%);
}
.LoginArea .Contact {
  clear: both;
  margin-bottom: 20px;
}
.LoginArea .Contact .Come {
  line-height: 140%;
  margin-bottom: 5px;
}
.LoginArea .Contact dl {
  border: 2px solid #D91B20;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.LoginArea .Contact dt {
  background: #D91B20;
  color: #fff;
  padding: 5px 10px 8px;
  font-size: 16px;
}
.LoginArea .Contact dd {
  padding: 10px;
}
.LoginArea .Contact dd .Tel {
  color: #D91B20;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .LoginArea .Contact dd .Tel {
    display: block;
    text-align: center;
    font-size: 26px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px) {
  .LoginArea .Contact dd .Tel {
    display: inline-block;
    margin-right: 15px;
    font-size: 30px;
    vertical-align: middle;
    pointer-events: none;
  }
}
.LoginArea .Contact dd .Tel:before {
  content: "\f095";
  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;
}
.LoginArea .Contact dd .Tel:link {
  text-decoration: none;
}
.LoginArea .Contact dd .SalesTime {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .LoginArea .Contact dd .SalesTime {
    width: 49%;
  }
}
@media screen and (min-width: 769px) {
  .LoginArea .Contact dd .SalesTime {
    margin-right: 20px;
  }
}
.LoginArea .Contact dd .SalesTime:last-of-type {
  margin-right: 0;
}
.LoginArea .Contact dd .SalesTime p {
  margin-bottom: 5px;
}
.LoginArea .Contact dd .SalesTime p:last-child {
  margin-bottom: 0;
}
.LoginArea .Contact dd .SalesTime .Period {
  background: #D91B20;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
@media screen and (min-width: 769px) {
  .LoginArea .AgentSide {
    float: right;
  }
}
.LoginArea .AgentSide img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .LoginArea .AgentSide img {
    display: block;
    max-width: 390px;
    margin: auto;
  }
}
.LoginArea .AgentSide ul {
  margin: 15px 0;
}
.LoginArea .AgentSide li {
  margin-bottom: 10px;
}
.LoginArea .AgentSide li:before {
  content: "・";
}
.LoginArea .AgentSide li a {
  color: #555;
  text-decoration: none;
}
.LoginArea .AgentSide li a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .LoginArea .Browser {
    clear: both;
  }
}
.LoginArea .Browser dt {
  display: inline-block;
  background: #4A4A4A;
  color: #fff;
  padding: 5px 15px;
  margin-bottom: 5px;
}
.LoginArea .Browser dd p {
  margin-bottom: 5px;
}
/* ==============================
- TourSelectionPage
============================== */
@media screen and (max-width: 768px) {
  .TourSelectionArea {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .TourSelectionArea {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Search {
    margin-bottom: 20px;
  }
}
.TourSelectionArea .Search .Come {
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Search .Come {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Search .Come {
    margin-bottom: 20px;
  }
}
.TourSelectionArea .Search .Come .Attention {
  color: #f00;
}
.TourSelectionArea .Search table {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Search table th,
  .TourSelectionArea .Search table td {
    display: block;
    border-bottom: none;
  }
}
.TourSelectionArea .Search table th {
  background: #F4F4F4;
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Search table th {
    width: 28%;
  }
}
.TourSelectionArea .Search table tr:last-child td:last-child {
  border-bottom: 2px solid #E6E5E3;
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Search table tr.TourCourseNu .CustomText {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Search table tr.TourCourseNu .CustomText {
    width: 50%;
  }
}
.TourSelectionArea .Search table tr.Dep #datepicker .CustomSelect {
  margin-bottom: 0;
}
@media screen and (max-width: 760px) {
  .TourSelectionArea .Search table tr.Dep #datepicker .CustomSelect:first-of-type {
    width: 35%;
  }
}
@media screen and (min-width: 760px) {
  .TourSelectionArea .Search table tr.Dep #datepicker .CustomSelect:first-of-type {
    width: 15%;
  }
}
@media screen and (max-width: 760px) {
  .TourSelectionArea .Search table tr.Dep #datepicker .CustomSelect:not(:first-of-type) {
    width: 27%;
  }
}
@media screen and (min-width: 760px) {
  .TourSelectionArea .Search table tr.Dep #datepicker .CustomSelect:not(:first-of-type) {
    width: 12%;
  }
}
.TourSelectionArea .Search table tr.Dep #datepicker button {
  padding: 0;
  border: none;
  background: #fff;
}
@media screen and (max-width: 760px) {
  .TourSelectionArea .Search table tr.Dep #datepicker button {
    margin-left: 1px;
  }
}
@media screen and (min-width: 760px) {
  .TourSelectionArea .Search table tr.Dep #datepicker button {
    margin-left: 5px;
  }
}
.TourSelectionArea .Search table tr.Dep #datepicker button: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: "\f073";
  padding: 0;
  vertical-align: middle;
  font-size: 20px;
}
.TourSelectionArea .Search table tr.Des .CustomSelect {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Search table tr.Des .CustomSelect:last-child {
    min-width: 24%;
    width: auto;
  }
}
.TourSelectionArea .Search table tr.Trans .CustomSelect {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Search table tr.Trans .CustomSelect {
    min-width: 24%;
    width: auto;
  }
}
.TourSelectionArea .Search .SearchBtn {
  margin: 20px 0 0;
}
.TourSelectionArea .Search .SearchBtn .CustomSubmit {
  display: block;
  width: 200px;
  margin: 0 auto;
  border: none;
}
.TourSelectionArea .Search .SearchBtn .NextBtn {
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
  padding: 10px 0;
  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;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  height: 44px;
  font-size: 16px;
}
.TourSelectionArea .Search .SearchBtn .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%);
}
.TourSelectionArea .Results .Listhange {
  margin-bottom: 5px;
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Results .Listhange {
    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;
  }
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Results .Listhange dl {
    border-bottom: 1px dashed #E6E5E3;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Results .Listhange dl {
    margin-right: 10px;
  }
}
.TourSelectionArea .Results .Listhange dl dt,
.TourSelectionArea .Results .Listhange dl dd {
  display: inline-block;
}
.TourSelectionArea .Results .Listhange dl dt {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Results .Listhange ul {
    text-align: right;
  }
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Results .Listhange ul {
    -ms-flex-item-align: end;
    -webkit-align-self: flex-end;
    align-self: flex-end;
    padding: 0 5px;
  }
}
.TourSelectionArea .Results .Listhange ul li {
  display: inline-block;
}
.TourSelectionArea .Results .Listhange ul li a {
  color: #555;
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Results .Listhange ul li a {
    text-decoration: none;
  }
}
.TourSelectionArea .Results .Listhange ul li a:hover {
  text-decoration: underline;
}
.TourSelectionArea .Results .Listhange ul li a.Previous::before {
  content: "\f100";
  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;
}
.TourSelectionArea .Results .Listhange ul li a.Next::after {
  content: "\f101";
  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 0 0 5px;
}
.TourSelectionArea .Results .Listhange ul li:first-child {
  margin-right: 15px;
}
.TourSelectionArea .Results table {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Results table thead {
    display: none;
  }
}
.TourSelectionArea .Results table tr:last-child td:last-child {
  border-bottom: 2px solid #E6E5E3;
}
.TourSelectionArea .Results table th {
  text-align: center;
  background: #F4F4F4;
}
.TourSelectionArea .Results table th.Name {
  width: 42%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Results table td {
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Results table td.Name {
    display: block;
  }
}
.TourSelectionArea .Results table td:not(.Name) {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Results table td:not(.Name) {
    display: table;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Results table td:not(.Name):before {
    content: attr(data-text) "";
    display: table-cell;
    width: 40%;
    padding: 10px;
    background: #F4F4F4;
    border-right: 2px solid #E6E5E3;
  }
}
.TourSelectionArea .Results table td:not(.Name) a {
  color: #555;
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Results table td:not(.Name) a {
    display: table-cell;
    padding: 10px;
  }
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Results table td:not(.Name) a {
    display: block;
  }
}
.TourSelectionArea .Results table td:not(.Name) a:hover {
  text-decoration: none;
}
.TourSelectionArea .Results table td:not(.Name) ul {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Results table td:not(.Name) li {
    display: inline;
  }
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Results table td:not(.Name) li {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .TourSelectionArea .Results table td:not(.Name) li:last-child {
    margin-left: 10px;
  }
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Results table td:not(.Name) li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  .TourSelectionArea .Results table td:not(.Name) li span:first-child {
    margin-right: 5px;
  }
}
.TourSelectionArea .Results table td.Today {
  background: #fdffdf;
}
/* ==============================
- JrdpResePage、JrdpToursReseArea
============================== */
@media screen and (max-width: 768px) {
  .JrdpReseArea,
  .JrdpToursReseArea {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .JrdpReseArea,
  .JrdpToursReseArea {
    padding: 20px;
  }
}
.JrdpReseArea .Come,
.JrdpToursReseArea .Come {
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .JrdpReseArea .Come,
  .JrdpToursReseArea .Come {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 769px) {
  .JrdpReseArea .Come,
  .JrdpToursReseArea .Come {
    margin-bottom: 20px;
  }
}
.JrdpReseArea .Come .Attention,
.JrdpToursReseArea .Come .Attention {
  color: #f00;
}
/* ==============================
- PersonPage
============================== */
.Accompanying:first-of-type table {
  margin-bottom: 5px;
}
.Accompanying:first-of-type table:last-of-type th:after {
  display: none;
}
.Accompanying:not(:first-of-type) table th:after {
  display: none;
}
@media screen and (min-width: 769px) {
  .AgentArea table tr.Name .CustomText {
    width: 60%;
  }
}
