@charset "UTF-8";
#jln-rentacar .u-td-u:link {
    text-decoration: underline !important;
}

.p-heading--coupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-weight: bold !important;
}

.p-coupon-wrap {
    position: relative;
    margin-inline: 10px !important;
    padding: 12px 8px 8px !important;
    overflow: hidden;
    background: #fbf4ea;
}
.p-coupon-wrap:has(+ .p-coupon-more)::before {
    content: '';
    position: absolute;
    bottom: 28px;
    z-index: 2;
    width: calc(100% - 16px);
    height: 40px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}
.p-coupon-wrap:has(+ .p-coupon-more[open]) {
    height: auto !important;
    overflow: visible;
}
.p-coupon-wrap:has(+ .p-coupon-more[open])::before {
    display: none;
}
.p-coupon-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    place-content: center;
    margin-top: 8px !important;
}
.p-coupon-card {
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
    border: 1px solid #bcb6b3;
    border-radius: 4px;
    background: #fff;
    width: 170px;
}
.p-coupon-card__top {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto auto;
    padding: 8px !important;
}
.p-coupon-card__heading {
    overflow: hidden;
    display: -webkit-box;
    font-weight: bold !important;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.p-coupon-card__bottom {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 8px !important;
    border-top: 1px dashed #bcb6b3;
    font-size: 10px;
    white-space: nowrap;
}
.p-coupon-card__price {
    color: #e77611;
    font-size: 20px;
    font-weight: bold;
}
.p-coupon-card__detail {
    border: none;
    background: transparent;
    color: #1558ce;
    font-size: 10px;
    text-decoration: underline;
}
.p-coupon-card__detail:hover {
    color: #e77611;
}
.p-coupon-card--close::before {
    content: '獲得済み';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: subgrid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(145, 139, 138, 0.7);
    z-index: 1;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.p-coupon-more {
    position: absolute;
    bottom: 0;
    margin-inline: 18px;
    padding-top: 12px;
    background: #fff;
    width: calc(100% - 36px);
}
.p-coupon-more__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2px;
    color: #1558ce;
    font-size: 12px;
    text-align: center;
    list-style: none;
    line-height: 1;
    cursor: pointer;
}
.p-coupon-more__text::-webkit-details-marker {
    display: none;
}
.p-coupon-more__text:hover {
    color: #e77611;
}
.p-coupon-more[open] {
    display: none;
}
.p-coupon-card:nth-child(n+5) .p-coupon-card__bottom {
    visibility: hidden;
}
.p-coupon-wrap:has(+ .p-coupon-more[open]) .p-coupon-card:nth-child(n+5) .p-coupon-card__bottom {
    visibility: visible;
}

.p-btn--secondary {
    display: inline-block;
    padding: 0 4px;
    border: 1px solid #1558ce;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dfeef7));
    background: linear-gradient(to bottom, #fff, #dfeef7);
    color: #1558ce !important;
    text-align: center;
    text-decoration: none !important;
    width: 100%;
    height: 24px;
    font-size: 10px;
    font-weight: bold;
    line-height: 24px;
}
.p-btn--secondary:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#dfeef7), to(#b9dbea));
    background: linear-gradient(to bottom, #dfeef7, #b9dbea);
    color: #0182e7 !important;
    text-decoration: none !important;
}
.p-btn--secondary:visited {
    color: #1558ce !important;
}

.p-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 600;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.p-modal__trigger {
    color: #1558ce;
    font-size: 12px;
    text-align: center;
}
.p-modal__content {
    width: 796px;
    height: auto;
    background-color: #fff;
    margin: 20px 16px !important;
    padding: 20px !important;
    border-radius: 4px;
}
.p-modal__content__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.p-modal__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.p-modal__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px !important;
    font-weight: bold !important;
    line-height: 1;
}
.p-modal__heading::before {
    content: '';
    margin-right: 8px;
    width: 4px;
    height: 24px;
    border-radius: 2px;
    background: #e77611;
}
.p-modal__close {
    border: none;
    background: none;
    font-size: 16px;
    cursor: pointer;
}
.p-modal__inner {
    margin-top: 16px !important;
    height: calc(100% - 40px);
    overflow-y: scroll;
}
.p-modal__scrollarea {
    font-size: 12px;
    width: 100%;
}
.p-modal--couponget .p-modal__content {
    width: 780px;
}
.p-modal--error {
    display: block;
}
.p-modal--error .p-error {
    padding-block: 24px;
    color: #ca1738;
    font-size: 14px;
    text-align: center;
}
.p-modal--error .p-modal__content {
    padding: 0 !important;
    max-height: calc(100% - 40px);
}
.p-modal--error .p-reload-btn {
    font-size: 16px;
    font-weight: bold;
    width: 340px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 24px auto 0;
    cursor: pointer;
}

.is-invalid {
    height: 100%;
    width: 100%;
    position: fixed;
}

.p-table {
    font-size: 12px;
    text-align: left;
}
.p-table__heading, .p-table__data {
    border: 1px solid #bcb6b3;
    vertical-align: top;
}
.p-table__heading {
    padding: 8px 4px !important;
    min-width: 173px;
    background: #f7f5f2;
}
.p-table__data {
    padding: 8px !important;
    background: #fff;
}
.p-table-attention__item {
    text-indent: 1em hanging;
}

.p-get-text {
    text-align: center;
    background-color: #fbf4ea;
    padding: 20px;
}

.p-get-alert {
    color: #ca1738;
    font-size: 14px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 24px 0;
    padding: 16px;
    border: 2px solid #ca1738;
    border-radius: 4px;
}

.p-get-coupon {
    border: 1px solid #bcb6b3;
    padding: 20px;
}
.p-get-coupon__detail {
    font-size: 12px;
    border-top: 1px solid #e0dbd7;
    border-bottom: 1px solid #e0dbd7;
    margin-top: 16px;
}
.p-get-coupon__detail__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.p-get-coupon__detail__line:not(:first-child) {
    border-top: 1px solid #e0dbd7;
}
.p-get-coupon__detail__title {
    font-weight: bold;
    width: 160px;
    background-color: #f7f5f2;
    padding: 8px;
}
.p-get-coupon__detail__data {
    width: calc(100% - 160px);
    padding: 8px;
}

.p-how-to-coupon__notes {
    font-size: 14px;
    margin-top: 8px !important;
}
.p-how-to-coupon__notes__item {
    text-indent: 1em hanging;
}