@charset "UTF-8";
/*breakpoint*/
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blur {
  0% {
    -ms-filter: blur(12px);
    filter: blur(12px);
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
.navilist {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 10rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .navilist {
    margin: 0 auto 7rem;
  }
}
.navilist .faq__text {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .navilist .faq__text {
    font-size: 1.4rem;
  }
}
.navilist .faq__navi {
  display: flex;
  background: #008AE3;
  list-style: none;
  padding: 3rem 8rem;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .navilist .faq__navi {
    display: block;
    padding: 0;
  }
}
.navilist .faq__navi li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .navilist .faq__navi li {
    font-size: 1.4rem;
    border-bottom: 2px solid #fff;
    display: block;
    text-align: left;
    padding: 2rem 3rem;
  }
}
.navilist .faq__navi li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 2rem;
  background: #fff;
  top: 6px;
  left: -40px;
}
@media screen and (max-width: 767px) {
  .navilist .faq__navi li::before {
    content: none;
  }
}
.navilist .faq__navi li:first-child::before {
  content: none;
}
.navilist .faq__navi a {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .navilist .faq__navi a {
    font-size: 1.4rem;
  }
}
.navilist .faq__navi a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .navilist {
    padding: 0 3rem;
    box-sizing: border-box;
  }
}

.ques {
  width: 56px;
  height: 56px;
  font-size: 1.6rem;
  line-height: 56px;
  text-align: center;
  background: #008AE3;
  border: 1px solid #008AE3;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .ques {
    justify-content: center;
    align-items: center;
    display: flex;
    width: 46px;
    height: 46px;
  }
}

.ans {
  width: 56px;
  height: 56px;
  line-height: 56px;
  font-size: 1.6rem;
  text-align: center;
  border: 1px solid #008AE3;
  color: #008AE3;
  float: left;
}
@media screen and (max-width: 767px) {
  .ans {
    justify-content: center;
    align-items: center;
    display: flex;
    width: 46px;
    height: 46px;
  }
}

ul {
  list-style: none;
}

h3 {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 2.4rem;
  color: #A35CEB;
  letter-spacing: 0.7rem;
  margin: 0 auto 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  h3 {
    margin: 0 auto 1rem;
    font-size: 2rem;
  }
}
h3 img {
  width: 9rem;
}
@media screen and (max-width: 767px) {
  h3 img {
    width: 7rem;
    display: block;
    margin: 0 auto;
  }
}

.accordion__ans.faq_acc-close {
  display: none;
}

.accordion__list {
  width: 920px;
  margin: 0 auto;
  /* padding: 4rem 0; */
  border-top: 0.1rem solid #707070;
  transition: 0.3s;
}
.accordion__list:first-child {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .accordion__list {
    width: 100%;
  }
}

.ques__text {
  color: #008AE3;
  font-size: 2rem;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .ques__text {
    font-size: 1.6rem;
    margin-left: 1rem;
    width: 70%;
    padding-top: 1.2rem;
  }
}

.ans__text {
  float: left;
  margin-left: 3rem;
  width: calc(100% - 100px);
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .ans__text {
    font-size: 1.4rem;
    margin-left: 1rem;
    width: calc(100% - 80px);
  }
}

.faq-acc-ttl.acc-close::after {
  display: none;
}

/* 2番目以降 */
.accordion__list .accordion__ques {
  position: relative;
  cursor: pointer;
  padding: 3rem 0;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .accordion__list .accordion__ques {
    padding: 2rem 0 1rem;
    align-items: start;
  }
}

.accordion__list .accordion__ques::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(/skate/shinyokohama/assets/img/faq/open.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%) rotate(-180deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .accordion__list .accordion__ques::after {
    right: 0;
    top: 3.4rem;
    transform: translateY(0) rotate(-180deg);
    transition: 0.3s;
  }
}

.accordion__list .accordion__ques.acc-close::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(/skate/shinyokohama/assets/img/faq/close.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%) rotate(0deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .accordion__list .accordion__ques.acc-close::after {
    right: 0;
    top: 3.4rem;
    transform: translateY(0) rotate(0deg);
    transition: 0.3s;
  }
}

.accordion__list:last-of-type {
  margin: 0 auto 10rem;
}

.accordion__ques {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.accordion__ans {
  display: flex;
  margin: 0 0 4rem 0;
  font-weight: 400;
  font-size: 1.6rem;
  padding-right: 4rem;
  padding-top: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .accordion__ans {
    margin: 0 0 4rem 0;
    font-size: 1.4rem;
    padding-right: 0;
  }
}

.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 20px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.arrow::before {
  left: 0;
  width: 8px;
  height: 8px;
  top: -4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}

.club-schedule {
  padding-top: 10rem;
  margin-top: -10rem;
}
@media screen and (max-width: 767px) {
  .club-schedule {
    padding-top: 6rem;
    margin-top: -6rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}/*# sourceMappingURL=faq.css.map */