@charset "UTF-8";
/* CSS Document */

.tit_guide01 {
  text-align: center;
  font-size: 2.2rem;
  color: #f47aa3;
  margin: 3em 0 1.5em;
  position: relative;
}

.tit_guide01::before {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url("../img/ico_index01.png");
  width: 54px;
  height: 51px;
  display: inline-block;
  padding-top: 20px;
}

.attention {
  padding: 20px 0;
  max-width: 800px;
  margin: 0 auto 50px!important;
  text-align: center;
}

.attention::before {
  content: "";
  display: inline-block;
  background: url("../img/img_index02.png") no-repeat center;
  background-size: contain;
  width: 100%;
  height: 60px;
}

.attention::after {
  content: "";
  display: inline-block;
  background: url("../img/img_index03.png") no-repeat center;
  background-size: contain;
  width: 100%;
  height: 60px;
}

.attention .pure-g {
  margin: 0 50px;
}

@media screen and (max-width: 767px) {
  .attention .pure-g {
    margin: 0 10px;
  }
}

.accordion-container {
  position: relative;
  width: 100%;
  border-top: none;
  outline: 0;
  cursor: pointer;
}

.accordion-container .article-title {
  display: flex;
  align-items: baseline;
  position: relative;
  margin: 0;
  padding: 1em 2.5em 1em 0em;
  font-weight: normal;
  cursor: pointer;
  border-top: 1px dotted #666;
}

.accordion-container .article-title:hover i:before,
.accordion-container .article-title:hover i:active,
.accordion-container .content-entry.open i {
  color: white;
}

.article-title::before {
  content: "Q";
  font-size: 2.0rem;
  background: #0e536d;
  color: #FFF;
  font-weight: bold;
  padding: 5px 8px;
  margin-right: 10px;
  line-height: 1.2;
  border-radius: 5px;
}

.article-title:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 38%;
  transition: all 0.3s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #f47aa3;
  border-right: solid 2px #f47aa3;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.article-title.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.accordion-content {
  display: none;
  padding: 0.5em 0 0.5em;
  background: #ffe2e2;
  padding: 1em;
  margin-left: 1em;
  margin-bottom: 1em;
  border-radius: 15px;
}

.accordion-content > div {
  display: flex;
  align-items: baseline;
}
.accordion-content > div::before {
  content: "A";
  font-size: 2.0rem;
  background: #f47aa3;
  color: #FFF;
  font-weight: bold;
  padding: 3px 8px;
  margin-right: 10px;
  line-height: 1.2;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .article-title::before {
    font-size: 1.6rem;
  }
  .accordion-content > div::before {
    font-size: 1.6rem;
  }
  .accordion-content {
    margin-left: 0;
  }
}

@media print {
	.accordion-content {
      display: block;
    }
}

.flowBox {
  border: 1px solid #CCC;
  padding: 1.5em 2em;
  border-radius: 15px;
  text-align: left;
}

.flowBox h2 {
  font-size: 2.0rem;
}

.triangle {
  vertical-align: middle;
  color: #f47aa3;
  line-height: 1;
  width: 2em;
  height: 2em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin: 1em auto;
}