@charset "UTF-8";
/* ---------------------
- 共通
- LoginPage
- RsvListPage
- MyDetailPage
- PersonPage
- KakuninPage
- PersonCompPage
- ForgetPage
--------------------- */
/* ==============================
- less setting
============================== */
.box-sizing {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.font-icon {
  display: inline-block;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 5px 0 0;
}
.float-clear {
  clear: both;
  content: '';
  display: block;
}
/* flex関連
---------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flex-direction_column {
  -webkit-box-direction: vertical;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.justify-content_space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.justify-content_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.justify-content_flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-wrap_wrap {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.align-items_start {
  -webkit-box-align: start;
  -ms-align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
      align-items: start;
}
.align-items_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.align-items_flex-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.align-self_center {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.align-self_flex-end {
  -ms-flex-item-align: end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
}
/* color
---------------------*/
/* site
---------------------*/
/* font-size
---------------------*/
/* site-width
---------------------*/
/* gradient
---------------------*/
.backgara-white {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#E6E6E6), to(white));
  background-image: -webkit-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: -o-linear-gradient(bottom, #E6E6E6 0%, white 100%);
  background-image: linear-gradient(to top, #E6E6E6 0%, white 100%);
}
.backgara-white:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(#E6E6E6));
  background-image: -webkit-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: -o-linear-gradient(bottom, white 0%, #E6E6E6 100%);
  background-image: linear-gradient(to top, white 0%, #E6E6E6 100%);
}
.backgara-base {
  background: #d66060;
  background: -webkit-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d66060), color-stop(50%, #d91b20), to(#d80003));
  background: -o-linear-gradient(top, #d66060 0%, #d91b20 50%, #d80003 100%);
  background: linear-gradient(to bottom, #d66060 0%, #d91b20 50%, #d80003 100%);
}
.backgara-base:hover {
  background: #d80003;
  background: -webkit-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#d80003), color-stop(50%, #d91b20), to(#d66060));
  background: -o-linear-gradient(top, #d80003 0%, #d91b20 50%, #d66060 100%);
  background: linear-gradient(to bottom, #d80003 0%, #d91b20 50%, #d66060 100%);
}
.backgara-yellow {
  background: #fddb57;
  background: -webkit-linear-gradient(top, #fddb57 0%, #fdb032 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#fddb57), to(#fdb032));
  background: -o-linear-gradient(top, #fddb57 0%, #fdb032 100%);
  background: linear-gradient(to bottom, #fddb57 0%, #fdb032 100%);
}
.backgara-yellow:hover {
  background: #fdb032;
  background: -webkit-linear-gradient(top, #fdb032 0%, #fddb57 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#fdb032), to(#fddb57));
  background: -o-linear-gradient(top, #fdb032 0%, #fddb57 100%);
  background: linear-gradient(to bottom, #fdb032 0%, #fddb57 100%);
}
.backgara-gray {
  background: #636363;
  background: -webkit-linear-gradient(top, #636363 0%, #4a4a4a 50%, #333333 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#636363), color-stop(50%, #4a4a4a), to(#333333));
  background: -o-linear-gradient(top, #636363 0%, #4a4a4a 50%, #333333 100%);
  background: linear-gradient(to bottom, #636363 0%, #4a4a4a 50%, #333333 100%);
}
.backgara-gray:hover {
  background: #333333;
  background: -webkit-linear-gradient(top, #333333 0%, #333333 0%, #4a4a4a 50%, #636363 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#333333), color-stop(0%, #333333), color-stop(50%, #4a4a4a), to(#636363));
  background: -o-linear-gradient(top, #333333 0%, #333333 0%, #4a4a4a 50%, #636363 100%);
  background: linear-gradient(to bottom, #333333 0%, #333333 0%, #4a4a4a 50%, #636363 100%);
}
/* hight
---------------------*/
/* title design
---------------------*/
@media screen and (max-width: 768px) {
  .title-design {
    background: #4A4A4A;
    padding: 10px;
    color: #fff;
    position: relative;
    margin-bottom: 1px;
    font-size: 15px;
  }
  .title-design:after {
    position: absolute;
    top: 5px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 5px;
    height: 5px;
    border: 5px solid transparent;
    border-top: 5px solid #fff;
  }
}
@media screen and (min-width: 769px) {
  .title-design {
    border-bottom: 1px solid;
    padding: 4px 0;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: #D91B20;
  }
  .title-design::before {
    content: "　";
    background: #D91B20;
    display: inline-block;
    width: 3px;
    margin-right: 5px;
  }
}
.translateY50 {
  top: 50%;
  -o-transform: translateY(-50%);
     transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.translateYX50 {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
   -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
.translateX50 {
  left: 50%;
  -o-transform: translatex(-50%);
     transform: translatex(-50%);
  -webkit-transform: translatex(-50%);
  -ms-transform: translatex(-50%);
}
/* 記号
---------------------*/
.S_Paren_S {
  content: "(";
}
.S_Paren_L {
  content: ")";
}
.S_Emphasis_S {
  content: "【";
}
.S_Emphasis_L {
  content: "】";
}
.S_Colon {
  content: "：";
}
.S_Arrow {
  content: "⇒";
}
.S_Attention {
  content: "※";
}
.S_Reading {
  content: "、";
}
.Arrow {
  text-align: center;
}
.Arrow:before {
  display: inline-block;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 5px 0 0;
  padding: 0;
  content: '\f0d7';
  font-size: 30px;
}
/* ==============================
- 共通
============================== */
h3 {
  border-bottom: 1px solid;
  padding: 4px 0;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  color: #D91B20;
}
h3:before {
  content: "　";
  background: #D91B20;
  display: inline-block;
  width: 3px;
  margin-right: 5px;
}
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;
}
.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%);
}
.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 (min-width: 769px) {
  .BtnChoiceBox {
    margin: 0 auto 20px auto;
  }
}
@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;
  }
  .BtnChoiceBox a {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 200px;
  }
  .BtnChoiceBox input[type="submit"] {
    -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) {
  .Header ul li.AddPrice {
    text-align: center;
  }
  .Header ul li.AddPrice .S_Paren {
    display: block;
    font-size: 11px;
  }
  .Header ul li.Vacancy {
    text-align: center;
  }
  .Header ul li.Count {
    text-align: center;
  }
  th.AddPrice {
    text-align: center;
  }
  th.AddPrice .S_Paren {
    display: block;
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .MyInfo {
    padding: 15px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .MyInfo {
    padding: 10px 20px 0;
    position: relative;
  }
}
.MyInfo::after {
  clear: both;
  content: '';
  display: block;
}
.MyInfo .MyPoint {
  padding: 20px 0;
  clear: both;
}
.MyInfo .MyPoint table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .MyInfo .MyPoint tr:last-child td {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .MyInfo .MyPoint th,
  .MyInfo .MyPoint td {
    display: block;
    padding: 10px;
  }
}
.MyInfo .MyPoint th {
  background-color: #F4F4F4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .MyInfo .MyPoint th {
    border-bottom: none;
  }
}
@media screen and (min-width: 769px) {
  .MyInfo .MyPoint th {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .MyInfo .MyPoint td {
    border-bottom: none;
  }
}
.MyInfo .MyPoint .FixedPoint .TotalPoint dt {
  padding: 0 0 5px;
}
.MyInfo .MyPoint .FixedPoint .TotalPoint .Point {
  color: #D91B20;
  font-weight: bold;
}
.MyInfo .MyPoint .FixedPoint .TotalPoint .Type::before {
  content: "(";
}
.MyInfo .MyPoint .FixedPoint .TotalPoint .Type::after {
  content: ")";
}
.MyInfo .MyPoint .FixedPoint .TotalPoint a {
  padding: 0 0 0 3px;
}
.MyInfo .MyPoint .MemberNumber {
  padding: 10px;
}
.MyInfo .Member {
  font-size: 16px;
  cursor: pointer;
  float: right;
}
@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
============================== */
@media screen and (min-width: 769px) {
  .LoginPage .Main {
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .LoginArea {
    padding: 15px 0;
  }
}
@media screen and (min-width: 769px) {
  .LoginArea {
    padding: 15px 0 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  .LoginArea .RegDone {
    width: 46%;
    float: left;
  }
}
@media screen and (min-width: 769px) {
  .LoginArea .Reserved {
    width: 52%;
    float: right;
  }
}
@media screen and (min-width: 769px) {
  .LoginArea .Inner {
    padding: 10px;
  }
}
.LoginArea .Inner .Come .Red {
  color: #f00;
}
.LoginArea table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .LoginArea table tr:last-child td:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
.LoginArea table tr.RefNumber span {
  display: inline-block;
  width: auto;
}
.LoginArea table tr.RefNumber .CustomTel {
  margin: 0;
}
.LoginArea table tr.RefNumber .CustomTel:first-of-type {
  width: 15%;
}
.LoginArea table tr.RefNumber .CmntText {
  padding: 0 3px;
}
@media screen and (min-width: 769px) {
  .LoginArea table tr.Name .CustomText {
    width: 49.3%;
    margin: 0;
  }
  .LoginArea table tr.Name .CustomText:first-of-type {
    margin-right: 2px;
  }
}
.LoginArea table tr.Dep .CustomSelect {
  width: 25%;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .LoginArea table th,
  .LoginArea table td {
    display: block;
    border-bottom: none;
  }
}
.LoginArea table th {
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .LoginArea table th {
    padding: 8px 5px 5px;
  }
}
@media screen and (max-width: 768px) {
  .LoginArea table td .CustomText {
    margin-bottom: 5px;
  }
  .LoginArea table td .CustomText:last-child {
    margin-bottom: 0;
  }
}
.LoginArea .Info p {
  margin: 10px 0 0;
}
.LoginArea .Info p.Forget a {
  color: #D91B20;
}
.LoginArea .BtnChoiceBox {
  position: relative;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .LoginArea .BtnChoiceBox {
    width: 250px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  .LoginArea .BtnChoiceBox {
    width: 200px;
  }
}
.LoginArea .BtnChoiceBox::before {
  content: "\f090";
  position: absolute;
  left: 20px;
  bottom: 14px;
  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 .BtnChoiceBox .NextBtn {
  color: #fff;
  margin-bottom: 0;
}
/* ==============================
- RsvListPage
============================== */
@media screen and (max-width: 768px) {
  .RsvListArea {
    padding: 15px 0;
  }
}
@media screen and (min-width: 769px) {
  .RsvListArea .Inner {
    padding: 5px 10px 10px;
  }
}
.RsvListArea .MyTourInfo {
  border: 2px solid #E6E5E3;
}
@media screen and (max-width: 768px) {
  .RsvListArea .MyTourInfo {
    padding: 10px 5px;
    margin: 5px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .RsvListArea .MyTourInfo {
    padding: 10px;
    margin: 5px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .RsvListArea .MyTourInfo .TitleBox {
    padding: 0 0 5px;
  }
}
.RsvListArea .MyTourInfo .TitleBox .TourTitle {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .RsvListArea .MyTourInfo .TitleBox .TourTitle {
    padding: 0 0 3px;
  }
}
@media screen and (min-width: 769px) {
  .RsvListArea .MyTourInfo .TitleBox .TourTitle {
    font-size: 16px;
    padding: 0 0 5px;
  }
}
@media screen and (min-width: 769px) {
  .RsvListArea .MyTourInfo .FineInfo {
    display: inline-block;
    width: 85%;
    padding: 5px 0 0;
    overflow: hidden;
  }
}
.RsvListArea .MyTourInfo .FineInfo dl {
  display: table;
  margin: 5px 0 0;
}
@media screen and (max-width: 768px) {
  .RsvListArea .MyTourInfo .FineInfo dl {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .RsvListArea .MyTourInfo .FineInfo dl {
    width: 50%;
    float: left;
  }
}
.RsvListArea .MyTourInfo .FineInfo dl.RsvIn dd {
  font-weight: bold;
  color: #D91B20;
}
.RsvListArea .MyTourInfo .FineInfo dt,
.RsvListArea .MyTourInfo .FineInfo dd {
  display: table-cell;
  padding: 5px;
}
.RsvListArea .MyTourInfo .FineInfo dt {
  background: #F4F4F4;
  vertical-align: middle;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .RsvListArea .MyTourInfo .FineInfo dt {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .RsvListArea .MyTourInfo .FineInfo dt {
    width: 36%;
  }
}
@media screen and (min-width: 769px) {
  .RsvListArea .MyTourInfo .FineInfo dd {
    width: 68%;
  }
}
@media screen and (max-width: 768px) {
  .RsvListArea .MyTourInfo .ButtonBox {
    width: 90%;
    margin: 10px auto 0;
  }
}
@media screen and (min-width: 769px) {
  .RsvListArea .MyTourInfo .ButtonBox {
    display: inline-block;
    width: 13%;
    vertical-align: bottom;
  }
}
.RsvListArea .MyTourInfo .ButtonBox .DetailBtn {
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  color: #fff;
  height: 32px;
  line-height: 30px;
  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%);
}
.RsvListArea .MyTourInfo .ButtonBox .DetailBtn: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%);
}
/* ==============================
- MyDetailPage
============================== */
.MyDetailPage .PayDesc {
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .MyDetailPage .PayDesc {
    margin: 0 0 20px;
    padding: 10px 0 0;
  }
}
.MyDetailPage .PayDesc dt {
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .MyDetailPage .PayDesc dt {
    margin: 0 0 5px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailPage .PayDesc dt {
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailPage .PayDesc dd {
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailPage .PayDesc dd {
    padding: 0 10px;
  }
}
.MyDetailArea h4 {
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .MyDetailArea h4 {
    background: #4A4A4A;
    color: #fff;
    border: none;
    margin-top: 1px;
    letter-spacing: 1px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea h4 {
    background: #F4F4F4;
    margin-top: 15px;
  }
}
.MyDetailArea h4:first-of-type {
  margin-top: 0;
}
.MyDetailArea h4:after {
  position: absolute;
  top: -5px;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  right: 10px;
  width: 5px;
  height: 5px;
  border: 5px solid transparent;
  border-bottom: 5px solid #4A4A4A;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .MyDetailArea h4:after {
    border-bottom: 5px solid #fff;
  }
}
.MyDetailArea h4.Close:after {
  border-top: 5px solid #4A4A4A;
  border-bottom: none;
  top: 0;
}
@media screen and (max-width: 768px) {
  .MyDetailArea h4.Close:after {
    border-top: 5px solid #fff;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .Inner {
    padding: 5px 10px 10px;
  }
  .MyDetailArea .Inner:last-of-type {
    padding-bottom: 0;
  }
}
.MyDetailArea .MyTourInfo {
  border: 2px solid #E6E5E3;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .MyTourInfo {
    padding: 10px 5px;
    margin: 5px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .MyTourInfo {
    padding: 10px;
    margin: 5px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .MyTourInfo .TitleBox {
    padding: 0 0 5px;
  }
}
.MyDetailArea .MyTourInfo .TitleBox .TourTitle {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .MyTourInfo .TitleBox .TourTitle {
    padding: 0 0 3px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .MyTourInfo .TitleBox .TourTitle {
    font-size: 16px;
    padding: 0 0 5px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .MyTourInfo .FineInfo {
    padding: 5px 0 0;
    overflow: hidden;
  }
}
.MyDetailArea .MyTourInfo .FineInfo dl {
  display: table;
  margin: 5px 0 0;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .MyTourInfo .FineInfo dl {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .MyTourInfo .FineInfo dl {
    float: left;
  }
}
.MyDetailArea .MyTourInfo .FineInfo dl.RsvIn dd {
  font-weight: bold;
  color: #D91B20;
}
.MyDetailArea .MyTourInfo .FineInfo dl.Count dd p {
  display: inline-block;
}
.MyDetailArea .MyTourInfo .FineInfo dl.Count dd p:after {
  content: "、";
}
.MyDetailArea .MyTourInfo .FineInfo dl.Count dd p:last-child:after {
  display: none;
}
@media screen and (min-width: 769px) {
  .MyDetailArea .MyTourInfo .FineInfo dl:nth-child(odd) {
    width: 40%;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .MyTourInfo .FineInfo dl:nth-child(even) {
    width: 60%;
  }
  .MyDetailArea .MyTourInfo .FineInfo dl:nth-child(even) dt {
    width: 18%;
  }
}
.MyDetailArea .MyTourInfo .FineInfo dt,
.MyDetailArea .MyTourInfo .FineInfo dd {
  display: table-cell;
  padding: 5px;
}
.MyDetailArea .MyTourInfo .FineInfo dt {
  background: #F4F4F4;
  vertical-align: middle;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .MyDetailArea .MyTourInfo .FineInfo dt {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .MyTourInfo .FineInfo dt {
    width: 36%;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .MyTourInfo .FineInfo dd {
    width: 68%;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .Jrdp {
    margin: 5px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .Jrdp {
    margin: 5px 0 20px;
  }
}
.MyDetailArea .Jrdp .QrCode {
  padding: 10px 0 0;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .Jrdp .QrCode .Qrimg,
  .MyDetailArea .Jrdp .QrCode .QrInfo {
    max-width: 200px;
    margin: 0 auto 10px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .Jrdp .QrCode .Qrimg,
  .MyDetailArea .Jrdp .QrCode .QrInfo {
    display: inline-block;
    vertical-align: middle;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .Jrdp .QrCode .Qrimg {
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .Jrdp .QrCode .Qrimg {
    max-width: 200px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .Jrdp .QrCode .Qrimg {
    max-width: 140px;
  }
}
.MyDetailArea .Jrdp .QrCode .Qrimg img {
  width: 100%;
}
.MyDetailArea .Jrdp .QrCode dl {
  margin: 0 0 5px;
}
.MyDetailArea .Jrdp .QrCode dt,
.MyDetailArea .Jrdp .QrCode dd {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourDetail {
    margin: 5px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail {
    margin: 5px 0 20px;
  }
}
.MyDetailArea .TourDetail .Entries {
  border: 2px solid #E6E5E3;
  border-top: none;
}
.MyDetailArea .TourDetail .Entries.JrdpConf .Bin,
.MyDetailArea .TourDetail .Entries.JrdpAdv .Bin,
.MyDetailArea .TourDetail .Entries.JrdpConf .SeatHope,
.MyDetailArea .TourDetail .Entries.JrdpAdv .SeatHope,
.MyDetailArea .TourDetail .Entries.JrdpConf .Txt,
.MyDetailArea .TourDetail .Entries.JrdpAdv .Txt {
  display: inline-block;
  padding-bottom: 5px;
}
.MyDetailArea .TourDetail .Entries.JrdpConf .Bin,
.MyDetailArea .TourDetail .Entries.JrdpAdv .Bin,
.MyDetailArea .TourDetail .Entries.JrdpConf .SeatHope,
.MyDetailArea .TourDetail .Entries.JrdpAdv .SeatHope {
  margin-right: 15px;
}
.MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail {
  padding: 0;
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail {
    display: table;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dt {
    border-bottom: 2px solid #E6E5E3;
    background: #F4F4F4;
    padding: 5px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dt {
    display: table-cell;
    width: 14%;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
    border-right: 2px solid #E6E5E3;
  }
}
.MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dt .Hope {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dt .Hope {
    display: inline-block;
    margin-left: 10px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dt .Hope {
    margin-top: 5px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd {
    display: table-cell;
    width: 92%;
  }
}
.MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude {
    display: table;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .Info,
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .PriceDetail {
    display: table-cell;
  }
}
.MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .Info {
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .Info {
    border-bottom: 1px dashed #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .Info {
    width: 60%;
    vertical-align: top;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .Info .Bin {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .PriceDetail {
    width: 40%;
    min-height: 25px;
    height: 25px;
  }
}
.MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .PriceDetail table {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .PriceDetail table {
    height: 100%;
  }
}
.MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .PriceDetail td {
  border: none;
  vertical-align: bottom;
  padding: 5px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .PriceDetail td {
    font-size: 11px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .PriceDetail td {
    border-left: 2px solid #E6E5E3;
  }
}
.MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .PriceDetail td:first-of-type {
  width: 70%;
}
.MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .PriceDetail td:last-of-type {
  width: 30%;
}
.MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .PriceDetail td ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .PriceDetail td ul {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.MyDetailArea .TourDetail .Entries.JrdpAdv .BinDetail dd .Conclude .PriceDetail td ul .Kubun:after {
  content: "：";
}
.MyDetailArea .TourDetail .Entries dl {
  border-bottom: 2px solid #E6E5E3;
}
.MyDetailArea .TourDetail .Entries dl:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourDetail .Entries dl {
    padding: 10px 5px 5px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries dl {
    padding: 10px;
  }
}
.MyDetailArea .TourDetail .Entries dt {
  padding: 10px 0;
}
.MyDetailArea .TourDetail .Entries dt:last-of-type {
  padding-bottom: 0;
}
.MyDetailArea .TourDetail .Entries dt::after {
  clear: both;
  content: '';
  display: block;
}
.MyDetailArea .TourDetail .Entries dt:first-of-type {
  padding-top: 0;
}
.MyDetailArea .TourDetail .Entries dt .BassCompany {
  display: inline-block;
  margin: 0 0 0 10px;
}
.MyDetailArea .TourDetail .Entries dt .TktBtn {
  background: #CC0000;
  color: #fff;
  border: none;
  padding: 7px 10px;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  letter-spacing: 2px;
  cursor: pointer;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourDetail .Entries dt .TktBtn {
    display: block;
    margin-left: auto;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries dt .TktBtn {
    float: right;
  }
}
.MyDetailArea .TourDetail .Entries dt .TktBtn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourDetail .Entries dd.Distance {
    padding: 0 0 5px 5px;
    line-height: 15px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries dd.Distance {
    padding: 10px 0 0 10px;
  }
}
.MyDetailArea .TourDetail .Entries dd.Distance .RoomType {
  display: inline-block;
}
.MyDetailArea .TourDetail .Entries dd.Distance .RoomType .Type {
  display: inline-block;
}
.MyDetailArea .TourDetail .Entries dd.Distance .RoomType .Type:after {
  content: "、";
}
.MyDetailArea .TourDetail .Entries dd.Distance .RoomType .Type:last-of-type:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourDetail .Entries dd.Distance .HotelPlan {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries dd.Distance .HotelPlan {
    padding: 0 10px 0 0;
  }
}
.MyDetailArea .TourDetail .Entries dd.Distance .Time::before,
.MyDetailArea .TourDetail .Entries dd.Distance .Meal::before {
  content: "(";
}
.MyDetailArea .TourDetail .Entries dd.Distance .Time::after,
.MyDetailArea .TourDetail .Entries dd.Distance .Meal::after {
  content: ")";
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries dd.Distance .Meal {
    display: inline-block;
    padding: 0 0 0 10px;
  }
}
.MyDetailArea .TourDetail .Entries dd.Distance .Time + span::before {
  content: "⇒";
  padding: 0 3px;
}
.MyDetailArea .TourDetail .Entries dd.Entry {
  display: table;
  width: 100%;
}
.MyDetailArea .TourDetail .Entries dd.Entry:last-of-type {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourDetail .Entries dd.Entry {
    padding: 0 0 10px 5px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries dd.Entry {
    padding: 0 0 15px 10px;
  }
}
.MyDetailArea .TourDetail .Entries dd.Entry p {
  display: table-cell;
  padding: 5px;
}
.MyDetailArea .TourDetail .Entries dd.Entry p.Title {
  border: 2px solid #E6E5E3;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourDetail .Entries dd.Entry p.Title {
    width: 20%;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourDetail .Entries dd.Entry p.Title {
    width: 8%;
  }
}
.MyDetailArea .TourDetail .Entries dd.Entry span:after {
  content: "、";
}
.MyDetailArea .TourDetail .Entries dd.Entry span:last-of-type:after {
  display: none;
}
.MyDetailArea .TourDetail .Entries dd.CarPlace {
  padding: 0 0 15px 10px;
}
.MyDetailArea .TourDetail .Entries dd.CarPlace p {
  margin-bottom: 3px;
}
.MyDetailArea .TourDetail .Entries dd.CarPlace p:last-child {
  margin-bottom: 0;
}
.MyDetailArea .TourDetail .Entries dd.CarPlace:last-of-type {
  padding-bottom: 0;
}
.MyDetailArea .TourDetail .Entries dd .ExtLink {
  color: #D91B20;
  font-weight: bold;
}
.MyDetailArea .TourDetail .Entries dd .ExtTxt {
  margin-top: 3px;
}
.MyDetailArea .DepByInfo {
  text-align: right;
}
.MyDetailArea .DepByInfo a {
  font-size: 16px;
  color: #4ca2df;
}
.MyDetailArea .DepByInfo a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourEntry {
    margin: 5px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourEntry {
    margin: 5px 0 20px;
  }
}
.MyDetailArea .TourEntry table {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourEntry table thead {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourEntry table thead th {
    background: #F4F4F4;
  }
  .MyDetailArea .TourEntry table thead th.Name {
    width: 50%;
  }
  .MyDetailArea .TourEntry table thead th.Sex,
  .MyDetailArea .TourEntry table thead th.Age,
  .MyDetailArea .TourEntry table thead th.Chief {
    width: 10%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourEntry table tbody tr {
    display: block;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .TourEntry table th.Sex,
  .MyDetailArea .TourEntry table td.Sex,
  .MyDetailArea .TourEntry table th.Age,
  .MyDetailArea .TourEntry table td.Age,
  .MyDetailArea .TourEntry table th.Chief,
  .MyDetailArea .TourEntry table td.Chief {
    text-align: center;
  }
  .MyDetailArea .TourEntry table th.Insurance,
  .MyDetailArea .TourEntry table td.Insurance {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourEntry table td {
    display: table;
    width: 100%;
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourEntry table td:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourEntry table td:before {
    content: attr(data-text) "";
    display: table-cell;
    width: 40%;
    background: #F4F4F4;
    border-right: 2px solid #E6E5E3;
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .TourEntry table td span {
    display: table-cell;
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PriceBreakdown {
    margin: 5px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PriceBreakdown {
    margin: 5px 0 20px;
  }
}
.MyDetailArea .PriceBreakdown table {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PriceBreakdown table thead {
    display: none;
  }
}
.MyDetailArea .PriceBreakdown table thead th {
  background: #F4F4F4;
}
.MyDetailArea .PriceBreakdown table thead th.Item {
  width: 50%;
}
.MyDetailArea .PriceBreakdown table tbody td li {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PriceBreakdown table th.Formula,
  .MyDetailArea .PriceBreakdown table th.Subtotal {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PriceBreakdown table tr {
    border: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PriceBreakdown table td {
    border: none;
    font-size: 11px;
  }
}
.MyDetailArea .PriceBreakdown table td:not(.Item) {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PriceBreakdown table td.Item {
    width: 42%;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PriceBreakdown table td.Formula,
  .MyDetailArea .PriceBreakdown table td.Subtotal {
    text-align: right;
  }
}
.MyDetailArea .PriceBreakdown .TotalPrice {
  text-align: right;
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PriceBreakdown .TotalPrice {
    padding: 20px 10px 10px;
    margin: 10px 0 0 auto;
  }
}
.MyDetailArea .PriceBreakdown .TotalPrice dl {
  display: inline-block;
  border-bottom: 2px solid #E6E5E3;
  padding: 0 10px 5px;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PriceBreakdown .TotalPrice dl {
    margin: 15px 0 5px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PriceBreakdown .TotalPrice dl {
    width: 28%;
  }
}
.MyDetailArea .PriceBreakdown .TotalPrice dl dt {
  display: inline-block;
  padding-right: 10px;
}
.MyDetailArea .PriceBreakdown .TotalPrice dl dd {
  display: inline-block;
  color: #D91B20;
  font-weight: 600;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PriceBreakdown .TotalPrice dl dd {
    font-size: 20px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PriceBreakdown .TotalPrice dl dd {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PriceBreakdown .TotalPrice .PriceInfo {
    padding: 0 10px 0 0;
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PriceBreakdown .TotalPrice .PriceInfo {
    margin: 10px 0 0;
  }
}
.MyDetailArea .TotalPointGet {
  text-align: right;
}
.MyDetailArea .TotalPointGet dl {
  display: inline-block;
  margin-bottom: 10px;
}
.MyDetailArea .TotalPointGet dl dt {
  display: inline-block;
  margin-right: 15px;
}
.MyDetailArea .TotalPointGet dl dt::before {
  content: "(";
}
.MyDetailArea .TotalPointGet dl dd {
  display: inline-block;
}
.MyDetailArea .TotalPointGet dl dd::after {
  content: ")";
}
.MyDetailArea .TotalPointGet dl dd .Point {
  color: #D91B20;
  font-weight: bold;
}
.MyDetailArea .LocalPay {
  text-align: right;
}
.MyDetailArea .LocalPay p {
  margin-bottom: 5px;
}
.MyDetailArea .LocalPay p:last-of-type {
  margin-bottom: 0;
}
.MyDetailArea .LocalPay span {
  display: inline-block;
}
.MyDetailArea .LocalPay span:first-of-type {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PayState {
    margin: 5px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PayState {
    margin: 5px 0 20px;
  }
}
.MyDetailArea .PayState table {
  width: 100%;
}
.MyDetailArea .PayState table thead th {
  background: #F4F4F4;
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PayState table thead th {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PayState table thead {
    display: none;
  }
}
.MyDetailArea .PayState table td .PayMethod {
  margin-left: 5px;
  display: inline-block;
  min-width: 120px;
  text-align: left;
}
.MyDetailArea .PayState table td .PayMethod::before {
  content: "(";
}
.MyDetailArea .PayState table td .PayMethod::after {
  content: ")";
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PayState table td {
    display: table;
    width: 100%;
    border-bottom: none;
  }
  .MyDetailArea .PayState table td:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PayState table td {
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PayState table td:before {
    content: attr(data-text) "";
    display: table-cell;
    width: 40%;
    background: #F4F4F4;
    border-right: 2px solid #E6E5E3;
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PayState table td span {
    display: table-cell;
    padding: 5px;
    text-align: right;
    vertical-align: middle;
  }
}
.MyDetailArea .PayState table.BankDeadline,
.MyDetailArea .PayState table.CvsDeadline {
  margin: 10px 0 0;
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PayState table.BankDeadline {
    width: auto;
  }
}
.MyDetailArea .PayState table.BankDeadline th {
  min-width: 175px;
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PayState table.CvsDeadline td {
    text-align: left;
  }
}
.MyDetailArea .PayState table.CvsDeadline td.SpecCvs span {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .PayState table.CvsDeadline td.PaymentMethod span {
    display: block;
    text-align: left;
  }
}
@media screen and (min-width: 769px) {
  .MyDetailArea .PayState table.CvsDeadline td.BalanceDead {
    text-align: right;
  }
}
.MyDetailArea .PayState table.CvsDeadline td p {
  padding: 3px 0 0;
}
.MyDetailArea .PayState table.CvsDeadline td p:first-child {
  padding: 0;
}
.MyDetailArea .PayState .StandOutTxt {
  font-size: 16px;
  margin-top: 3px;
  font-weight: bold;
}
.MyDetailArea .RectAdd table {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .RectAdd tr,
  .MyDetailArea .RectAdd th,
  .MyDetailArea .RectAdd td {
    width: 100%;
    display: block;
  }
}
.MyDetailArea .RectAdd th {
  width: 20%;
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .MyDetailArea .RectAdd th {
    width: 100%;
    border-bottom: none;
  }
}
.MyDetailArea .RectAdd td .CustomText {
  display: inline-block;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .MyDetailArea .RectAdd td .CustomText {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .MyDetailArea .RectAdd td .CustomText {
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
  }
}
.MyDetailArea .RectAdd td .Tl {
  display: inline-block;
  margin-left: 5px;
}
/* ==============================
- PersonPage
============================== */
@media screen and (min-width: 769px) {
  .PersonArea .Inner {
    padding: 5px 10px 10px;
  }
  .PersonArea .Inner:last-of-type {
    padding-bottom: 0;
  }
}
.PersonArea table {
  width: 100%;
  margin: 5px 0 20px;
}
@media screen and (max-width: 768px) {
  .PersonArea table {
    margin: 5px 0 10px;
  }
}
@media screen and (min-width: 769px) {
  .PersonArea table {
    margin: 5px 0 20px;
  }
}
.PersonArea tr.Age .AgeSelect {
  display: inline-block;
  padding: 0 0 0 5px;
}
@media screen and (min-width: 769px) {
  .PersonArea tr.Tel .CustomTel {
    width: 60%;
  }
}
@media screen and (min-width: 769px) {
  .PersonArea tr.Mail .CustomMail {
    width: 60%;
  }
}
@media screen and (min-width: 769px) {
  .PersonArea tr.Pass .CustomPassword {
    width: 60%;
  }
}
@media screen and (min-width: 769px) {
  .PersonArea tr.Secret_A .CustomText {
    width: 60%;
  }
}
.PersonArea tr:last-child td {
  border-bottom: 2px solid #E6E5E3;
}
.PersonArea th {
  background: #F4F4F4;
  font-weight: normal;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .PersonArea th {
    display: block;
    border-bottom: none;
  }
}
@media screen and (min-width: 769px) {
  .PersonArea th {
    width: 28%;
    padding: 10px;
    vertical-align: top;
  }
}
.PersonArea th .Required {
  content: "必須";
  display: inline-block;
  background: #f00;
  color: #fff;
  font-size: 11px;
  padding: 3px 5px 2px;
  margin-left: 5px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .PersonArea td {
    display: block;
    border-bottom: none;
  }
}
.PersonArea td .Alert {
  padding: 5px 0 0;
  color: #f00;
}
.PersonArea .Method::before {
  content: "(";
}
.PersonArea .Method::after {
  content: ")";
}
.PersonArea .CustomRadioBtn {
  margin: 0 10px 0 0;
}
.PersonArea .CustomSelect {
  width: auto;
}
/* ==============================
- KakuninPage
============================== */
.KakuninPage .PersonArea tr.Tel th::after,
.KakuninPage .PersonArea tr.Mail th::after,
.KakuninPage .PersonArea tr.Pass th::after,
.KakuninPage .PersonArea tr.Secret_Q th::after,
.KakuninPage .PersonArea tr.Secret_A th::after {
  display: none;
}
/* ==============================
- PersonCompPage
============================== */
@media screen and (max-width: 768px) {
  .PersonCompArea {
    padding: 15px 0;
  }
}
@media screen and (min-width: 769px) {
  .PersonCompArea {
    padding: 15px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .PersonCompArea .Inner {
    padding: 10px;
  }
}
.PersonCompArea .Inner .Info {
  line-height: 18px;
}
.PersonCompArea .BtnChoiceBox {
  margin-top: 30px;
}
/* ==============================
- ForgetPage
============================== */
@media screen and (max-width: 768px) {
  .ForgetArea {
    padding: 15px 0;
  }
}
@media screen and (min-width: 769px) {
  .ForgetArea {
    padding: 15px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .ForgetArea .Inner {
    padding: 10px;
  }
}
.ForgetArea .Inner .Info {
  line-height: 18px;
}
.ForgetArea table {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .ForgetArea table {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .ForgetArea table {
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .ForgetArea table tr:last-child td:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .ForgetArea table th,
  .ForgetArea table td {
    display: block;
    border-bottom: none;
  }
}
.ForgetArea table th {
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .ForgetArea table th {
    padding: 8px 5px 5px;
  }
}
.ForgetArea table th .Required {
  content: "必須";
  display: inline-block;
  background: #f00;
  color: #fff;
  font-size: 11px;
  padding: 3px 5px 2px;
  margin-left: 5px;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .ForgetArea table td .CustomText {
    margin-bottom: 5px;
  }
  .ForgetArea table td .CustomText:last-child {
    margin-bottom: 0;
  }
}
.ForgetArea .BtnChoiceBox {
  margin-top: 30px;
}
/* ==============================
- PointKakuninPage
============================== */
.PointKakuninPage .PointArea {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .PointKakuninPage .PointArea > .Inner {
    padding: 20px 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointArea > .Inner {
    padding: 0;
  }
}
.PointKakuninPage .PointArea .TotalPoint dl {
  width: 100%;
  text-align: center;
  font-size: 16px;
  border: 2px solid #E6E5E3;
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointArea .TotalPoint dl {
    padding: 10px;
  }
}
.PointKakuninPage .PointArea .TotalPoint dl dt,
.PointKakuninPage .PointArea .TotalPoint dl dd {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .PointKakuninPage .PointArea .TotalPoint dl dt,
  .PointKakuninPage .PointArea .TotalPoint dl dd {
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointArea .TotalPoint dl dt {
    padding: 0 5px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .PointKakuninPage .PointArea .TotalPoint dl dt {
    padding-right: 0;
  }
}
.PointKakuninPage .PointArea .TotalPoint .Point {
  color: #D91B20;
  font-weight: bold;
}
.PointKakuninPage .PointArea .TotalPointDetails {
  display: table;
  width: 100%;
  border: 2px solid #E6E5E3;
  margin-bottom: 20px;
}
.PointKakuninPage .PointArea .TotalPointDetails .FixedPoint {
  display: table-cell;
  width: 50%;
}
@media screen and (min-width: 769px) {
  .PointKakuninPage .PointArea .TotalPointDetails .FixedPoint {
    padding: 10px;
  }
}
.PointKakuninPage .PointArea .TotalPointDetails .NotPoint {
  display: table-cell;
  width: 50%;
  border-left: 2px solid #E6E5E3;
}
@media screen and (min-width: 769px) {
  .PointKakuninPage .PointArea .TotalPointDetails .NotPoint {
    padding: 10px;
  }
}
.PointKakuninPage .PointArea .TotalPointDetails dl {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointArea .TotalPointDetails dl {
    padding: 0 5px;
  }
}
.PointKakuninPage .PointArea .TotalPointDetails dl dt,
.PointKakuninPage .PointArea .TotalPointDetails dl dd {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointArea .TotalPointDetails dl dt {
    padding: 5px 0;
  }
}
@media screen and (min-width: 769px) {
  .PointKakuninPage .PointArea .TotalPointDetails dl dt {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointArea .TotalPointDetails dl dd {
    padding: 0 0 5px;
  }
}
.PointKakuninPage .PointArea .TotalPointDetails .Point {
  color: #D91B20;
  font-weight: bold;
}
.PointKakuninPage .PointArea .TotalPointDetails .PointInfo {
  text-align: center;
  margin-top: 5px;
}
.PointKakuninPage .PointArea .TotalPointDetails .PointInfo li {
  font-size: 13px;
  font-weight: normal;
}
.PointKakuninPage .PointArea .TotalPointDetails .PointInfo li::before {
  content: "※";
  color: #D91B20;
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .ExpirationDate {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .ExpirationDate {
    display: block;
    margin-top: 5px;
  }
}
.PointKakuninPage .ExpirationDate .Title::before {
  content: "(";
}
.PointKakuninPage .ExpirationDate .Title::after {
  content: "：";
}
.PointKakuninPage .ExpirationDate .Date::after {
  content: ")";
}
.PointKakuninPage .PointDetails h4 {
  border: none;
  font-weight: bold;
  padding: 5px 0;
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointDetails thead {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointDetails tr {
    display: block;
    margin: 0 0 5px;
  }
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointDetails tr:last-child {
    margin-bottom: 0;
  }
}
.PointKakuninPage .PointDetails th {
  background: #F4F4F4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointDetails td {
    display: table;
    width: 100%;
    padding: 0;
    border-bottom: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointDetails td:before {
    content: attr(data-text) "";
    display: table-cell;
    width: 90px;
    text-align: left;
    background: #F4F4F4;
    border-right: 2px solid #E6E5E3;
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointDetails td:last-child {
    border-bottom: 2px solid #E6E5E3;
  }
}
@media screen and (max-width: 768px) {
  .PointKakuninPage .PointDetails span {
    display: table-cell;
    padding: 5px;
  }
}
@media screen and (min-width: 769px) {
  .PointKakuninPage .PointDetails .UseDate {
    width: 15%;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .PointKakuninPage .PointDetails .Transaction {
    width: 15%;
    text-align: center;
  }
}
.PointKakuninPage .PointDetails .GetPoint {
  text-align: right;
}
@media screen and (min-width: 769px) {
  .PointKakuninPage .PointDetails .GetPoint {
    width: 20%;
  }
}
.PointKakuninPage .PointDetails .UsePoint {
  text-align: right;
}
@media screen and (min-width: 769px) {
  .PointKakuninPage .PointDetails .UsePoint {
    width: 20%;
  }
}
@media screen and (min-width: 769px) {
  .PointKakuninPage .PointDetails .PointContent {
    width: 35%;
  }
}
