@charset "UTF-8";

/* 検索結果コンテンツ
---------------------------------*/
.main-column{
  margin-top: -15rem;
}
.single-article{
  background: #fff;
  border-radius: .8rem;
  padding:4rem;
}
.single-article_header .entry-title {
  border-bottom:.2rem solid #ccc;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.44;
  padding-bottom:2.4rem;
  margin-bottom: 3.6rem;
}
.entry-meta {
  margin-bottom: 1rem;
}
.entry-category{
  font-size:1.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}
.entry-category li a{
  border-radius: 6rem;
  display: inline-flex;
  letter-spacing: 0;
  padding: .5rem .8rem .4rem;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}
.entry-category li a:hover{
  background-color: var(--color-blue);
  border:1px solid var(--color-blue);
  color:#fff;
}

@media only screen and ( max-width:960px) {
  .main-column{
    margin-top: -11rem;
  }
  .single-article{
    padding:2rem;
  }
  .single-article_header .entry-title {
    font-size: 2.4rem;
    padding-bottom:1.6rem;
    margin-bottom: 2.4rem;
  }
}

.single-article_body{
  line-height:1.8;
}
.single-article_body > * + *,
.trouble-steps_content > * + * {
  margin-top: 2.4rem;
}
.single-article_body a{
  color: var(--color-blue);
  text-decoration: underline;
}
.single-article_body a:focus,
.single-article_body a:active,
.single-article_body a:hover {
  color: var(--color-blue);
  text-decoration: none;
}
.single-article_body strong{
  font-weight: bold;
}
.single-article_body em{
  font-style: italic;
}
@media only screen and ( max-width:960px) {
  .single-article_body > * + *,
.trouble-steps_content > * + * {
    margin-top: 1.6rem;
  }
}


.single-article_body h2{
  padding-top: 2.4rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2.4rem;
  position: relative;
  margin-top: 6.4rem;
}
.single-article_body h2::before,
.single-article_body h2::after{
  position: absolute;
  top: 0;
  content: "";
  display: block;
  height: .2rem;
}
.single-article_body h2::before {
  left: 0;
  width: 1.8rem;
  background: var(--color-blue);
}
.single-article_body h2::after{
  width: calc(100% - 2.2rem);
  right: 0;
  background: #ccc;
}
.single-article_body h3{
  border-radius: var(--border-radius-8);
  background-color: #EFEFEF;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.44;
  padding: 1.4rem 2rem;
  margin-top: 4rem;
  margin-bottom: 2.4rem;
}
.single-article_body h4 {
  font-size: 2rem;
  line-height: 1.44;
  font-weight: 700;
  padding-left: 1.6rem;
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
  position: relative;
}
.single-article_body h4::before {
  content: "";
  display: block;
  position: absolute;
  border-left: 4px solid var(--color-blue);
  left: 0;
  height: 100%;
}
.single-article_body h5{
  color:var(--color-blue);
  font-weight: 700;
  line-height: 1.44;
  margin-top: 2.4rem;
  margin-bottom: .8rem;
}
.single-article_body h2 + *,
.single-article_body h3 + *,
.single-article_body h4 + *,
.single-article_body h5 + * {
  margin-top: 0;
}
@media only screen and ( max-width:960px) {
  .single-article_body h2 {
    font-size: 2.2rem;
    margin-top: 4.8rem;
    margin-bottom: 1.6rem;
  }
  .single-article_body h3 {
    font-size: 2rem;
    margin-top: 4rem;
    margin-bottom: 1.6rem;
  }
  .single-article_body h4 {
    font-size: 1.8rem;
    margin-top: 3.2rem;
  }
}


/* Ul list */
.single-article_body ul > li  {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.44;
}
.single-article_body ul > li::before {
  content: '';
  display: block;
  position: absolute;
  top: 1rem;
  left: 0;
  width: .6rem;
  height: .6rem;
  border-radius: 50%;
  background: var(--color-blue);
}
/* Ol list */
.single-article_body ol {
  counter-reset: number;
}
.single-article_body ol > li {
  position: relative;
  padding-left: 2.4rem;
  line-height: 1.44;
}
.single-article_body li:nth-of-type(n+2) {
  margin-top: .6rem;
}
.single-article_body ol > li::before {
  color:var(--color-blue);
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  display: inline-block;
  content: counter(number) '.';
  font-weight: 700;
  font-family: var(--font-family-en);
}
.single-article_body dt{
  font-weight: 700;
}



/* Image */
.single-article_body img{
  max-width:100%;
  height:auto;
  border-radius:.8rem;
}

/* Table */
.single-article_body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3.2rem;
}
.single-article_body th,
.single-article_body td {
  border: 1px solid #ddd;
  padding: 1.2rem 1.6rem;
}

/* Iframe */
.single-article_body iframe{
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

/* Figure */
.single-article_body figure {
  margin: 4rem 0;
}

/* Youtube */
.trouble-video .video-container{
  position: relative;
  display: block;
  max-width: 32rem;
  cursor: pointer;
  box-shadow: 0 .4rem 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: .8rem;
  margin-bottom:.8rem;
}
.video-container img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.video-container:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}
.video-container .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 32px;
  background-color: #ff0000;
  border: none;
  border-radius: 6px;
  pointer-events: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.video-container .play-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
}
.video-container:hover .play-btn {
  background-color: #cc0000;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Note */
.trouble-note{
  background-color: #FFFDE4;
  border-radius: .8rem;
  padding: 2.4rem;
}
.trouble-note .title{
  color:#BC0909;
  font-size:2rem;
  font-weight: 700;
  position: relative;
  padding-left: 2.8rem;
}
.trouble-note .title::before {
  background-image: url(../img/icon/note.svg);
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
}
@media only screen and ( max-width:960px) {
  .trouble-note{
    padding: 2rem;
  }
  .trouble-note .title{
    color:#BC0909;
    font-size:1.8rem;
    padding-left: 2.8rem;
  }
}



.support-box {
  margin-top:4.8rem;
  position: sticky;
  top: 12rem;
  border-radius: var(--border-radius-8);
  background-color: var(--color-dark-blue);
  color:#fff;
  text-align: center;
  padding-bottom:2.4rem;
}
.support-box_header{
  display: flex;
  flex-direction: column;
  gap:.8rem;
  padding:1.6rem 2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.support-box_header .label {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  opacity: .8;
}
.support-box_header .title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.support-box_tel {
  padding:0 2rem;
  margin:2.4rem 0 1.6rem;
}
.support-box_tel-label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.support-box_tel-number {
  display: block;
  margin-top: .4rem;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-family-en);
}
.support-box_tel-number span{
  position: relative;
  padding-left:2.8rem;
}
.support-box_tel-number span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 2.2rem;
  height: 2.2rem;
  -webkit-mask-image: url(../img/icon/tel.svg);
  mask-image: url(../img/icon/tel.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  transform: translateY(-50%);
  background-color: #fff;
}
.support-box_tel-time {
  margin-top: .4rem;
  font-size: 1.2rem;
  line-height: 1.4;
}
.support-box_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 9rem;
  margin: 0 2rem 0;
  padding: 1.2rem 2rem;
  border-radius: .8rem;
  border: .2rem solid #fff;
  background-color: #fff;
  color: var(--color-dark-blue);
  position: relative;
}
.support-box_btn::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  transform: translateY(-50%);
  transition: transform .2s ease, background-color .3s ease;
  -webkit-mask-image: url(../img/icon/list-arrow.svg);
  mask-image: url(../img/icon/list-arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-dark-blue);
}
.support-box_btn .txt{
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  padding-left:2.8rem;
}
.support-box_btn .txt::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  -webkit-mask-image: url(../img/icon/contact.svg);
  mask-image: url(../img/icon/contact.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: translateY(-50%);
  background-color: var(--color-dark-blue);
}
@media (hover: hover) {
  .support-box_btn:hover {
    background:none;
    color:#fff;
  }
  .support-box_btn:hover::after {
    transform: translateY(-50%) translateX(4px);
    background-color: #fff;
  }
  .support-box_btn:hover .txt::before{
    background-color: #fff;
  }
}
@media (hover: none) {
  .support-box_btn:active{
    transform: scale(.95);
    transition: transform 0.1s ease;
    color: var(--color-dark-blue);
  }
}
@media only screen and ( max-width:960px) {
  .support-box {
    margin-top:0;
    padding-bottom:2.4rem;
  }
}
