/* =======================================================
* sub_bg
* ======================================================= */
.sub_bg {
  background: url(../images/bg-info.jpg) no-repeat center top/cover;
}


/* =======================================================
* access
* ======================================================= */
#access dl dt,
#access dl dd {
  font-size: 1.3rem;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

#access dl dt {
  width: 20%;
  border-bottom: 1px solid #bebebe;
  padding-left: 10px;
}

#access dl dd {
  width: 80%;
  border-bottom: 1px solid var(--color-gray);
  padding-left: 25px;
}

#access .pikawan_line {
  margin: 0 auto 60px;
}

#access .pikawan_line a {
  background: #06C755;
  color: #fff;
  padding: 15px 0;
  display: block;
  text-align: center;
  border-radius: 5px;
  width: 100%;
}

#access .pikawan_line a span {
  display: block;
  font-size: 1.1rem;
}

#access .pikawan_line a img {
  display: inline;
  width: 30px;
  vertical-align: middle;
  padding-right: 5px;
}

/* access_map */
.access_map {
  margin-top: 100px;
}

.access_map iframe {
  width: 100%;
  height: 400px;
  filter: grayscale(100%);
}

@media screen and (max-width:768px) {
  #access dl dt {
    padding-left: 0;
    text-align: center;
  }

  #access dl dd {
    padding-left: 15px;
  }
}


/* =======================================================
* question
* ======================================================= */
#question ul {
  max-width: 750px;
  margin: 50px auto 0;
}

#question .accordion {
  margin: 0 auto 50px;
  position: relative;
}

#question .accordion::before {
  position: absolute;
  content: "Q";
  top: 3px;
  left: 3px;
  background: #7ebabd;
  border-radius: 50%;
  padding: 0 7px;
  color: #fff;
  font-size: 1.2rem;
}

#question .accordion p {
  position: relative;
  cursor: pointer;
  padding: 0 0 5px 35px;
  border-bottom: 1px dotted var(--color-green);
}


/* プラスの横線 */
#question .accordion p::before {
  content: "";
  position: absolute;
  background: var(--color-dark);
  top: 17px;
  right: 30px;
  width: 13px;
  height: 1px;
  transform: translateY(-50%);
}

/* プラスの縦線 */
#question .accordion p:after {
  content: "";
  position: absolute;
  background: var(--color-dark);
  top: 17px;
  right: 36px;
  width: 1px;
  height: 13px;
  transform: translateY(-50%);
  transition: .3s;
}

#question .accordion p.open:after {
  top: 25%;
  opacity: 0;
  transform: rotate(90deg);
}

#question .accordion div {
  display: none;
  font-size: 1.3rem;
  padding: 15px 30px;
  background: #f7f7f7;
  border-radius: 5px;
}

#question .accordion div a {
  color: var(--color-green);
  border-bottom: 1px solid;
  font-weight: bold;
  line-height: 3;
}

@media screen and (max-width:768px) {
  #question .accordion {
    margin: 0 auto 40px;
  }

  #question .accordion p {
    padding: 0 30px 5px 35px
  }

  #question .accordion p::before {
    right: 4px;
  }

  #question .accordion p:after {
    right: 10px;
  }
}