@charset "utf-8";
/* swplog.css
++++++++++++++++++++++++++++++++++++++++
* NOTE
++++++++++++++++++++++++++++++++++++++++
- Charset: utf-8
- Return code: LF
++++++++++++++++++++++++++++++++++++++++ */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 * common
 * ※ リリースして問題なければ後日 modules に移動 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.m-sort_basic {
  display: flex;
  justify-content: center;
  gap: 1px;
  overflow: hidden;
  width: 60px;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid #dde0e5;
}
.m-sort_basic > ._btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  position: relative;
  display: block;
  height: auto;
  padding: 0;
  border: 0;
  width: 50%;
  height: 30px;
  background: #fff;
  box-shadow: 0 0 0 1px #dde0e5;

  overflow: hidden;
  white-space: nowrap;
  text-indent: 200%;
}
.m-sort_basic > ._btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 6px;
  margin-top: -3px;
  margin-left: -5px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}
.m-sort_basic > ._btn:nth-of-type(1):before {
  transform: rotate(180deg);
}

.m-sort_basic > .is-current {
  background-color: rgba(162, 212, 228, 0.6);
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* 証拠金1万円でもらえるスワップは？
++++++++++++++++++++++++++++++++++++++++ */

.swplog-appeal {
  display: grid;
  grid-template-rows: min-content 0fr;
  grid-template-columns: 1fr;
  background-color: #f7f7f7;
  padding: 0;
  transition: grid-template-rows 0.3s linear;
}
.swplog-appeal[data-togglebox].is-open {
  grid-template-rows: min-content 1fr;
}

.swplog-appeal > ._ttl {
  position: relative;
  margin: 0;
  padding: 0 48px;
  background-color: #024f95;
  color: #fff;
  font-weight: normal;
  text-align: center;
  line-height: 1.25;
}
.swplog-appeal[data-togglebox] > ._ttl {
  cursor: pointer;
}
.swplog-appeal[data-togglebox] > ._ttl::after {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  background: no-repeat center center/ 24px auto;
  background-image: url(/assets/images/icon/link/icon-link-acc_plus.svg);
  content: "";
}
.swplog-appeal[data-togglebox].is-open > ._ttl::after {
  background-image: url(/assets/images/icon/link/icon-link-acc_minus.svg);
}

.swplog-appeal > ._body {
  overflow: hidden;
  max-width: 100vw;
  transition: padding 0.3s linear;
}
.swplog-appeal:not(.is-open) > ._body {
  padding-top: 0;
  padding-bottom: 0;
}
.swplog-appeal > ._body ._info {
  width: fit-content;
  margin: 0 auto 16px;
}
.swplog-appeal > ._body ._note {
  margin-bottom: 0;
  color: #848484;
  font-size: 1.4rem;
}

/*  */
.swplog-appeal > ._body > figure {
  margin: 0;
}
.swplog-appeal table {
  table-layout: fixed !important;
  background-color: #fff;
}
.swplog-appeal thead {
  text-align: center;
  line-height: 1.25;
}
.swplog-appeal thead th {
  position: relative;
  width: 25%;
  padding: 12px 4px 48px;
  word-break: keep-all;
  letter-spacing: -0.04em;
}
.swplog-appeal thead th > ._sort {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
}

.swplog-appeal tbody {
  text-align: right;
}
.swplog-appeal tbody th {
  text-align: center;
  font-weight: normal;
}

@media (hover: hover) {
  .swplog-appeal {
    margin-bottom: 72px;
  }
  .swplog-appeal > ._ttl {
    opacity: 1;
    transition: opacity 0.2s ease;
  }
  .swplog-appeal > ._ttl:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767.98px) {
  .swplog-appeal {
    margin-bottom: 96px;
  }
  .swplog-appeal > ._ttl {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 2rem;
  }
  .swplog-appeal > ._ttl::after {
    right: 16px;
  }
  .swplog-appeal > ._body {
    padding: 16px;
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  .swplog-appeal {
    overflow: hidden;
    border-radius: 8px;
  }
  .swplog-appeal > ._ttl {
    padding-top: 17px;
    padding-bottom: 17px;
    font-size: 2.4rem;
  }
  .swplog-appeal > ._ttl::after {
    right: 24px;
  }
  .swplog-appeal > ._body {
    padding: 16px 24px 24px;
  }
}
/* ++++++++++++++++ */
/*

@media (max-width: 767.98px) {
}
@media (min-width: 768px) {
}


