@charset "UTF-8";
/* ==========================================================================
   variables
========================================================================== */
/*===========================================
# Color
/*===========================================*/
/*===========================================
# Font Famiry
/*===========================================*/
/*===========================================
# root
/*===========================================*/
/* ==========================================================================
   function
========================================================================== */
/* ==========================================================================
  mixin
========================================================================== */
/* --------------------------------------------------------------------------
  media query (SP（小）→ PC（大）の順に適用)
-------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
  arrow 
-------------------------------------------------------------------------- */
/*# アロー
/*===========================================*/
/* --------------------------------------------------------------------------
  login icon
-------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
  button size
-------------------------------------------------------------------------- */
/* ==========================================================================
  mylist
========================================================================== */
.p-mylist {
  padding: 200px 0 120px;
}
@media screen and (max-width: 767px) {
  .p-mylist {
    padding: 6.6666666667vw 0 17.0666666667vw;
  }
}

.p-mylist-table {
  position: relative;
  overflow: auto;
  border-top: 1px solid #D5D5D6;
  border-right: 1px solid #D5D5D6;
  border-bottom: 1px solid #D5D5D6;
}
.p-mylist-table table {
  table-layout: fixed;
  width: 100%;
  background-color: #fff;
}
.p-mylist-table.is-loading {
  position: relative;
  min-height: 200px;
}
.p-mylist-table.is-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 45, 49, 0.8);
  z-index: 10;
}
.p-mylist-table.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid #D5D5D6;
  border-top-color: #1A73BA;
  border-radius: 50%;
  animation: loading-spin 0.8s linear infinite;
  z-index: 11;
}
@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}
.p-mylist-table tr th {
  cursor: pointer;
}
.p-mylist-table tr th:has(.p-mylist-ac) {
  transition: all 0.3s;
}
.p-mylist-table tr th:has(.p-mylist-ac)::before {
  transition: all 0.3s;
}
.p-mylist-table tr th:has(.p-mylist-ac):hover {
  color: #fff;
}
.p-mylist-table tr th:has(.p-mylist-ac):hover::before {
  background-color: #0089A8;
}
.p-mylist-table tr th:has(.p-mylist-ac):hover .p-mylist-ac::before, .p-mylist-table tr th:has(.p-mylist-ac):hover .p-mylist-ac::after {
  border-color: #fff;
}
.p-mylist-table tr th .p-mylist-ac {
  position: relative;
  width: 100%;
}
.p-mylist-table tr th .p-mylist-ac::before, .p-mylist-table tr th .p-mylist-ac::after {
  content: "";
  position: absolute;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #2C2D31;
  border-right: 1px solid #2C2D31;
  transition: border-color 0.3s;
}
.p-mylist-table tr th .p-mylist-ac::before {
  top: 40%;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
}
.p-mylist-table tr th .p-mylist-ac::after {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}
.p-mylist-table tr th.event-none {
  pointer-events: none;
}
.p-mylist-table tr.is-active .p-mylist-ac::before {
  opacity: 1;
}
.p-mylist-table tr.is-active .p-mylist-ac::after {
  top: 60%;
}
.p-mylist-table tr.is-active td {
  visibility: hidden;
  padding: 0;
  font-size: 0;
  text-indent: -9999px;
  line-height: 0;
  height: 36px;
}
.p-mylist-table tr.is-active td > div {
  display: none;
}
.p-mylist-table th, .p-mylist-table td {
  padding: 10px 14px;
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.45;
  font-size: 14px;
  border: 1px solid #D5D5D6;
}
@media screen and (min-width: 768px) {
  .p-mylist-table th {
    position: sticky;
    top: 0;
    left: 0;
    border-left: none;
    border-right: none;
    z-index: 2;
  }
  .p-mylist-table th::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-left: 1px solid #D5D5D6;
    border-right: 1px solid #D5D5D6;
    background-color: #EDEAE5;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .p-mylist-table th {
    background: #EDEAE5;
  }
}
.p-mylist-table td {
  background: #fff;
  text-align: left;
  border-top: none;
}
.p-mylist-table td:first-of-type {
  border-left: none;
}
.p-mylist-table tr:first-of-type th, .p-mylist-table tr:first-of-type td {
  border-top: none;
}
.p-mylist-table tr:last-of-type th, .p-mylist-table tr:last-of-type td {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-mylist-table .p-mylist-item__icon {
    flex: 0 0 24px;
    height: 24px;
  }
}

.p-mylist-table__image {
  width: 200px;
  margin: 0 auto;
}
.p-mylist-table__image img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mylist-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-mylist-list {
    gap: 3.2vw;
  }
}

.p-mylist-item {
  border: 1px solid #D5D5D6;
}
@media screen and (min-width: 768px) {
  .p-mylist-item {
    display: flex;
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .p-mylist-item {
    width: calc((100% - 3.2vw) / 2);
  }
}

.p-mylist-item__checkbox {
  display: flex;
  align-items: baseline;
  background-color: #EDEAE5;
}
@media screen and (min-width: 768px) {
  .p-mylist-item__checkbox {
    justify-content: center;
    flex: 0 0 44px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-mylist-item__checkbox {
    padding: 2.1333333333vw 3.2vw;
  }
}
.p-mylist-item__checkbox input {
  transform: scale(1.5);
}

.p-mylist-item__box {
  -moz-column-gap: 24px;
       column-gap: 24px;
  background: #fff;
  padding: 32px;
}
@media screen and (min-width: 768px) {
  .p-mylist-item__box {
    flex: 0 1 100%;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .p-mylist-item__box {
    padding: 4.2666666667vw 3.2vw;
  }
}

@media screen and (min-width: 768px) {
  .p-mylist-item__image {
    flex: 0 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-mylist-item__image {
    height: 25.0666666667vw;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-mylist-item__image img {
    width: auto;
    height: 100%;
  }
}

.p-mylist-item__message {
  flex: 0 1 100%;
}
@media screen and (max-width: 767px) {
  .p-mylist-item__message {
    margin-top: 2.1333333333vw;
  }
}
.p-mylist-item__message dl {
  margin-top: 8px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-mylist-item__message dl {
    margin-top: 2.1333333333vw;
    font-size: 2.9333333333vw;
  }
}
.p-mylist-item__message dl dt {
  font-weight: 400;
}
.p-mylist-item__message dl + dl {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-mylist-item__message dl + dl {
    margin-top: 1.0666666667vw;
  }
}

.p-mylist-item__title {
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-mylist-item__title {
    padding-left: 0;
    font-size: 3.7333333333vw;
  }
  .p-mylist-item__title::before {
    display: none;
  }
}

.p-mylist-item__buttons {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-mylist-item__buttons {
    gap: 8px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-mylist-item__buttons {
    flex-direction: column;
    margin-top: 2.1333333333vw;
    gap: 2.1333333333vw;
  }
}

.p-mylist-item__button {
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .p-mylist-item__button {
    margin-top: 0;
  }
}
.p-mylist-item__button button, .p-mylist-item__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  -moz-column-gap: 8px;
       column-gap: 8px;
  color: #fff;
  padding: 8px;
  font-size: 14px;
}
.p-mylist-item__button.p-mylist-item__button--download {
  background: #0089A8;
}
.p-mylist-item__button.p-mylist-item__button--delete {
  background: #BE0000;
  z-index: 0;
}

.p-mylist-item__icon {
  flex: 0 0 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .p-mylist-item__icon {
    flex: 0 0 6.4vw;
    height: 6.4vw;
  }
}

.p-mylist-buttons {
  display: flex;
  border-bottom: 1px solid #D5D5D6;
}
@media screen and (min-width: 768px) {
  .p-mylist-buttons {
    -moz-column-gap: 16px;
         column-gap: 16px;
    padding-bottom: 56px;
  }
}
@media screen and (max-width: 767px) {
  .p-mylist-buttons {
    flex-direction: column;
    gap: 4.2666666667vw;
    padding-bottom: 8.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mylist-buttons button {
    width: 100%;
  }
}

.p-mylist-wrap {
  position: relative;
}
.p-mylist-wrap:has(.p-mylist-modal--document.active) {
  min-height: 270px;
}
@media screen and (max-width: 767px) {
  .p-mylist-wrap:has(.p-mylist-modal--document.active) {
    min-height: 93.3333333333vw;
  }
}

/*# modal
/*===========================================*/
.p-mylist-modal {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(44, 45, 49, 0.8);
  z-index: 10;
}
.p-mylist-modal.active {
  display: block;
}
.p-mylist-modal .p-mylist-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 60%;
  height: 80%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-mylist-modal .p-mylist-modal__content {
    max-height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-mylist-modal .p-mylist-modal__content {
    width: 90%;
    height: 90%;
    padding: 0 20px;
  }
}

/*# 印刷画面
/*===========================================*/
.p-mylist-print {
  position: relative;
  padding: 40px 0 200px;
  min-width: 1240px;
}
.p-mylist-print .l-container {
  height: auto;
}

.p-mylist-print__head {
  display: flex;
  justify-content: space-between;
}

.p-mylist-print__logo {
  flex: 0 0 228px;
}

.p-mylist-print__title {
  flex: 0 1 100%;
  text-align: center;
  padding-right: 150px;
}

.p-mylist-print__number {
  display: flex;
  align-items: center;
  gap: 4px;
}

.p-mylist-print__footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 50px;
  padding: 16px 24px;
  box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.1);
}

.p-mylist-print__footer_number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-mylist-print__footer_buttons {
  display: flex;
  gap: 8px;
}

.p-mylist-print__footer_button {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
}
.p-mylist-print__footer_button.p-mylist-print__footer_button--print {
  background: #2C2D31;
  color: #fff;
}
.p-mylist-print__footer_button.p-mylist-print__footer_button--close {
  background: #F7F5F1;
}

.p-mylist-print__footer_icon {
  flex: 0 0 24px;
  height: 24px;
}

.p-mylist-print__button {
  position: relative;
}
.p-mylist-print__button::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-top: 1px solid #0089A8;
  border-right: 1px solid #0089A8;
}
.p-mylist-print__button:hover:not(:disabled) {
  background-color: #F7F5F1;
}
.p-mylist-print__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.p-mylist-print__button.p-mylist-print__button--prev::before {
  left: -20px;
  transform: translateY(-50%) rotate(-135deg);
}
.p-mylist-print__button.p-mylist-print__button--next::before {
  right: -20px;
  transform: translateY(-50%) rotate(45deg);
}

@media print {
  /* 印刷時に適用するスタイル */
  .p-mylist-table table th {
    background: #F7F5F1;
  }
  .p-mylist-print__footer, .p-mylist-table__link {
    display: none;
  }
}
.p-mylist-download--err {
  border: 1px solid #BE0000;
  display: inline-block;
  color: #BE0000;
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  .p-mylist-download--err {
    padding: 1.3333333333vw 2.6666666667vw;
  }
}
/*# sourceMappingURL=maps/mylist.css.map */