@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  background-color: #eff7f4;
  color: #333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
  padding: 0;
  z-index: 0;
}

p {
  margin: 0;
}

table {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th,
td {
  border: 1px solid #e6e6e6;
}

a {
  color: #1b8159;
  -webkit-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

img {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
}

svg {
  display: inline-block;
  fill: currentColor;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

input[type=text],
input[type=password],
input[type=date] {
  background: none;
  border: 1px solid #999;
  border-radius: 0;
  color: #111;
  display: inline-block;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  min-height: 44px;
  padding: 0 8px;
}
input[type=text]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder {
  color: #cccccc;
}
input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=date]::-moz-placeholder {
  color: #cccccc;
}
input[type=text]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder {
  color: #cccccc;
}
input[type=text]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder {
  color: #cccccc;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder {
  color: #cccccc;
}
input[type=text]:disabled,
input[type=password]:disabled,
input[type=date]:disabled {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  color: #666;
}
.is-invalid input[type=text],
.is-invalid input[type=password],
.is-invalid input[type=date] {
  background-color: #fae7e9;
  border-color: #b62917;
}
.is-invalid input[type=text]:disabled,
.is-invalid input[type=password]:disabled,
.is-invalid input[type=date]:disabled {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

textarea {
  border: 1px solid #999;
  border-radius: 0;
  color: #111;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  padding: 12px;
  width: 100%;
}

.form-message {
  font-size: 12px;
}
.is-invalid .form-message {
  color: #b62917;
  margin-top: 6px;
}

.form-check {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-check_input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 2px solid #ccc;
  border-radius: 2px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 24px;
  margin: 0 12px 0 0;
  position: relative;
  width: 24px;
}
.form-check_input::after {
  background-color: #1b8159;
  content: "";
  display: none;
  height: 24px;
  left: -2px;
  -webkit-mask: url("../images/icon/check.svg") no-repeat 50% 50%;
          mask: url("../images/icon/check.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: -2px;
  width: 24px;
}
.form-check_input:checked {
  border-color: #1b8159;
}
.form-check_input:checked::after {
  display: inline-block;
}

.form-radio {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.form-radio label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

label.form-radio {
  cursor: pointer;
}

.form-radio_input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 24px;
  margin: 0 12px 0 0;
  position: relative;
  width: 24px;
}
.form-radio_input:checked {
  border-color: #1b8159;
}
.form-radio_input:checked::after {
  background-color: #1b8159;
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 4px;
  position: absolute;
  top: 4px;
  width: 12px;
}

.form-select {
  background-color: #fff;
  border: 1px solid #999;
  display: inline-block;
  min-height: 44px;
  position: relative;
}
.form-select::after {
  background-color: #242424;
  content: "";
  height: 16px;
  -webkit-mask: url("../images/icon/arrow-down.svg") no-repeat 50% 50%;
          mask: url("../images/icon/arrow-down.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  z-index: 0;
}
.form-select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  display: inline-block;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 42px;
  min-height: 44px;
  padding: 0 32px 0 16px;
  position: relative;
  width: 100%;
  z-index: 1;
}
.is-invalid .form-select {
  background-color: #fae7e9;
  border-color: #b62917;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  padding-bottom: 58px;
  padding-top: 60px;
  position: relative;
}

.btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  font-weight: normal;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 44px;
  padding: 9px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  width: 100%;
}
.btn:hover, .btn:active {
  opacity: 0.7;
}
.btn:disabled {
  background-color: #a1a1a1;
  border-color: #fff;
  color: #fff;
  cursor: default;
}
.btn:disabled:hover, .btn:disabled:active {
  opacity: 1;
}
.btn img,
.btn svg {
  height: 16px;
  margin-left: 8px;
  width: 16px;
}

.btn-round {
  border-radius: 18px;
  font-size: 14px;
  min-height: 36px;
  padding: 6px 15px;
  width: auto;
}

.btn-arrow::after {
  background-color: #242424;
  content: "";
  display: inline-block;
  height: 16px;
  margin-left: 8px;
  -webkit-mask: url("../images/icon/arrow-right.svg") no-repeat 50% 50%;
          mask: url("../images/icon/arrow-right.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 16px;
}

.btn-external::after {
  background-color: #242424;
  content: "";
  display: inline-block;
  height: 16px;
  margin-left: 8px;
  -webkit-mask: url("../images/icon/external.svg") no-repeat 50% 50%;
          mask: url("../images/icon/external.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 16px;
}

.btn-logout::after {
  background-color: #242424;
  content: "";
  display: inline-block;
  height: 16px;
  margin-left: 8px;
  -webkit-mask: url("../images/icon/logout.svg") no-repeat 50% 50%;
          mask: url("../images/icon/logout.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 16px;
}

.btn-icon-right {
  padding: 9px 32px;
}
.btn-icon-right::after {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-primary {
  background-color: #ffb400;
  border-color: #ffb400;
  color: #111;
}
.btn-primary svg {
  fill: #242424;
}

.btn-secondary {
  background-color: #003c1e;
  border-color: #003c1e;
  color: #fff;
}
.btn-secondary.btn-arrow::after, .btn-secondary.btn-external::after, .btn-secondary.btn-logout::after {
  background-color: #fff;
}

.btn-tertiary {
  background-color: #eff7f4;
  border-color: #b0d8c8;
  color: #003c1e;
}
.btn-tertiary.btn-arrow::after, .btn-tertiary.btn-external::after, .btn-tertiary.btn-logout::after {
  background-color: #003c1e;
}

.btn-normal {
  background-color: #fff;
  border-color: #b0d8c8;
  color: #003c1e;
}
.btn-normal.btn-arrow::after, .btn-normal.btn-external::after, .btn-normal.btn-logout::after {
  background-color: #003c1e;
}

.btn-daccount {
  height: 45px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  width: 245px;
}
.btn-daccount:hover {
  opacity: 0.7;
}

.btn-help {
  background-color: #1b8159;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  height: 20px;
  min-height: auto;
  padding: 0;
  width: 20px;
}
.btn-help::after {
  content: "？";
}

.btn-menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 12px;
  top: 4px;
  width: 50px;
  z-index: 99;
}
.btn-menu:hover, .btn-menu:active {
  opacity: 0.7;
}
.btn-menu::after {
  background-color: #003c1e;
  content: "";
  display: inline-block;
  height: 18px;
  -webkit-mask: url("../images/icon/menu.svg") no-repeat 50% 50%;
          mask: url("../images/icon/menu.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 24px;
}
.is-menu-open .btn-menu::after {
  height: 18px;
  -webkit-mask-image: url("../images/icon/close.svg");
          mask-image: url("../images/icon/close.svg");
  width: 18px;
}

.btns {
  margin: 32px 0 0;
}
.btns > .btn {
  margin: 0 0 16px;
}
.btns > .btn:last-child {
  margin-bottom: 0;
}

.btns_text {
  font-size: 16px;
  margin-bottom: 16px;
  width: 100%;
}

.header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  left: 0;
  margin: 0 auto;
  max-width: 1152px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 6;
}
.header::after {
  background-color: #e6e6e6;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 59px;
  width: 100%;
  z-index: 5;
}
.is-header-fixed .header {
  position: fixed;
}

.header_logo {
  height: 28px;
  padding: 0 25px 0 16px;
  position: relative;
}
.header_logo::after {
  background-color: #ccc;
  content: "";
  height: 26px;
  position: absolute;
  right: 12px;
  top: 0;
  width: 1px;
}

.menu {
  background-color: #fff;
  border: 0;
  display: none;
  left: 0;
  margin: 0 auto;
  max-width: 1152px;
  padding: 8px 0 32px;
  position: absolute;
  top: 60px;
  width: 100%;
  z-index: 6;
}
.is-header-fixed .menu {
  position: fixed;
}
.menu li a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #003c1e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 24px;
  text-decoration: none;
  width: 100%;
}
.menu svg {
  height: 28px;
  margin-right: 10px;
  width: 28px;
}

.menu_btns {
  display: block;
  padding: 0 24px;
}
.menu_btns .btn {
  display: block;
  margin-top: 16px;
}
.menu_btns .btn::after,
.menu_btns .btn svg {
  height: 16px;
  margin-right: 0;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
}

.breadcrumb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  font-size: 13px;
  margin: 0 auto;
  max-width: 1152px;
  min-height: 44px;
  position: relative;
  z-index: 5;
}

.breadcrumb_text {
  padding: 11px 16px;
}

.breadcrumb_links {
  background-color: #fff;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  left: 0;
  padding: 8px 0;
  position: absolute;
  top: 44px;
  width: 100%;
}
.breadcrumb_links a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  width: 100%;
}
.breadcrumb_links a::after {
  background-color: #a1a1a1;
  content: "";
  display: inline-block;
  height: 16px;
  -webkit-mask: url("../images/icon/arrow-right.svg") no-repeat 50% 50%;
          mask: url("../images/icon/arrow-right.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: scale(0.68) translateY(-50%);
          transform: scale(0.68) translateY(-50%);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 16px;
}

.breadcrumb_btn {
  border-bottom: 1px solid #e6e6e6;
  color: #646464;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.breadcrumb_btn::after {
  background-color: #1b8159;
  content: "";
  display: inline-block;
  height: 16px;
  -webkit-mask: url("../images/icon/arrow-down.svg") no-repeat 50% 50%;
          mask: url("../images/icon/arrow-down.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  width: 16px;
}
.is-breadcrumb-open .breadcrumb_btn::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.breadcrumb_btn:hover {
  opacity: 0.7;
}

.contents {
  margin: 24px 16px 80px;
  max-width: 1152px;
}

.section-contract {
  border-image-outset: 0 100vw;
  border-image-slice: fill 0;
  border-image-source: linear-gradient(#fff, #fff);
  border-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 40px;
}

.section-campaign {
  padding-bottom: 77px;
}

table {
  border: 1px solid #e6e6e6;
}
table th {
  background-color: #fafafa;
  padding: 12px 16px;
  text-align: left;
}
table td {
  padding: 16px;
}

.table {
  border-bottom: 0;
  margin: 16px 0;
}
.table th {
  background-color: #fafafa;
  border: 0;
  border-bottom: 1px solid #e6e6e6;
  display: block;
  padding: 12px 16px;
  text-align: left;
}
.table td {
  border: 0;
  border-bottom: 1px solid #e6e6e6;
  display: block;
  padding: 16px;
}
.table .table_th-desc {
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
}
.table .table_th-nest {
  padding-bottom: 0;
  padding-right: 0;
}
.table .table_th-nest table {
  border-bottom: 0;
  border-right: 0;
  margin-bottom: 0;
}
.table .table_th-nest table tr:last-of-type td {
  border-bottom: 0;
}
.table .table_th-nest table th {
  border-right: 0;
}
.table .table_th-nest table td {
  border-right: 0;
  font-weight: normal;
}
.table .table_td-nest {
  padding: 0;
}
.table .table_td-nest table {
  border: 0;
}
.table .table_td-nest table tr:first-of-type td {
  border-top: 0;
}
.table .table_td-nest table tr:last-of-type td {
  border-bottom: 0;
}
.table .table_td-nest table td {
  border-left: 0;
  border-right: 0;
}
.table .tr-card td {
  padding-bottom: 8px;
}
.table .tr-card .form-radio {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
}
.table .tr-card .form-radio input {
  vertical-align: middle;
}
.table .tr-card .form-radio p span {
  display: inline-block;
  vertical-align: middle;
}
.table .tr-card .form-radio img {
  height: 130px;
  margin: 8px 0 16px 36px;
  vertical-align: bottom;
  width: 210px;
}

.table-accordion {
  background: #fff;
  border: 1px solid #e6e6e6;
  display: table;
  margin: 0;
  table-layout: fixed;
  width: 100%;
}
.table-accordion .row {
  display: block;
  overflow: hidden;
  position: relative;
}
.table-accordion .row:nth-of-type(2) .cell_header {
  border-top: none;
}
.table-accordion .row_header {
  background-color: #fafafa;
  display: none;
  padding: 12px 16px;
}
.table-accordion .row_header .cell {
  font-weight: bold;
  padding: 20px 16px;
  text-align: center;
}
.table-accordion .cell-colspan_heading {
  color: #111;
  display: none;
  font-weight: bold;
  padding: 4px 16px;
  text-align: left;
  width: 100%;
}
.table-accordion .cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: normal;
  padding: 4px 16px;
  word-break: break-all;
}
.table-accordion .cell:nth-of-type(n + 2) {
  display: none;
}
.table-accordion .cell:nth-of-type(n + 2)::before {
  color: #111;
  content: attr(data-label);
  display: inline-block;
  font-weight: bold;
  margin-right: 16px;
  text-align: left;
  white-space: nowrap;
}
.table-accordion .cell span {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.table-accordion .cell.cell-colspan {
  display: none;
  padding: 0;
  position: relative;
}
.table-accordion .cell.cell-colspan::before {
  display: none;
}
.table-accordion .cell.cell-colspan > .cell {
  display: block;
  width: 100%;
}
.table-accordion .cell.cell-colspan > .cell::before {
  display: none;
}
.table-accordion .cell.cell-colspan > .cell:last-child {
  border-right: 0;
}
.table-accordion .cell.cell-colspan > .cell:last-child > .cell {
  border-bottom: 0;
  border-right: 0;
}
.table-accordion .cell.cell-colspan > .cell > .cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 4px;
}
.table-accordion .cell.cell-colspan > .cell > .cell:last-child {
  border-right: 0;
  padding: 0;
}
.table-accordion .cell.cell-colspan > .cell > .cell::before {
  color: #111;
  content: attr(data-label);
  display: inline-block;
  font-weight: bold;
  margin-right: 16px;
  padding-left: 1em;
  text-align: left;
  white-space: nowrap;
  width: 126px;
}
.table-accordion .cell.cell_pay {
  position: relative;
}
.table-accordion .cell.cell_pay .btn-help {
  left: 90px;
  position: absolute;
  top: 5px;
  z-index: 2;
}
.table-accordion .cell.cell-colspan_item::before {
  padding-left: 1em;
}
.table-accordion .cell.has-help {
  position: relative;
}
.table-accordion .cell.has-help::before {
  padding-right: 24px;
}
.table-accordion .cell.has-help .btn-help {
  left: 110px;
  position: absolute;
  top: 4px;
  z-index: 2;
}
.table-accordion .row > .cell:last-child {
  padding-bottom: 12px;
}
.table-accordion .cell_header {
  background-clip: padding-box;
  background-color: #fafafa;
  border-top: 1px solid #e6e6e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 44px 12px 16px;
  position: relative;
  text-align: left;
}
.table-accordion .cell_header::after {
  background-color: #242424;
  content: "";
  display: inline-block;
  height: 16px;
  -webkit-mask: url("../images/icon/arrow-down.svg") no-repeat 50% 50%;
          mask: url("../images/icon/arrow-down.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  width: 16px;
}
.table-accordion input[type=checkbox] {
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.table-accordion input[type=checkbox]:checked ~ .cell:nth-of-type(n + 2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.table-accordion input[type=checkbox]:checked ~ .cell:nth-of-type(n + 2).cell-colspan {
  display: block;
}
.table-accordion input[type=checkbox]:checked ~ .cell-colspan_heading {
  display: block;
}
.table-accordion input[type=checkbox]:checked ~ .cell_header {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 12px;
}
.table-accordion input[type=checkbox]:checked ~ .cell_header::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.table-accordion.table_loginhistory .cell:nth-of-type(n + 2)::before {
  width: 72px;
}
.table-accordion.table_informationinquiry .cell:nth-of-type(n + 2)::before {
  width: 126px;
}
.table-accordion.table_plalahistory input[type=checkbox]:checked ~ .cell:nth-of-type(2) {
  display: none;
}
.table-accordion.table_plalahistory input[type=checkbox]:checked ~ .cell:nth-of-type(n + 2)::before {
  width: 84px;
}
.table-accordion.table_breakdown .cell_header span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table-accordion.table_breakdown input[type=checkbox]:checked ~ .cell:nth-of-type(n + 2)::before {
  white-space: normal;
  width: 122px;
  word-break: break-all;
}

.table-plalapointdetail .table_th-nest {
  border-bottom: 0;
}
.table-plalapointdetail + .pagination_bottom {
  background-color: #fafafa;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 16px 0;
}
.table-plalapointdetail .table-accordion {
  border-right: none;
}
.table-plalapointdetail .table-accordion input[type=checkbox]:checked ~ .cell:nth-of-type(n + 2)::before {
  width: 56px;
}

.table-usagedetail tbody th {
  width: 128px;
}

.flow-steps {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  counter-reset: count 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  list-style: none;
  margin: 26px 20px;
}
.flow-steps li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  color: #003c1e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 20px;
  position: relative;
  width: 100%;
}
.flow-steps li::before {
  content: counter(count);
  counter-increment: count 1;
}
.flow-steps li::after {
  background-color: #fff;
  border-radius: 20px;
  content: "";
  height: 40px;
  left: -20px;
  position: absolute;
  top: 0;
  width: calc(100% + 40px);
  z-index: -1;
}
.flow-steps li:first-of-type {
  margin-left: 0;
}
.flow-steps li:last-of-type {
  margin-right: 0;
}
.flow-steps li.is-current {
  background-color: #003c1e;
  color: #fff;
  z-index: 1;
}
.flow-steps li.is-current::after {
  background-color: #003c1e;
}
.is-error .flow-steps li.is-current {
  background-color: #b62917;
}
.is-error .flow-steps li.is-current::after {
  background-color: #b62917;
}

.flow-steps_text {
  display: none;
}

.footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 58px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: absolute;
  width: 100%;
}

.footer_copyright {
  color: #666;
  font-size: 10px;
  line-height: 14px;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.card_title {
  color: #111;
  line-height: 22px;
}

.card_btns {
  text-align: center;
}
.card_btns .btn {
  margin: 12px auto 0;
  min-width: 126px;
}

.card-btn a {
  display: block;
  height: 100%;
  position: relative;
  text-decoration: none;
  width: 100%;
}

.card-btn_icon {
  fill: #1b8159;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
}

.card-w-logo {
  padding: 0;
}

.card-w-logo_header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 68px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.card-w-logo_header_logo {
  height: 32px;
  padding-right: 25px;
  position: relative;
}
.card-w-logo_header_logo::after {
  background-color: #ccc;
  content: "";
  height: 24px;
  position: absolute;
  right: 12px;
  top: 0;
  width: 1px;
}

.card-w-logo_header_logo {
  color: #646464;
  font-size: 16px;
}

.card-w-logo_main {
  padding: 24px 16px 40px;
  width: 100%;
}

.label,
.label-required {
  background-color: #ffb400;
  border-radius: 3px;
  color: #111;
  display: inline-block;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: normal;
  padding: 1px 8px;
}

.label-required {
  position: absolute;
  right: 0;
  top: 0;
}

.title-l {
  color: #003c1e;
  font-size: 24px;
  line-height: 36px;
  margin: 28px 0 26px;
}

.title-m {
  color: #003c1e;
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 6px;
}

.heading-l {
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
  margin: 0 0 10px;
}

.heading-m {
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  margin: 0 0 10px;
}

.text-xl {
  font-size: 18px;
  line-height: 26px;
}

.text-l {
  font-size: 16px;
  line-height: 26px;
}

.text-m {
  font-size: 14px;
}

.text-s {
  font-size: 12px;
  line-height: 20px;
}

.error-l {
  color: #b62917;
  font-size: 16px;
  line-height: 26px;
}

.error-m {
  color: #b62917;
  font-size: 14px;
}

.error-s {
  color: #b62917;
  font-size: 12px;
  line-height: 20px;
}

.maintenance {
  display: none;
  overflow: hidden;
  width: 100%;
  z-index: 5;
}
.has-maintenance .maintenance {
  display: block;
}

.maintenance_content {
  background-color: #FFF8E1;
  color: #1B8159;
  padding: 12px 16px;
}

.maintenance_item {
  margin-bottom: 8px;
  padding: 0;
  text-overflow: ellipsis;
}
.maintenance_item:last-child {
  margin-bottom: 0;
}
.maintenance_item a {
  color: #1B8159;
  display: inline-block;
  font-size: 14px;
  max-width: 100%;
  position: relative;
  text-decoration: none;
}

.maintenance_text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  white-space: nowrap;
}

.link-external {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.link-external::after {
  background-color: #1b8159;
  content: "";
  display: inline-block;
  height: 16px;
  -webkit-mask: url("../images/icon/external.svg") no-repeat 50% 50%;
          mask: url("../images/icon/external.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  width: 16px;
}

.link-arrow {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.link-arrow::after {
  background-color: #1b8159;
  content: "";
  display: inline-block;
  height: 16px;
  -webkit-mask: url("../images/icon/arrow-right.svg") no-repeat 50% 50%;
          mask: url("../images/icon/arrow-right.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-transform: scale(0.68);
          transform: scale(0.68);
  width: 16px;
}

.link-card {
  border: 1px solid #1b8159;
  border-radius: 8px;
  display: inline-block;
  padding: 22px 44px 22px 56px;
  position: relative;
  text-decoration: none;
  width: 100%;
}
.link-card::after {
  background-color: #1b8159;
  content: "";
  display: inline-block;
  height: 16px;
  -webkit-mask: url("../images/icon/arrow-right.svg") no-repeat 50% 50%;
          mask: url("../images/icon/arrow-right.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  right: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
}

.link-card_icon {
  color: #1b8159;
  display: inline-block;
  height: 24px;
  left: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
}
.link-card_icon svg {
  height: 24px;
  width: 24px;
}

.link-card_title {
  color: #1b8159;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
}

.link-card_text {
  color: #111;
  display: inline-block;
}

.link-card_notes {
  color: #111;
}

.list-disc {
  font-size: 12px;
  line-height: 20px;
}
.list-disc li {
  padding-left: 1em;
  position: relative;
}
.list-disc li::before {
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}

.list-notes {
  font-size: 12px;
  line-height: 20px;
}
.list-notes li {
  padding-left: 1em;
  position: relative;
}
.list-notes li::before {
  content: "※";
  left: 0;
  position: absolute;
  top: 0;
}
.list-notes li.no-asterisk::before {
  display: none;
}

.notes {
  background-color: #fff;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 16px;
  line-height: 26px;
  padding: 16px;
}
.notes.has-border {
  border: 1px solid #e6e6e6;
}

.notes_title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fae7e9;
  color: #b62917;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  margin-bottom: 11px;
  padding: 11px 16px;
  text-align: center;
  width: 100%;
}
.notes_title.is-conditions {
  background-color: #eff7f4;
  color: #111;
}
.notes_text .list-disc {
  font-size: 16px;
  line-height: 26px;
  width: 100%;
}

.notes_quote {
  background-color: #f0f0f0;
  padding: 11px;
}

.notes-policy {
  background-color: #fff;
  border: 1px solid #e6e6e6;
}
.notes-policy iframe {
  border: 0;
  display: block;
  height: 200px;
  width: 100%;
}

.notes-policy-w-check {
  background-color: #fafafa;
}
.notes-policy-w-check iframe {
  background-color: #fafafa;
}
.notes-policy-w-check .notes-policy_footer {
  background-color: #fff;
  border-top: 1px solid #e6e6e6;
  padding: 24px;
}

.pagetop {
  bottom: 16px;
  display: none;
  height: 48px;
  position: fixed;
  right: 16px;
  width: 48px;
  z-index: 5;
}
.pagetop.is-bottom {
  bottom: 74px;
  position: absolute;
}
.pagetop button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  background-color: #1b8159;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  height: 100%;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  width: 100%;
}
.pagetop button:hover, .pagetop button:active {
  opacity: 0.7;
}
.pagetop button::after {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 10px;
  -webkit-mask: url("../images/icon/pagetop.svg") no-repeat 50% 50%;
          mask: url("../images/icon/pagetop.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 18px;
}

.bg-white {
  background-color: #fff;
}
.bg-white.has-border {
  border: 1px solid #e6e6e6;
}

.bg-gray {
  background-color: #fafafa;
}

.bg-gray2 {
  background-color: #f0f0f0;
}

.bg-band-white {
  border-image-outset: 0 100vw;
  border-image-slice: fill 0;
  border-image-source: linear-gradient(#fff, #fff);
  border-width: 0;
}

.bg-band-lightgray {
  border-image-outset: 0 100vw;
  border-image-slice: fill 0;
  border-image-source: linear-gradient(#fafafa, #fafafa);
  border-width: 0;
}

.bg-band-gray {
  border-image-outset: 0 100vw;
  border-image-slice: fill 0;
  border-image-source: linear-gradient(#f6f6f6, #f6f6f6);
  border-width: 0;
}

.hidden {
  display: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.static {
  position: static;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-auto {
  bottom: auto;
}

.bottom-40 {
  bottom: 40px;
}

.w-40 {
  width: 40px;
}

.w-46 {
  width: 46px;
}

.w-56 {
  width: 56px;
}

.w-64 {
  width: 64px;
}

.w-66 {
  width: 66px;
}

.w-72 {
  width: 72px;
}

.w-74 {
  width: 78px;
}

.w-76 {
  width: 76px;
}

.w-78 {
  width: 78px;
}

.w-80 {
  width: 80px;
}

.w-82 {
  width: 82px;
}

.w-98 {
  width: 98px;
}

.w-120 {
  width: 120px;
}

.w-156 {
  width: 156px;
}

.w-200 {
  width: 200px;
}

.w-244 {
  width: 244px;
}

.w-256 {
  width: 256px;
}

.w-340 {
  width: 340px;
}

.w-360 {
  width: 360px;
}

.w-400 {
  width: 400px;
}

.w-560 {
  width: 560px;
}

.w-1\/12 {
  width: 8.333333%;
}

.w-2\/12 {
  width: 16.666667%;
}

.w-3\/12 {
  width: 25%;
}

.w-4\/12 {
  width: 33.333333%;
}

.w-5\/12 {
  width: 41.666667%;
}

.w-6\/12 {
  width: 50%;
}

.w-7\/12 {
  width: 58.333333%;
}

.w-8\/12 {
  width: 66.666667%;
}

.w-9\/12 {
  width: 75%;
}

.w-10\/12 {
  width: 83.333333%;
}

.w-11\/12 {
  width: 91.666667%;
}

.w-full {
  width: 100%;
}

.min-h-354 {
  min-height: 354px;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mt-6 {
  margin-top: 6px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-18 {
  margin-top: 18px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-28 {
  margin-top: 28px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.mr-3 {
  margin-right: 3px !important;
}

.mr-4 {
  margin-right: 4px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mr-12 {
  margin-right: 12px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-28 {
  margin-bottom: 28px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.ml-3 {
  margin-left: 3px !important;
}

.ml-4 {
  margin-left: 4px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.ml-12 {
  margin-left: 12px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.ml-36 {
  margin-left: 36px !important;
}

.ml-72 {
  margin-left: 72px !important;
}

.ml-74 {
  margin-left: 74px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.ml-120 {
  margin-left: 120px !important;
}

.mx-3 {
  margin-left: 3px !important;
  margin-right: 3px !important;
}

.mx-4 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.mx-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.my-0 {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.my-40 {
  margin-bottom: 40px !important;
  margin-top: 40px !important;
}

.p-11 {
  padding: 11px !important;
}

.p-14 {
  padding: 14px !important;
}

.p-16 {
  padding: 16px !important;
}

.p-24 {
  padding: 24px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

.pr-56 {
  padding-right: 56px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.py-24 {
  padding-bottom: 24px !important;
  padding-top: 24px !important;
}

.text-primary-900 {
  color: #003c1e;
}

.text-complementary-600 {
  color: #b62917;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-normal {
  font-weight: normal;
}

.font-bold {
  font-weight: bold;
}

.align-top {
  vertical-align: top;
}
.overlay {
  background: rgba(0, 0, 0, 0.32);
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

.container-justify {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.container-justify .container-justify_main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 16px;
  word-break: break-all;
}
.container-justify .container-justify_side em {
  font-style: normal;
  font-weight: bold;
}
th .container-justify .container-justify_side {
  font-weight: normal;
}
.table_th-nest .container-justify .container-justify_side {
  margin: 0 16px 0 0;
}
.md\:container-justify .md\:container-justify_side em {
  font-style: normal;
  font-weight: bold;
}
th .md\:container-justify .md\:container-justify_side {
  font-weight: normal;
}
.table_th-nest .md\:container-justify .md\:container-justify_side {
  margin: 0 16px 0 0;
}

.pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 16px 0;
}
.pagination.pagination_top .pagination_page {
  display: none;
}
.pagination.pagination_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination a {
  background-color: #fff;
  border: none;
  border: 1px solid #b0d8c8;
  border-radius: 4px;
  color: #003c1e;
  cursor: pointer;
  display: block;
  font-size: 16px;
  height: 40px;
  line-height: 1;
  line-height: 38px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  width: 40px;
}
.pagination .pagination_prev a,
.pagination .pagination_next a {
  position: relative;
}
.pagination .pagination_prev a::after,
.pagination .pagination_next a::after {
  background-color: #1b8159;
  content: "";
  display: inline-block;
  height: 16px;
  left: 50%;
  -webkit-mask: url("../images/icon/arrow-right.svg") no-repeat 50% 50%;
          mask: url("../images/icon/arrow-right.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 16px;
}
.pagination .pagination_prev a::after {
  -webkit-mask-image: url("../images/icon/arrow-left.svg");
          mask-image: url("../images/icon/arrow-left.svg");
}
.pagination .pagination_next a::after {
  -webkit-mask-image: url("../images/icon/arrow-right.svg");
          mask-image: url("../images/icon/arrow-right.svg");
}

.pagination_page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.pagination_page li {
  margin-right: 8px;
}
.pagination_page li:last-child {
  margin-right: 0;
}
.pagination_page li.is-current {
  background-color: #003c1e;
  border: 0;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
}
.pagination_page li.is-current a {
  background-color: #003c1e;
  border-color: #003c1e;
  color: #fff;
}

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  bottom: -5000px;
  display: none;
  left: -5000px;
  position: fixed;
  right: -5000px;
  top: -5000px;
  z-index: 9999;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  bottom: 0;
  display: none;
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 10000;
}

.remodal-wrapper:after {
  content: "";
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  outline: none;
  position: relative;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
          animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
          animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 80px;
}
.remodal-wrapper > .btn {
  bottom: 40px;
  left: 50%;
  position: fixed;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* Default theme styles of the modal dialog */
.remodal {
  background: #eff7f4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #2b2e38;
  margin-bottom: 10px;
  padding: 24px;
  text-align: left;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  width: 100%;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
          animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
          animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  background: transparent;
  border: 0;
  color: #1b8159;
  cursor: pointer;
  display: block;
  height: 24px;
  margin: 0;
  outline: 0;
  overflow: visible;
  padding: 0;
  position: absolute;
  right: 16px;
  text-decoration: none;
  top: 16px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  width: 24px;
}
.remodal-close:hover, .remodal-close:active {
  opacity: 0.7;
}
.remodal-close::after {
  background-color: #1b8159;
  content: "";
  display: inline-block;
  height: 24px;
  -webkit-mask: url("../images/icon/close.svg") no-repeat 50% 50%;
          mask: url("../images/icon/close.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-transform: scale(0.5833333333);
          transform: scale(0.5833333333);
  width: 24px;
}

.remodal-close-bottom {
  display: none;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.page-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 0;
}
.page-card .contents {
  margin: 40px 0 64px;
  max-width: 800px;
  padding: 0;
  width: 100%;
}
.page-card .card {
  padding: 40px 16px;
  width: 100%;
}
.page-card .card-w-logo {
  padding: 0;
}

.page-mypage .contents {
  margin-bottom: 0;
}
.page-mypage .section-information .card {
  color: #1b8159;
  cursor: pointer;
  display: block;
  margin: 16px 0 0;
  padding: 16px 16px 20px;
}
.page-mypage .section-information .card::after {
  border-bottom: 2px solid #1b8159;
  border-right: 2px solid #1b8159;
  content: "";
  display: inline-block;
  height: 8px;
  position: absolute;
  right: 18px;
  top: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  width: 8px;
}
.page-mypage .section-information .card .card_title {
  margin-bottom: 12px;
}
.page-mypage .section-information .card .card_title svg {
  fill: #1b8159;
  height: 24px;
  vertical-align: middle;
  width: 24px;
}
.page-mypage .section-information .card .card_title span {
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
}
.page-mypage .section-information .card .section-information_list li {
  margin-top: 8px;
}
.page-mypage .section-information .card .section-information_list li:nth-child(n+2) {
  display: none;
}
.page-mypage .section-information .card .section-information_list li:first-child {
  margin-top: 0;
}
.page-mypage .section-information .card .section-information_item {
  text-decoration: none;
}
.page-mypage .section-information .card .section-information_date {
  display: block;
  margin-bottom: 4px;
}
.page-mypage .section-information .card .section-information_text {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page-mypage .section-information.is-open .card::after {
  right: 20px;
  top: 24px;
  -webkit-transform: rotate(-134deg);
          transform: rotate(-134deg);
}
.page-mypage .section-information.is-open .card .section-information_list li:nth-child(n+2) {
  display: block;
}
.page-mypage .section-customerdata {
  margin-bottom: 40px;
}
.page-mypage .section-customerdata .card {
  margin: 0 0 16px;
  padding: 20px 16px 24px;
}
.page-mypage .section-customerdata .card_title {
  margin-bottom: 16px;
}
.page-mypage .section-customerdata .card-datawrapper .card-data_main {
  color: #003c1e;
  line-height: 1.5;
  word-break: break-all;
}
.page-mypage .section-customerdata .card-datawrapper .card-data_date {
  word-break: break-all;
}
.page-mypage .section-customerdata .card_charge .card_title {
  margin-bottom: 6px;
}
.page-mypage .section-customerdata .card_charge .card-data_main {
  font-size: 24px;
  margin-bottom: 2px;
}
.page-mypage .section-customerdata .card_plan .card_title {
  margin-bottom: 8px;
}
.page-mypage .section-customerdata .card_plan .card-data_main {
  font-size: 18px;
  margin-bottom: 4px;
}
.page-mypage .section-customerdata .card_userdata .card_title {
  margin-bottom: 8px;
}
.page-mypage .section-customerdata .card_userdata .card_userdata_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.page-mypage .section-customerdata .card_userdata .userdata_label {
  width: 112px;
}
.page-mypage .section-customerdata .card_userdata .userdata_item {
  color: #003c1e;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  word-break: break-all;
}
.page-mypage .section-customerdata .card_daccount {
  padding: 19px 16px;
}
.page-mypage .section-customerdata .card_daccount .card_title {
  height: 14px;
  margin-bottom: 0;
  position: absolute;
  top: 19px;
  width: 64px;
}
.page-mypage .section-customerdata .card_daccount .card_title img {
  vertical-align: top;
}
.page-mypage .section-customerdata .card_daccount .card_daccount_link {
  color: #003c1e;
  font-size: 14px;
  line-height: 1;
  padding-left: 89px;
}
.page-mypage .section-customerdata .card_daccount .card_daccount_link em {
  font-style: normal;
  font-weight: bold;
}
.page-mypage .section-customerdata .card_daccount .btn-daccount {
  display: block;
  margin: 19px 0 0;
}
.card_daccount_plalalogin_notes + .page-mypage .section-customerdata .card_daccount .btn-daccount {
  margin: 12px 0 0;
}
.page-mypage .section-customerdata .card_daccount .card_daccount_mailaddress {
  color: #111;
  font-size: 12px;
  margin: 10px 0 0;
  word-break: break-all;
}
.page-mypage .section-customerdata .card_daccount .card_dpoint {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1b8159;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px 0 0;
  word-break: break-all;
}
.page-mypage .section-customerdata .card_daccount .card_dpoint .card_dpoint_title {
  display: block;
  min-width: 100px;
}
.page-mypage .section-customerdata .card_daccount .card_dpoint span {
  display: block;
}
.page-mypage .section-customerdata .card_daccount .card_dpoint .link-dpoint {
  color: #1b8159;
  display: block;
  position: relative;
  text-decoration: none;
}
.page-mypage .section-customerdata .card_daccount .card_dpoint .link-dpoint:hover {
  opacity: 0.7;
}
.page-mypage .section-customerdata .card_daccount .card_dpoint .link-dpoint .link-dpoint_p {
  margin-right: 30px;
}
.page-mypage .section-customerdata .card_daccount .card_dpoint .link-dpoint svg {
  fill: #1b8159;
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
}
.page-mypage .section-customerdata .card_daccount.card_daccount_plalalogin .card_daccount_plalalogin_notes {
  font-size: 12px;
  line-height: 20px;
  margin: 8px 0 0;
}
.page-mypage .section-customerdata .card_daccount.card_daccount_plalalogin .btn-daccount {
  margin: 8px 0 0;
}
.page-mypage .section-customerdata .card_plalamail {
  padding: 20px 54px 20px 72px;
}
.page-mypage .section-customerdata .card_plalamail .card_plalamail_list {
  border: none;
  border-collapse: collapse;
  width: auto;
}
.page-mypage .section-customerdata .card_plalamail .card_plalamail_list .plalamail_label {
  background: none;
  border: none;
  font-weight: normal;
  padding: 0;
  text-align: left;
  vertical-align: top;
  width: 85px;
}
.page-mypage .section-customerdata .card_plalamail .card_plalamail_list .plalamail_item {
  border: none;
  color: #003c1e;
  padding: 0;
  text-align: right;
  vertical-align: top;
}
.page-mypage .section-customerdata .card_plalamail a {
  color: #111;
  text-decoration: none;
}
.page-mypage .section-customerdata .card_plalamail a::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.page-mypage .section-customerdata .card_freeticket {
  padding: 32px 54px 32px 64px;
}
.page-mypage .section-customerdata .card_freeticket p {
  word-break: break-all;
}
.page-mypage .section-customerdata .card_freeticket a {
  color: #111;
  text-decoration: none;
}
.page-mypage .section-customerdata .card_freeticket a::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.page-mypage .section-customerdata .card_plalapoint a {
  color: #111;
  text-decoration: none;
}
.page-mypage .section-customerdata .card_plalapoint a::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.page-mypage .section-customerdata .main-column .card_daccount .card_title {
  margin-bottom: 14px;
  position: relative;
  top: auto;
}
.page-mypage .section-customerdata .main-column .card_daccount .card_daccount_link {
  font-size: 18px;
  font-weight: normal;
  line-height: 22px;
  padding-left: 0;
}
.page-mypage .section-customerdata .main-column .card_daccount .btn-daccount {
  margin-top: 14px;
}
.page-mypage .section-customerdata .main-column .card_daccount .card_daccount_mailaddress {
  font-size: 14px;
  margin-top: 6px;
}
.page-mypage .section-customerdata .main-column .card_daccount .card_dpoint {
  margin: 15px 0 0;
}
.page-mypage .section-customerdata .main-column .card_daccount.card_daccount_plalalogin .card_daccount_plalalogin_notes {
  font-size: 12px;
  line-height: 20px;
}
.page-mypage .section-customerdata .main-column .card_daccount.card_daccount_plalalogin .btn-daccount {
  margin-top: 12px;
}
.page-mypage .section-customerdata .side-column {
  margin-top: 40px;
}
.page-mypage .section-customerdata .side-column .card_img {
  display: block;
  height: 24px;
  left: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
}
.page-mypage .section-customerdata .side-column .card_img svg {
  display: inline-block;
  fill: #1b8159;
  height: 24px;
  width: 24px;
}
.page-mypage .section-customerdata .side-column .card_title {
  margin-bottom: 8px;
}
.page-mypage .section-customerdata .side-column .card_icon {
  height: 40px;
  padding: 11px 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
}
.page-mypage .section-customerdata .side-column .card_icon svg {
  display: inline-block;
  fill: #1b8159;
  height: 16px;
  width: 16px;
}
.page-mypage .section-customerdata.has-card_plalapoint .card_half.card_daccount {
  padding: 24px 16px;
}
.page-mypage .section-customerdata.has-card_plalapoint .card_freeticket,
.page-mypage .section-customerdata.has-card_plalapoint .card_plalapoint {
  padding: 32px 54px 32px 64px;
}
.page-mypage .section-customerdata.has-card_plalapoint .card_freeticket p,
.page-mypage .section-customerdata.has-card_plalapoint .card_plalapoint p {
  word-break: break-all;
}
.page-mypage .section-contract ul {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.page-mypage .section-contract .card a {
  padding: 60px 16px 12px;
}
.page-mypage .section-contract .card_img {
  display: block;
  height: 32px;
  left: 50%;
  position: absolute;
  top: 16px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 32px;
}
.page-mypage .section-contract .card_caption {
  color: #111;
  display: block;
  font-size: 12px;
  line-height: 20px;
}
.page-mypage .section-contract .card_title {
  color: #111;
  display: block;
  font-weight: bold;
  line-height: 22px;
  margin-bottom: 8px;
  text-align: center;
}
.page-mypage .section-contract .card_title .br-sp {
  display: block;
}
.page-mypage .section-support {
  width: 100%;
}
.page-mypage .section-support .card {
  border-radius: 12px;
  height: 80px;
  margin-bottom: 16px;
}
.page-mypage .section-support .card:last-child {
  margin-bottom: 0;
}
.page-mypage .section-support .card a {
  padding: 33px 48px 33px 72px;
}
.page-mypage .section-support .card_img {
  display: block;
  height: 32px;
  left: 16px;
  position: absolute;
  top: 24px;
  width: 32px;
}
.page-mypage .section-support .card_title {
  display: block;
  font-weight: bold;
}
.page-mypage .section-campaign {
  width: 100%;
}
.page-mypage .section-campaign .card {
  margin-bottom: 16px;
}
.page-mypage .section-campaign .card a {
  min-height: 92px;
  padding: 24px 48px 24px 130px;
}
.page-mypage .section-campaign .card_img {
  display: block;
  left: 16px;
  max-height: 65px;
  max-width: 98px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-mypage .section-campaign .card_caption {
  color: #111;
}

.page-daccount-announce.page-card .card {
  padding: 20px 16px 40px;
}
.page-daccount-announce .daccount-announce_title {
  color: #003c1e;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}
.page-daccount-announce .announce_btn_top {
  border-image-outset: 0 100vw;
  border-image-slice: fill 0;
  border-image-source: linear-gradient(#eff7f4, #eff7f4);
  margin: 0 0 32px;
  padding: 24px 0;
  position: relative;
}
.page-daccount-announce .announce_btn_top::after {
  -webkit-box-shadow: 0 0 6px rgba(25, 44, 20, 0.16);
          box-shadow: 0 0 6px rgba(25, 44, 20, 0.16);
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
}
.page-daccount-announce .announce_btn_top .btn {
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-daccount-announce .announce_btn_top_paragraph {
  color: #1b8159;
  font-size: 18px;
}
.page-daccount-announce .announce_btn_top_paragraph img {
  height: auto;
  width: 100%;
}
.page-daccount-announce .announce_title {
  font-size: 18px;
  font-weight: bold;
}
.page-daccount-announce .announce_prepare {
  margin: 40px 0;
}
.page-daccount-announce .announce_prepare .announce_title {
  margin-bottom: 21px;
}
.page-daccount-announce .announce_prepare_list li {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
  padding-left: 36px;
  position: relative;
}
.page-daccount-announce .announce_prepare_list li::before {
  background-color: #1b8159;
  content: "";
  display: block;
  height: 24px;
  left: 0;
  -webkit-mask: url("../images/icon/checked.svg") no-repeat 50% 50%;
          mask: url("../images/icon/checked.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
}
.page-daccount-announce .announce_prepare_list li:last-child {
  margin-bottom: 0;
}
.page-daccount-announce .announce_procedure .announce_title {
  margin-bottom: 24px;
}
.page-daccount-announce .announce_procedure_flow {
  margin: 0 0 40px;
}
.page-daccount-announce .announce_procedure_flow li {
  border: 1px solid #e6e6e6;
  margin-bottom: 32px;
  position: relative;
}
.page-daccount-announce .announce_procedure_flow li::after {
  background-color: #003c1e;
  bottom: -20px;
  content: "";
  display: block;
  height: 12px;
  left: 50%;
  -webkit-mask: url("../images/icon/step-arrow.svg") no-repeat 50% 50%;
          mask: url("../images/icon/step-arrow.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  -webkit-transform: rotate(90deg) translateX(10%) translateY(100%);
          transform: rotate(90deg) translateX(10%) translateY(100%);
  width: 16px;
}
.page-daccount-announce .announce_procedure_flow li:last-child::after {
  display: none;
}
.page-daccount-announce .announce_procedure_flow .flow_step {
  background-color: #eff7f4;
  border-bottom: 1px solid #e6e6e6;
  color: #1b8159;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 0;
  text-align: center;
}
.page-daccount-announce .announce_procedure_flow .flow_img {
  left: 50%;
  position: absolute;
  top: 60px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-daccount-announce .announce_procedure_flow .flow_img svg {
  fill: #1b8159;
  height: 40px;
  width: 40px;
}
.page-daccount-announce .announce_procedure_flow .flow_text {
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  height: 130px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 20px;
  padding: 72px 0 20px;
  text-align: center;
}
.page-daccount-announce .announce_btn_bottom {
  border-image-outset: 0 100vw 100vw 100vw;
  border-image-slice: fill 0;
  border-image-source: linear-gradient(#fafafa, #fafafa);
  padding: 32px 0;
}
.page-daccount-announce .announce_btn_bottom .btn {
  display: block;
  margin: 0 auto;
}

.page-notes {
  background-color: transparent;
  font-size: 16px;
  line-height: 22px;
  min-width: auto;
  padding: 24px;
}

.page-credittransfer .card_square {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  margin: 19px 0 27px;
  padding: 19px 16px 24px;
}
.page-credittransfer .lead {
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 19px;
}
.page-credittransfer .flow_list .flow_item {
  border: 1px solid #e6e6e6;
  margin: 16px 0;
}
.page-credittransfer .flow_list .flow_item:last-child {
  margin-bottom: 0;
}
.page-credittransfer .flow_header {
  background-color: #eff7f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.page-credittransfer .flow_header.border {
  border-bottom: 1px solid #e6e6e6;
}
.page-credittransfer .flow_number {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #e6e6e6;
  color: #1b8159;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 16px;
}
.page-credittransfer .flow_number.current {
  background-color: #1b8159;
  color: #fff;
}
.page-credittransfer .flow_title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eff7f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  font-weight: bold;
  padding: 12px 15px;
}
.page-credittransfer .flow_text_inner {
  border-bottom: 1px solid #e6e6e6;
  padding: 12px 16px;
}
.page-credittransfer .flow_text_inner:last-child {
  border-bottom: 0;
}
.page-credittransfer .flow_text_inner em {
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 4px;
}
.page-credittransfer .flow_text_inner .list-notes .text-complementary-600 {
  font-weight: bold;
  text-decoration: underline;
}
.page-credittransfer .paragraph_attention {
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 27px;
}
.page-credittransfer .btns {
  margin-top: 27px;
}

.page-usage .contents {
  margin-top: 0;
  padding-top: 28px;
  position: relative;
}
.page-usage .contents .title-l {
  margin-top: 0;
}
.page-usage .main_column {
  max-width: 792px;
}
.page-usage .side_column {
  padding: 0 0 0 24px;
  position: absolute;
  right: -8px;
  top: 22px;
  z-index: 2;
}
.page-usage .side_column.is-open .local_nav {
  display: block;
}
.page-usage .side_column.is-fixed {
  padding-left: 40px;
  position: fixed;
  right: 8px;
  top: 82px;
}
.page-usage .side_column.is-fixed .btn_local_nav {
  position: fixed;
  right: 8px;
  top: 82px;
}
.page-usage .local_nav {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 6px rgba(25, 44, 20, 0.16);
          box-shadow: 0 0 6px rgba(25, 44, 20, 0.16);
  display: none;
  overflow: hidden;
  position: relative;
  z-index: 4;
}
.page-usage .local_nav a {
  background: #fff;
  display: block;
  padding: 12px 40px 12px 16px;
  position: relative;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.page-usage .local_nav a::after {
  background-color: #1b8159;
  content: "";
  display: inline-block;
  height: 12px;
  -webkit-mask: url("../images/icon/arrow-down.svg") no-repeat 50% 50%;
          mask: url("../images/icon/arrow-down.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  width: 12px;
}
.page-usage .local_nav a:hover, .page-usage .local_nav a:active {
  background: #1b8159;
  color: #fff;
  opacity: 1;
}
.page-usage .local_nav a:hover::after, .page-usage .local_nav a:active::after {
  background-color: #fff;
}
.page-usage .local_nav a.is-current {
  background-color: #1b8159;
  color: #fff;
}
.page-usage .local_nav a.is-current::after {
  background-color: #fff;
}
.page-usage .btn_local_nav {
  background: #fff;
  border: 0;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 6px rgba(25, 44, 20, 0.16);
          box-shadow: 0 0 6px rgba(25, 44, 20, 0.16);
  cursor: pointer;
  display: block;
  height: 44px;
  margin: 0;
  opacity: 1;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  width: 44px;
  z-index: 3;
}
.page-usage .btn_local_nav:hover, .page-usage .btn_local_nav:active {
  opacity: 0.7;
}
.page-usage .btn_local_nav svg {
  height: 10px;
  width: 18px;
}
.page-mypage-userid {
  font-size: 16px;
  line-height: 26px;
}
.page-mypage-userid .card {
  padding-bottom: 0;
}
.page-mypage-userid .title {
  color: #003c1e;
  font-size: 20px;
  line-height: 30px;
}
.page-mypage-userid .lead {
  border-image-outset: 0 100vw;
  border-image-slice: fill 0;
  border-image-source: linear-gradient(0deg, #e6e6e6 1px, #fff 0);
  border-width: 0;
  margin: 0 0 36px;
  padding: 0 0 36px;
}
.page-mypage-userid .mypage-userid-img-old {
  height: auto;
}
.page-mypage-userid .mypage-userid-notes {
  background-color: #fcf3f4;
  padding: 20px 16px;
}
.page-mypage-userid .mypage-userid-notes .font-bold {
  color: #b62917;
}
.page-mypage-userid .list-disc {
  font-size: 16px;
  line-height: 26px;
}
.page-mypage-userid .mypage-userid-footer {
  border-image-outset: 0 100vw;
  border-image-slice: fill 0;
  border-image-source: linear-gradient(0deg, #fafafa 1px, #fafafa 0);
  border-width: 0;
  margin: 44px 0 0;
  padding: 34px 0 40px;
}
@media screen and (min-width: 375px) {
  .table .tr-card .form-radio img {
    height: 145px;
    width: 235px;
  }
  .sm\:w-1\/12 {
    width: 8.333333%;
  }
  .sm\:w-2\/12 {
    width: 16.666667%;
  }
  .sm\:w-3\/12 {
    width: 25%;
  }
  .sm\:w-4\/12 {
    width: 33.333333%;
  }
  .sm\:w-5\/12 {
    width: 41.666667%;
  }
  .sm\:w-6\/12 {
    width: 50%;
  }
  .sm\:w-7\/12 {
    width: 58.333333%;
  }
  .sm\:w-8\/12 {
    width: 66.666667%;
  }
  .sm\:w-9\/12 {
    width: 75%;
  }
  .sm\:w-10\/12 {
    width: 83.333333%;
  }
  .sm\:w-11\/12 {
    width: 91.666667%;
  }
  .sm\:mr-8 {
    margin-right: 8px !important;
  }
  .sm\:ml-8 {
    margin-left: 8px !important;
  }
  .sm\:mx-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1152px;
  }
  .page {
    padding-top: 0;
  }
  .btn {
    min-width: 244px;
    width: auto;
  }
  .btn-round {
    min-width: auto;
  }
  .btn-help {
    height: 20px;
    min-width: auto;
    width: 20px;
  }
  .btn-menu {
    display: none;
  }
  .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px 0 0;
  }
  .btns > .btn {
    margin: 0 12px;
  }
  .btns .btn-primary {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .btns_text {
    text-align: center;
  }
  .header {
    position: relative;
  }
  .menu {
    background-color: #1b8159;
    display: block;
    padding: 0;
    position: relative;
    top: 0;
  }
  .menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .menu li {
    font-size: 16px;
    line-height: 24px;
    width: 170px;
  }
  .menu li a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #1b8159;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 64px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    text-decoration: none;
    width: 100%;
  }
  .menu li a:hover {
    background-color: #126642;
    opacity: 1;
  }
  .menu li.is-current a {
    background-color: #17754f;
  }
  .menu li.is-current a:hover {
    background-color: #126642;
  }
  .menu svg {
    margin-right: 8px;
  }
  .menu_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -560px;
    padding: 0;
    position: absolute;
    right: 50%;
    top: -48px;
    z-index: 6;
  }
  .menu_btns .btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 12px;
    margin-top: 0;
  }
  .menu_btns .btn::after,
  .menu_btns .btn svg {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    min-height: 36px;
    padding: 0 16px;
  }
  .breadcrumb_text {
    padding: 0;
  }
  .breadcrumb_links {
    background: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
    position: static;
    width: auto;
  }
  .breadcrumb_links a {
    margin-right: 24px;
    width: auto;
  }
  .breadcrumb_links a::after {
    right: -22px;
  }
  .breadcrumb_links a:hover::after {
    opacity: 1;
  }
  .breadcrumb_btn {
    border: 0;
    color: #a1a1a1;
    cursor: default;
    display: inline-block;
    position: relative;
    width: auto;
  }
  .breadcrumb_btn::after {
    display: none;
  }
  .breadcrumb_btn:hover {
    opacity: 1;
  }
  .section-contract {
    padding-bottom: 48px;
  }
  .section-campaign {
    padding-bottom: 42px;
  }
  table th {
    padding: 20px 24px;
  }
  table td {
    padding: 20px 24px;
  }
  .table {
    border-bottom: 1px solid #e6e6e6;
  }
  .table th {
    border: 1px solid #e6e6e6;
    display: table-cell;
    padding: 20px 24px;
    width: 426px;
  }
  .table td {
    border: 1px solid #e6e6e6;
    display: table-cell;
    padding: 20px 24px;
    width: 694px;
  }
  .table .table_th-nest table tr:last-of-type th {
    border-bottom: 0;
  }
  .table .table_th-nest table th {
    border-right: 1px solid #e6e6e6;
    width: 402px;
  }
  .table .tr-card td {
    padding: 24px 24px 16px;
  }
  .table .tr-card .form-radio {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 85px;
    margin-bottom: 8px;
    padding: 0 0 0 152px;
    position: relative;
  }
  .table .tr-card .form-radio img {
    display: block;
    height: 85px;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
    width: 136px;
  }
  .table-accordion {
    margin: 44px 0 0 0;
  }
  .table-accordion .row {
    display: table-row;
  }
  .table-accordion .row:last-child .cell {
    border-bottom: none;
  }
  .table-accordion .row_header {
    display: table-row;
  }
  .table-accordion .cell-colspan_heading {
    background-color: #fafafa;
    border-bottom: 1px solid #e6e6e6;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 375px;
    z-index: 2;
  }
  .table-accordion .cell {
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    display: table-cell;
    padding: 20px 24px;
    position: relative;
  }
  .table-accordion .cell:nth-of-type(n + 2) {
    display: table-cell;
  }
  .table-accordion .cell:nth-of-type(n + 2)::before {
    display: none;
  }
  .table-accordion .cell:last-child {
    border-right: none;
  }
  .table-accordion .cell.cell-colspan {
    border-right: 0;
    overflow: hidden;
    padding: 0;
    vertical-align: bottom;
    width: 376px;
  }
  .table-accordion .cell.cell-colspan > .cell {
    border-bottom: 0;
    border-right: 0;
    display: block;
    padding: 0;
    width: 100%;
  }
  .table-accordion .cell.cell-colspan > .cell > .cell {
    border-bottom: 1px solid #e6e6e6;
    border-right: 0;
    display: table-cell;
    padding: 20px 24px;
    width: 188px;
  }
  .table-accordion .cell.cell-colspan > .cell > .cell::after {
    background-color: #e6e6e6;
    content: "";
    display: block;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
  }
  .table-accordion .cell.cell-colspan > .cell > .cell:last-child {
    padding: 20px 24px;
  }
  .table-accordion .cell.cell-colspan > .cell > .cell::before {
    display: none;
  }
  .table-accordion .cell.cell-colspan .cell-colspan_heading {
    display: block;
  }
  .table-accordion .cell.cell-colspan .cell-colspan_th {
    display: table-cell;
    padding: 35px 16px 5px;
    width: 188px;
  }
  .table-accordion .cell.cell-colspan .cell-colspan_th::after {
    background-color: #e6e6e6;
    content: "";
    display: block;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
  }
  .table-accordion .cell.cell-colspan_th {
    padding: 34px 16px 5px;
    vertical-align: bottom;
    width: 188px;
  }
  .table-accordion .cell.cell-colspan_th .cell-colspan_heading {
    display: block;
  }
  .table-accordion .cell.cell_pay .btn-help {
    display: none;
  }
  .table-accordion .cell.has-help .btn-help {
    display: none;
  }
  .table-accordion .row > .cell:last-child {
    padding-bottom: 20px;
  }
  .table-accordion .cell_header {
    display: none;
  }
  .table-accordion input[type=checkbox] {
    display: none;
  }
  .table-accordion input[type=checkbox]:checked ~ .cell:nth-of-type(n + 2) {
    display: table-cell;
  }
  .table-accordion input[type=checkbox]:checked ~ .cell:nth-of-type(n + 2).cell-colspan {
    display: table-cell;
    vertical-align: top;
  }
  .table-accordion input[type=checkbox]:checked ~ .cell-colspan_heading {
    display: none;
  }
  .table-accordion.table_plalahistory .row_header .cell:nth-child(1) {
    width: 108px;
  }
  .table-accordion.table_plalahistory input[type=checkbox]:checked ~ .cell:nth-of-type(2) {
    display: block;
  }
  .table-plalapointdetail .table-accordion {
    border-bottom: none;
  }
  .table-plalapointdetail .table-accordion .row_header .cell:nth-child(1) {
    width: 144px;
  }
  .table-plalapointdetail .table-accordion .row_header .cell:nth-child(2) {
    width: 250px;
  }
  .table-plalapointdetail .table-accordion .row_header .cell:nth-child(6) {
    text-align: center;
    width: 144px;
  }
  .table-plalapointdetail .table-accordion .row_header .cell:nth-child(7) {
    width: 233px;
  }
  .table-plalapointdetail .table-accordion .cell:nth-child(5), .table-plalapointdetail .table-accordion .cell:nth-child(6) {
    text-align: right;
  }
  .table-usagedetail tbody th {
    width: 426px;
  }
  .table_breakdown.table-accordion .row_header .cell:nth-child(1) {
    width: 560px;
  }
  .flow-steps {
    height: 48px;
    margin: 26px 24px;
  }
  .flow-steps li {
    height: 48px;
    margin: 0 24px;
  }
  .flow-steps li::before {
    content: counter(count) ".";
    margin-right: 4px;
  }
  .flow-steps li::after {
    border-radius: 24px;
    height: 48px;
    left: -24px;
    width: calc(100% + 48px);
  }
  .flow-steps_text {
    display: inline-block;
  }
  .card_btns {
    text-align: left;
  }
  .card_btns .btn {
    margin: 20px 0 0;
  }
  .card-w-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 500px;
  }
  .card-w-logo_header {
    height: auto;
    max-width: 300px;
  }
  .card-w-logo_main {
    max-width: 500px;
    padding: 40px;
  }
  .title-l {
    font-size: 28px;
    line-height: 40px;
  }
  .title-m {
    font-size: 22px;
    line-height: 32px;
  }
  .maintenance_content {
    font-size: 14px;
    margin: 0 auto;
    max-width: 1152px;
  }
  .link-card {
    padding-left: 64px;
  }
  .link-card_icon {
    left: 23px;
  }
  .notes {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px;
  }
  .notes_title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
    width: 112px;
  }
  .notes_text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 944px;
    padding: 0 0 0 16px;
    width: 100%;
  }
  .pagetop {
    bottom: 24px;
    right: 16px;
  }
  .pagetop.is-bottom {
    bottom: 82px;
  }
  .md\:hidden {
    display: none;
  }
  .md\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .md\:inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .md\:inline-block {
    display: inline-block;
  }
  .md\:block {
    display: block;
  }
  .md\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .md\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .md\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .md\:items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .md\:items-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .md\:flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .md\:shrink-0 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .md\:relative {
    position: relative;
  }
  .md\:absolute {
    position: absolute;
  }
  .md\:static {
    position: static;
  }
  .md\:top-0 {
    top: 0;
  }
  .md\:right-0 {
    right: 0;
  }
  .md\:bottom-auto {
    bottom: auto;
  }
  .md\:bottom-40 {
    bottom: 40px;
  }
  .md\:w-40 {
    width: 40px;
  }
  .md\:w-46 {
    width: 46px;
  }
  .md\:w-56 {
    width: 56px;
  }
  .md\:w-64 {
    width: 64px;
  }
  .md\:w-66 {
    width: 66px;
  }
  .md\:w-72 {
    width: 72px;
  }
  .md\:w-74 {
    width: 74px;
  }
  .md\:w-76 {
    width: 76px;
  }
  .md\:w-78 {
    width: 78px;
  }
  .md\:w-80 {
    width: 80px;
  }
  .md\:w-82 {
    width: 82px;
  }
  .md\:w-98 {
    width: 98px;
  }
  .md\:w-120 {
    width: 120px;
  }
  .md\:w-156 {
    width: 156px;
  }
  .md\:w-244 {
    width: 244px;
  }
  .md\:w-200 {
    width: 200px;
  }
  .md\:w-256 {
    width: 256px;
  }
  .md\:w-340 {
    width: 340px;
  }
  .md\:w-360 {
    width: 360px;
  }
  .md\:w-400 {
    width: 400px;
  }
  .md\:w-560 {
    width: 560px;
  }
  .md\:w-1\/12 {
    width: 8.333333%;
  }
  .md\:w-2\/12 {
    width: 16.666667%;
  }
  .md\:w-3\/12 {
    width: 25%;
  }
  .md\:w-4\/12 {
    width: 33.333333%;
  }
  .md\:w-5\/12 {
    width: 41.666667%;
  }
  .md\:w-6\/12 {
    width: 50%;
  }
  .md\:w-7\/12 {
    width: 58.333333%;
  }
  .md\:w-8\/12 {
    width: 66.666667%;
  }
  .md\:w-9\/12 {
    width: 75%;
  }
  .md\:w-10\/12 {
    width: 83.333333%;
  }
  .md\:w-11\/12 {
    width: 91.666667%;
  }
  .md\:w-full {
    width: 100%;
  }
  .md\:min-h-354 {
    min-height: 354px;
  }
  .md\:mt-0 {
    margin-top: 0px !important;
  }
  .md\:mt-4 {
    margin-top: 4px !important;
  }
  .md\:mt-6 {
    margin-top: 6px !important;
  }
  .md\:mt-8 {
    margin-top: 8px !important;
  }
  .md\:mt-10 {
    margin-top: 10px !important;
  }
  .md\:mt-12 {
    margin-top: 12px !important;
  }
  .md\:mt-16 {
    margin-top: 16px !important;
  }
  .md\:mt-20 {
    margin-top: 20px !important;
  }
  .md\:mt-24 {
    margin-top: 24px !important;
  }
  .md\:mt-28 {
    margin-top: 28px !important;
  }
  .md\:mt-30 {
    margin-top: 30px !important;
  }
  .md\:mt-32 {
    margin-top: 32px !important;
  }
  .md\:mt-40 {
    margin-top: 40px !important;
  }
  .md\:mt-48 {
    margin-top: 48px !important;
  }
  .md\:mr-3 {
    margin-right: 3px !important;
  }
  .md\:mr-4 {
    margin-right: 4px !important;
  }
  .md\:mr-8 {
    margin-right: 8px !important;
  }
  .md\:mr-12 {
    margin-right: 12px !important;
  }
  .md\:mr-18 {
    margin-right: 18px !important;
  }
  .md\:mr-24 {
    margin-right: 24px !important;
  }
  .md\:mb-0 {
    margin-bottom: 0px !important;
  }
  .md\:mb-4 {
    margin-bottom: 4px !important;
  }
  .md\:mb-6 {
    margin-bottom: 6px !important;
  }
  .md\:mb-12 {
    margin-bottom: 12px !important;
  }
  .md\:ml-3 {
    margin-left: 3px !important;
  }
  .md\:ml-4 {
    margin-left: 4px !important;
  }
  .md\:ml-8 {
    margin-left: 8px !important;
  }
  .md\:ml-12 {
    margin-left: 12px !important;
  }
  .md\:ml-24 {
    margin-left: 24px !important;
  }
  .md\:ml-36 {
    margin-left: 36px !important;
  }
  .md\:ml-72 {
    margin-left: 72px !important;
  }
  .md\:ml-74 {
    margin-left: 74px !important;
  }
  .md\:ml-80 {
    margin-left: 80px !important;
  }
  .md\:ml-120 {
    margin-left: 120px !important;
  }
  .md\:mx-3 {
    margin-left: 3px !important;
    margin-right: 3px !important;
  }
  .md\:mx-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .md\:mx-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .md\:my-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .md\:p-11 {
    padding: 11px !important;
  }
  .md\:p-14 {
    padding: 14px !important;
  }
  .md\:p-16 {
    padding: 16px !important;
  }
  .md\:p-24 {
    padding: 24px !important;
  }
  .md\:pt-24 {
    padding-top: 24px !important;
  }
  .md\:pr-16 {
    padding-right: 16px !important;
  }
  .md\:pr-24 {
    padding-right: 24px !important;
  }
  .md\:pr-56 {
    padding-right: 56px !important;
  }
  .md\:pb-0 {
    padding-bottom: 0 !important;
  }
  .md\:pb-40 {
    padding-bottom: 40px !important;
  }
  .md\:px-24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .md\:text-primary-900 {
    color: #003c1e;
  }
  .md\:text-center {
    text-align: center;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-right {
    text-align: right;
  }
  .md\:font-normal {
    font-weight: normal;
  }
  .md\:font-bold {
    font-weight: bold;
  }
  .md\:align-top {
    vertical-align: top;
  }
  .table_th-nest .container-justify .container-justify_side {
    margin: 0 24px 0 0;
  }
  .md\:container-justify {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .md\:container-justify .md\:container-justify_main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 16px;
    word-break: break-all;
  }
  .table_th-nest .md\:container-justify .md\:container-justify_side {
    margin: 0 24px 0 0;
  }
  .pagination.pagination_top .pagination_page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pagination.pagination_bottom {
    display: none;
  }
  .remodal-wrapper > .btn {
    display: none;
  }
  .remodal {
    max-width: 800px;
    padding: 32px 40px 40px;
  }
  .remodal-close {
    right: 40px;
    top: 32px;
  }
  .remodal-close-bottom {
    display: block;
    margin: 24px auto 0;
    min-width: 240px;
  }
  .page-card {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 832px;
  }
  .page-card .contents {
    margin: 32px 0 80px;
  }
  .page-card .card {
    padding: 40px;
  }
  .page-card .card .table th {
    width: 228px;
  }
  .page-card .card .table td {
    width: 492px;
  }
  .page-card .card-w-logo {
    padding: 0;
  }
  .page-mypage .section-information .card {
    padding: 18px 54px 20px 24px;
  }
  .page-mypage .section-information .card::after {
    height: 10px;
    right: 20px;
    width: 10px;
  }
  .page-mypage .section-information .card .card_title {
    left: 24px;
    margin-bottom: 0;
    position: absolute;
    top: 18px;
  }
  .page-mypage .section-information .card .section-information_list {
    padding: 0 0 0 114px;
  }
  .page-mypage .section-information .card .section-information_list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 12px;
  }
  .page-mypage .section-information .card .section-information_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .page-mypage .section-information .card .section-information_date {
    margin: 0;
    width: 132px;
  }
  .page-mypage .section-information.is-open .card .section-information_list li:nth-child(n+2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-mypage .section-customerdata {
    margin-bottom: 24px;
  }
  .page-mypage .section-customerdata .card {
    margin: 0 0 24px;
    width: 100%;
  }
  .page-mypage .section-customerdata .card-datawrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-mypage .section-customerdata .card-datawrapper .card_title {
    margin: 0 0 auto 0;
    width: 172px;
  }
  .page-mypage .section-customerdata .card-datawrapper .card-data {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .page-mypage .section-customerdata .card-datawrapper .btn {
    margin: 0;
  }
  .page-mypage .section-customerdata .card_charge .card_title {
    margin-top: 4px;
  }
  .page-mypage .section-customerdata .card_charge .card-data_main {
    font-size: 32px;
    margin-bottom: 0;
  }
  .page-mypage .section-customerdata .card_plan .card_title {
    margin-top: 1px;
  }
  .page-mypage .section-customerdata .card_plan .card-data_main {
    font-size: 20px;
    margin-bottom: 3px;
  }
  .page-mypage .section-customerdata .card_userdata .card_title {
    margin-top: -4px;
  }
  .page-mypage .section-customerdata .card_userdata .userdata_name {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .page-mypage .section-customerdata .card_userdata.card_half .card_userdata_list {
    margin-top: 16px;
  }
  .page-mypage .section-customerdata .card_userdata.card_half .userdata_name {
    font-size: 14px;
    margin-bottom: 0;
  }
  .page-mypage .section-customerdata .card_daccount {
    padding: 24px;
  }
  .page-mypage .section-customerdata .card_daccount .card_title {
    top: 24px;
  }
  .page-mypage .section-customerdata .card_daccount .btn-daccount {
    margin: 29px 0 0;
  }
  .card_daccount_plalalogin_notes + .page-mypage .section-customerdata .card_daccount .btn-daccount {
    margin: 9px 0 0;
  }
  .page-mypage .section-customerdata .card_daccount .card_daccount_mailaddress {
    margin: 6px 0 0;
  }
  .page-mypage .section-customerdata .card_daccount .card_dpoint {
    margin: 24px 0 0;
  }
  .page-mypage .section-customerdata .card_daccount.card_daccount_plalalogin .card_daccount_plalalogin_notes {
    margin: 12px 0 0;
  }
  .page-mypage .section-customerdata .card_daccount.card_daccount_plalalogin .btn-daccount {
    margin: 12px 0 0;
  }
  .page-mypage .section-customerdata .card_plalamail {
    padding: 21px 48px 21px 72px;
  }
  .page-mypage .section-customerdata .card_freeticket {
    padding: 20px 48px 20px 72px;
  }
  .page-mypage .section-customerdata .column-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-mypage .section-customerdata .main-column {
    -ms-flex-line-pack: start;
        align-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 740px;
  }
  .page-mypage .section-customerdata .main-column .card_daccount .card_title {
    margin-bottom: 23px;
  }
  .page-mypage .section-customerdata .main-column .card_daccount .card_daccount_link {
    font-size: 20px;
  }
  .page-mypage .section-customerdata .main-column .card_daccount .btn-daccount {
    margin-top: 56px;
  }
  .page-mypage .section-customerdata .main-column .card_daccount .card_daccount_mailaddress {
    margin-top: 6px;
  }
  .page-mypage .section-customerdata .main-column .card_daccount .card_dpoint {
    margin: 51px 0 0;
  }
  .page-mypage .section-customerdata .main-column .card_daccount.card_daccount_plalalogin .card_daccount_plalalogin_notes {
    margin-top: 8px;
  }
  .page-mypage .section-customerdata .main-column .card_daccount.card_daccount_plalalogin .btn-daccount {
    margin-top: 8px;
  }
  .page-mypage .section-customerdata .side-column {
    margin: 0;
    width: 332px;
  }
  .page-mypage .section-customerdata.has-card_plalapoint .card_half {
    padding: 20px 16px;
    width: 358px;
  }
  .page-mypage .section-customerdata.has-card_plalapoint .card_charge {
    padding: 16px 16px 20px;
  }
  .page-mypage .section-customerdata.has-card_plalapoint .card_plan {
    padding: 19px 16px 20px;
  }
  .page-mypage .section-customerdata.has-card_plalapoint .card_userdata .card_title {
    margin-top: 0px;
  }
  .page-mypage .section-customerdata.has-card_plalapoint .card_userdata .card_btns .btn {
    margin-top: 28px;
  }
  .page-mypage .section-customerdata.has-card_plalapoint .card_plalamail {
    padding: 30px 48px 30px 72px;
  }
  .page-mypage .section-customerdata.has-card_plalapoint .card_freeticket,
  .page-mypage .section-customerdata.has-card_plalapoint .card_plalapoint {
    padding: 42px 48px 42px 72px;
  }
  .page-mypage .section-customerdata:not(.has-card_plalapoint) .card_charge {
    padding: 31px 24px 35px;
  }
  .page-mypage .section-customerdata:not(.has-card_plalapoint) .card_plan {
    padding: 40px 24px 41px;
  }
  .page-mypage .section-customerdata:not(.has-card_plalapoint) .card_userdata {
    padding: 31px 24px;
  }
  .page-mypage .section-customerdata:not(.has-card_plalapoint) .card_userdata li:nth-of-type(1) .userdata_label {
    display: none;
  }
  .page-mypage .section-contract ul {
    gap: 24px;
    grid-template-columns: repeat(5, 205px);
  }
  .page-mypage .section-contract .card a {
    min-height: 195px;
    padding: 84px 24px 19px;
  }
  .page-mypage .section-contract .card_img {
    height: 48px;
    top: 24px;
    width: 48px;
  }
  .page-mypage .section-contract .card_title .br-sp {
    display: none;
  }
  .page-mypage .section-support ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-mypage .section-support .card {
    height: 88px;
    margin: 0 24px 8px 0;
    width: 357px;
  }
  .page-mypage .section-support .card:last-child {
    margin-right: 0;
  }
  .page-mypage .section-support .card a {
    padding: 37px 48px 37px 88px;
  }
  .page-mypage .section-support .card_img {
    height: 48px;
    left: 24px;
    top: 20px;
    width: 48px;
  }
  .page-mypage .section-campaign ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-mypage .section-campaign .card {
    margin-right: 24px;
    min-height: 113px;
    width: 357px;
  }
  .page-mypage .section-campaign .card:last-child {
    margin-right: 0;
  }
  .page-daccount-announce.page-card .card {
    padding: 40px;
  }
  .page-daccount-announce .contents {
    margin-bottom: 80px;
  }
  .page-daccount-announce .daccount-announce_title {
    font-size: 28px;
    margin-bottom: 38px;
  }
  .page-daccount-announce .announce_btn_top {
    padding: 32px 0 24px;
  }
  .page-daccount-announce .announce_btn_top::after {
    display: none;
  }
  .page-daccount-announce .announce_procedure_flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-daccount-announce .announce_procedure_flow li {
    height: 170px;
    margin-bottom: 0;
    width: 216px;
  }
  .page-daccount-announce .announce_procedure_flow li::after {
    bottom: auto;
    left: auto;
    right: -26px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-daccount-announce .announce_procedure_flow .flow_text {
    height: 138px;
    padding: 80px 0 20px;
  }
  .page-daccount-announce .notes_text {
    max-width: 558px;
  }
  .page-credittransfer .card_square {
    margin: 19px 0 35px;
    padding: 24px;
  }
  .page-credittransfer .flow_list .flow_item:first-child .flow_header {
    width: 100%;
  }
  .page-credittransfer .flow_list .flow_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .page-credittransfer .flow_header {
    width: 403px;
  }
  .page-credittransfer .flow_header.border {
    border-bottom: 0;
    border-right: 1px solid #e6e6e6;
  }
  .page-credittransfer .flow_text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .page-credittransfer .flow_text_inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 12px 24px;
    width: 100%;
  }
  .page-credittransfer .paragraph_attention {
    margin: 0 0 19px;
    text-align: center;
  }
  .page-usage .main_column table th {
    width: 277px;
  }
  .page-usage .main_column table td {
    width: 514px;
  }
  .page-usage .main_column table .table_th-nest {
    width: 100%;
  }
  .page-usage .main_column table .table_th-nest table th {
    width: 253px;
  }
  .page-usage .side_column {
    left: 50%;
    padding: 0;
    right: auto;
    top: 93px;
    -webkit-transform: translateX(272px);
            transform: translateX(272px);
    width: 288px;
  }
  .page-usage .side_column.is-fixed {
    padding: 0px;
    top: 40px;
  }
  .page-usage .side_column.is-fixed .local_nav {
    display: block;
  }
  .page-usage .local_nav {
    display: block;
  }
  .page-usage .btn_local_nav {
    display: none;
  }
  .page-mypage-userid .card {
    padding-bottom: 0;
  }
  .page-mypage-userid .title {
    font-size: 28px;
  }
  .page-mypage-userid .mypage-userid-img {
    height: 325px;
    width: 520px;
  }
  .page-mypage-userid .mypage-userid-img-old {
    width: 520px;
  }
  .page-mypage-userid .mypage-userid-notes {
    padding: 20px 24px;
  }
}
@media screen and (min-width: 1152px) {
  .header {
    -o-border-image: linear-gradient(#fff, #fff) 0 fill/0/0 100vw;
       border-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) 0 fill/0/0 100vw;
       border-image: linear-gradient(#fff, #fff) 0 fill/0/0 100vw;
  }
  .menu {
    -o-border-image: linear-gradient(#1b8159, #1b8159) 0 fill/0/0 100vw;
       border-image: -webkit-gradient(linear, left top, left bottom, from(#1b8159), to(#1b8159)) 0 fill/0/0 100vw;
       border-image: linear-gradient(#1b8159, #1b8159) 0 fill/0/0 100vw;
  }
  .breadcrumb {
    -o-border-image: linear-gradient(#fff, #fff) 0 fill/0/0 100vw;
       border-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) 0 fill/0/0 100vw;
       border-image: linear-gradient(#fff, #fff) 0 fill/0/0 100vw;
  }
  .contents {
    margin: 24px auto 80px;
    padding: 0 16px;
  }
  .maintenance_content {
    -o-border-image: linear-gradient(#FFF8E1, #FFF8E1) 0 fill/0/0 100vw;
       border-image: -webkit-gradient(linear, left top, left bottom, from(#FFF8E1), to(#FFF8E1)) 0 fill/0/0 100vw;
       border-image: linear-gradient(#FFF8E1, #FFF8E1) 0 fill/0/0 100vw;
  }
}
