/* 共通 */
.app-content-wrap {
  background-color: var(--overseas-pailgray);
  padding: 30px 0 80px;
  min-height: calc(100vh - 50px);
}
.inner{
  max-width: 980px;
  margin: 0 auto;
}
.content-inner {
  margin-top: 30px;
}
.content-inner.button-content-wrap {
  margin-top: 45px;
}
* {
  letter-spacing: 0.05em;
}

/* 挨拶部分 */
.app-guest-name .greeting {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.app-guest-name .guest-name {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.app-guest-name .guest-name span {
  font-size: 1.6rem;
  margin-left: 10px;
}

/* バナー */
.app-banner {
  position: relative;
}
.app-banner img {
  width: 100%;
  transition: .3s;
  border-radius: var(--radius-large);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
.app-banner a:hover img {
  opacity: 0.8;
}
.app-banner .app-button-pink {
  position: absolute;
  right: 2%;
  bottom: 13%;
}
.app-banner .app-button-pink .app-button {
  padding: 15px 20px 15px 10px;
  min-width: 230px;
  font-size: 2rem;
}
.app-banner .app-button-pink .app-button .app-button-arrow {
  border-left: 12px solid var(--overseas-white);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

/* ボタン　ピンク */
.app-button-pink {
  text-align: center;
}
.app-button-pink .app-button {
  display: inline-block;
  background-color: var(--overseas-lightpink);
  color: var(--overseas-white);
  padding: 15px 25px 15px 10px;
  position: relative;
  border-radius: 30px;
  min-width: 230px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: .3s;
}
.app-button .app-button-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  border-left: 10px solid var(--overseas-white);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.app-button-pink .app-button:hover {
  background-color: var(--overseas-lightgreen);
}

/* ボタングリーン + アイコン */
.app-button-green {
  text-align: center;
}
.app-button-green .app-button {
  display: inline-block;
  background-color: var(--overseas-lightgreen);
  color: var(--overseas-white);
  padding: 14px 15px 14px 35px;
  position: relative;
  border-radius: 30px;
  min-width: 230px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: .3s;
  cursor: pointer;
}
.app-button-green .app-button .app-button-arrow {
  display: none;
}
.app-button-green .app-button img {
  width: 25px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.app-button-green .app-button:hover {
  background-color: var(--overseas-lightpink);
}

/* ボタン */
.app-menu-button-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 402px;
}
.app-menu-button-container .button-item {
  width: calc((100% - 30px) / 3);
  max-width: 124px;
  cursor: pointer;
}
.app-menu-button {
  background-color: var(--overseas-white);
  border: 2px solid var(--overseas-yellow);
  border-radius: var(--radius-large);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5px;
  padding: 10px 0;
  text-align: center;
  transition: .3s;
  box-shadow: var(--box-shadow);
  align-items: center;
}
.app-menu-button-container .app-menu-button {
  height: 100%;
}
.app-menu-button .button-icon img {
  width: auto;
  height: 40px;
}
.app-menu-button .button-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--overseas-black);
  transition: .3s;
  line-height: 1.3;
  min-height: 30px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}
a:hover .app-menu-button {
  border: 2px solid var(--overseas-lightgreen);
}
a:hover .app-menu-button .button-title {
  color: var(--overseas-lightgreen);
}
.content-inner .app-menu-button-container:first-child {
  margin-top: 0;
}

/* ボタン　タイトル */
.app-menu-content-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}
.app-menu-content-title::before,
.app-menu-content-title::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: var(--overseas-black);
}
.app-menu-content-title p {
  white-space: nowrap;
  text-align: center;
}

/* 次に進むボタン */
div.form-next-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1em;
  max-width: 300px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  border: 2px solid #FFE700;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: 0.3s all;
}
div.form-next-button a {
  width: 100%;
  padding: 1em;
}
div.form-next-button span {
  background: none;
  font-size: 15px;
  padding: 0;
  color: #000;
}
div.form-next-button::after {
  content: "";
  top: 50%;
  right: 10px;
  width: 0px;
  height: 0px;
  margin: 0;
  border-top: 8px solid transparent;
  border-left: 10px solid #000;
  border-bottom: 8px solid transparent;
  background: none;
  transform: translate(-50%, -50%);
}

/* 戻るボタン */
div.form-back-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 170px;
  margin: 0 auto;
  text-indent: 8px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  color: #707070;
  border-radius: 10px;
  background: #F4F4F4;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: 0.3s all;
}
div.form-back-button a {
  width: 100%;
  padding: 1em 2em;
}
div.form-back-button.bg-white {
  background: #fff;
}
div.form-back-button::before{
  content: none;
}
div.form-back-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5rem;
  width: 0px;
  height: 0px;
  margin: 0;
  border-top: 7px solid transparent;
  border-right: 9px solid #707070;
  border-bottom: 7px solid transparent;
  background: none;
  transform: translate(-50%, -50%);
}
div.form-back-button span {
  background: none;
  padding: 0;
  color: #707070;
}
div.form-next-button:hover{
  opacity: 0.7;
  background: #FFE700;
}
div.form-next-button:hover::after {
  width: 0;
}

/* ボタンレイアウト（確定ボタン＋前に戻るボタン） */
.edit-btns-container > .row {
  margin: 0 auto;
}
.decoration-button-wrapper + .decoration-button-wrapper {
  margin-top: 30px;
}

/* 利用規約確認 */
div.leave-checkbox-box {
  margin-top: 30px;
  padding: 20px;
  border-radius: var(--radius-large);
  box-shadow: var(--box-shadow);
  background-color: var(--white-color);
  color: var(--black-color);
  border: unset;
}
div.leave-checkbox-box-desciption {
  padding: 0;
}
div.confirm-box {
  width: 140px;
  background: unset;
  color: var(--black-color);
}
div.confirm-box:hover {
  background: unset;
}
p.leave-checkbox-box-title {
  width: 100%;
  margin: 0;
  padding: 0.5rem;
  font-weight: bold;
  font-size: 1.4rem;
  background-color: #707070;
  color: #fff;
  text-align: center;
}
div.confirm-box .custom-check-box p {
  font-size: 1.5rem;
  font-weight: bold;
}
div.confirm-box .custom-check-box:focus-within::before {
  position: unset;
  outline: unset;
}
div.confirm-box span {
  left: -32px;
}
div.confirm-box span.note-mark {
  top: 6px;
  left: -25px;
}
div.confirm-box label.custom-check-box {
  left: 20px;
}
div.confirm-box label.custom-check-box input[type="checkbox"] + span::before {
  width: 22px;
  height: 22px;
  top: 0;
  left: 0;
  transform: translateY(0);
  background-color: #fff;
  outline: 1px solid #707070;
  border: none;
  position: relative;
  z-index: 0;
}
div.confirm-box input[type="checkbox"] + span::after {
  width: 10px;
  height: 15px;
  margin: 2px 5px;
  top: -2px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg) translateY(0);
}
div.confirm-box .note-mark {
  padding: 3.5px 5px;
}
label.custom-check-box input[type="checkbox"]:checked + span::after {
  border: 2px solid #000;
  border-width: 0 2px 2px 0;
}
@media screen and (max-width: 767px) {
  div.leave-checkbox-box {
    padding: 1em;
  }
  div.confirm-box {
    width: 120px;
  }
  div.confirm-box span {
    top: 1px;
  }
  div.confirm-box span.note-mark {
    top: 5px;
    left: -30px;
  }
  div.confirm-box label.custom-check-box input[type="checkbox"] + span::after {
    width: 10px;
    height: 15px;
    margin: 2px 5px;
    top: -4px;
    left: 1px;
  }
}

/* 必須/任意ラベル */
.note-mark {
  color: #DB0066;
  border: 1px solid;
  border-radius: 5px;
  padding: 2px 5px;
  font-size: 12px;
  margin: 0 5px 0 0;
}
.anynote-mark {
  color: #1E1E1E;
  border: 1px solid;
  border-radius: 5px;
  padding: 3px 4px;
  font-size: 12px;
  margin: 0 5px 0 0;
  text-align: center;
}

/* カレンダー */
table.table-condensed {
  border-collapse: separate;
  text-indent: initial;
  border-spacing: 2px;
  position: relative;
  z-index: 1111;
}
.datepicker .datepicker-days td,
.datepicker .datepicker-days th {
  vertical-align: middle;
  font-weight: bold;
}

/* 見出し */
.app-title-1 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
/* セクション */
.app-content-default {
  background-color: #fff;
  border-radius: var(--radius-large);
  box-shadow: var(--box-shadow);
  padding: 15px;
}
.app-flex-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-flex-link.align-right {
  justify-content: flex-end;
  margin-top: 10px;
}
.app-text-main {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  overflow-wrap: break-word;
}
.app-arrow-link {
  color: var(--overseas-lightgreen);
  border-bottom: 1px solid var(--overseas-lightgreen);
  font-size: 1.3rem;
  font-weight: 400;
  position: relative;
  padding-right: 15px;
  transition: .3s;
  cursor: pointer;
  display: inline-block;
}
.app-arrow-link::before {
  content: "";
  border-left: 8px solid var(--overseas-lightgreen);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: .3s;
}
.app-arrow-link:hover {
  color: var(--overseas-lightpink);
  border-bottom: 1px solid var(--overseas-lightpink);
}
.app-arrow-link:hover::before {
  border-left: 8px solid var(--overseas-lightpink);
}
.app-content-sub-title {
  font-size: 1.2rem;
  margin-bottom: 5px;
  margin-top: 10px;
}
.space-wide .app-content-sub-title {
  margin-top: 20px;
}
.content-inner .app-content-sub-title:first-child {
  margin-top: 0;
}
/* 影なし */
.app-content-default.no-shadow {
  box-shadow: none;
}

/* タイトル、テキスト */
.app-default-title .main-text {
  font-size: 1.6rem;
  font-weight: 600;
}
.app-default-title .sub-text {
  font-size: 1.3rem;
  font-weight: 600;
}

/* 注意書き */
.attention {
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 10px;
}
.attention a {
  color: var(--overseas-lightgreen);
  text-decoration: underline;
}
.attention.right-text {
  text-align: right;
  font-size: 1.1rem;
}

/* お知らせ */
.post-content {
  margin-top: 15px;
}
.post-content-wrap .post-content:first-child {
  margin-top: 0;
}
.post-content p {
  color: var(--overseas-black);
  transition: .3s;
}
.post-content .post-text {
  font-weight: 600;
  text-decoration: underline;
}
.post-content a:hover .post-text {
  color: var(--overseas-lightpink);
}
.post-content .post-date-cate {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}
.post-content .post-date-cate .post-date {
  color: var(--overseas-black);
}
.post-content .post-date-cate .post-category span {
  color: var(--overseas-lightgreen);
  background-color: var(--overseas-pailgray);
  padding: 2px 5px;
  margin-left: 5px;
}
.post-content .post-date-cate .post-category span:first-child {
  margin-left: 0;
}

/* インプット */
input.app-input {
  width: 100%;
  border-radius: 8px;
  background-color: white;
  padding: 12px 10px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  border: none;
  outline: 1px solid #707070;
}
input.app-input:focus {
  outline: 1px solid var(--overseas-yellow);
}

/* コピーアイコン */
.app-text-copy {
  border-bottom: 1px solid #707070;
  color: #707070;
  font-weight: 600;
  margin-left: 10px;
  font-size: 1.3rem;
  cursor: pointer;
  position: relative;
}
.app-text-copy:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}
.app-text-copy img {
  width: 10px;
  position: relative;
  top: 1px;
}
.success-msg {
  display: none;
  position: absolute;
  background-color: var(--overseas-lightgreen);
  color: #fff;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  text-align: center;
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 1.1rem;
  width: max-content;
  line-height: 1;
}
.success-msg::before {
  content: "";
  border-top: 8px solid var(--overseas-lightgreen);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
}

/* スライダー　ご利用中のプラン */
.app-slider {
  width: calc(100% + 16px);
  position: relative;
  left: -8px;
  display: flex;
  justify-content: left;
}
.app-slider .slide-item {
  padding: 8px;
}
.app-slider .slide-item:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}
.app-slider .slick-arrow {
  position: absolute;
  bottom: -26px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  cursor: pointer;
  transition: .3s;
  z-index: 1;
}
.app-slider .slick-arrow:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}
.app-slider .slick-arrow.prev-arrow {
  border-right: 14px solid #707070;
  left: 8px;
}
.app-slider .slick-arrow.next-arrow {
  border-left: 14px solid #707070;
  right: 8px;
}
.app-slider .slick-arrow.prev-arrow:hover {
  border-right: 14px solid var(--overseas-lightgreen);
}
.app-slider .slick-arrow.next-arrow:hover {
  border-left: 14px solid var(--overseas-lightgreen);
}
.app-slider .slick-dots {
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 50%);
  width: max-content;
  text-align: left;
  max-width: 210px;
}
.app-slider .slick-dots li button:before {
  line-height: 12px;
  width: 12px;
  height: 12px;
  content: '';
  border: 2px solid var(--overseas-lightgreen);
  border-radius: 50%;
}
.app-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: var(--overseas-lightgreen);
}
.app-slider.slick-dotted.slick-slider {
  margin-bottom: 60px;
}
.app-slider .slick-dots li:only-child {
  display: none;
}
.app-slider > .slide-item:not(:first-child) {
  display: none;
}

/* 完了画面 */
.complete-text-main {
  font-size: 1.6rem;
  font-weight: 600;
}
.complete-text-sub {
  margin-top: 20px;
}

/* ポップアップ共通 */
div.alart-popup-close-button {
  background-color: var(--overseas-white);
}
div.alart-popup-close-button:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

/* ポップアップ返却方法 */
.option-popup-block .popup-header .popup-return-title {
  text-align: left;
  font-size: 1.5rem;
}
.option-popup-block .popup-content {
  margin-top: 25px;
}
.option-popup-block .popup-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  border-left: 5px solid var(--overseas-lightgreen);
  padding: 2px 0 2px 5px;
  margin-bottom: 5px;
}
.option-popup-block .popup-content p {
  font-size: 1.3rem;
}
.option-popup-block .popup-content p.attention {
  font-size: 1.1rem;
  margin-top: 0;
}
.option-popup-block .popup-content .return-image {
  text-align: center;
}
.option-popup-block .popup-content .return-image img {
  width: 40%;
  min-width: 190px;
}
.option-popup-block .popup-content .return-image-2 {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin: 15px auto 0;
}
.option-popup-block .popup-content .return-image-2 .app-return-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  border: 3px solid var(--overseas-gray);
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: center;
}
.option-popup-block .popup-content .return-image-2 .app-return-mr1 {
  background-image: url(https://d1q08lkutgkcx2.cloudfront.net/image/global-rental-item-mr1.webp);
}
.option-popup-block .popup-content .return-image-2 .app-return-usb {
  background-image: url(https://d1q08lkutgkcx2.cloudfront.net/image/global-rental-item-usb.webp);
}
.option-popup-block .popup-content .return-image-2 .app-return-adp {
  background-image: url(https://d1q08lkutgkcx2.cloudfront.net/image/adp-img.jpg);
}
.option-popup-block .popup-content .return-image-2 .app-return-plug {
  background-image: url(https://d1q08lkutgkcx2.cloudfront.net/image/conversion-img.webp);
}
.option-popup-block .popup-content .return-image-2 .app-return-bat5000 {
  background-image: url(https://d1q08lkutgkcx2.cloudfront.net/image/bat5000-img.jpg);
}
.option-popup-block .popup-content .return-image-2 .app-return-bat10000 {
  background-image: url(https://d1q08lkutgkcx2.cloudfront.net/image/bat10000-img.jpg);
}
.option-popup-block .popup-content .attention .attention-list {
  padding-left: 1rem;
  text-indent: -1rem;
  display: inline-block;
  line-height: 1.4;
  margin-top: 5px;
}
.option-popup-block .popup-content .attention .attention-list:first-child {
  margin-top: 0;
}

/* ポップアップ　プラン変更・追加・期間延長 */
.entry-option-popup .popup-header .popup-title {
  font-size: 1.6rem;
  text-align: left;
}
.entry-option-popup .popup-header .sub-text {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 5px;
}
.popup-overseas-change-plan .popup-header {
  margin-bottom: 20px;
}
.app-change-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.app-change-btn-wrap a {
  cursor: pointer;
  transition: .3s;
}
.app-change-btn-wrap a:hover {
  opacity: 0.8;
}
.popup-overseas-change-plan .app-change-btn {
  padding: 5px 30px 5px 10px;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  border-radius: var(--radius-large);
  border: 3px solid var(--overseas-yellow);
  position: relative;
}
.popup-overseas-change-plan .app-change-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  border-left: 10px solid var(--overseas-black);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.popup-overseas-change-plan .app-change-btn p {
  color: var(--overseas-black);
}
.popup-overseas-change-plan .app-change-btn .button-title {
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #707070;
  padding-bottom: 5px;
}
.popup-overseas-change-plan .app-change-btn .button-title .button-icon {
  width: 30px;
}
.popup-overseas-change-plan .app-change-btn .button-title p {
  font-size: 1.6rem;
  font-weight: 600;
}
.popup-overseas-change-plan .app-change-btn .sub-text {
  font-size: 1.2rem;
  margin-top: 5px;
  line-height: 1.5;
}

/* ポップアップ　ステータス */
.app-title-1 .status-btn {
  width: 20px;
  display: inline-block;
  position: relative;
  bottom: -4px;
}
.app-title-1 .status-btn:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

/* ポップアップIMEI */
.app-content-sub-title .status-btn {
  width: 20px;
  display: inline-block;
  position: relative;
  bottom: -4px;
}
.app-content-sub-title .status-btn:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}
.popup-overseas-imei .popup-content img {
  width: 80%;
  margin: 30px auto 10px;
  display: block;
  padding-right: 30px;
  max-width: 300px;
}

/*--------------------------------------------------------------------------------
  ポップアップ　データ通信量の目安 start
----------------------------------------------------------------------------------*/
.popup-overseas-data .popup-header .popup-title {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1.2;
}
.popup-overseas-data .popup-header .popup-title img {
  width: 20px;
}
.popup-overseas-data .pop-contents {
  margin-top: 20px;
}
.popup-overseas-data .attention {
  margin-top: 1em;
}
.popup-overseas-data small {
  font-size: 1.2rem;
  line-height: 1.3;
}
.usage-500mb {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: auto
}
.usage-500mb caption {
  margin-bottom: 1em;
  font-size: 3rem;
  font-weight: bold;
  padding-top: 10px;
}
.usage-500mb td,
.usage-500mb th {
  font-weight: 700;
  background: var(--overseas-white);
  border: 1px solid #575757;
  padding: .75em 0;
  border: none;
  text-align: center
}
.usage-500mb th {
  background: #e7e7e7;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center
}
.usage-500mb.pc .useage-data .table-header th:first-child {
  border: none;
  background-color: unset;
  width: 140px;
}
.usage-500mb th:last-of-type {
  position: relative;
  color: var(--overseas-black);
  background: var(--overseas-pailgreen)
}
.usage-500mb td.infinity {
  font-size: 1.8rem;
  background: #FFC100;
  vertical-align: middle;
}
table.usage-500mb th.useage-infinity::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(45%,-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 6;
  color: var(--overseas-white);
  background: url(https://d1q08lkutgkcx2.cloudfront.net/image/recommend.webp) center top/contain no-repeat
}
.usage-500mb td span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 10%;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4
}
.usage-500mb td span span {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-left: 0;
  font-weight: 400;
}
.usage-500mb td span.attention {
  display: inline-block;
  margin-left: 5px
}
.usage-500mb td span img {
  width: 30px
}
.usage-500mb td em {
  font-size: 1.5em;
  font-style: normal;
}
.pop-up small {
  display: block;
  width: 90%;
  margin: 1em auto;
  line-height: 1.5em;
  font-size: 1.2rem
}
.usage-500mb .useage-data td,
.usage-500mb .useage-data th {
  border: 1px solid #575757;
  vertical-align: middle;
}
@media screen and (max-width:767px) {
  .usage-500mb.sp {
    display: table
  }
  .usage-500mb {
    width: 91%
  }
  .pop-title {
    font-size: 1.6rem;
    padding: 1em 0 0;
  }
  .pop-up .attention,
  .pop-up .attention.wide {
    width: 91%
  }
  .usage-500mb td span {
    gap: 0;
    margin-left: 0;
    font-size: 1.2rem;
    flex-direction: column
  }
  .usage-500mb td span .text-sm {
    font-size: 1rem
  }
  .usage-500mb td span img {
    width: 25px
  }
  .usage-500mb td em {
    font-size: 1.6em
  }
  .usage-500mb .table-header th {
    width: 25%
  }
  .usage-500mb td,
  .usage-500mb th {
    font-size: 1.2rem
  }
  .usage-500mb td.infinity {
    font-size: 1.5rem
  }
  .usage-500mb td.infinity span {
    display: inline-block
  }
  table.usage-500mb th.useage-infinity::after {
    background: url(https://d1q08lkutgkcx2.cloudfront.net/image/recommend-sp3.webp) center top/contain no-repeat;
    top: -5px;
    right: 5px;
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
    white-space: pre
  }
  .useage-data-app-wrap p.sub-text {
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
  }
  .useage-data-app {
    display: flex;
    gap: 25px 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .useage-data-app .useage-app-box {
    width: calc((100% - 10px) / 2);
    box-shadow: var(--box-shadow);
  }
  .useage-data-app .useage-app-box .useage-app-header {
    padding: 10px 10px 10px 35px;
    font-size: 1.4rem;
    font-weight: bold;
    background-color: var(--overseas-pailgray);
    position: relative;
    text-indent: 0.5rem;
  }
  .useage-data-app .useage-app-box.googlemap .useage-app-header {
    text-indent: 0;
  }
  .useage-data-app .useage-app-box .useage-app-header span {
    font-size: 1.2rem;
  }
  .useage-data-app .useage-app-box .useage-app-header img {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
  }
  .useage-data-app .useage-app-box .useage-app-content {
    padding: 0 5px;
  }
  .useage-data-app .useage-app-box table {
    width: 100%;
    border-collapse: collapse;
  }
  .useage-data-app .useage-app-box table th,
  .useage-data-app .useage-app-box table td {
    border-top: 1px solid var(--overseas-gray);
    padding: 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
    vertical-align: baseline;
    text-align: left;
  }
  .useage-data-app .useage-app-box table tr:first-child th,
  .useage-data-app .useage-app-box table tr:first-child td {
    border-top: none;
  }
  .useage-data-app .useage-app-box table th {
    width: 50px;
  }
  .useage-data-app .useage-app-box table td {
    padding-left: 5px;
  }
  .useage-data-app .useage-app-box table td em {
    font-size: 1.4em;
    color: var(--overseas-lightgreen);
    font-style: normal;
  }
  .useage-data-app .useage-app-box .useage-app-footer {
    background-color: var(--overseas-pailgreen);
    padding: 0 5px;
  }
  .useage-data-app .useage-app-box .useage-app-footer table td {
    font-size: 1.5rem;
    text-align: left;
  }
  .useage-data-app .useage-app-box .useage-app-footer table td,
  .useage-data-app .useage-app-box .useage-app-footer table th {
    border-bottom: none;
  }
  .useage-data-app .useage-app-box .useage-app-footer table td span.attention {
    font-size: 1.1rem;
  }
  .option-popup-block .popup-content .return-image-2.option-return-image .app-return-img {
    width: calc((100% - 10px) / 3);
    height: auto;
    aspect-ratio: 1/1;
    background-size: 97%;
  }
  .option-popup-block .popup-content .return-image-2.option-return-image {
    gap: 5px;
  }
}
/*--------------------------------------------------------------------------------
  ポップアップ　データ通信量の目安 end
----------------------------------------------------------------------------------*/

@media (min-width: 768px) and (max-width: 1280px) {
  .inner{
    max-width: 680px;
  }

  /* バナーボタン */
  .app-banner .app-button-pink .app-button {
    padding: 12px 20px 12px 10px;
    min-width: 200px;
    font-size: 1.8rem;
  }
  .app-banner .app-button-pink .app-button .app-button-arrow {
    border-left: 10px solid var(--overseas-white);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
}

@media screen and (max-width: 767px) {
  .inner{
    max-width: 90%;
  }

  /* セクション */
  .app-flex-link.column {
    display: block;
    text-align: right;
  }
  .app-flex-link.column .app-text-main {
    text-align: left;
    margin-bottom: 10px;
    word-break: break-all;
  }

  /* バナーボタン */
  .app-banner .app-button-pink .app-button {
    padding: 7px 20px 7px 10px;
    min-width: 120px;
    font-size: 1.2rem;
  }
  .app-banner .app-button-pink .app-button .app-button-arrow {
    border-left: 8px solid var(--overseas-white);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  /* スライダー　ご利用中のプラン */
}

/*--------------------------------------------------------------------------------
  マイページポップアップ用CSS end
----------------------------------------------------------------------------------*/
.popup-next-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1em;
  margin: 0 auto;
  padding: 1em;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  border: 2px solid #FFE700;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: 0.3s all;
  max-width: 220px;
}

.popup-next-button::after {
  content: "";
  top: 50%;
  right: 10px;
  width: 0px;
  height: 0px;
  margin: 0;
  border-top: 8px solid transparent;
  border-left: 10px solid #000;
  border-bottom: 8px solid transparent;
  background: none;
  transform: translate(-50%, -50%);
  display: block;
  position: absolute;
  bottom: 0;
  transition: .3s all;
}

.popup-cancel-button {
  background: var(--bg-input-color);
  color: #707070;
  position: relative;
  border-radius: 10px;
  padding: 15px 0;
  line-height: 1;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  width: 100%;
  font-weight: bold;
  font-size: 1.5rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  transition: 0.1s;
  max-width: 160px;
  text-align: center;
}

.popup-cancel-button::after {
  content: "";
  top: 50%;
  left: 15px;
  width: 0px;
  height: 0px;
  margin: 0;
  border-top: 6px solid transparent;
  border-right: 9px solid #707070;
  border-bottom: 6px solid transparent;
  background: none;
  transform: translate(-50%, -50%);
  display: block;
  position: absolute;
  bottom: 0;
  transition: .3s all;
}
.app-edit-btns-container {
  text-align: center;
  margin-top: 40px;
}
.app-edit-btns-container .popup-next-button {
  margin: 0 auto 20px;
}
.app-edit-btns-container .popup-cancel-button {
  display: inline-block;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
}

div.alart-popup-close-button {
  background-color: #FFFF;
}

@media (min-width: 768px) {
  .popup-next-button {
    margin: 0;
  }
  .popup-next-button + .popup-cancel-button {
    margin-left: 30px;
  }
  .popup-cancel-button + .popup-next-button {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .button_mypage--box button.popup-next-button {
    margin-bottom: 20px;
  }
  .entry-option-popup .popup-contents {
    width: 90vw;
    max-width: 560px;
  }
}
/*--------------------------------------------------------------------------------
  マイページポップアップ用CSS end
----------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
  エラーメッセージ start
----------------------------------------------------------------------------------*/
.app-content-wrap .error-message {
  position: unset;
  margin: 0;
  padding: 0;
}
.app-content-wrap .error-message .error-message-value {
  border: 1px solid #ff0000;
}
.app-content-wrap .error-message p {
  color: #ff0000;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 0;
}
/*--------------------------------------------------------------------------------
  エラーメッセージ end
----------------------------------------------------------------------------------*/