@media screen and (max-width: 440px) {
  .pconly {
    display: none !important;
  }
}

.sponly {
  display: none !important;
}
@media screen and (max-width: 440px) {
  .sponly {
    display: block !important;
  }
  br.sponly,
  img.sponly,
  span.sponly {
    display: inline !important;
  }
  tr.sponly {
    display: table-row !important;
  }
  th.sponly,
  td.sponly {
    display: table-cell !important;
  }
}

.tab_below {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tab_below {
    display: block;
  }
}

.troubleshoot {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8666666667);
  z-index: 100;
  overflow-x: scroll;
}
.troubleshoot .content {
  position: relative;
  width: 80%;
  max-width: 1400px;
  height: 80%;
  background: #fff;
  border-radius: 40px;
  overflow-x: scroll;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content {
    width: 90vw;
  }
}
.troubleshoot .content-inner {
  padding: 64px;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-inner {
    padding: 12vw 5vw;
  }
}
.troubleshoot .content-head {
  font-size: 40px;
  text-align: center;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-head {
    font-size: 25px;
  }
}
.troubleshoot .content-list {
  margin-top: 32px;
  padding: 32px;
  font-size: 15px;
  font-feature-settings: "palt";
  background: #EBECEE;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-list {
    padding: 6vw;
    font-size: 13px;
  }
}
.troubleshoot .content-list li:not(:first-of-type) {
  margin-top: 6px;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-list li:not(:first-of-type) {
    margin-top: 12px;
  }
}
.troubleshoot .content-list li a {
  padding: 5px 16px;
  color: #fff;
  background: #009fe8;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 40px;
  text-decoration: none;
  line-height: 2;
  transition: all 0.3s;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-list li a {
    padding: 0;
    color: #009fe8;
    background: none;
    line-height: 1.6;
    text-decoration: underline;
  }
}
.troubleshoot .content-list li a:hover {
  opacity: 0.6;
}
.troubleshoot .content-item {
  margin-top: 80px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-item {
    margin-top: 40px;
  }
}
.troubleshoot .content-item ._head {
  padding: 24px;
  color: #fff;
  background: #333;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-item ._head {
    padding: 24px 16px;
  }
}
.troubleshoot .content-item ._head h3 {
  font-size: 22px;
  font-feature-settings: "palt";
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-item ._head h3 {
    font-size: 17px;
  }
}
.troubleshoot .content-item ._body {
  padding: 48px 32px;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-item ._body {
    padding: 6vw 4vw;
  }
  .troubleshoot .content-item ._body strong {
    font-size: 14px;
  }
  .troubleshoot .content-item ._body p {
    font-size: 14px;
  }
}
.troubleshoot .content-item ._body p:not(:first-child) {
  margin-top: 24px;
}
.troubleshoot .content-item ._body p span {
  color: #f00;
}
.troubleshoot .content-item ._body p + ul {
  margin-top: 1em;
}
.troubleshoot .content-item ._body figure {
  margin: 24px auto 0;
  padding: 5%;
  border: 1px solid #eee;
}
.troubleshoot .content-item ._body ._images {
  display: flex;
  gap: 32px;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-item ._body ._images {
    gap: 8px;
    width: 100%;
  }
}
.troubleshoot .content-item ._body ._column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-item ._body ._column {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.troubleshoot .content-item ._body ._column li h4 {
  text-align: center;
}
.troubleshoot .content-item ._body ._column li figure {
  width: 70%;
  margin: 16px auto 0;
}
.troubleshoot .content-item ._body ._link {
  margin-top: 24px;
  text-align: right;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-item ._body ._link button {
    width: 100%;
    font-size: 14px;
  }
}
.troubleshoot .content-item ._body ._link a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 16px;
  color: #009fe8;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.troubleshoot .content-item ._body ._link a:hover {
  text-decoration: underline;
}
.troubleshoot .content-item ._body ._sub {
  margin: 24px 0 8px;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-item ._body ._sub {
    font-size: 14px;
  }
  .troubleshoot .content-item ._body ._list {
    font-size: 14px;
  }
}
.troubleshoot .content-item ._body ._list li {
  font-feature-settings: "palt";
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0.05em;
}
.troubleshoot .content-item ._body ._list li:not(:first-of-type) {
  margin-top: 0.5em;
}
.troubleshoot .content-item ._body ._note {
  margin-top: 24px;
}
.troubleshoot .content-item ._body ._note strong {
  font-weight: 700;
}
.troubleshoot .content-item ._body ._note p {
  margin-top: 8px;
  color: #f00;
}
.troubleshoot .content #item__05 ._body {
  padding: 25px 32px;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content #item__05 ._body {
    padding: 4vw 4vw;
  }
}
.troubleshoot .content #item__05 .bold-par {
  font-weight: bold;
  font-size: 1.125rem;
}
@media screen and (max-width: 440px) {
  .troubleshoot .content #item__05 .bold-par {
    font-size: 14px;
  }
}
.troubleshoot .content-attention {
  margin-top: 40px;
  padding: 32px;
  background: rgba(255, 0, 0, 0.0666666667);
}
@media screen and (max-width: 440px) {
  .troubleshoot .content-attention {
    padding: 5vw;
    font-size: 14px;
  }
}
.troubleshoot .content-attention ._button {
  margin-top: 24px;
  text-align: center;
}
.troubleshoot .content-attention ._button a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 16px;
  color: #009fe8;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.troubleshoot .content-attention ._button a:hover {
  text-decoration: underline;
}
.troubleshoot ._close {
  position: absolute;
  bottom: 5%;
  left: calc(50% - 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 30px;
  background: #eee;
  border-radius: 15px;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s;
}
.troubleshoot ._close:hover {
  color: #fff;
  background: #666;
}
@media screen and (max-width: 440px) {
  .troubleshoot ._close {
    bottom: 4%;
  }
}
.troubleshoot#clt {
  position: static;
  display: block;
  background: #fff;
  overflow: inherit;
}
.troubleshoot#clt .content {
  height: auto;
  margin: 0 auto;
  overflow: inherit;
}
.troubleshoot#clt .content-attention {
  display: none;
}
.troubleshoot#clt ._close {
  display: none;
}
.troubleshoot#donki {
  position: static;
  display: block;
  height: auto;
  background: #fff;
  overflow: inherit;
}
.troubleshoot#donki .content {
  height: auto;
  margin: 0 auto;
  overflow: inherit;
}
.troubleshoot#donki .content-head {
  display: none;
}
@media screen and (max-width: 768px) {
  .troubleshoot#donki .content-list {
    margin-top: 0;
  }
}
.troubleshoot#donki .content-attention {
  display: none;
}
.troubleshoot#donki ._close {
  display: none;
}
.troubleshoot#donki img {
  width: 100%;
}