@charset "utf-8";
/* CSS Document */
#main {
  width: 100%;
}

#sub {
  display: none;
}

#contents{
  background: none!important;
}

#faqBox {
  padding-top: 20px;
}

.faqInnr {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding-top: 60px;
}

.faqInnrtab {
  padding-top: 30px;
}

.faqInnr .tab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px 40px;
}

.faqInnr .tab li {
  /* text-align: center; */
  position: relative;
}

.faqInnr .tab li a {
  display: block;
  color: #111;
  padding: 10px 20px 10px 20px;
  border: 1px solid #FF629B;
  border-radius: 5px;
  background: #FAFBF6;
}

.faqInnr .tab li a::before {
  position: absolute;
  top: 16px;
  right: 22px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: '';
  transform: rotate(135deg);
  border-top: 2px solid #FF629B;
  border-right: 2px solid #FF629B;
}

.faqInnrTtl {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  padding: 14px 20px;
  background: #FD91BC;
}

.faqLIst .faq {
  position: relative;
  margin: 0;
  padding: 20px 40px 20px 0px;
  cursor: pointer;
  border-bottom: 1px solid #C7C7C7;
}

.faqLIst .faq::before {
  position: absolute;
  top: 28px;
  right: 10px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: '';
  transform: rotate(135deg);
  border-top: 2px solid #FF629B;
  border-right: 2px solid #FF629B;
}

.faqLIst .open::before {
  transform: rotate(-45deg);
}

.faqLIst .faq .que {
  position: relative;
  margin: 0;
  padding: 4px 0 4px 36px;
}

.faqLIst .faq .que::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  content: 'Q';
  color: #FF629B;
  font-size: 1.6rem;
  line-height: 1.6;
  width: 25px;
  height: 25px;
  border: 1px solid #FF629B;
  border-radius: 50px;
  text-align: center;
}

.faqLIst .faq .ans::before {
  position: absolute;
  top: 3px;
  left: 2px;
  display: block;
  content: 'A';
  font-weight: bold;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
  width: 25px;
  height: 25px;
  background: #FF629B;
  border-radius: 50px;
  text-align: center;
}

.faqLIst .faq .ans {
  position: relative;
  display: none;
  height: auto;
  margin: 30px 0 0;
  padding: 4px 0 4px 40px;
}

.faqLIst .faq .ans .ansTxt:first-child{
  margin-top: 0;
}

.ansLinkBox{
  margin-top: 1em;
  display: block;
}

.ansLinkBox a{
  display: block;
}

.ansLink{
  text-decoration: underline;
  color: #FF629B;
}

.ansList ul li{
  padding-top: 0.5em;
}

.ansListTtl{
  display: block;
  font-weight: 600;
  margin-top: 20px;
  padding-bottom: 0.4em;
}

.ansFlow li{
  padding-top: 0.5em;
}

.ansAttention{
  color: #ff0000;
  font-weight: 600;
}

.ansTxtAttention{
  margin-top: 1em;
}

.ansListAttention{
  margin-bottom: 1em;
}

.ansListAttention span{
  display: block;
  font-weight: 600;
}

.browserList{
  margin: 1em auto;
}

.browserList li{
  list-style: square;
  padding-top: 0.5em;
  margin-left: 1em;
}

@media screen and (max-width: 920px){
  .faqInnr {
    width: 92%;
  }

  .faqInnr .tab {
    padding-top: 0;
  }

  #faqBox {
    padding-top: 0;
  }
    
}

@media screen and (max-width: 896px) {

  .faqLIst .faq {
    padding: 20px 30px 20px 0px;
  }

  .faqInnr {
    margin-top: -60px;
    padding-top: 120px;
  }

  .faqInnrtab {
    padding-top: 0;
    margin-top: 0;
  }

  .faqInnrTtl {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 480px){

  .faqInnr .tab {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px 15px;
  }

  .faqInnr .tab li a{
    padding: 10px 20px 10px 10px;
  }

  .faqInnr .tab li a::before {
    right: 10px;
  }
}
