@charset "utf-8";
/* CSS Document */
.bold {
  font-weight: bold;
}
.general-link > .applicationNavi {
  margin: 1rem 0;
  padding: 0;
}
.contents-gray.gray_2{
padding: 1rem;
}
.tertiary-wrapper {
  margin: 1rem 0;
}
.general-link {
  padding: 1rem;
}
.button {
  margin: 0 auto 1em;
  display: flex;
}
.button .btn {
  -moz-box-align: center;
  -moz-box-pack: center;
  align-items: center;
  background-position: 97% 50%;
  display: flex;
  min-height: 4.15em;
  justify-content: center;
  line-height: 160%;
  margin: 0 auto;
  padding: .8em 0;
  text-align: center;
  width: 67.4%;
}
.question_area {
  text-align: left;
  margin-left: 3rem;
}
.bottom_text {
  margin-top: 3rem;
}
.general-p.after {
  margin-top: 3rem;
}
@media screen and (max-width:659px) {
.tertiary-wrapper {
  padding: 0;
}
.button .btn {
  width: 100%;
  line-height: 100%;
  font-size: 1.2rem;
}
.question_area {
  margin-left: 0;
  margin-top: 1rem;
}
.li-detail > ul .list_title {
  margin-top: 1rem;
}
.contents-gray{
  padding: 1rem;
}
.contents-gray.gray_2{
  padding: 1rem;
}
}
/*アコーディオン*/
.accordion_area {
  margin-top: 3rem;
}
.accordion dt {
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	padding: 1rem;
	cursor: pointer;
	position: relative;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.accordion + .accordion {
  margin-top: 2.5rem;
}
.accordion dt::before {
  content: "";
  position: absolute;
  top: 35%;
  right: 3rem;
  width: 8px;
  height: 8px;
  border-top: 2px solid #eb2f4c;
  border-right: 2px solid #eb2f4c;
  transform: rotate(135deg);
  transition: .2s;
}
.accordion dt.active::before {
  transform: rotate(-45deg);
  transition: .2s;
  top: 40%;
}
.accordion dd {
	display: none;
	border: 2px solid #f2f2f2;
	padding: 1.5rem;
}

@media screen and (max-width:659px) {
.accordion + .accordion {
  margin-top: 1.5rem;
}
.accordion dt {
  font-size: 1.4rem;
  padding: .8rem;
}
.accordion dt::before {
  right: 2rem;
  width: 10px;
  height: 10px;
  border-top: 2px solid #eb2f4c;
  border-right: 2px solid #eb2f4c;
  top: 35%;
}
.accordion dt.active::before {
  top: 50%;
}
.accordion dd {
  padding: 1rem;
}
}
/*END===アコーディオン*/