@charset 'UTF-8';
.hgroup.is-trouble {
/*  background-color: #eff6ce;*/
}
.hgroup__title {
  margin: 0 0 40px;
  padding: 0 0 40px 0;
  border-bottom: 1px solid #000;
}
.hgroup__lead {
  max-width: fit-content;
  margin: 0 auto 40px;
  font-size: 0.9375rem;
  text-align: left;
  line-height: 1.8;
}
.trouble-body {
  margin: 0;
  padding: 0;
}
.trouble-body-exlpain {
  max-width: 1040px;
  width: calc(100% - 80px);
  margin: 0 auto 40px;
}
.trouble-body__inner {
  padding: 30px 0 0 0;
  border-top: 1px solid black;
}
.trouble-body__title {
  margin: 0 0 30px 0;
  padding: 0;
  font-size: 1.3125rem;
  line-height: 1.7;
}
.trouble-body__marker {
  display: inline;
  padding: 3px 5px;
  background: linear-gradient(transparent 0%, #dee9af 0%);
}
.trouble-body__text {
  margin: 0 0 20px 0;
  padding: 0;
  color: #333;
  font-size: 0.9375rem;
}
.trouble-body__text:last-child {
  margin: 0;
}
@media (max-width: 768px) {
  .trouble-body-exlpain {
    width: auto;
  }
}
/*タイムライン部分*/
.trouble-timeline {
  position: relative;
  margin: 3em auto;
  overflow: auto;
}
.trouble-timeline:before {
  position: absolute;
  left: 49%;
  width: 3px;
  height: 100%;
  content: '';
  background: #c0c998;
}
.trouble-timeline__attention {
  position: relative;
  clear: both;
  max-width:60%;
  margin: 0 auto 3em;
  padding: 1.5em;
  text-align: left;
  border:solid 3px #c0c998;
  background: white;
  border-radius: 8px;
  font-size: 1em;
  line-height: 1.8;
}
.trouble-timeline__attention span {
  font-size: 1.1em;
  font-weight:bold;
  display: inline;
  padding: 0px 3px;
  background: linear-gradient(transparent 50%, #fff380 50%);
}
.trouble-timeline__box {
  max-width: calc(100% - 4em);
  margin: 0;
  padding: 0 0 0 2em;
  list-style: none;
}
.trouble-timeline__item {
  position: relative;
  margin-bottom: 3em;
  padding: 2em;
  background: #f8f2e1;
  width: 45%;
}
.trouble-timeline__item:before {
  position: absolute;
  top: 12px;
  left: -14px;
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 15px 10px 0;
  border-color: transparent #f8f2e1 transparent transparent;
  z-index: 1;
}
.trouble-timeline__item:after {
  position: absolute;
  top: 12px;
  left: -16px;
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  z-index: 0;
}
.trouble-timeline__item:nth-child(even) {
  float: right;
  margin-top: 2em;
  border-radius: 8px;
}
.trouble-timeline__item:nth-child(odd) {
  float: left;
  border-radius: 8px;
}
.trouble-timeline__item:nth-child(odd):before {
  right: -14px;
  left: auto;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #f8f2e1;
}
.trouble-timeline__item:nth-child(odd):after {
  position: absolute;
  right: -16px;
  left: auto;
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #f8f2e1;
  z-index: 0;
}
.trouble-timeline__item:nth-of-type(2n+1) {
  clear: both;
}
.trouble-timeline__title__box {
  position: relative;
  margin: 0 0 1.5em 0;
}
.trouble-timeline__title__box::before {
  position: absolute;
  z-index: 1;
  content: attr(num);
  display: grid;
  place-items: center;
  top: -17px;
  width: 50px;
  height: 50px;
  background: transparent url('../images/trouble/common/icon-number.svg') no-repeat;
  background-size: contain;
  color: black;
  font-size: 2rem;  font-weight: bold;
}
.trouble-timeline__title {
  font-size: 1.125rem;;
  font-weight: bold;
  margin: 0 0 0 50px;
  padding: 0 0 0 10px;
}
.trouble-timeline__text {
  margin: 10px 0 0 0;
  font-size: 0.9375rem;
  line-height: 1.8;
}
.trouble-timeline__text :last-child {
  margin: 0;
}
@media (max-width: 960px) {
  .trouble-timeline__title__box::before {
    position: relative;
    top: 0px;
    left: 0px;
  }
  .trouble-timeline__title {
    margin: 1rem 0 0 0;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .trouble-timeline:before {
    left: 0;
  }
  .trouble-timeline__attention {
    max-width: 100%;
    margin: 0 auto 3rem 1.5rem;
    padding: 1em;
  }
  .trouble-timeline__box {
    max-width: 100%;
    z-index: 1;
    padding: 0 0 0 1.5rem;
  }
  .trouble-timeline__item {
    width: 100%;
    padding: 1rem;
  }
  .trouble-timeline__item:nth-child(even),
  .trouble-timeline__item:nth-child(odd) {
    float: none;
  }
  .trouble-timeline__item:nth-child(odd):before {
    right: auto;
    left: -14px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #f8f2e1 transparent transparent;
  }
  .trouble-timeline__item:nth-child(odd)::after {
    right: auto;
    left: -16px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #f8f2e1 transparent transparent;
  }
  .trouble-timeline__title__box {
  margin: 0 0 1rem 0;
}
}