﻿@charset "utf-8";

/*マイページタイトル*/
.common_account_mypage__pagetitle {
  background: #1a4984;
  padding: 16px 15px 15px;
}
.common_account_mypage__pagetitle_txt {
  font-size: 1.7rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  max-width: 970px;
  margin: 0 auto;
}

.common_account_mypage__menu {
  margin: 30px 23px 30px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.common_account_mypage__menu_item {
  flex: 1;
}
.common_account_mypage__menu_item a {
  height: 56px;
  padding: 0 10px;
  background: #d2eefc;
  border: solid 2px #88c8e5;
  border-radius: 8px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 13px;
}
.common_account_mypage__menu_item a span {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 7px 0 0;
}
.common_account_mypage__menu_item a i {
  width: 40px;
  height: 40px;
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center center;
}
.common_account_mypage__menu_item a i[data-icon="mypage_account"] {
  background-image: url("/img/account/icon_mypage_account.png");
}
.common_account_mypage__menu_item a i[data-icon="mypage_mail"] {
  background-image: url("/img/account/icon_mypage_mail.png");
}

@media screen and (min-width:769px) {
  .common_account_mypage__menu {
    margin: 35px 10px 35px;
    flex-direction: row;
    gap: 16px;
  }
  .common_account_mypage__menu_item a span {
    font-size: 17px;
  }
  .common_account_mypage__menu_item a:hover {
    opacity: 0.85;
    transition: 0.2s;
  }
}


.common_account_mypage__nav {
  margin: 30px 13px 30px;
  padding: 11px;
  background: #ebeced;
  border-radius: 8px;
}
.common_account_mypage__nav_box {
  display: flex;
  justify-content: space-between;
}
.common_account_mypage__nav_list {
  width: calc( calc(100% - 11px) / 5 * 3);
}
.common_account_mypage__nav_history {
  width: calc( calc(100% - 11px) / 5 * 2);
}
.common_account_mypage__nav_list a,
.common_account_mypage__nav_history a {
  display: block;
  padding: 53px 5px 12px;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  border-radius: 7px;
}
.common_account_mypage__nav_list a {
  background: #1275cc url("/img/account/icon_list_w.svg") no-repeat center top 18px;
  background-size: 43px;
}
.common_account_mypage__nav_history a {
  background: #5d5f66 url("/img/account/icon_history_w.svg") no-repeat center top 19px;
  background-size: 32px;
}
.common_account_mypage__nav ul li a span {
  position: relative;
  font-size: 17px;
  font-weight: bold;
}
@media screen and (min-width:769px) {
  .common_account_mypage__nav {
    margin: 35px 0 35px;
  }
  .common_account_mypage__nav a {
     transition: 0.2s;
  }
  .common_account_mypage__nav a:hover {
     opacity: 0.85;
  }
}




/*マイページの予約確認の全体枠*/
#main_account_reserve {
}

/*マイページの予約確認の全体枠（前日割）*/
/*reserve.cssにも同じ記述あり（前日割用の色変更のため）*/
#main_account_reserve_advance {
}

/*マイページの予約確認の全体枠（リアルタイム予約）*/
/*reserve.cssにも同じ記述あり（リアルタイム予約用の色変更のため）*/
#main_account_reserve_realtime {
}

/*予約の人数変更*/
.account_reserve_common__whole {
  background-position: center top;
  background-size: 100vw auto;
  background-repeat: no-repeat;
  background-color: #000;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}
.account_reserve_common__whole::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  z-index: -1;
  top: 0;
  left: 0;
}
.account_reserve_common__whole::after {
  content: "";
  width: 100%;
  height: 50%;
  position: fixed;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 100%);
}
.account_reserve_common__whole_block {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-content: flex-start;
}
.account_reserve_common__whole_heading {
  padding: 6px 10px 6px;
  flex-shrink: 0;
  width: 100%;
  min-height: 49px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  align-content: flex-start;
  position: relative;/*iPhone6対応*/
  position: sticky;
  top: 0;
  background-position: center top;
  background-size: 100vw auto;
  background-repeat: no-repeat;
  background-color: #000;
  z-index: 20;
}
.account_reserve_common__whole_heading::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  z-index: -1;
  top: 0;
  left: 0;
}
.account_reserve_common__whole_heading_close {
  position: absolute;
  top: 9px;
  right: 4px;
  display: block;
}

/*プランのメイン枠*/
.account_reserve_common__whole_unit {
  background: #fff;
  padding: 0 0 100px;
  -webkit-overflow-scrolling: touch;
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.account_reserve_common__whole_unit::-webkit-scrollbar {
  display: none;
}


/*AmazonPayは予約変更とキャンセル時にカード番号の表示は不可のため調整*/
.account_reserve_common__whole_unit .reserve_common__block_unit_content_plan_table_pay_confirm_detail_amazon_brand {
  margin: 0;
}


/*予約の変更完了*/

/*rainbow*/
.account_reserve_common__topbar_rainbow {
  background: linear-gradient(315deg, #FA4641 0%, #FC9A0F 25%, #36C980 50%, #419EF0 75%, #B958EE 100%);
  height: 6px;
}
/*yellow*/
.account_reserve_common__topbar_yellow {
  background: #fff100;
  height: 6px;
}

/*blue*/
.account_reserve_common__topbar_blue {
  background: linear-gradient(90deg, #17b2a8 0%, #5d62e3 100%);
  height: 6px;
}

.account_reserve_common__finish {
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 15vh 15px 0;
}
.account_reserve_common__finish_title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
}
.account_reserve_common__finish_title span {
  padding: 6px 4px 2px;
  color: #fff;
  margin: 0 3px 0 0;
  display: inline-block;
  border-radius: 2px;
  background: #00a308;
}
.account_reserve_common__finish_title em {
  padding: 6px 4px 2px;
  color: #fff;
  font-weight: inherit;
  line-height: 1;
  margin: 0 3px 0 0;
  display: inline-block;
  border-radius: 2px;
  background: linear-gradient(90deg, #17b2a8 0%, #5d62e3 100%);
}

.account_reserve_common__finish_aten {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
.account_reserve_common__finish_aten li {
  font-size: 1.3rem;
  line-height: 1.5;
  text-indent: -1em;
  margin: 0 0 10px 1em;
  color: #4c4c4c;
  text-align: center;
}
.account_reserve_common__finish_aten li em {
  font-weight: bold;
}
.account_reserve_common__finish_aten li:last-of-type {
  margin-bottom: 0;
}
.account_reserve_common__finish_aten li::before {
  content: "※";
  color: #fa4641;
}

/*予約の変更不可*/
.account_reserve_common__finish_nochange {
  max-width: 700px;
  margin: 0 auto 25px;
  padding: 12vh 15px 0;
}
.account_reserve_common__finish_nochange_title {
  text-align: center;
}
.account_reserve_common__finish_nochange_title span {
  font-size: 1.8rem;
  font-weight: bold;
  background: #ffdcdb;
  color: #fa4641;
  padding: 15px 18px 14px;
  display: inline-block;
}
.account_reserve_common__finish_nochange_txt {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  margin: 24px 0 0;
}
.account_reserve_common__finish_nochange_txt strong {
  color: #fa4641;
  font-weight: inherit;
}

/*予約の変更不可 釣り船への電話*/
.account_reserve_common__finish_nochange_tel {
  background: #f0f0f0;
  padding: 22px 20px 24px;
  margin: 0 auto 35px;
  max-width: 700px;
}
.account_reserve_common__finish_nochange_tel_title {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.account_reserve_common__finish_nochange_tel_btn {
  margin-top: 11px;
}
.account_reserve_common__finish_nochange_tel_btn a {
  background: #fff;
  padding: 10px 10px 13px;
  border: #1a1a1a 1.5px solid;
  border-radius: 8px;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.account_reserve_common__finish_nochange_tel_btn_icon {
  flex-shrink: 0;
  margin: 5px 6px 0 0;
  border-radius: 100px;
  padding: 6px;
  background: #fff;
  border: rgba(26,26,26,.8) 1px solid;
}
.account_reserve_common__finish_nochange_tel_btn_icon path {
  fill: #1a1a1a;
}
.account_reserve_common__finish_nochange_tel_btn_info {
  text-align: center;
  margin: 3px 2px 0 0;
}
.account_reserve_common__finish_nochange_tel_btn_num {
  font-size: 32px;/*px=ok*/
  font-weight: bold;
  color: #1a1a1a;
  font-family: Arial, Helvetica, "sans-serif";
}
@media screen and (min-width:769px) {
  .account_reserve_common__finish_nochange_title span {
    font-size: 2rem;
  }
  .account_reserve_common__finish_nochange_tel_btn a {
    pointer-events: none;
  }
}

/*ボタン枠*/
.account_reserve_common__action {
  max-width: 700px;
  margin: 30px auto 0;
  padding: 0 20px;
}
/*ボタン*/
.account_reserve_common__action_btn_back {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 25px 0;
}
.account_reserve_common__action_btn_back a,
.account_reserve_common__action_btn_back button {
  background: #ebebeb;
  min-width: 200px;
  max-width: 300px;
  font-size: 1.5rem;
  text-align: center;
  padding: 15px 15px;
  border-radius: 6px;
  border: #c2c2c2 1px solid;
  display: block;
  color: inherit;
}


/* リアルタイム予約 202301追加
---------------------------------- */
.account_reserve__block {
  margin: 0 auto;
  max-width: 618px;
}

.account_reserve__back {
  display: none;
  background: #1a4984;
}
.account_reserve__back_inner {
  max-width: 980px;
  margin: 0 auto;
}
.account_reserve__back a span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 15px 15px 15px 29px;
  position: relative;
  display: block;
}
.account_reserve__back a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
}

.account_reserve__title {
  padding: 30px 0;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  list-style: 1.3;
}
.account_reserve__title a {
  text-decoration: underline;
}
@media screen and (min-width:769px) {
  .account_reserve__title {
    padding: 40px 0;
    font-size: 26px;
  }
  .account_reserve__title a:hover {
    text-decoration: none;
  }
}

.account_reserve__tab {
  margin: 0 18px 25px;
  max-width: 500px;
  background: #ebeced;
  border-radius: 8px;
  padding: 9px;
}
.account_reserve__tab ul {
  display: flex;
  justify-content: space-between;
}
.account_reserve__tab ul li {
  width: calc( 50% - 6px );
  text-align: center;
  color: #45474c;
  cursor: pointer;
  border-radius: 7px;
}
.account_reserve__tab ul li a {
  display: block;
  color: #45474c;
}
.account_reserve__tab ul li span {
  position: relative;
  padding-left: 2.1em;
  display: inline-block;
  padding: 23px 0 23px 36px;
  font-size: 1.7rem;
  font-weight: bold;
}
.account_reserve__tab ul li span::before {
  content: "";
  display: block;
  position: absolute;
}
.account_reserve__tab ul li[data-icon="ship"] span::before {
  top: -1px;
  bottom: 0;
  left: -8px;
  margin: auto;
  width: 36px;
  height: 36px;
  background: url("/img/account/icon_list.svg") no-repeat center center;
  background-size: contain;
}
.account_reserve__tab ul li[data-icon="ship"].active {
  background: #1275cc;
  color: #fff;
  pointer-events: none;
}
.account_reserve__tab ul li[data-icon="ship"].active span::before {
  background: url("/img/account/icon_list_w.svg") no-repeat center center;
  background-size: contain;
}

.account_reserve__tab ul li[data-icon="history"] span::before {
  top: -1px;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 27px;
  height: 27px;
  background: url("/img/account/icon_history.svg") no-repeat center center;
  background-size: contain;
}
.account_reserve__tab ul li[data-icon="history"].active {
  background: #5d5f66;
  color: #fff;
  pointer-events: none;
}
.account_reserve__tab ul li[data-icon="history"].active span::before {
  background: url("/img/account/icon_history_w.svg") no-repeat center center;
  background-size: contain;
}

@media screen and (min-width:769px) {
  .account_reserve__tab {
    margin: 0 auto;
  }
}

.account_reserve__empty {
  margin: 30px 18px 0;
  max-width: 500px;
  border: solid 2px #fa4641;
  padding: 30px 10px;
  text-align: center;
  line-height: 1.2;
  font-size: 17px;
  font-weight: bold;
  color: #fa4641;
}
@media screen and (min-width:769px) {
  .account_reserve__empty {
    margin: 30px auto 0;
  }
}

.account_reserve__article {
  margin: 30px 0 0;
  padding-bottom: 30px;
  border-bottom: solid 7px #b3b3b3;
}
.account_reserve__article_date {
  margin: 0 10px 6px;
  font-size: 1.2rem;
  color: #6e6e6e;
  text-align: right;
  line-height: 1.2;
}
@media screen and (min-width:769px) {
  .account_reserve__article_date {
    margin-right: 0;
  }
}

.account_reserve__article_status {
  padding: 13px 5px 10px;
  background: #fdd700;
  text-align: center;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: bold;
}

[data-account_reserve_status=status2] .account_reserve__article_head { border-top: solid 9px #1e84dd; }
[data-account_reserve_status=status3] .account_reserve__article_head { border-top: solid 9px #1e84dd; }
[data-account_reserve_status=status1] .account_reserve__article_status { background: #fdd700;}
[data-account_reserve_status=status2] .account_reserve__article_status { display: none;}
[data-account_reserve_status=status3] .account_reserve__article_status { display: none;}
[data-account_reserve_status=status4] .account_reserve__article_status { background: #348933; color:#fff; }
[data-account_reserve_status=status5] .account_reserve__article_status { background: #a14c9c; color:#fff; }
[data-account_reserve_status=status6] .account_reserve__article_status { background: #c63e3e; color:#fff; }
[data-account_reserve_status=status7] .account_reserve__article_status { background: #20adaf; color:#fff; }
[data-account_reserve_status=status8] .account_reserve__article_status { background: #fdd700;}
[data-account_reserve_status=status8] .account_reserve__article_status small { color: #ff0000;}

.account_reserve__article_status small {
  font-size: 0.75em;
  display: inline-block;
  margin-top: 7px;
}
.account_reserve__article_head {
  display: flex;
  position: relative;
}
.account_reserve__article_head_img {
  width: 32vw;
  flex-shrink: 0;
}
.account_reserve__article_head_img img {
  height: 100%;
  object-fit: cover;
}
.account_reserve__article_head_txt {
  width: 68vw;
}
@media screen and (min-width:769px) {
  .account_reserve__article_head_img {
    position: absolute;
    width: 240px;
    height: 208px;
    top: 0;
    left: 0;
  }
  .account_reserve__article_head_txt {
    width: calc(100% - 240px);
    margin-left: 240px;
  }
}

.account_reserve__article_head_txt_date {
  padding: 13px 5px 10px 13px;
  background: #d6ecff;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: bold;
}
.account_reserve__article_head_txt_date small {
  font-size: 1.125em;
}

.account_reserve__article_head_txt_ship {
  padding: 15px 5px 16px 13px;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: bold;
}
.account_reserve__article_head_txt_ship small {
  font-size: 0.76em;
  font-weight: normal;
  white-space: nowrap;
}
.account_reserve__article_head_txt_ship a {
  text-decoration: underline;
}
@media screen and (min-width:769px) {
  .account_reserve__article_head_txt_ship {
    padding-bottom: 13px;
  }
  .account_reserve__article_head_txt_ship a:hover {
    text-decoration: none;
  }
}

.account_reserve__article_body {
  padding: 10px 14px 15px;
  background: #f2f3f5;
  border-bottom: solid 1px #d3d5db;
}
@media screen and (min-width:769px) {
  .account_reserve__article_body {
    min-height: 117px;
  }
}


.account_reserve__article_body_plan {
  position: relative;
  display: flex;
  align-items: center;
}
.account_reserve__article_body_plan::before {
  content: attr(data-account_reserve_plan);
  display: block;
  color: #fff;
  border-radius: 50%;
  width: 4.1rem;
  height: 4.1rem;
  text-align: center;
  line-height: 4.1rem;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .account_reserve__article_body {
    width: calc(100% - 240px);
    margin-left: 240px;
  }
  .account_reserve__article_body_plan::before {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
}
.account_reserve__article_body_plan[data-account_reserve_plan=乗合]::before {
  background: #27c277;
}
.account_reserve__article_body_plan[data-account_reserve_plan=仕立]::before {
  background: #fb8a19;
}
.account_reserve__article_body_plan_txt {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: bold;
  flex-grow: 1;
  margin: 0 8px;
}
.account_reserve__article_body_plan_num {
  padding: 2px 6px 2px;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: bold;
  white-space: nowrap;
  border: solid 2px #333;
  border-radius: 5px;
}
.account_reserve__article_body_plan_num span {
  font-size: 1.3em;
}
@media screen and (min-width: 769px) {
  .account_reserve__article_body_plan_num {
    padding-top: 4px;
  }
}

.account_reserve__article_body_btn {
  display: flex;
  justify-content: center;
  margin-top: 7px;
}
.account_reserve__article_body_btn_detail {
  flex-shrink: 0;
}
.account_reserve__article_body_btn_detail a {
  display: inline-block;
  padding: 0.7em 1em 0.6em;
  margin: 0 3px;
  background: #f9f9fa;
  border: solid 2px #d7dae0;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
  color: #45474c;
}
.account_reserve__article_body_btn_change {
  flex-shrink: 0;
}
.account_reserve__article_body_btn_change a {
  display: inline-block;
  padding: 0.7em 1em 0.6em;
  margin: 0 3px;
  background: #d7dae0;
  border: solid 2px #d7dae0;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
  color: #45474c;
}
.account_reserve__article_body_btn_cancel {
  flex-shrink: 0;
}
.account_reserve__article_body_btn_cancel a {
  display: inline-block;
  padding: 0.7em 1em 0.6em;
  margin: 0 3px;
  background: #d7dae0;
  border: solid 2px #d7dae0;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
  color: #45474c;
}
.account_reserve__article_body_btn_notice {
  margin: 2px 5px 0;
  color: #fa4641;
  font-size: 1.2rem;
  line-height: 1.33;
}
.account_reserve__article_body_btn_aten {
  margin: 2px 5px 0;
  color: #fa4641;
  font-size: 1.2rem;
  line-height: 1.33;
}

.account_reserve__article_body_pay {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  align-content: flex-start;
}
.account_reserve__article_body_pay_item {
  background: #fff;
  padding: 3px 4px 3px 4px;
  border-radius: 2px;
  margin: 14px 0 0 0;
  border: #c4c4c4 1px solid;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 26px;
  overflow: hidden;
}
.account_reserve__article_body_pay_item i {
  flex-shrink: 0;
  margin-right: 4px;
}
.account_reserve__article_body_pay_item i img {
  width: 17px;
}
.account_reserve__article_body_pay_item em {
  font-size: 1.2rem;
  font-weight: normal;
  margin: 1px 0 0 0;
}
.account_reserve__article_body_pay_item em span {
  color: #fa4641;
  font-weight: bold;
}


.account_reserve__article_btn {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.account_reserve__article_btn_tel_txt,
.account_reserve__article_btn_map_txt {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 5px;
  color: #1275cc;
}
.account_reserve__article_btn_map_txt {
  color: #6a7b9e;
}

.account_reserve__article_btn_map a {
  display: inline-block;
  padding: 0.7em 1.1em 0.6em;
  margin: 0 6px;
  background: #6a7b9e;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}
.account_reserve__article_btn_map a span {
  position: relative;
  padding-left: 2.5em;
  display: inline-block;
  font-weight: bold;
}
.account_reserve__article_btn_map a span::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 2.1em;
  height: 2.1em;
  background: url("/img/account/icon_map_w.svg") no-repeat center center;
  background-size: contain;
}

.account_reserve__article_btn_tel a {
  display: inline-block;
  padding: 0.7em 1em 0.6em 0.5em;
  margin: 0 7px;
  background: #1e84dd;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}
.account_reserve__article_btn_tel a span {
  position: relative;
  padding-left: 1.75em;
  display: inline-block;
  font-weight: bold;
}
.account_reserve__article_btn_tel a span::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1.68em;
  height: 1.68em;
  background: url("/img/account/icon_tel_w.svg") no-repeat center center;
  background-size: contain;
}

.account_reserve__article_body_point {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 7px;
}

.account_reserve__article_body_point_num {
  padding: 0.4em 0.4em 0.3em;
  margin: 0 3px;
  background: #fff;
  border: solid 2px #fa4641;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fa4641;
  white-space: nowrap;
}
.account_reserve__article_body_point_num span {
  font-size: 2rem;
  font-family: Arial, Helvetica, sans-serif;
}
.account_reserve__article_body_point_txt {
  margin: 0 4px;
  font-size: 1.4rem;
  color: #fa4641;
  line-height: 1.2;
}
.account_reserve__article_body_point_txt span {
  font-weight: bold;
}

.account_reserve__article_body_point_remarks {
  margin-top: 12px;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
}
.account_reserve__article_body_point_remarks a {
  text-decoration: underline;
}
@media screen and (min-width:769px) {
  .account_reserve__article_body_point_remarks a:hover {
    text-decoration: none;
  }
}

.account_reserve__article_review {
  text-align: center;
  margin-top: 16px;
  margin-right: 65px;
}
.account_reserve__article_review_txt span {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.43;
  font-weight: bold;
  margin-bottom: 7px;
}
@media print, screen and (min-width: 769px) {
  .account_reserve__article_review {
    margin-right: 0;
  }
  .account_reserve__article_review_txt span {
    font-size: 16px;
  }
}

.account_reserve__article_review_txt span::before,
.account_reserve__article_review_txt span::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 1.3em;
  background: #000;
  top: 0;
}
.account_reserve__article_review_txt span::before {
  left: -0.9em;
  transform: rotate(-15deg);
}
.account_reserve__article_review_txt span::after {
  right: -0.5em;
  transform: rotate(15deg);
}
.account_reserve__article_review_btn {
  display: inline-block;
  padding: 1.67em 0;
  margin: 0;
  width: calc(100% - 60px);
  max-width: 210px;
  background: #fad70c;
  border-radius: 100px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
}
.account_reserve__article_review_btn a {
  position: relative;
  display: inline-block;
  font-size: 1.7rem;
  color: #000;
}
.account_reserve__article_review_btn a span {
  position: relative;
  padding-left: 2em;
}
.account_reserve__article_review_btn a span::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1.56em;
  height: 1.56em;
  background: url(/img/account/icon_star.svg) no-repeat;
  background-size: contain;
}
@media print, screen and (min-width: 769px) {
  .account_reserve__article_review_btn a {
    font-size: 17px;
  }
}

.account_reserve__article_review + .account_reserve__article_delete {
  margin-top: -16px;
}

.account_reserve__article_delete {
  margin: 8px 10px 0;
  text-align: right;
}
@media screen and (min-width:769px) {
  .account_reserve__article_delete {
    margin-right: 0;
  }
}

.account_reserve__article_delete span {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.2;
  padding-left: 0.75em;
}
.account_reserve__article_delete span::before,
.account_reserve__article_delete span::after {
  content: "";
  position: absolute;
  display: block;
  top: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 1em;
  background: #1a1a1a;
}
.account_reserve__article_delete span::before {
  transform: translateX(-50%) rotate(45deg);
}
.account_reserve__article_delete span::after {
  transform: translateX(-50%) rotate(-45deg);
}


.account_reserve__select {
  position: relative;
  margin: 30px auto 0;
  border: solid 1px #4d4d4d;
  border-radius: 5px;
  width: 140px;
  text-align: center;
}
.account_reserve__select::after {
  content: "";
  position: absolute;
  display: block;
  top: 0.4em;
  bottom: 0;
  right: 29px;
  margin: auto;
  width: 0.4em;
  height: 0.4em;
  border: 0.4em solid transparent;
  border-top: 0.6em solid #1a1a1a;
}
.account_reserve__select select {
  padding: 11px 25px 11px 15px;
  font-size: 1.5rem;
  color: #1a1a1a;
  text-align: center;
}



/* 会員登録ページ
---------------------------------- */

.account_register__applink {
  margin: 0 15px 15px;
}
@media screen and (min-width:769px) {
  .account_register__applink {
    margin: 0 -90px 20px;
    pointer-events: none;
  }
}
.account_register__applink a {
}
.account_register__applink picture {
}
.account_register__applink picture img,
.account_register__applink picture source {
}

.account_register__feature {
  margin: 0 15px 15px;
}
@media screen and (min-width:769px) {
  .account_register__feature {
    margin: 0 -90px 20px;
  }
}
.account_register__feature picture {
}
.account_register__feature picture img,
.account_register__feature picture source {
}

.account_register__pointup {
  margin: 20px 15px 15px;
}
@media screen and (min-width:769px) {
  .account_register__pointup {
    margin: 25px -90px 25px;
  }
}
.account_register__pointup picture {
}
.account_register__pointup picture img,
.account_register__pointup picture source {
}

.account_register__getpoint500 {
  text-align: center;
  margin: 3px 0 13px;
}
.account_register__getpoint500 img {
  width: 290px;
}
@media screen and (min-width:769px) {
  .account_register__getpoint500 img {
    width: 340px;
  }
}

.account_register__entrybox {
  background: #c40000;
  margin-top: 20px;
  margin-bottom: 35px;
  padding: 0 0 35px;
}
.account_register__appbox + .account_register__entrybox {
    background: #0048a1;
}
.account_register__entrybox_header {
  padding: 8px 0 8px;
}
.account_register__entrybox_header_getpoint {
  text-align: center;
  color: #fff800;
  margin-bottom: -.7em;
  font-weight: bold;
  font-size: 18px;
}
.account_register__entrybox_header_getpoint em {
  font-style: normal;
  font-size: 1.5em;
  font-weight: bold;
}
.account_register__entrybox_header_ttl {
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  white-space: nowrap;
  font-family: "Hiragino Sans", "sans-serif";
}
.account_register__entrybox_header_ttl em {
  font-style: normal;
  font-size: 1.42em;
  font-weight: bold;
}
.account_register__entrybox_body {
  background: #fff;
  margin: 0 15px;
  padding: 25px 20px;
}
@media screen and (min-width:769px) {
  .account_register__entrybox_body {
    padding: 35px 70px 45px;
  }
}

.account_register__entrybox_lead {
  text-align: center;
  font-weight: bold;
  line-height: 1.59 !important;
  margin: 0 0 23px;
}
.account_register__entrybox_lead em {
  font-style: normal;
  font-weight: bold;
  color: #fa4641;
}

.account_register__entrybox_error {
  font-size: 16px;
  display: block;
  text-align: center;
  color: #E50000;
  font-weight: bold;
  background: #ffdcd9;
  padding: 12px 5px 11px;
  width: calc(100% - 20px);
  margin: 0 auto 25px;
  line-height: 1.3 !important;
  border-radius: 3px;
}
.account_register__entrybox_error:empty {
  display: none;
}

.account_register__entrybox_field {
  position: relative;
  width: calc(100% + 20px);
  margin: 0 0 0 -10px;
}
@media screen and (min-width:769px) {
  .account_register__entrybox_field {
    width: 100%;
    margin: 0;
  }
}

.account_register__entrybox_field input {
  width: 100%;
  padding: 15px 13px 13px 18px !important;
  border: #1a1a1a 2px solid !important;
  font-size: 18px !important;
  border-radius: 4px;
  box-sizing: border-box !important;
  background: #ffffdb !important;
  box-shadow: inset 2px 2px 6px 0 rgba(0,0,0,0.1);
}
.account_register__entrybox_field label {
  position: absolute;
  display: inline-block;
  top: 1px;
  bottom: 0;
  left: 22px;
  font-size: 18px;
  line-height: 1 !important;
  height: 1em;
  margin: auto;
  transform-origin: left;
  transition: .2s;
  color: #999;
  pointer-events: none;
}

.account_register__entrybox_field input::placeholder {
  color: transparent;
}

.account_register__entrybox_field i {
  display: block;
  position: absolute;
  top: 1px;
  bottom: 0;
  left: 13px;
  margin: auto;
  width: 2px;
  height: 1.8em;
  background-color: #1e77d7;
  z-index: 5;
  animation-duration: 2.5s;  
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: flash;
  animation-name: flash;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.account_register__entrybox_field input:not(:placeholder-shown),
.account_register__entrybox_field input:focus {
  background: #fff !important;
  border-color: #1e77d7 !important;
  box-shadow: none;
}
.account_register__entrybox_field input:not(:placeholder-shown) + label,
.account_register__entrybox_field input:focus + label {
  transform: translate(-5px,-32px) scale(.75);
  background: #fff;
  padding: 0 2px;
  color: #1e77d7;
}
.account_register__entrybox_field input:not(:placeholder-shown) ~ i,
.account_register__entrybox_field input:focus ~ i {
  display: none;
}

.account_register__entrybox_notice {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5 !important;;
  color: #1b5088;
  font-weight: bold;
}
.account_register__entrybox_notice a {
  color: #1b5088 !important;
  text-decoration: underline;
}
.account_register__entrybox_notice a:hover {
  text-decoration: none;
}

.account_register__entrybox_submit {
  display: block;
  background: #3283d9;
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 320px;
  margin: 15px auto 20px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 6px;
  padding: 12px 0 10px;
  color: #fff;
}

.account_register__entrybox_remarks {
  font-size: 14px;
}
.account_register__entrybox_remarks em {
  font-style: normal;
  font-weight: bold;
  color: #fa4641;
}
.account_register__entrybox_remarks b {
  font-weight: bold;
}


.account_register__appbox {
  background: #c40000;
  margin: 20px 0 35px;
  padding: 25px 20px 38px;
}
@media screen and (min-width:769px) {
  .account_register__appbox {
    padding: 30px 30px 40px;
  }
}
.account_register__appbox_ttl {
  margin: 0 7px 18px;
}
.account_register__appbox_ttl img {
  width: 100%;
  height: auto;
}
@media screen and (min-width:769px) {
  .account_register__appbox_ttl {
    margin: 0 50px 25px;
  }
}
.account_register__appbox_body {
  background: #fff;
  padding: 50px 13px 67px;
  position: relative;
}
@media screen and (min-width:769px) {
  .account_register__appbox_body {
    padding: 48px 0 50px 250px;
    min-height: 170px;
  }
}

.account_register__appbox_txt_sp {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  line-height: 1.54 !important;
}
.account_register__appbox_txt_sp span{
  color: #fa4641;
}

.account_register__appbox_txt_pc {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.54 !important;
}
.account_register__appbox_txt_pc span{
  color: #fa4641;
}

.account_register__appbox_btn {
  margin-bottom: 10px;
}

.account_register__appbox_qr {
  position: absolute;
  top: 48px;
  left: 45px;
  width: 175px;

}

.account_register__appbox_bnr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 5px;
}
.account_register__appbox_bnr li {
  flex-shrink: 0;
}
.account_register__appbox_bnr li:nth-of-type(1) {
  width: calc( 47% - 6px );
}
.account_register__appbox_bnr li:nth-of-type(2) {
  width: calc( 53% - 6px );
}
@media screen and (min-width:769px) {
  .account_register__appbox_bnr {
    justify-content: start;
    margin: 0;
  }
  .account_register__appbox_bnr li:nth-of-type(1) {
    width: 136px;
    margin-right: 12px;
  }
  .account_register__appbox_bnr li:nth-of-type(2) {
    width: 154px;
  }
}

/*会員に釣り船から連絡がないときに釣割に問合わせる画面*/
/*rainbow*/
.account_demand_contact__topbar_rainbow {
  background: linear-gradient(315deg, #FA4641 0%, #FC9A0F 25%, #36C980 50%, #419EF0 75%, #B958EE 100%);
  height: 6px;
}
.account_demand_contact__action {
  padding: 15px 0 30px;
}
.account_demand_contact__action_block {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 17px;
}
.account_demand_contact__action_logo {
  text-align: center;
}
.account_demand_contact__action_logo img {
  width: auto;
  height: 38px;
}
.account_demand_contact__action_pagetitle_finish {
  text-align: center;
  margin: 20px 0 15px;
}
.account_demand_contact__action_pagetitle_finish span {
  font-size: 6.3vw;
  font-weight: bold;
  color: #fa4641;
  padding: 12px 15px 11px;
  background: #ffdcdb;
  display: inline-block;
  border-radius: 5px;
  line-height: 1.3;
}
@media screen and (min-width:769px) {
  .account_demand_contact__action_pagetitle_finish span {
    font-size: 3rem;
  }
}
.account_demand_contact__action_pagetitle_asked {
  text-align: center;
  margin: 25px 0 19px;
}
.account_demand_contact__action_pagetitle_asked span {
  font-size: 7.3vw;
  font-weight: bold;
  color: #1dab0f;
  display: inline-block;
}
@media screen and (min-width:769px) {
  .account_demand_contact__action_pagetitle_asked span {
    font-size: 4rem;
  }
}
.account_demand_contact__action_pagetitle_expire {
  text-align: center;
  margin: 100px 0 50px;
}
.account_demand_contact__action_pagetitle_expire span {
  font-size: 7.3vw;
  font-weight: bold;
  display: inline-block;
  line-height: 1.5;
}
@media screen and (min-width:769px) {
  .account_demand_contact__action_pagetitle_expire span {
    font-size: 3.6rem;
  }
}
.account_demand_contact__action_txt {
  margin: 12px 2px 0;
  line-height: 1.6;
  font-size: 4.7vw;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (min-width:769px) {
  .account_demand_contact__action_txt {
    font-size: 2.0rem;
  }
}
.account_demand_contact__action_txt strong {
  color: #fa4641;
  font-weight: bold;
}
.account_demand_contact__action_txt em {
  color: #1dab0f;
  font-weight: bold;
}
.account_demand_contact__action_sup {
  margin: 12px 2px 0;
  padding: 13px 0 0;
  line-height: 1.35;
  font-size: 1.4rem;
  border-top: rgba(0,0,0,.5) 1px dashed;
  text-align: center;
}
@media screen and (min-width:769px) {
  .account_demand_contact__action_sup {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.account_demand_contact__action_sup strong {
  color: #1b8011;
  color: #fa4641;
  font-weight: bold;
}
.account_demand_contact__action_plan {
  margin: 13px 0 0;
  background: #dcf3fc;
  padding: 13px 13px;
  border: #a9bbc2 1px solid;
  border-radius: 5px;
}
.account_demand_contact__action_plan_table {
  width: 100%;
  table-layout: fixed;
}
.account_demand_contact__action_plan_table > tbody > tr {
}
.account_demand_contact__action_plan_table > tbody > tr > th,
.account_demand_contact__action_plan_table > tbody > tr > td {
  border: #a9bbc2 1px solid;
  border-left: none;
  border-right: none;
  padding-top: 9px;
  padding-bottom: 8px;
  box-sizing: content-box;
}
.account_demand_contact__action_plan_table > tbody > tr:first-of-type > th,
.account_demand_contact__action_plan_table > tbody > tr:first-of-type > td {
  border-top: none;
  padding-top: 0;
}
.account_demand_contact__action_plan_table > tbody > tr:last-of-type > th,
.account_demand_contact__action_plan_table > tbody > tr:last-of-type > td {
  border-bottom: none;
  padding-bottom: 0;
}
.account_demand_contact__action_plan_table > tbody > tr > th {
  font-size: 1.3rem;
  width: 4.7em;
  padding-left: 2px;
  padding-right: 5px;
}
.account_demand_contact__action_plan_table > tbody > tr > td {
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 0;
  padding-right: 2px;
  line-height: 1.3;
}
.account_demand_contact__action_note {
  margin: 14px 2px 0;
  line-height: 1.5;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width:769px) {
  .account_demand_contact__action_note {
    font-size: 1.8rem;
    line-height: 1.55;
  }
}
.account_demand_contact__action_note strong {
  color: #1b8011;
}
.account_demand_contact__action_call {
  margin: 15px 5px 0;
  position: relative;
}
.account_demand_contact__action_call form {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.account_demand_contact__action_call button {
  display: block;
  background: #fa4641;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 20px 35px;
  border-radius: 100px;
  width: 100%;
  line-height: 1.4;
}
@media screen and (min-width:769px) {
  .account_demand_contact__action_call button {
    font-size: 2.5rem;
  }
}
.account_demand_contact__action_call button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%) rotate(-135deg);
  border: 5px solid #fff;
  border-top: none;
  border-right: none;
}
.account_demand_contact__action_call button[disabled] {
  background: #999;
  pointer-events: none;
}
.account_demand_contact__action_close {
  margin: 30px 35px 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.account_demand_contact__action_close button {
  display: block;
  background: #ebebeb;
  font-size: 1.6rem;
  text-align: center;
  padding: 20px 15px;
  border-radius: 100px;
  border: #666666 1px solid;
  width: 100%;
  color: inherit;
}





