@charset "UTF-8";
html {
    touch-action: manipulation;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic Std", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", YuGothic, sans-serif;
  color: #000000;
  background-color: #F3F3F3;
  height: 100vh;
}

/************** 共通パーツ **********************/

/* 全ページ共通 */

/* インナー幅（共通） */
.l-inner {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}


/* フッター */

/* デバイスの高さより、ページ内容が少ないページの余白を無くすためにフッターを最下部に固定 */
.c-fixed-footer {
  position: sticky;
  position: -webkit-sticky;
  top: 100vh;
  left: 0;
}
.c-footer {
  padding: 15px 20px;
  background-color: #000000;
  text-align: center;
}
.c-footer__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}


/* mypage(入居者様マイページ)〜 共通 */

/* ヘッダー */
.c-header {
  position: fixed;
  position: -webkit-fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 72px;
  padding-left: 20px;
  background-color: #FFFFFF;
  z-index: 100;
}
.c-header__logo > img {
  width: 87px;
}
.c-header__menu {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
  height: inherit;
  padding-right: 24px;
  margin-right: -8px;
}
.c-header__icon {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  transform: translateY(-50%);
  z-index: -1;
}
.c-header__icon > img {
  width: 12px;
}
/* ページタイトル */
.c-page__heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000000;
  text-align: center;
}

/* ドロワーメニュー */
.c-drawer {
  position: fixed;
  position: -webkit-fixed;
  top: 0;
  right: 0;
  max-width: 296px;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  padding-bottom: 137px;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: all 0.1s linear;
}
.c-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.1s linear;
}
.c-drawer-mask {
  position: fixed;
  position: -webkit-fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #707070;
  z-index: 150;
  visibility: hidden;
  opacity: 0;
}
.c-drawer-mask.is-open {
  visibility: visible;
  opacity: 1;
}

.c-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 238px;
  width: 100%;
  margin-left: auto;
}
.c-drawer__logo > img {
  padding-top: 24px;
  width: 119px;
}

.c-drawer__close-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 87px;
  height: 72px;
  padding-top: 10px;
  cursor: pointer;
}
.c-drawer__close-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
}
.c-drawer__close-btn > img {
  width: 16px;
  margin-top: 5px;
}

.c-drawer__inner {
  width: 100%;
  padding: 0 19.6%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
.c-drawer__pay {
  display: flex;
  align-items: center;
  border: 1px solid #000000;
  padding: 18.2px 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000000;
}
.c-drawer__pay > img {
  display: inline-block;
  width: 21.34px;
  margin-right: 6px;
}

.c-drawer__items {
  margin-top: 18px;
}

.c-drawer__item + .c-drawer__item {
  margin-top: 15px;
}
.c-drawer__link {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-left: 1em;
  padding-bottom: 16px;
}
.c-drawer__item:not(:last-of-type) {
  border-bottom: 1px solid #DDDDDD;
}

.c-drawer__btn {
  text-align: center;
  margin-top: 15px;
}
/* ログアウトボタン */
.c-logout-btn {
  max-width: 180px;
  width: 100%;
}


/* loginページ（トップページ）login_codeページ共通 */
.c-login__logo {
  display: block;
  text-align: center;
}
.c-login__logo > img {
  display: inline-block;
  width: 128px;
  height: auto;
  text-align: center;
}

.c-login__heading {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #000000;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 15px;
}

.c-login__form-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000000;
}

.p-login-info {
    padding: 12.4px;
    background-color: #CDEFCD;
    text-align: center;
    margin-top: 27.8px;
}
.p-login-info__text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #000000;
}
.p-login-info__flash {
    display: inline-block;
    font-weight: 600;
    color: #007700;
}

.p-login-info.error {
    background-color: #efcdcd;
}
.p-login-info.error .p-login-info__flash {
    display: inline-block;
    font-weight: 600;
    color: #cc0000;
}

/* ログインページのinputとmypageのselectは共通のスタイル */
.c-login__input, .c-select {
  display: block;
  /* max-width: 335px; */
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 11.5px 20px;
  background-color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}
input::placeholder {
  color: #A8A8A8;
}

.error-message {
    padding: 10px 0;
    background-color: #EDCDCD;
    text-align: center;
    margin-top: 10px;
    color: #cc0000;
    font-weight: 600;
}

/* セレクトボックス（プルダウン） */
.c-select {
 background-image: url(../img/top-arrow-icon.png);
 background-repeat: no-repeat;
 background-position: center right 10px;
 background-size: 18px;
 background-color: #FFFFFF;
}

/* セキュリティコードを送信・マイページへ戻る ボタン */
.c-btn {
  display: inline-block;
  width: 240px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  border-radius: 200px;
  color: #FFFFFF;
  background-color: #000000;
  text-align: center;
  padding: 18px 0;
}


/* mypage, payページ共通 */

/* 各項目へのリンク */
.c-info-info__item {
  background-color: #FFFFFF;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 30px;
  padding-right: 24.5px;
}
.c-info-info__item + .c-info-info__item {
  margin-top: 10px;
}
.c-info-info__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000000;
}
.c-info-info__icon {
  display: inline-block;
  width: 9px;
}

/* information, pay_historyの 見出しにアンダーライン共通パーツ */
.c-under-line-heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000000;
  padding-bottom: 13px;
  border-bottom: 3px solid #000000;
}
/************** 共通パーツ END **********************/


/******* index.html（ログインページ*******************/
.p-login {
  padding-top: 60px;
  padding-bottom: 115px;
}
.p-login__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 35px;
  text-align: center;
}
.p-login__text-bold {
  font-weight: 600;
}

.p-login__form {
  margin-top: 23px;
}

.p-login__form-sub-text {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-left: 6px;
}
.p-login__submit {
  margin-top: 20px;
  text-align: center;
}

/******* login_code.html *******************/
.p-login-code {
  padding-top: 60px;
  padding-bottom: 100px
}
.p-login-code__form {
  margin-top: 40px;
}

.p-login-code__submit {
  margin-top: 20px;
  text-align: center;
}
/* ログインボタン */
.p-login-code__btn {
  width: 200px;
}


/******* mypage.html *******************/
.p-mypage {
  margin-top: 72px;
  padding-top: 56px;
  padding-bottom: 100px;
}

.p-mypage__sub-heading {
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
  text-align: center;
  margin-top: 24px;
}
/* 入居者の名前 動的*/
.p-mypage__resident {
  display: inline-block;
  font-weight: 600;
}

.p-mypage__select {
  margin-top: 40px;
}

.p-mypage-pay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  padding: 22px 25px 22px 30px;
  margin-top: 40px;
}
.p-mypage-pay__heading {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000000;
}
.p-mypage-pay__link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  padding: 7px 31px;
  background-color: #000000;
  border-radius: 200px;
}

.p-mypage__info-heading {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000000;
  margin-top: 30px;
}
.p-mypage__info__items {
  margin-top: 10px;
}



/* pay,pay_barcode,pay_history共通パーツ */
/* パンくずリスト */
.c-breadcrumb__icon {
  display: inline-block;
  width: 8px;
}
.c-breadcrumb__link {
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-left: 4px;
}
.c-pay__heading {
  margin-top: 15.5px;
}

/******* pay.html *******************/
.p-pay {
  margin-top: 72px;
  padding-top: 21.5px;
  padding-bottom: 100px;
}

.p-pay__items {
  margin-top: 20px;
}

.p-pay-info {
  padding: 15px;
  background-color: #EDCDCD;
  text-align: left;
  margin-top: 27.8px;
}
.p-pay-info__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #000000;
}
.p-pay-info__text.center {
  text-align: center;
}
/* いつの家賃か（動的） */
.p-pay-info__time {
  display: inline-block;
  font-weight: 600;
  color: #FF0000;
  text-align: left;
}

.p-pay__btn {
  margin-top: 50px;
  text-align: center;
}


/******* pay_barcode.html *******************/
.p-pay-barcode {
  margin-top: 72px;
  padding-top: 21.5px;
  padding-bottom: 100px;
}

.p-pay-barcode__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #000000;
  text-align: center;
  margin-top: 20px;
}

.p-pay-barcode__box {
  background-color: #FFFFFF;
  margin-top: 23px;
}
.p-pay-barcode__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #DDDDDD;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
}
.p-pay-barcode__title {
  font-weight: 600;
}
.p-pay-barcode__content {
  font-weight: 300;
}
.p-pay-barcode__img {
    margin: 10px 0 ;
    padding: 25px 0 10px;
    background: #ffffff;
    border-bottom: 1px solid #DDDDDD;
    text-align: center;
    font-size: 12px;
}
.p-pay-barcode__img > img {
  display: inline-block;
  max-width: 100%;
}

.p-pay-barcode-description {
  margin-top: 15px;
}
.p-pay-barcode-description__list {
  display: inline-flex;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
}
.p-pay-barcode-description__list::before {
  content: '・';
  display: inline-block;
}

/******** 契約書一覧 ********/

.p-getting-ready__text {
  padding: 12.4px 0;
  background-color: #FFFFFF;
  text-align: center;
  margin-top: 27.8px;
}

.p-getting-ready__time {
  display: inline-block;
  color: #000000;
}

/* 取り扱いコンビニ */
.p-pay-barcode-shop__heading {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000000;
  margin-top: 26px;
}
.p-pay-barcode-shop__item-box {
  padding-top: 22px;
  padding-bottom: 28px;
  margin-top: 10px;
  background-color: #FFFFFF;
}

.p-pay-barcode-shop__items {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-pay-barcode-shop__items + .p-pay-barcode-shop__items {
  margin-top: 10px;
}
.seven {
  display: inline-block;
  width: 50px;
}
.lawson {
  display: inline-block;
  width: 100px;
  margin-left: 35px;
}
.ministop {
  display: inline-block;
  width: 58.82px;
}
.seicomart {
  display: inline-block;
  width: 103.58px;
  margin-left: 30px;
}

.p-pay-barcode__nav-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000000;
  text-align: center;
  margin-top: 27px;
}

.p-pay-barcode__btn {
  margin-top: 30px;
  text-align: center;
}


/******* pay_history.html *******************/
.p-pay-history {
  margin-top: 72px;
  padding-top: 21.5px;
  padding-bottom: 100px;
}

.p-pay-history__heading {
  margin-top: 25px;
}

.p-pay-history__items {
  margin-top: 20px;
  background-color: #FFFFFF;
}
.p-pay-history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.p-pay-history-item:not(:last-of-type) {
  border-bottom: 1px solid #DDDDDD;
}
.p-pay-history-item__title {
  flex: 0 0 107px;
}

.p-pay-history-item__title, .p-pay-history-item__money {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000000;
}

.p-pay-history-item__data {
  text-align: end;
  margin-left: 36px;
}
.p-pay-history-item__time {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ABAAAC;
  margin-top: 5px;
}

.p-pay-history__nav-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 00.05em;
  color: #000000;
  text-align: center;
  margin-top: 26px;
}
.p-pay-history__btn {
  text-align: center;
  margin-top: 30px;
}

/******* pay_history.html *******************/
.p-information {
  margin-top: 72px;
  padding-top: 21.5px;
  padding-bottom: 100px;
}
.p-information__items {
  margin-top: 34px;
}
.p-information__item + .p-information__item {
  margin-top: 29.5px;

}

.p-information__heading {
  position: relative;
  cursor: pointer;
}
/* アコーディオンのアイコン */
.p-information__item-icon {
  position: absolute;
  top: 0.5em;
  right: 20px;
  display: block;
  width: 18px;
  transform: translateY(-50%);
}
.p-information__item-icon.is-open {
  transform: rotate(180deg);
}

.information__description {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #000000;
  background-color: #FFFFFF;
  padding: 12.6px 20px;
  margin-top: 19px;
}

.p-information__btn {
  margin-top: 50px;
  text-align: center;
}

/* ログアウトボタン */
.p-menu__btn {
  width: 180px;
}

/******* index.html（ログインページ*******************/
.p-error {
    padding-top: 60px;
    padding-bottom: 115px;
  }
.p-error__text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-top: 35px;
    text-align: left;
  }

  .p-error .error-content {
    padding: 20px;
  }
  .p-error .error-content h2{
    text-align:center;
  }
  .p-error__btn {
    margin-top: 20px;
    text-align:center;
  }
