@charset "UTF-8";

/*!---------------------------------------
 * addon.css このアドオンは omotenashi2 の初期状態に対しての機能拡張です。
 * /theme/omotenashi2/Layouts/default.php
 * /theme/omotenashi2/Layouts/tpl_news.php
 * 適用には各レイアウトからの読み込みが必要です。
 * -------------------------------------*/

/*----------------------------------------
スマホ表示のグローバールメニュー　サブ名ニューの開閉
----------------------------------------*/

/* サブメニューが閉じているとき */
@media only screen and (max-width: 999px) {
  /* サブメニューのトランジション設定 */
  .nav-item .nav-menu__sub {
      overflow: hidden; /* サブメニューの高さ変更時にコンテンツがはみ出さないようにする */
      max-height: 0; /* サブメニューが閉じているときの高さ */
      transition: max-height 0.5s ease-in-out; /* 開閉のアニメーション設定 */
  }

  /* サブメニューが開いているときのスタイル */
  .nav-item.active .nav-menu__sub {
      max-height: 500px; /* サブメニューが開いているときの最大高さ (適宜調整) */
  }

  /* サブメニューがあるメニュー項目のスタイル */
  .nav-item.has-submenu > a {
      padding-right: 20px; /* テキストと三角形の間隔を確保 */
  }

}


/* パソコンで見たときは"pc"のclassがついた要素が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた要素が表示される */
@media only screen and (max-width: 787px) {
.pc { display: none !important; }
.sp { display: block !important; }
}



/* ページ全体をふわっと表示 /////////////// */
body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


/* 要素をふわっと表示 /////////////// */
.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 2s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}





/* GoogleMapレスポンシブ ==================== */
.ggmap {
position: relative;
padding-bottom: 56.25%;
/*padding-bottom: 70%;*/
padding-top: 30px;
height: 0;
overflow: hidden;
border: 1px solid #CCC;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@media only screen and (max-width: 787px) {
  .ggmap{
    padding-bottom: 100%;
  }
}


/* YouTubeレスポンシブ ==================== */
.youtube2 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube2 iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}


.footer-logo{
  height: 50px;
  margin-left: -6px;
}
@media only screen and (max-width: 787px) {
  .footer-logo{
    margin: 10px auto 0;
  }
}


/* TOP news ================= */
.topNews__box img {
  margin-top: 15px;
  width: 100px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .topNews__box img {
    margin-top: -8px;
    width: 80px;
    margin-bottom: 5px;
    }
}


/* TOP summary スタイル設定 */
#top_summary .boxInner h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  position: relative;
  margin-top: -2px;
  margin-bottom: 20px;
  padding: 10px;
  border-top: 6px solid #ccc;  /* 初期のボーダー色 */
  border-bottom: 1px dotted #000;
}

#top_summary .boxInner:nth-child(1) h2 {
  border-top-color: #6281e9;
  color: #6281e9;
  background-color: #f2f5ff;
}

#top_summary .boxInner:nth-child(2) h2 {
  border-top-color: #02b144;
  color: #02b144;
  background-color: #e7f8ed;
}

#top_summary .boxInner:nth-child(3) h2 {
  border-top-color: #c60813;
  color: #c60813;
  background-color: #ffeeef;
}

/* ズームコンテナと画像のスタイル設定 */
.zoom-container {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden; 
}

.zoom-container img {
  width: 100%;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.zoom-container:hover img {
  transform: scale(1.1); /* ホバー時に画像を拡大 */
}

/* オーナメントのスタイル設定 */
.zoom-rentacar .ornament, .zoom-lease .ornament, .zoom-kaitori .ornament {
  position: absolute;
  top: 5px; /* オーナメントを上にはみ出させる */
  left: 10px;
  width: 90px;
  height: 115px;
  background-size: cover;
  background-repeat: no-repeat;
}

/* トップ・サマリー画像のオーナメント
.zoom-rentacar .ornament {
  background-image: url('../img/top/ornament-sales.png');
}

.zoom-lease .ornament {
  background-image: url('../img/top/ornament-lease.png');
}

.zoom-kaitori .ornament {
  background-image: url('../img/top/ornament-kaitori.png');
}
*/

.button-container {
    display: flex;
    justify-content: flex-end; /* 右寄せ */
    width: 100%; /* コンテナを親の幅に広げる */
}

.btn2 {
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    padding: 5px 35px 5px 10px; /* 右のパディングを30pxから35pxに増やす */
    text-decoration: none;
    color: #fff; /* テキストの色を白に設定 */
    background: #999;
    position: relative;
    border-radius: 5px; /* ボタンの角を丸くする */
}

.btn2:after {
    content: '>';
    position: absolute;
    right: 10px; /* 矢印の位置を少し左に調整 */
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: white; /* 丸の背景色 */
    border-radius: 50%; /* 丸を作る */
    text-align: center;
    line-height: 18px; /* 文字を丸の中心に配置 */
    color: black; /* 文字色を黒に設定 */
    transition: right 0.3s ease; /* 矢印の動きにアニメーションを追加 */
}

.btn2:hover {
    color: #fff; /* ホバー時のテキスト色を白に保持 */
}
.btn2:hover:after {
    right: 5px; /* ホバー時に矢印を少し右に移動 */
}

.btn2_blue {
    background: #6281e9;
}
.btn2_blue:after {
    color: #6281e9; /* ブルーボタンの文字色 */
}

.btn2_green {
    background: #02b144;
}
.btn2_green:after {
    color: #02b144; /* グリーンボタンの文字色 */
}

.btn2_red {
    background: #c60813;
}
.btn2_red:after {
    color: #c60813; /* レッドボタンの文字色 */
}







/* TOP店舗紹介 Slick ===================== */
.inner a :hover {
  opacity: 0.8;

}
.shop-slick__item .shop-name {
  background: #a80013;
  color: #EEE;
  padding: 5px 0;
  margin-top: 0;
  border-radius: 0 0 10px 10px;
  text-align: center;
  font-weight: bold;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.shop-slick__item .shop-tel {
  font-weight: bold;
  font-size: large;
}
.shop-slick__item .telLink a{
  color: #FFF;
}



/* TOPお客様の声スライダー（プレースホルダー機能付き） ///////////////////// */
/* プレースホルダーのスタイル */
.slider-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; /* スライダーの高さに合わせて調整 */
    background-color: #f0f0f0;
    color: #999;
    font-size: 24px;
}

/* TOPお客様の声スライダー */
.customer-voice:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: border 0.3s, box-shadow 0.3s;
}

.customer-voice:hover img {
    filter: brightness(70%);
    transition: filter 0.3s;
}

.customer-voice:hover .customer-voice-title {
    background-color: #fffdb5;
    transition: background-color 0.3s;
}

.customer-voice:hover .customer-voice-title p {
    /* タイトルのテキストのホバーエフェクトは無効化されている */
}

.cvoice-href:hover .customer-voice-title .arrow-mark {
    margin-left: 20px;
}

.arrow-mark {
    color: #fff;
    background-color: #558b2f;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-block;
    text-align: center;
    line-height: 13px;
    font-size: 12px;
    margin-left: 4px;
    transition: margin-left 0.3s;
}




/* 会社概要 ///////////////////////////// */
.shopName h4 {
  font-weight: bold;
  font-size: 1.2rem;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  margin: 0;
  padding: 5px 15px;
  background-color: #c70017;
  color: #FFF;
}

.shopName p {
  background-color: #EEE;
  color: #333;
  padding: 10px 15px 15px 15px;
  font-size: smaller;
  margin-top: 0;
}
.shopName span {
  font-weight: bold;
}

.shopName a {
  text-decoration: none;
}



/* ワンコインリース index ============================= */
.oclease-feature {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* 画像間のスペース */
    justify-content: center;
    padding: 10px;
}

.oclease-feature-img {
    width: calc(25% - 10px); /* 4つ並べた時の幅 (25% - gapの半分) */
    max-width: 100%; /* 親要素の幅を超えないようにする */
    box-sizing: border-box;
}

@media screen and (max-width: 600px) {
    .oclease-feature-img {
        width: calc(50% - 10px); /* 2つ並べた時の幅 (50% - gapの半分) */
    }
}

.lease-point-box {
    margin-bottom: 40px;
}

.headline-lease {
  margin: 0 0 10px;
  line-height: 120%;
  font-size: 30px;
  font-size: 1.875rem;
  position: relative;
  text-align: center;
  font-weight: normal;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  background-color: #6381e6;
  color: #FFF;
  padding: 10px 0 10px 20px;
}
@media screen and (max-width: 600px) {
    .headline-lease {
        font-size: 20px;
    }
}
.headline-lease-point {
    background-color: #DDD;
    padding: 9px 0 7px 0;
    margin-bottom: 0;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}
.headline-lease-point span {
    background-color: #000;
    color: #fcffa3;
    padding: 10px 15px 10px 20px;
}

.baseTable .td-lease2 {
    background-color: #fffddb;
}

.baseTable .td-lease-price {
    width: 22%;
    text-align: right;
    font-size: larger;
    font-weight: bold;
    line-height: 1.2;
    padding-top: 20px;
}
.baseTable .td-lease-price2 {
    width: 22%;
    text-align: right;
    font-size: larger;
    font-weight: bold;
    color: #6381e6;
    font-size: x-large;
    background-color: #fffddb;
    line-height: 1;
    padding-top: 20px;
}
@media screen and (max-width: 787px) {
    .baseTable .td-lease, .baseTable .td-lease2 {
        border-bottom: none;
        padding-bottom: 0;
    }
    .baseTable .td-lease-price, .baseTable .td-lease-price2 {
        width: 100%;
        border-top: none;
        padding-top: 0;
    }
}


/*/-----------------------------------------------------------------------------------------
// car exsample
//-----------------------------------------------------------------------------------------*/
.carExsample {
    display: table;
    width: 100%;
    margin: 15px 0 10px 0;
    color: #fff;
}

.carExsample > * {
    display: table-cell;
    vertical-align: top;
    line-height: 0;
}

.carExsample h4 {
    font-size: 1.6rem;
    margin: 0;
    padding: 5px 10px;
    background: #000;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #fcffa3;
}

.carExsample-ph {
    width: 400px;
}

.carExsample-detail {
    padding: 20px 10px 0 10px;
}

.carExsample p {
    line-height: 1.5;
    margin: 0;
    float: left;
}

.carExsample h5 {
    position: relative;
    display: inline-block;
    height: 16px;
    margin: 0 10px 0 0;
    padding: 3px 0 8px 5px;
    text-align: center;
    vertical-align: middle;
    color: #000;
    /*border: 1px solid #000;*/
    background: #fff;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.carExsample h5:before {
    position: absolute;
    top: -1px;
    left: 100%;
    width: 0;
    height: 0;
    margin-right: -15px;
    content: ' ';
    pointer-events: none;
    /*border: solid transparent;*/
    border-width: 15px;
    border-left-color: #000;
}

.carExsample h5:after {
    position: absolute;
    top: 0;
    left: 100%;
    width: 0;
    height: 0;
    margin-right: -14px;
    content: ' ';
    pointer-events: none;
    border: solid transparent;
    border-width: 14px;
    border-left-color: #fff;
}

.carExsample h6 {
    font-size: 2rem;
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.carExsample h6 b {
    font-size: 5rem;
    font-weight: bolder;
    line-height: 90px;
}

@media screen and (max-width: 787px) {
    .carExsample {
        display: block;
    }
    .carExsample > * {
        display: block;
    }
    .carExsample-left {
        width: auto;
    }
    .carExsample-ph {
        width: auto;
    }
    .carExsample-ph img {
        width: 100%;
    }
}

.carExsample_blue {
    background: #6281e9;
}

.carExsample_blue h5 {
    border-color: #141a2e;
    background: #fffddb;
}

.carExsample_blue h5:before {
    border-left-color: #141a2e;
}

.carExsample_blue h5:after {
    border-left-color: #fffddb;
}

.carExsample_yellow {
    background: #e0b021;
}

.carExsample_yellow h5 {
    border-color: #2d230a;
    background: #f9efd4;
}

.carExsample_yellow h5:before {
    border-left-color: #2d230a;
}

.carExsample_yellow h5:after {
    border-left-color: #f9efd4;
}




.triangle-container {
    text-align: right; /* コンテナ内のコンテンツを右に寄せる */
    position: relative; /* 三角形の絶対位置指定の基準点 */
    height: 30px; /* 三角形との間にスペースを作る */
    margin-top: 10px; /* 上のテーブルから離す */
}

.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent; /* 三角形の左側の透明部分 */
    border-right: 25px solid transparent; /* 三角形の右側の透明部分 */
    border-top: 25px solid #6381e6; /* 三角形の色と大きさ */
    position: absolute; /* 絶対位置指定 */
    right: 8%; /* 右端からの位置をセルの幅の10%に設定（セル幅の中心） */
    top: 0; /* 上端からの位置 */
}
@media screen and (max-width: 787px) {
    .triangle-container {
        text-align: center; /* コンテナ内のテキストを中央揃えに変更 */
    }
    .triangle {
        right: 50%; /* コンテナの右から50%の位置に設定 */
        transform: translateX(50%); /* 位置を左に半分ずらすことで中央に配置 */
    }
}


.lease-stock-btn {
    text-align: center;
    margin: 60px auto 0;
    background-color: #a80013;
    padding: 15px 20px;
    color: #FFF;
    font-size: 1.25rem;
    border-radius: 5px;
    width: 300px;
}
.lease-stock-btn i {
    margin-left: 8px; /* テキストからの距離を設定 */
    transition: margin-left 0.3s ease; /* 位置の変化をスムーズにアニメーション化 */
}
.lease-stock-btn:hover {
    background-color: rgba(168, 0, 19, 0.7);
}
.lease-stock-btn:hover i {
    margin-left: 13px; /* ホバー時に元の位置から5px右に移動 */
}


/* リース車両 写真ギャラリー ///////////////// */
.image-gallery {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
}

.main-image img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1px;
}

.thumbnails {
    display: flex;
    /*gap: 10px;*/
}

.thumbnail img {
    /*width: 100px;*/
    /*height: auto;*/
    height: 117.75px;
    cursor: pointer;
    border: 3px solid #ccc;
    box-sizing: border-box;
    transition: border 0.3s ease;
}
@media (max-width: 600px) {
    .thumbnail img {
        height: auto;
    }
}

.thumbnail img:hover {
    border: 3px solid #ffa700;
    box-sizing: border-box;
}

.thumbnail img.selected {
    border: 3px solid #c70017;
    box-sizing: border-box;
}


.price-day {
  background-color: #c70017;
  color: #FFF;
  font-size: 80%;
  padding: 5px 10px;
  border-radius: 5px;
}


.custom-fields-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.custom-fields-table th {
    width: 30%;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #FFF;
    background-color: #DDD;
}

.custom-fields-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #DDD;
    background-color: #F8F8F8;
}

.custom-fields-table thead {
    background-color: #f2f2f2;
}

.custom-fields-table tbody tr:hover {
    background-color: #fff7cb;
}

/* Responsive typography */
.custom-fields-table th, .custom-fields-table td {
    font-size: 16px;
}

@media (max-width: 600px) {
    .custom-fields-table th, .custom-fields-table td {
        padding: 10px 8px;
        font-size: 14px;
    }
}

.goto-lease-stock-index {
    text-align: center;
    background-color: #a80013;
    color: #FFF;
    text-decoration: none;
    padding: 8px;
    border-radius: 5px;
    width: 300px;
    margin: 20px auto 35px;
}



.lease-price {
    background-color: #a80013;
    color: #FFF;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 0;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.entryList__p {
    order: 4;
    margin: 0;
}

/* リース在庫店の電話番号表示 */
.lease-shop-tel {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: larger;
    color: #FFF;
    text-decoration: none;
}


/* OMMOM Footer Contact TEL //////////// */

#contactButton {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.25rem;
    background-color: transparent;
    color: #FFF;
    margin-top: 10px;
}
#contactButton:hover {
    background-color: #FFF; /* 背景色を白にする */
    color: #000; /* 文字色を黒にする */
}

#contactButton i {
    margin-left: 8px; /* テキストからの距離を設定 */
    font-size: 0.75em; /* アイコンのサイズを小さく設定 */
    transition: margin-left 0.3s ease; /* 位置の変化をスムーズにアニメーション化 */
}
#contactButton:hover i {
    margin-left: 13px; /* ホバー時に元の位置から5px右に移動 */
}

@media only screen and (max-width: 499px){
    #contactButton {
        font-size: 1.1rem;
    }
}


/* TELリストのモーダルウィンドウスタイル */
.modal {
    display: none;
    position: fixed;
    z-index: 4;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.77);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 350px;
    border-radius: 10px;
    opacity: 0; /* 初期状態で透明 */
    transform: translateY(-50px); /* 初期状態で少し上に移動 */
    transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーションを追加 */
}

.modal.show .modal-content {
    opacity: 1; /* 表示時に不透明に */
    transform: translateY(0); /* 表示時に元の位置に */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.modal-content h2 {
    font-size: 1.3em;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.store-list {
    list-style-type: none;
    padding: 0;
}

.store-item {
    margin: 10px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -15px 0; /* マージンを削除または小さく設定 */
}

.store-name {
    font-size: 1.0em;
    margin: 0;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: bold;
    color: #a80013;
}
.store-name span {
    font-size: 1.2em;
}

.store-tel a {
    font-size: 1.2em;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.store-time {
    font-size: 0.9em;
    color: #666;
    margin: 5px 0 0 0;
}



/* ヘッダーメニュー・プライバシーポリシー */
.btn-privacy {
    background-color: #DDD;
    padding: 5px 0 5px;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
    margin-top: 5px;
    transition: background-color 0.3s, color 0.3s;
    /*display: inline-block; /* 必要に応じて display を追加 */
}

.btn-privacy:hover {
    background-color: #999;
    color: #FFF;
}

.btn-privacy p {
    margin: 0; /* 必要に応じて margin をリセット */
    transition: color 0.3s;
}

.btn-privacy:hover p {
    color: #FFF;
}


/* プライバシーポリシー */
.privacypolicy h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin-bottom: 25px;
}
.privacypolicy p {
    margin-bottom: 50px;
}
.privacypolicy span {
    background-color: #f0f0f0;
    padding: 20px 30px;
    border-radius: 5px;
    display: inline-block;
}



/* サイトマップ */
.sitemap .ul-level-1 {
    padding-left: 0;
}
.sitemap .li-level-1 {
    background-color: #E8E8E8E8;
    margin-bottom: 10px;
    padding: 15px;
    list-style-position: inside;
    border-radius: 5px
}
.sitemap .li-level-2 {
    padding: 5px 0;
}



/* ワンコインリースよくある質問 FAQ ////////////////////////// */
.Gusuku_base {
  background: #EEE;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: -60px;
}
@media only screen and (max-width: 787px) {
    .Gusuku_base {
        margin-bottom: -20px;
    }
}
.Gusuku_base h3 {
  font-size: 150%;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  margin-top: 0;
  font-weight: 900;
  color: #444;
  border-left: 10px solid #c70017;
  padding-left: 8px;
}
/*ベース*/
.toggle {
  display: none;
}
.Label {    /*タイトル*/
  padding: 1em;
  display: block;
  color: #019ac6;
  background:#FFF;
  border: 2px solid #019ac6;
  font-weight: 700;
  padding-right: 32px;
}
.Label::before{   /*タイトル横の矢印*/
  content:"";
  width: 6px;
  height: 6px;
  border-top: 2px solid #019ac6;
  border-right: 2px solid #019ac6;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top:calc( 50% - 3px );
  right: 20px;
  transform: rotate(135deg);
}
.Label,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.content {    /*本文*/
  height: 0;
  margin-bottom:10px;
  padding:0 20px;
  overflow: hidden;
}
.content p {
  margin: 0 0 0 10px;
}
.toggle:checked + .Label + .content { /*開閉時*/
  height: auto;
  padding:20px ;
  transition: all .3s;
  background: #ffffd3;
  margin-bottom: 20px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 10px 15px -15px #777777;
}
.toggle:checked + .Label::before {
  transform: rotate(-45deg) !important;
}


.lease-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.lease-table thead th {
    background-color: #e1edf8;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

.lease-table tbody th {
    background-color: #e1edf8;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

.lease-table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
}

.lease-table tbody td {
    /*text-align: center;*/
}

.lease-table th {
    font-weight: bold;
}

.lease-table tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

.lease-table tbody tr:nth-child(odd) {
    background-color: #fff;
}

