:root {
  --green: #00ABB5;
  --light-green: #F3FEFD;
  --black: #333;
  --black: #333;
  --ice: #F0F6F6;
  --green-gradient: linear-gradient(90deg, #0A9BB4 0%, #05C8BE 100%);
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  color: #222;
  letter-spacing: .1em;
  background-color: var(--ice);
  font-size: 1.4rem;
  line-height: 2em;
}

div {
  box-sizing: border-box;
}

p {
  font-size: 1.4rem;
  line-height: 2;
  margin: 0;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  cursor: pointer;
  opacity: 0.6;
  transition: .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

ul,
dt,
dd,
dl {
  margin: 0;
  padding-inline-start: 0;
}

ul {
  font-size: 0;
}

li {
  list-style-type: none;
  font-size: 1.4rem;
  box-sizing: border-box;
}

table {
  width: 100%;
}

h2 {
  font-weight: bold;
  margin: 0 auto;
  font-size: 2rem;
  display: flex;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  display: inline-block;
}

h4 {
  font-size: 1.6rem;
  margin: 0 0 20px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.form-group {
  padding: 5px 0;
}

.form-group select {
  padding: 20px 40px 20px 20px;
}

.submit-wrap {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.select-wrap {
  display: inline;
  position: relative;
}

.select-wrap:after {
  content: "";
  position: absolute;
  right: 21px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--green);
  border-left: 1px solid var(--green);
  transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}

select {
  background: #fff;
  border: 1px solid #E3E3E3;
  width: 100%;
  border-radius: 6px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
}

.pc {
  display: inline-block !important;
}

.sp {
  display: none !important;
}

.mb--small {
  margin-bottom: 40px;
}

.mb--large {
  margin-bottom: 60px;
}

.box--small {
  width: 50%;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.03);
}

.box--large {
  width: 100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.03);
}

.table-wrap.box--large {
  padding: 20px 0;
}

.angle--right {
  color: var(--green);
  font-size: 3rem;
}

.border {
  border-top: 1px solid #eee;
  margin: 0 -30px;
}

.content {
  padding-left: 300px;
}

.content__body {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

.copyright {
  margin-top: 100px;
  padding: 30px 0;
  color: #ccc;
  text-align: right;
}

.btn {
  display: block;
  text-align: center;
  color: #fff;
  background: var(--green-gradient);
  font-weight: 500;
  font-size: 1.6rem;
  padding: 15px 5px;
  border-radius: 66px;
  width: 100%;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  outline-offset: -1px;
}

.btn.reverse:hover {
  background: #fff;
  color: var(--green);
  outline: 1px solid var(--green);
  opacity: 1;
}

.btn--border {
  display: block;
  text-align: center;
  color: var(--green);
  border: 1px solid var(--green);
  font-weight: bold;
  font-size: 1.4rem;
  border-radius: 66px;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.btn--border.reverse:hover {
  background: var(--green);
  color: #fff;
  opacity: 1;
}

.btn:disabled {
  background: #ccc;
  outline: none;
  pointer-events: none;
}

.bottom-menu,
.open-nav-btn,
.sp-nav,
.fixed-menu {
  display: none;
}

.table__row {
  display: flex;
  align-items: center;
  padding: 28px 40px;
  border-bottom: solid 1px #eee;
}

.table__row:last-child {
  border-bottom: none;
}

.table__heading {
  font-weight: bold;
  width: 40%;
  margin-right: 3%;
}

.table__content {
  width: 100%;
}

.table__pdf-link {
  text-decoration-line: underline;
}

.table__note {
  padding-left: 40px;
}

/* header */
header {
  height: 100px;
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 0 40px;
  display: flex;
  align-items: center;
}

.breadcrumb {
  color: #A7A7A7;
  font-size: 1.2rem;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.header-nav__list {
  margin-left: 40px;
}

.header-nav__link {
  text-align: center;
  font-weight: 400;
  display: block;
}

.header-nav i {
  font-size: 2rem;
  display: inline-block;
}

.fa-envelope {
  color: #a3a3a3;
  position: relative;
}

.notice__badge {
  display: none;
  position: absolute;
  top: -6px;
  right: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.nav__notice.active .notice__badge {
  display: block;
}

.header-nav__link-text {
  display: block;
  margin-top: -5px;
  font-weight: 500;
}

.header-nav__list .fa-arrow-right-from-bracket {
  color: var(--green);
}

.header__previous-link {
  display: none;
}

/* sidebar */
.sidebar {
  position: fixed;
  z-index: 2;
  width: 300px;
  height: 100%;
  background-color: #fff;
  box-shadow: 4px 0px 12px rgba(0, 0, 0, 0.05);
  padding: 65px 0;
  overflow-y: scroll;
}

.logo {
  width: 150px;
  margin: 0 auto;
  display: block;
}

/* nav */
.sidebar-nav {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav__link {
  padding: 18px 10px;
  font-size: 1.4rem;
  font-weight: 500;
  vertical-align: middle;
  display: block;
}

.nav__icon {
  width: 25px;
  margin-right: 10px;
  vertical-align: middle;
}

.nav__link:hover {
  transition: 0.3s;
}

.sidebar-nav .active .link__home {
  color: #FF4F1A;
}

.sidebar-nav .link__home:hover {
  color: #FF4F1A;
}

.sp-nav__lists .active.link__home {
  outline: 1px solid #FF4F1A;
}

.sp-nav__lists .link__home:hover {
  outline: 1px solid #FF4F1A;
}

.sidebar-nav .active .link__usagedata {
  color: #2FC848;
}

.sidebar-nav .link__usagedata:hover {
  color: #2FC848;
}

.sp-nav__lists .active.link__usagedata {
  outline: 1px solid #2FC848;
}

.sp-nav__lists .link__usagedata:hover {
  outline: 1px solid #2FC848;
}

.sidebar-nav .active .link__application-information {
  color: #469DE3;
}

.sidebar-nav .link__application-information:hover {
  color: #469DE3;
}

.sp-nav__lists .active.link__application-information {
  outline: 1px solid #469DE3;
}

.sp-nav__lists .link__application-information:hover {
  outline: 1px solid #469DE3;
}

.sidebar-nav .active .link__payment_status {
  color: #FF8900;
}

.sidebar-nav .link__payment_status:hover {
  color: #FF8900;
}

.sp-nav__lists .active.link__payment_status {
  outline: 1px solid #FF8900;
}

.sp-nav__lists .link__payment_status:hover {
  outline: 1px solid #FF8900;
}

.sidebar-nav .active .link__payment-method {
  color: #93CE15;
}

.sidebar-nav .link__payment-method:hover {
  color: #93CE15;
}

.sp-nav__lists .active.link__payment-method {
  outline: 1px solid #93CE15;
}

.sp-nav__lists .link__payment-method:hover {
  outline: 1px solid #93CE15;
}

.sidebar-nav .active .link__campaign {
  color: #FFA81A;
}

.sidebar-nav .link__campaign:hover {
  color: #FFA81A;
}

.sp-nav__lists .active.link__campaign {
  outline: 1px solid #FFA81A;
}

.sp-nav__lists .link__campaign:hover {
  outline: 1px solid #FFA81A;
}

.sidebar-nav .active .link__password {
  color: #15CBF3;
}

.sidebar-nav .link__password:hover {
  color: #15CBF3;
}

.sp-nav__lists .active.link__password {
  outline: 1px solid #15CBF3;
}

.sp-nav__lists .link__password:hover {
  outline: 1px solid #15CBF3;
}

.sidebar-nav .active .link__email {
  color: #FC7193;
}

.sidebar-nav .link__email:hover {
  color: #FC7193;
}

.sp-nav__lists .active.link__email {
  outline: 1px solid #FC7193;
}

.sp-nav__lists .link__email:hover {
  outline: 1px solid #FC7193;
}

.sidebar-nav .active .link__faq {
  color: #C272E7;
}

.sidebar-nav .link__faq:hover {
  color: #C272E7;
}

.sp-nav__lists .active.link__faq {
  outline: 1px solid #C272E7;
}

.sp-nav__lists .link__faq:hover {
  outline: 1px solid #C272E7;
}

.sidebar-nav .active .link__contact {
  color: #FFB800;
}

.sidebar-nav .link__contact:hover {
  color: #FFB800;
}

.sp-nav__lists .link__contact.link__home {
  outline: 1px solid #FFB800;
}

.sp-nav__lists .link__contact:hover {
  outline: 1px solid #FFB800;
}

.sidebar-nav .active .link__contract-information {
  color: #A8A6FE;
}

.sidebar-nav .link__contract-information:hover {
  color: #A8A6FE;
}

.sp-nav__lists .active.link__contract-information {
  outline: 1px solid #A8A6FE;
}

.sp-nav__lists .link__contract-information:hover {
  outline: 1px solid #A8A6FE;
}

.sidebar-nav .active .link__contract-close {
  color: #0FCBB5;
}

.sidebar-nav .link__contract-close:hover {
  color: #0FCBB5;
}

.sp-nav__lists .active.link__contract-close {
  outline: 1px solid #0FCBB5;
}

.sp-nav__lists .link__contract-close:hover {
  outline: 1px solid #0FCBB5;
}

.sidebar-nav .active .link__multiple-contracts {
  color: #5388F2;
}

.sidebar-nav .link__multiple-contracts:hover {
  color: #5388F2;
}

.sp-nav__lists .active.link__multiple-contracts {
  outline: 1px solid #5388F2;
}

.sp-nav__lists .link__multiple-contracts:hover {
  outline: 1px solid #5388F2;
}

.nopc {
  display: none;
}

.header-main-warning {
  display: none;
}

@media (max-width: 1200px) {
  .sidebar {
    display: none;
  }

  header {
    background: #fff;
    width: 100%;
    max-width: 100%;
    padding: 0;
    position: fixed;
    z-index: 2;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.05);
    justify-content: center;
    align-items: center;
  }

  .breadcrumb {
    display: none;
  }

  .header-nav {
    position: fixed;
    top: 37px;
    right: 30px;
  }

  .header-nav i {
    font-size: 2.6rem;
  }

  .header-main-warning {
    margin-right: auto;
    display: flex;
    align-items: center;
    position: fixed;
    top: 37px;
    left: 30px;
  }

  .header-main-warning i {
    font-size: 2rem;
  }

  .header-nav__list {
    margin-left: 0;
    line-height: 1;
  }

  .nav__logout,
  .header-nav__link-text {
    display: none;
  }

  .content {
    padding-left: 0;
  }

  .content__body {
    width: 93%;
    padding: 160px 0 90px;
  }

  .fixed-menu {
    position: fixed;
    width: 100%;
    bottom: 0px;
    z-index: 2;
    height: 18vw;
    max-height: 100px;
    background: #FFFFFF;
    box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: end;
  }

  .fixed-menu__lists {
    display: flex;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    align-items: center;
    padding: 0 2%;
  }

  .fixed-menu__list {
    width: 30%;
  }

  .fixed-menu .nav__link {
    padding: 0;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1;
  }

  .fixed-menu .nav__link img {
    display: block;
    margin: 0 auto 5px;
    width: auto;
    height: 35px;
  }

  .open-nav-btn {
    height: 22vw;
    width: 55vw;
    max-width: 140px;
    min-width: 65px;
    max-height: 125px;
    background: var(--green-gradient);
    border: 1px solid #FFFFFF;
    border-radius: 20px 20px 0px 0px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    margin-bottom: -1px;
  }

  .open-nav-btn:hover,
  .close-nav-btn {
    cursor: pointer;
  }

  .open-nav-btn i {
    font-size: 3rem;
  }

  .open-nav-btn__text {
    font-size: 2.3rem;
    margin-top: -17px;
  }

  .sp-nav {
    position: fixed;
    z-index: 999;
    bottom: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: all 0.6s;
    display: block;
  }

  .sp-nav.panelactive {
    bottom: 0;
  }

  .sp-nav .nav__link {
    text-align: center;
  }

  .sp-nav__head {
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
  }

  .logo-wrap {
    width: 150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }

  .sp-nav__notice {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    line-height: 1;
  }

  .sp-nav__notice .fa-envelope {
    font-size: 2.6rem;
  }

  .sp-nav__body {
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
  }

  .sp-nav__lists {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
  }

  .sp-nav__list {
    width: 30%;
    display: block;
    border-radius: min(6vw, 20px);
    margin: 1.66%;
    padding: 30% 0 0;
    position: relative;
    outline: 1px solid #E3E3E3;
    outline-offset: -1px;
  }

  .sp-nav__list:hover {
    transition: 0.3s;
    outline-offset: -1px;
  }

  .sp-nav__list.active {
    outline-offset: -1px;
  }

  .sp-nav__list-inner {
    width: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }

  .sp-nav__list-text {
    display: block;
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: .04em;
    margin-top: 10px;
  }

  .sp-nav__list a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .sp-nav__list .nav__icon {
    display: block;
    margin: 0 auto 6px;
    width: auto;
    height: 45px;
  }

  .sp-nav__list .nav__icon.icon-payment {
    height: 37px;
  }

  .sp-nav__inner {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sp-nav__logout {
    border: 1px solid #E3E3E3;
    display: block;
    margin-top: 45px;
    text-align: center;
    padding: 20px 0;
    border-radius: 10px;
    font-size: 1.6rem;
  }

  .sp-nav__logout .fa-arrow-right-from-bracket {
    color: var(--green);
    margin-right: 5px;
  }

  .close-nav-btn {
    height: 22vw;
    width: 24vw;
    max-width: 140px;
    max-height: 125px;
    background: var(--green-gradient);
    border-radius: 0px 0px 20px 20px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 60px;
  }

  .close-nav-btn i {
    font-size: 3rem;
  }

  body.active {
    height: 100%;
    overflow: hidden;
  }

  .header__previous-link {
    display: block;
    position: fixed;
    top: 38px;
    left: 30px;
  }

  .header__previous-link i {
    font-size: 2.5rem;
    color: #aaa;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: inline-block !important;
  }

  header {
    height: 70px;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  h4 {
    margin: 0 0 10px;
  }

  .btn {
    font-size: 1.4rem;
    padding: 10px 5px;
  }

  .header-nav {
    top: 23px;
    right: 23px;
  }

  .header-main-warning {
    top: 23px;
    left: 5px;
  }

  .header-nav i {
    font-size: 2.4rem;
  }

  .content__body {
    padding: 110px 0 90px;
  }

  .box--small {
    width: 100%;
    padding: 20px;
  }

  .box--large {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .mb--large {
    margin-bottom: 40px;
  }

  .mb--small {
    margin-bottom: 20px;
  }

  .border {
    margin: 0 -20px;
  }

  .form-group {
    padding: 5px 0 10px;
  }

  .submit-wrap {
    max-width: 100%;
  }

  .sp-nav__list-text {
    margin-top: 7px;
    font-size: 3vw;
    font-size: min(3vw, 14px);
  }

  .sp-nav__list .nav__icon.icon-payment {
    height: 25px;
  }

  .open-nav-btn__text {
    font-size: min(4vw, 18px);
    margin-top: -15px;
  }

  .copyright {
    margin-top: 0;
  }

  .fixed-menu {
    height: 70px;
  }

  .fixed-menu__lists {
    width: 95%;
  }

  .fixed-menu__list {
    width: 100%;
  }

  .fixed-menu .nav__link {
    font-size: 1rem;
  }

  .fixed-menu .nav__link img {
    height: 7.5vw;
    max-height: 30px;
  }

  .open-nav-btn {
    height: 85px;
    width: 65vw;
    max-width: 120px;
    border-radius: 15px 15px 0px 0px;
  }

  .open-nav-btn i {
    font-size: 2rem;
  }

  .close-nav-btn {
    border-radius: 0px 0px 15px 15px;
    max-width: 92px;
    max-height: 82px;
    margin-bottom: 40px;
  }

  .sp-nav__notice .fa-envelope {
    font-size: 2.4rem;
  }

  .sp-nav__body {
    width: 95%;
    margin: 40px auto;
  }

  .sp-nav__logout {
    margin-top: 40px;
    padding: 10px 0;
    border-radius: 6px;
    font-size: 1.4rem;
  }

  .sp-nav__list .nav__icon {
    height: 9vw;
    max-height: 35px;
  }

  .close-nav-btn i {
    font-size: 2.4rem;
  }

  .table__row {
    padding: 20px 10px;
  }

  .table__heading {
    font-weight: 500;
  }

  .table__heading,
  .table__content {
    font-size: 1.2rem;
  }

  .header__previous-link {
    display: block;
    position: fixed;
    top: 24px;
    left: 23px;
  }

  .header__previous-link i {
    font-size: 2rem;
  }

  .select-wrap {
    display: block;
  }


  .nosp {
    display: none;
  }

  .nopc {
    display: block;
  }
}