/*********************/
/*ヘッダー*/
/*********************/
header.mypage-header {
  margin-top: 0;
  width: 100%;
  height: auto;
  text-align: center;
  position: relative;
  background-color: black;
}
div.header-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-size: 12px;
  text-align: center;
  position: relative;
  z-index: 1;
}
header.mypage-header nav.header-item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-right: auto;
  line-height: unset;
}
div.header-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
div.header-logo a img {
  width: auto;
  height: 40px;
  margin: 12px 0;
}
.current-tab-name {
  color: #fff;
  position: relative;
  font-weight: bold;
}
.current-tab-name::before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}
div.mypage-header-logout {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
}
div.header-logout {
  width: 150px;
  height: 40px;
  background-color: white;
  position: relative;
  top: unset;
  right: unset;
}
div.header-logout a {
  text-decoration: none;
}
div.header-logout p {
  line-height: 40px;
  font-weight: bold;
  position: relative;
  color: black;
}
div.header-logout-person {
  position: absolute;
  left: 15px;
  top: 7px;
  width: 24px;
}
div.header-logout-person img {
  width: 100%;
  right: unset;
}
div.header-logout-arrow {
  position: absolute;
  left: 120px;
  top: 11px;
  width: 10px;
}
div.header-logout-arrow img {
  width: 100%;
  right: unset;
}
.header-logout:hover {
  outline: 4px solid #ffeb00;
  outline-offset: -4px;
}
header.mypage-header p.current-tab-name {
  font-size: 1.2rem;
  border-left: unset;
  padding-left: 0;
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  div.header-logout {
    width: 97px;
  }
  div.header-logout p {
    font-size: 1.1rem;
    margin-left: 3px;
  }
  div.header-logout-person {
    left: 5px;
    top: 12px;
    width: 15px;
  }
  div.header-logout-arrow {
    left: 82px;
    top: 12px;
    width: 7px;
  }
  header.mypage-header.smart-header p.current-tab-name {
    text-align: left;
    line-height: normal;
  }
}

/*********************/
/*フッター*/
/*********************/
footer#new-footer{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 5px 0;
  font-size: 1.2rem;
  color: white;
  background-color: #000;
}
#new-footer .wrapper {
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
#new-footer .wrapper ul {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
#new-footer .wrapper ul li {
  margin: 0;
  padding: 0 1em;
  text-align: center;
  list-style: none;
}
#new-footer .wrapper ul li:not(:last-of-type) {
  border-right: 2px solid #FFFFFF;
}
#new-footer .wrapper ul li a {
  color: #FFFFFF;
  text-decoration: none;
}
.privacy-mark {
  box-sizing: initial;
  width: 75px;
  padding: calc(75px / 4);
}
.privacy-mark img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #new-footer .wrapper {
    width: calc(100% - 115px);
    margin-left: 0;
  }
  #new-footer .wrapper ul {
    justify-content: center;
    row-gap: 1em;
    margin: 0 0 10px 35px;
    padding: 0;
  }
  #new-footer .wrapper ul li {
    padding: 0 0.5rem;
  }
  #new-footer .wrapper ul li:first-of-type {
    padding: 0 0.5rem 0 0;
  }
  #new-footer .wrapper ul li:nth-of-type(3) {
    border: none;
  }
  #new-footer .wrapper small {
    margin-left: 3rem;
  }
}

/*********************/
/*背景色の指定*/
/*********************/
body {
  background: #282828;
}
/*********************/
/*グローバルナビ*/
/*********************/
div.mypage-nav-wrapper {
  width: 100%;
  background-color: #282828;
  padding-bottom: 5px;
}
div.mypage-nav {
  max-width: 980px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  gap: 15px;
}
div.mypage-nav a {
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  text-align: center;
  color: white;
  font-weight: bold;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
div.mypage-nav-item {
  width: 100%;
  height: 60px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
.mypage-nav-item.inactive {
  transition: all 0.5s ease-out;
}
.mypage-nav-item.inactive p {
  transition: all 0.5s ease-out;
}
div.mypage-nav a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #FFEB00;
  transform: scale(1, 1);
  transform-origin: center top;
  transition: transform .3s;
  z-index: 1;
}
div.mypage-nav-arrow {
  display: none;
}

@media screen and (min-width: 768px) {
  div.mypage-nav a:hover::after {
    transform: scale(0, 1);
  }
  div.mypage-nav a.first-half.sp{
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  div.mypage-nav {
    max-width: 680px;
    gap: 10px;
  }
  .mypage-nav-item p {
    font-size: 1.2rem;
  }
  .mypage-nav .button-triangle.tab-open {
    margin-left: 5px;
  }
}
@media screen and (max-width: 767px) {
  div.mypage-nav-wrapper {
    overflow: hidden;
    position: relative;
  }
  div.mypage-nav {
    width: 200vw;
    margin-left: 0;
    max-width: initial;
    padding-top: 5px;
    gap: 0;
  }
  div.mypage-nav a {
    font-size: 1.16rem;
    font-weight: 400;
    margin: 0 5px;
  }
  div.mypage-nav-arrow {
    position: absolute;
    display: block;
    width: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  div.mypage-nav-arrow img {
    width: 100%;
  }
  div.mypage-nav-arrow-right {
    right: 5px;
    z-index: 1;
  }
  div.mypage-nav-arrow-left {
    left: 5px;
    z-index: 1;
  }
  div.mypage-nav-arrow-hidden {
    display: none;
  }
  div.mypage-nav-moved {
    margin-left: -100%;
  }
  .mypage-nav .button-triangle.tab-open {
    margin-left: 5px;
  }
}

/*********************/
/*コンテンツ幅*/
/*********************/
.mypage-section-container {
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1280px) {
  div.header-wrapper {
    max-width: 680px;
  }
  div.mypage-section-container {
    max-width: 680px;
  }
}
@media screen and (max-width: 767px) {
  div.mypage-nav a.first-half.sp{
    display: "";
  }
  div.header-contents-width {
    padding: 0 5%;
  }
  div.header-wrapper {
    max-width: 100%;
  }
  div.mypage-section-container {
    max-width: 100%;
  }
}

/*********************/
/*コンテンツ部分*/
/*********************/
div.mypage-container {
  width: 100%;
  min-height: calc(100vh - 66px - 75px - 124.5px);
  overflow: hidden;
  padding: 0 0 50px;
  box-sizing: border-box;
  position: relative;
}
div.mypage-container.return-available {
  padding: 0 0 100px;
}
.mypage-main-content {
  position: relative;
  z-index: 1;
}
div.mypage-content-box-inner {
  margin: auto 100px;
  padding-top: 35px;
}
div.mypage-content-box {
  background-color: #3C3C3C;
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 35px;
  z-index: 1;
  margin-top: 30px;
}
div.mypage-content-box.first-box {
  margin-top: 0;
}
div.mypage-content-box-title {
  padding-bottom: 20px;
}
div.mypage-content-box-title p {
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  line-height: 25px;
}
div.mypage-content-box-subtitle p {
  font-size: 1.8rem;
}
div.mypage-content-box-item + div.mypage-content-box-item {
  margin-top: 20px;
}
div.mypage-content-box-inner p.data_no_usage {
  font-size: 1.3em;
  font-weight: bold;
  padding-left: 10px;
}
div.mypage-content-box-inner p.data_no_usage_sub {
  padding-left: 10px;
}

@media (min-width: 768px) and (max-width: 1280px) {
  div.mypage-content-box-inner {
    margin: auto 50px;
  }
}

@media screen and (max-width: 767px) {
  div.mypage-container {
    min-height: calc(100vh - 64px - 65px - 124.5px);
    padding: 0 5% 50px;
  }
  div.mypage-container.return-available {
    padding: 0 5% 70px;
  }
  div.mypage-content-box-inner {
    margin: auto 10px;
    padding: 30px 0 0;
  }
  div.mypage-content-box-title {
    padding-bottom: 15px;
  }
  div.mypage-content-box-title p {
    font-size: 1.4em;
  }
  div.mypage-content-box-subtitle p {
    font-size: 1.6rem;
  }
}

/*********************/
/*色の指定*/
/*********************/
.bg-plain-dark-gray {
  background-color: #282828;
}
a.pink-link {
  color: #DB0066;
}
a.yellow-link {
  color: #FFEB00;
}

/*********************/
/*見出し・リード文*/
/*********************/
div.mypage-title-area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0;
}
div.mypage-title-area-icon {
  width: 150px;
  margin: 0 15px 0 0;
  padding: 0;
  text-align: center;
}
div.mypage-title-area-icon img {
  width: 100px;
  padding-left: 30px;
}
h1.mypage-titile-area-title {
  margin: 0;
  padding: 0;
  font-size: 3rem;
  font-weight: bold;
  color: white;
  text-align: left;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
div.mypage-description {
  text-align: left;
  color: white;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  z-index: 1;
}
div.mypage-description p {
  line-height: 1.5;
}
.mypage-page-icon {
  margin-top: 20px;
}
.saison-wrap div.mypage-title-area-icon {
  width: 150px;
  height: 102px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media screen and (max-width: 1280px) {
  .saison-wrap div.mypage-title-area-icon {
    width: 105px;
    height: 82px;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  div.mypage-title-area-icon {
    width: 105px;
    margin: 0 10px 0 0;
  }
  div.mypage-title-area-icon img {
    width: 80px;
    padding-left: 25px;
  }
  h1.mypage-titile-area-title {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 767px) {
  div.mypage-title-area-icon {
    width: 105px;
    margin: 0 10px 0 0;
  }
  div.mypage-title-area-icon img {
    width: 80px;
    padding-left: 25px;
  }
  h1.mypage-titile-area-title {
    font-size: 2.4rem;
  }
  p.mypage-titile-area-title-sub {
    margin-top: 10px;
    position: relative;
    font-size: 1.8rem;
    color: #fff;
    z-index: 11
  }
  div.mypage-description {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  div.mypage-title-area {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  div.mypage-title-area.mypage-top {
    margin-top: 10px;
  }
}

/*********************/
/*背景装飾文字*/
/*********************/
div.vertical-characters {
  writing-mode: vertical-rl;
  font-family: 'Montserrat bold';
  font-weight: bold;
  font-size: 10rem;
  position: absolute;
  z-index: 0;
  right: 0%;
  white-space: nowrap;
  top: 20px;
  line-height: 90px;
  text-align: center;
  overflow-x: hidden;
}

/*********************/
/*ボタン*/
/*********************/
.button {
  display: flex;
  flex-direction: row-reverse; 
  position: relative;
  margin-top: 35px;
  column-gap: 35px;
}
.button .button-text {
  text-decoration: none;
}
.button-body {
  width: calc((1100px - 250px - 1.5em) / 3);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  background-color: #3c3c3c;
  z-index:2;
  cursor: pointer;
}
.button-body:hover {
  outline: 4px solid #ffeb00;
  outline-offset: -4px;
  transition:0.2s;
}
.button-body p {
  width: 100%;
  color: white;
  position: relative;
  text-align: center;
}
.button-next {
  margin-right: 1em;
  height: 30px;
}
.button-next img{
  height: 45px;
  position: relative;
  bottom: 7px;
}
span.button-triangle {
  color: #fff;
  margin-left: 1em;
}
.button-triangle.tab-open {
  display: inline-block;
  border: none;
  background: url(https://d1q08lkutgkcx2.cloudfront.net/image/icon-new-tab.svg) center 4px no-repeat;
  width: 15px;
  height: 20px;
  transform: translateY(-5%);
  position: relative;
  margin-left: 8px;
}
div.mypage-content-box-inner .button-body p {
  margin: 0;
  text-align: center;
  font-size: 1.45rem;
}
.edit-btns-container {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
.edit-btns-container .button, .edit-btns-container .button:first-child {
  margin-top: 0;
}
.edit-btns-container .button:last-of-type {
  margin-top: 0;
}
.button-in-box .button-body {
  background-color: var(--zeus-subsc-lightgray);
  text-decoration: none;
}
.button-in-box {
  justify-content: end;
}
.button-in-box.button-center {
  justify-content: center;
}
.button-in-box.button-center .button {
  column-gap: 0;
}
.button-text.editpayment-button-hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  div.button{
    display: block;
  }
  .sp-center .button-body {
    margin: 0 auto;
  }
  div.mypage-content-box-inner .button-body {
    max-width: calc((1100px - 250px - 1.5em) / 3);
  }
  .button-in-box {
    justify-content: center;
  }
}

/*********************/
/*MY PAGE TOPボタン*/
/*********************/
.button-back-container {
  width: 980px;
  margin: 0 auto;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.button-back-container a {
  text-decoration: unset;
}
.button-back-container > .button:first-child {
  padding: 0;
}
.button-back {
  width: 150px;
  height: 40px;
  padding: 0;
  box-sizing: border-box;
  justify-content: space-between;
  padding: 0 20px;
}
.button-back p {
  line-height: 1;
  font-size: 1.2rem;
  width: auto;
}
.button-back span.button-triangle {
  margin-left: 0;
}
.button-back span.button-triangle img {
  transform: scale(-1, 1);
  filter: FlipH;
  -ms-filter: "FlipH";
  width: 10px;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .button-back-container {
    width: 680px;
    bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .button-back-container {
    width: 90%;
    bottom: 15px;
  }
  .button-back-container > .button:first-child {
    margin: 0;
  }
  .sp-center .button-body.button-back {
    margin: 0;
  }
}

/*********************/
/*リンク矢印*/
/*********************/
a.link-arrow {
  display: inline-block;
  padding: 2px 20px 2px 0;
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid;
}
a.link-arrow::before {
  content: "";
  border-left: 8px solid ;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*********************/
/*トップページボタン*/
/*********************/
.mypage-top-content .button-body {
  background-color: #666666;
  padding: 15px 20px;
}
.mypage-top-content .button-icon-box {
  width: 70px;
  text-align: center;
}
.mypage-top-content .button-icon-box img {
  width: 100%;
}
.mypage-top-content .button-icon-box img {
  width: 100%;
}
.mypage-top-content .button-icon-box.icon-medium img {
  width: 60px;
}
.mypage-top-content .button-icon-box.icon-small img {
  width: 50px;
}
.mypage-top-content .title-body {
  width: calc(100% - 70px);
  padding-left: 20px;
}
.mypage-top-content .title-body .btn-ttl {
  text-align: left;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
}
.mypage-top-content .title-body .btn-desc {
  text-align: left;
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 5px;
}
.mypage-top-content .button-text {
  text-decoration: none;
}
.mypage-top-content .btn-ttl.tab-open {
  position: relative;
  display: inline;
}
.mypage-top-content .btn-ttl.tab-open::before {
  content: "";
  display: inline-block;
  background: url(https://d1q08lkutgkcx2.cloudfront.net/image/icon-new-tab.svg) center center no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 3px;
  right: -25px;
}
.mypage-top-content .button-body p {
  text-decoration: none;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .mypage-top-content .button-icon-box {
    width: 50px;
  }
  .mypage-top-content .button-icon-box.icon-medium img {
    width: 40px;
  }
  .mypage-top-content .button-icon-box.icon-small img {
    width: 30px;
  }
  .mypage-top-content .title-body {
    width: calc(100% - 50px);
    padding-left: 10px;
  }
  .mypage-top-content .title-body .btn-ttl {
    font-size: 1.6rem;
  }
  .mypage-top-content .button-body {
    padding: 10px 15px;
  }
  .mypage-top-content .title-body .btn-desc {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .mypage-top-content .btn-ttl.tab-open::before {
    width: 12px;
    height: 12px;
    top: 3px;
    right: -20px;
  }
}

@media screen and (max-width: 767px) {
  .mypage-top-btn-flex .button-body {
    flex-direction: column;
    padding: 10px;
    justify-content: unset;
  }
  .mypage-top-content .button-icon-box {
    width: 50px;
    min-height: 60px;
    display: flex;
    justify-content: center;
  }
  .mypage-top-content .button-icon-box.icon-medium img {
    width: 45px;
  }
  .mypage-top-content .button-icon-box.icon-small img {
    width: 40px;
  }
  .mypage-top-content .title-body {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .mypage-top-content .title-body .btn-ttl {
    font-size: 1.2rem;
    text-align: center;
  }
  .mypage-top-content .title-body .btn-desc {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  .mypage-top-content .btn-ttl.tab-open::before {
    width: 12px;
    height: 12px;
    top: 0px;
    right: -20px;
  }
}

/*********************/
/*非活性ボタン　ポップアップ用*/
/*********************/
.btn-disabled-popup {
  opacity: 0.5;
}
.btn-disabled-popup:hover .button-body {
  outline: none;
}
.mypage-nav a.btn-disabled-popup {
  cursor: pointer;
}
.mypage-nav a.btn-disabled-popup:hover::after {
  transform: none;
}

/*********************/
/*送信用ポップアップ*/
/*********************/
.mypage-confirm-dialog {
  max-width: 400px !important;
  position: fixed !important;
  background-color: #FFEB00 !important;
  margin: auto !important;
  z-index: 1000000000002 !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  box-shadow: 15px 15px 25px 0 rgb(0 0 0 / 20%) !important;
}
.ui-dialog {
  text-align: center;
}
.ui-widget {
  font-family:  "Montserrat", "Noto Sans JP", sans-serif !important;
}
.ui-widget-header {
  border: 0px !important;
}
.mypage-confirm-dialog,
.ui-draggable .ui-dialog-titlebar,
.ui-dialog .ui-dialog-title {
  background-color: #FFFFFF !important;
}
.ui-dialog .ui-dialog-title {
  width: 100% !important;
  font-weight: 900 !important;
  white-space: unset !important;
  font-size: 25px !important;
  margin-top: 0 !important;
  border-bottom: 3px solid #666666;
  padding-bottom: 25px;
  margin: 0 !important;
}
.ui-widget-content {
  border: none !important;
}
.ui-widget.ui-widget-content {
  border-radius: unset !important;
  border: solid 6px #FFEB00 !important;
  max-width: unset !important;
  padding: 30px 40px !important;
  box-sizing: border-box;
  width: 460px !important;
}
.ui-dialog .ui-dialog-buttonpane {
  height: unset !important;
  margin: 30px auto 0px auto !important;
  width: fit-content;
  padding: 0 !important;
  border-bottom-right-radius: 15px !important;
  border-bottom-left-radius: 15px !important;
  max-width: 400px !important;
}
.ui-draggable .ui-dialog-titlebar {
  padding: 0 !important;
  margin: 0px auto;
  width: 100%;
}
.ui-dialog .ui-dialog-content {
  padding: 0 !important;
  margin-top: 25px !important;
  margin: 0px auto;
  width: 75%;
}
.mypage-popup-data-pop-second-text-margin {
  margin: 0 !important;
  font-size: 16px !important;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  text-align: center;
}
button.ui-button.ui-dialog-titlebar-close {
  display: none;
}
.ui-dialog .ui-dialog-buttonpane button {
  margin: 0 !important;
  width: 130px !important;
}
.ui-dialog .ui-dialog-buttonpane button.dialog-btn-neg {
  height: 44px !important;
  margin-right: 30px !important;
  background: #3C3C3C !important;
  border: unset !important;
  color: #FFF !important;
  padding: .3em 1em .4em 2.2em;
  outline: 0;
  border-radius: 0 !important;
  font-size: 15px !important;
}
.ui-dialog .ui-dialog-buttonpane button.dialog-btn-red {
  height: 44px !important;
  background: #FFEB00 !important;
  border-radius: 0 !important;
  border: unset !important;
  padding: .3em 2.2em .4em 1em;
  color: black !important;
  outline: 0;
  font-weight: bold !important;
  font-size: 15px !important;
}
.ui-dialog .ui-dialog-buttonpane button.dialog-btn-neg:focus-visible,
.ui-dialog .ui-dialog-buttonpane button.dialog-btn-red:focus-visible {
  outline: 2px solid #000;
}
button.dialog-btn-neg::before {
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 10px solid #FFF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
button.dialog-btn-red::before {
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
button.dialog-btn-neg:hover {
  font-weight: normal !important;
  opacity: 0.7;
  transition: 0.2s linear;
}
button.dialog-btn-red:hover {
  background: #FFEB00 !important;
  color: #000 !important;
  font-weight: bold !important;
  opacity: 0.7;
  transition: 0.2s linear;
}
@media screen and (max-width: 767px) {
  .ui-widget.ui-widget-content {
    padding: 30px 3% !important;
    width: 90% !important;
  }
  .ui-dialog .ui-dialog-title {
    font-size: 20px !important;
  }
  .ui-dialog .ui-dialog-buttonpane button.dialog-btn-neg {
    margin-right: 10px !important;
  }
}

/*********************/
/*パスワード表示切替アイコン*/
/*********************/
.mypage-input {
  position: relative;
}
.mypage-input span.input-eye,
span.field-icon.field-icon-mypage.input-eye {
  position: absolute;
  top: 12px;
  right: 10px;
  display: inline-block;
  width: 14px;
  height: 14px;
}
.mypage-input span.input-eye i {
  color: #000;
}

/*********************/
/*入力フォーム*/
/*********************/
input,
select {
  margin: 0;
  height: 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
input {
  padding: 5px 10px;
  box-sizing: border-box;
}
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-family:  "Montserrat", "Noto Sans JP", sans-serif !important;
}
input.mypage-login-input-border {
  box-sizing: border-box;
  width: 100%;
  padding: 0.3em 1.5rem;
  margin: 0;
  letter-spacing: 1px;
  border: none;
  height: 50px;
  font-size: 1.5rem;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
}
select:focus-visible,
input.mypage-input-border:focus-visible,
input.mypage-login-input-border:focus-visible {
  outline: 3px solid var(--zeus-subsc-yellow);
  border: none;
}
.table-base tr.attention-remark th,
.table-base tr.attention-remark td {
  height: auto;
  padding-top: 0;
}
p.mypage-attention-text {
  font-size: 1.2rem;
}
.mypage-attention-address-btn p.mypage-attention-text {
  display: inline-block;
  padding-right: 15px;
  position: relative;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}
.mypage-attention-address-btn p.mypage-attention-text::before {
  content: "";
  border-top: 9px solid #fff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: none;
  position: absolute;
  right: 0px;
  top: 5px;
}
.mypage-attention-address-btn p.mypage-attention-text.open::before {
  transform: rotate(180deg);
}
.mypage-attention-address {
  display: block;
}
.mypage-attention-address.hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  input.mypage-login-input-border {
    height: 50px;
  }
  .table-base tr.attention-remark {
    margin-top: 0;
  }
}

/*********************/
/*確認ポップアップ　テンプレ*/
/*********************/
div[class^="form-black-background-"]{
  z-index: 10000000000;
  position: fixed;
  background-color: black;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
div[class*="-confirm-popup-already"]{
  width: 460px;
  max-width: initial;
  height: fit-content;
  padding: 30px 0px 0;
  position: fixed;
  background-color: white;
  border: solid 6px #FFEB00;
  margin: auto;
  z-index: 1000000000002;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 80vh;
  display: none;
  overflow-y: auto;
  box-sizing: border-box;
}
div[class*="-confirm-popup-already"]#confirm-popup_initial_contract_cancel{
  width: 67%;
  max-width: 1040px;
  max-height: 85vh;
}
#confirm-popup_initial_contract_cancel div[class$="-confirm-popup-title"]{
  margin: 5px auto 0;
  width: 85%;
}
div.mypage-content-box-inner div[class*="-confirm-popup-body"].device-option-confirm-popup-body-already p{
  text-align: left;
}
#confirm-popup_initial_contract_cancel  div[class*="-confirm-popup-body"].device-option-confirm-popup-body-already p a {
  color: #DB0066;
}
#confirm-popup_initial_contract_cancel div[class$="-confirm-popup-title"] p {
  line-height: 1.3;
  font-weight: bold;
}
div.mypage-content-box-inner div[class*="-confirm-popup-body"] p.contract-cancel-pickup-text {
  font-weight: bold;
}
div[class$="-confirm-popup-title"]{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0 0 -10px;
  gap: 10px;
}
div[class$="-confirm-popup-title"] p{
  margin: 0px 0 30px;
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
div.mypage-content-box-inner div[class$="-confirm-popup-title"] p {
  font-size: 25px;
  color: #000;
}
div[class*="-confirm-popup"] img.yellow-notion-icon{
  width: 35px;
  height: 35px;
  margin: 0;
  top: 0;
  left: 0;
  position: relative;
}
div[class*="-confirm-popup-body"]{
  margin: 0px auto;
  width: 75%;
}
div.mypage-content-box-inner div[class*="-confirm-popup-body"] p{
  text-align: center;
  color: #000;
  font-size: 15px;
}
div[class$="-initial-cancel-button"],
div[class$="-confirm-buttons"]{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  position: static;
  gap: 0;
  margin: 30px auto 0;
  padding: 0 0 30px;
}
div[class*="-confirm-button"]:not([class*="-confirm-buttons"]){
  width: 150px;
  height: 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #FFEB00;
  color: #000;
  font-weight: bold;
  transition: 0.5s;
}
div[class*="-confirm-button"]:not([class*="-confirm-buttons"]) a{
  margin-top: 0;
  text-decoration: none;
  font-size: 15px;
  color: #000;
}
div[class*="-confirm-button-back"]:not([class*="-confirm-buttons"]){
  background-color: #3C3C3C;
  font-size: 15px;
  color: #ffffff;
  border: none;
}
div[class*="-confirm-button"]:not([class*="-confirm-buttons"]):hover,
div[class*="-confirm-button-back"]:not([class*="-confirm-buttons"]):hover{
  opacity: 0.7;
}
div[class$="-confirm-popup"] img.yellow-notion-icon{
  width: 35px;
  height: 35px;
  margin: 0 0 0 -10px;
  top: 0;
  left: 0;
  position: relative;
}
div[class*="-confirm-popup"] p:last-of-type .yellow-notion-icon{
  display: none;
}
.device-option-confirm-popup {
  display: none;
}
div[class*="-confirm-popup"] img.yellow-notion-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  top: 7px;
}
div[class*="-confirm-popup"] p {
  text-align: center;
}
.alert-confirm-popup div.mypage-popup-text-2 h4 {
  justify-content: center;
}
.alert-confirm-popup .alert-confirm-buttons {
  padding-bottom: 0;
  justify-content: space-between;
}

/*クレカ*/
div.credit-card-name-confirm-popup-body div.credit-card-name-flex {
  margin: 15px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
div.credit-card-name-confirm-popup-body div.credit-card-name-flex.credit-card-name-flex-top {
    margin-bottom: 2px;
}
div.credit-card-name-confirm-popup-body div.credit-card-name-flex p:first-of-type {
  width: 30%;
}

div.mypage-popup-text {
  text-align: center;
}
div.mypage-popup-text p {
  font-size: 1.8rem;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6;
}
div.mypage-popup-text-2 h4 {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  border-bottom: 3px solid #666666;
  padding-bottom: 15px;
}
div.mypage-popup-text-2 p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 15px;
}
div.mypage-popup-text-2 a {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 10px;
}
div.mypage-popup-text-2.not-credit-confirm-popup-body-already p {
  text-align: left;
  font-size: 1.53rem;
}
div.mypage-popup-text-2.not-credit-confirm-popup-body-already a {
  text-decoration: unset;
}
.mypage-popup-icon.mypage-popup-text-2 h4 {
  font-size: 2.4rem;
  display: flex;
  align-items: center;
}

.mypage-popup-icon.mypage-popup-text-2 p {
  font-size: 1.5rem;
}

/* 閉じるボタン右上タイプ */
.popup-square-type .close-btn-box {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 15px;
}
.popup-square-type .close-btn-box i {
  font-size: 2rem;
}
div[class*="-confirm-popup-already"].popup-square-type {
  padding: 3% 0;
  border-radius: 0;
}

@media (min-width: 768px) and (max-width: 1280px) {
  div[class*="-confirm-popup-already"].popup-square-type {
    padding: 50px 0;
  }
  div[class*="-confirm-popup-body"] {
    width: 85%;
  }
  .alert-confirm-popup .alert-confirm-buttons {
    justify-content: space-evenly;
  }
}

@media (max-width: 767px) {
  div[class*="-confirm-popup"]{
    width: 92%;
    padding: 0;
    top: -10%;
  }
  div[class$="-confirm-popup-title"]{
    width: 95%;
    margin: 5px auto 20px;
  }
  div[class$="-confirm-popup-title"] p {
    margin: 0;
    font-size: 1.5rem;
  } 
  div[class*="-confirm-popup"] img.yellow-notion-icon {
    width: 30px;
    height: 30px;
  }
  div[class$="-confirm-popup-body"]{
    width: 90%;
  }
  div[class$="-initial-cancel-button"],
  div[class$="-confirm-buttons"]{
      margin: 20px auto 0;
    padding: 6% 0;
  }
  div[class*="-confirm-button"]:not([class*="-confirm-buttons"]),
  div[class*="-confirm-button-back"]:not([class*="-confirm-buttons"]){
    width: 140px;
  }
  /*クレカ*/
  div.credit-card-name-confirm-popup-body div.credit-card-name-flex p:first-of-type {
    width: 50%;
  }
  div.credit-card-name-confirm-popup-body div.credit-card-name-flex p{
    margin-top: 0px;
  }
  div.credit-card-name-confirm-popup-body #input-credit-card-kana,
  div.credit-card-name-confirm-popup-body #input-credit-card-name{
    margin-top: 2px;
  }
  div.mypage-popup-text-2 h4 {
    font-size: 2rem;
  }
  div.mypage-popup-text-2 p {
    font-size: 1.4rem;
  }
  div.mypage-popup-text-2 a {
    font-size: 1.4rem;
  }
  .mypage-popup-icon.mypage-popup-text-2 h4 {
    font-size: 2rem;
  }
  .mypage-popup-icon.mypage-popup-text-2 p {
    font-size: 1.4rem;
  }
  div[class*="-confirm-popup-already"].popup-square-type {
    padding: 30px 0;
  }
  div[class*="-confirm-popup-already"] {
    padding: 30px 0px 0;
  }
  .alert-confirm-popup .alert-confirm-buttons {
    justify-content: space-evenly;
  }
}

/*********************/
/*エラーメッセージ*/
/*********************/
.error-message {
  margin-left: 74px;
  text-align: left;
  line-height: 1.5em;
  font-size: 3rem;
  font-weight: bold;
  z-index: 11;
}
.error-message p {
  line-height: 1.2;
}
.error-message.show-message,
.error-message.show-error,
.mypage-contents .error-message.show-error {
  padding-bottom: 30px;
}
.error-message.show-error,
.mypage-contents .error-message.show-error {
  margin-left: 0;
}
.error-message.show-error .error-message-value {
  margin: 0;
  background: #fff;
}
.error-message.show-error .error-message-value p {
  padding: 10px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
}
.error-message.show-error .error-message-value a {
  color: #DB0066;
}
.mypage-contents .error-message {
  margin: 0;
  padding: 0;
}
.validator-error {
  color: var(--zeus-subsc-yellow);
  font-size: 1.2rem;
  display: block;
  margin-top: 3px;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .mypage-login .error-message {
    margin-left: 70px;
    font-size: 2.6rem;
  }
  .error-message.show-error {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .error-message {
    margin-left: 70px;
    font-size: 2.3rem;
  }
  .error-message.show-message,
  .error-message.show-error {
    padding-bottom: 10px;
  }
  .error-message.show-error .error-message-value p {
    padding: 10px 0;
    font-size: 1.4rem;
  }
  div[class*="-confirm-popup-already"]#confirm-popup_initial_contract_cancel {
    width: 92%;
    top: 0;
  }
  #confirm-popup_initial_contract_cancel div[class$="-confirm-popup-title"] p {
    margin-bottom: 20px;
    font-size: 22px;
  }
  div[class*="-confirm-popup"]#confirm-popup_initial_contract_cancel img.yellow-notion-icon {
    top: 6px;
  }
}

/*********************/
/*main共通*/
/*********************/
div.mypage-contract-description {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 16px;
  font-weight: bold;
}
div.mypage-description-flex-left {
  text-align: left;
  color: white;
}
div.mypage-description-flex-left p {
  position: relative;
  line-height: 1.5;
  z-index: 1;
}
div.mypage-content-box-inner p {
  color: #FFF;
  word-break: break-word;
  text-align: left;
  font-weight: normal;
}
div.mypage-content-box-inner p.yellow-text {
  color: var(--zeus-subsc-yellow);
}
div.mypage-content-box-inner p + p {
  margin-top: 6px;
}
div.mypage-content-no-margin {
  margin-top: 0;
}

/*********************/
/*table共通*/
/*********************/
table.table-base {
  border-collapse: separate;
  table-layout: fixed;
  border-spacing: 6px;
  width: 100%;
  margin: 0 auto;
  word-break: break-word;
  line-height: 1.4;
  border-collapse: collapse;
}
table.table-base th,
table.table-base td {
  box-sizing: border-box;
  height: 50px;
  font-size: 1.3rem;
  padding: 5px 10px;
}
table.table-base th,
table.table-base td {
  color: #fff;
  background-color: unset;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
table.table-base th {
  width: 38%;
  color: #FFFFFF;
  font-weight: bold;
  text-align: left;
  position: relative;
  padding: 0 10px;
}
table.table-base th {
  background-color: transparent;
}
table.table-base tr:first-child th {
  border-top: 1px solid #DDDDDD;
}
table.table-base tr:first-child th {
  border-color: #000000;
}
table.table-base tr:first-child th {
  border-color: #fff;
}
table.table-base tr:first-child th {
  border-top: 1px solid #fff;
}
table.table-base th:before {
  position: absolute;
  content: '';
  bottom: -2.5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #DDDDDD;
}
table.table-base th:before {
  background: #000;
}
table.table-base th:before {
  background: unset;
}
table.table-base tr:last-child th::before {
  bottom: 0;
}
@media screen and (max-width: 767px) {
  div.mypage-contract-description {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  table.table-base td.not-tel-link a {
    color: #fff;
    text-decoration: none;
    pointer-events: none;
  }
  table.table-base th,
  table.table-base td {
    font-size: 1.25rem;
  }
}

/*********************/
/*ボタンの非活性化*/
/*********************/
div.decoration-button-area-disabled,
a.decoration-button-area-disabled,
input.decoration-button-area-disabled {
  opacity: 0.5;
  pointer-events: none;
}
a:has(.decoration-button-area-disabled) {
  pointer-events: none;
}

/*********************/
/*ボタンのアイコンの位置調整*/
/*********************/
.button-next {
  margin-right: 0;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.button-next img {
  width: 100%;
  height: auto;
  max-height: 45px;
  position: unset;
  bottom: unset;
}
.button-body {
  justify-content: space-between;
}
.button-body p {
  width: unset;
  margin: auto;
}
span.button-triangle {
  margin-left: 0;
}

/*********************/
/*IMEIのアイコン*/
/*********************/
div.question-mark-corp {
  position: relative;
  cursor: default;
}
span.imei-select-img img {
  position: absolute;
  width: 20px;
  left: 145px;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}
div.contact-imei-attention {
  position: relative;
}
div.contact-imei-attention:hover span.imei-balloon-mypage {
  display: inline;
}
span.imei-balloon-mypage {
  display: none;
  position: absolute;
  margin: 1.5em 0;
  padding: 0 10px;
  width: 180px;
  left: 76px;
  bottom: 19px;
  font-size: 16px;
  background: #ebebeb;
  border: 1px solid #000000;
  z-index: 1000000000000000;
}
span.imei-balloon-mypage:before {
  border-top: 12px solid #000000;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: -13px;
  left : 30%;
  content: "";
  position: absolute;
}
span.imei-balloon-mypage:after {
  border-top: 12px solid #ebebeb;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: -12px;
  left : 30%;
  content: "";
  position: absolute;
}
div.question-mark-corp .imei-select-wrap {
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  span.imei-balloon-mypage {
    bottom: -56px;
    left: 172px;
    transform: translateY(-50%) translateX(-50%);
  }
  div.contact-imei-attention {
    position: static;
  }
  span.imei-select-img img {
    left: 102px;
  }
}

/*********************/
/*必須・任意ラベル*/
/*********************/
span.form-label {
  display: inline-block;
  border: 1px solid;
  position: relative;
  text-align: center;
  border-radius: 5px;
  padding: 3px 6px;
  font-size: 12px;
  font-weight: bold;
  margin-right: 10px;
  color: #fff;
}
span.form-label.mandatory{
  color: var(--zeus-subsc-yellow);
}

/*********************/
/*同意するチェックボックス*/
/*********************/
.confirm-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.confirm-box .custom-check-box {
  display: flex;
}
.confirm-box label.custom-check-box,
.confirm-box label.custom-check-box input,
.confirm-box label.custom-check-box label {
  display: inline-block;
  cursor: pointer;
}
.confirm-box input {
  width: 18px;
  height: 18px;
  margin: 0 5px 0 0;
  transform: translateY(3px);
}
.confirm-box p {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .confirm-box span.form-label {
    bottom: -1px;
  }
}
/* 決済時出力されるポップアップのボタンダブルクリック防止処理 start*/

.guard-loading-mark-area {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 99999999999;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
}
.guard-loading-mark-area.show {
  display: block;
}
.guard-loading-mark-area .loading-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* 決済時出力されるポップアップのボタンダブルクリック防止処理 end*/

/* マイページ用ポップアップ（スマートプラン） */
.mypage-smart-contract .device-option-confirm-popup {
  border-radius: unset;
  border: solid 6px #FFEB00;
  max-width: unset;
  padding: 30px 40px;
  box-sizing: border-box;
  width: 460px;
  background: #ffffff;
  color: #222222;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 15px 15px 25px 0 rgb(0 0 0 / 20%);
  z-index: 1000000000002;
  margin: auto;
}
.mypage-smart-contract .device-option-confirm-popup-title {
  width: 100%;
  font-weight: 900;
  white-space: unset;
  font-size: 25px;
  margin-top: 0;
  border-bottom: 3px solid #666666;
  padding-bottom: 25px;
  margin: 0;
}
.mypage-smart-contract .mypage-popup-button-layout {
  height: 44px;
  background: #FFEB00;
  border-radius: 0;
  border: unset;
  padding: .3em 2.2em .4em 1em;
  color: black;
  outline: 0;
  font-weight: bold;
  font-size: 15px;
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 130px;
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.mypage-smart-contract .mypage-popup-button-layout-close {
  background: #3C3C3C;
  color: #FFF;
  padding: .3em 1em .4em 2.2em;
}
.mypage-smart-contract .mypage-popup-button-layout-submit::before {
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.mypage-smart-contract .mypage-popup-button-layout-close::before {
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 10px solid #FFF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
.mypage-smart-contract .device-option-confirm-popup-body {
  margin-top: 25px;
  width: auto;
}
.mypage-smart-contract .device-option-confirm-popup-body p {
  font-size: 16px;
  line-height: 1.5;
}
.mypage-smart-contract .device-option-confirm-buttons {
  padding: 0;
}
.mypage-smart-contract div[class^="form-black-background-"] {
  background: #aaaaaa;
  opacity: .3;
}
.mypage-smart-contract .button-text-plan.plan-change-true.decoration-button-area-disabled {
  pointer-events: unset;
}
.mypage-smart-contract .plan-change-popup-body span {
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1em;
}
.mypage-smart-contract p.plan-change-popup-table-title {
  font-weight: bold;
  margin: 25px 0 10px;
  font-size: 1.7rem;
}
.mypage-smart-contract .plan-change-history-table {
  width: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  line-height: 1.5;
  padding: 5px;
}
.mypage-smart-contract .plan-change-history-table td {
  font-size: 1.3rem;
}
.mypage-smart-contract .plan-change-history-table td.history-title {
  width: 33%;
}
.mypage-smart-contract .plan-change-history-table td.detail {
  width: 43%;
}
.mypage-smart-contract .plan-change-history-table td.price {
  width: 24%;
  text-align: right;
}
.mypage-smart-contract .history-title {
  font-weight: bold;
}
.mypage-popup-close-button {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  border-radius: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.mypage-popup-close-button::before,
.mypage-popup-close-button::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 3px;
  background: #000000;
  border-radius: 100vh;
  top: 50%;
  left: 50%;
}
.mypage-popup-close-button::before {
  transform: translate(-50%) rotate(45deg);
}
.mypage-popup-close-button::after {
  transform: translate(-50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .mypage-smart-contract .device-option-confirm-popup {
    padding: 30px 3%;
    width: 90%;
  }
  .mypage-smart-contract .device-option-confirm-popup-title {
    font-size: 20px;
  }
  .mypage-smart-contract .plan-change-history-table {
    padding: 5px 0;
  }
  .mypage-smart-contract .plan-change-history-table td {
    font-size: 1.25rem;
  }
  .smart-header div.header-logo a img {
    height: 30px;
  }
  .mypage-smart-contract .plan-change-history-table td.history-title {
    width: 35%;
  }
  .mypage-smart-contract .plan-change-history-table td.detail {
    width: 45%;
  }
  .mypage-smart-contract .plan-change-history-table td.price {
    width: 20%;
    text-align: right;
  }
}

/* スマートプラン プラン変更 */
.planchange-wrap .button-in-box {
  justify-content: center;
}
.planchange-wrap table.plan-change-list-table tr th,
.planchange-wrap table.plan-change-list-table tr td {
  border: none;
  height: auto;
  padding: 3px 10px;
}
.planchange-wrap table.plan-change-list-table tr.plan-name {
  border-bottom: 1px solid #fff;
}
.planchange-wrap table.plan-change-list-table tr.plan-name td {
  display: flex;
  justify-content: space-between;
}
.planchange-wrap table.plan-change-list-table:first-of-type tr:first-child {
  border-top: 1px solid #fff;
}
.planchange-wrap table.plan-change-list-table tr:first-child th,
.planchange-wrap table.plan-change-list-table tr:first-child td {
  padding-top: 15px;
}
.planchange-wrap table.plan-change-list-table tr:last-child th,
.planchange-wrap table.plan-change-list-table tr:last-child td {
  padding-bottom: 15px;
}
.planchange-wrap table.plan-change-table tr th,
.planchange-wrap table.plan-change-table tr td {
  border: none;
}
.planchange-wrap table.plan-change-table tr td select {
  width: 260px;
}

/* ポップアップ内テキスト */
.popup-plan-change-text {
  margin-top: 20px;
}
.popup-plan-change-text p {
  margin-bottom: 5px;
}
.popup-plan-change-text p.popup-downgrade {
  font-size: 1.2rem;
  margin: 0;
}
.popup-plan-change-text .popup-plan-price {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .planchange-wrap table.plan-change-list-table tr.plan-name td {
    justify-content: left;
    flex-direction: column;
  }
  .planchange-wrap table.plan-change-table tr td select {
    width: 100%;
    max-width: 260px;
  }
}

/* スマートプラン データチャージ */
.available-data-charge {
  margin-top: 20px;
  padding-left: 10px;
}

.edit-ttl, .used-data {
  padding-left: 10px;
}
