@charset "utf-8";
/*************************
Q&A よくあるご質問ページ
**************************/
.spNone {
  display: block;
}
.pcNone {
  display: none;
}
.qanda-box {
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed rgb(119, 119, 119);
}
.qanda-box:last-child {
  border-bottom: none;
}
.qanda-box h4 {
  position: relative;
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 2.4px;
}
.qanda-box div.question, .qanda-box div.answer {
  display: flex;
}
.qanda-box div.question {
  margin-bottom: 20px;
}
.qanda-box div.icon {
  margin-right: 13px;
}
.qanda-box div.icon img {
  max-width: initial;
}
.qanda-box div.answer p {
  font-size: 1.6rem;
  line-height: 30px;
  letter-spacing: 2px;
}
.to_top_list {
  margin-top: 10rem;
  padding: 1.6rem 0;
  background: #f8f6f6;
  width: 100%;
}
.to_top_list ul {
  display: flex;
  justify-content: center;
}
.to_top_list ul li {
  margin-right: 2rem;
}
.to_top_list a {
  background: #fff;
  box-sizing: border-box;
  color: #19191a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  height: 50px;
  padding: 1rem 4rem 1rem;
  position: relative;
  text-align: center;
}
.to_top_list a::before {
  content: "";
  display: inline-block;
  background-image: url(../../../../../d_images/campaign/201105_seibo_restaurant/icon_arrow03.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 11px;
  height: 15px;
  background-size: contain;
  left: 1.5rem;
  top: 1.8rem;
  letter-spacing: .15em;
}
.to_top_list a:hover {
  opacity: .8;
}
.sec {
  display: block;
  margin-top: -6em;
  padding-top: 10em;
}
/*Underlayer*/
.sec .ttl {
  border-bottom: 2px solid #d8d8d8;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 1em;
  padding: 0 0 .5em;
}
/*新規会員登録*/
.qanda-box div p .linkBtn {
  background: #19191a;
  color: #fff;
  margin: 0;
  position: relative;
  width: 50%;
  border: 1px solid #19191a;
  box-sizing: border-box;
  display: block;
  padding: .5em;
  text-align: center;
  transition: .3s;
  margin-top: 1.5rem;
}
.qanda-box div p .linkBtn::after {
  top: 45%;
  transform: rotate(45deg);
  content: "";
  height: 5px;
  position: absolute;
  right: 1em;
  width: 5px;
  border-right: 1px solid;
  border-top: 1px solid;
}
.qanda-box div p .linkBtn:hover {
  background: #fff;
  color: #19191a;
}
.qanda-box .answer .textLink {
  color: #bf8218;
  margin: 0;
  font-size: 1.6rem;
}
/*anchorlink*/
.guide .anchorLink ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 150%;
  justify-content: flex-start;
  margin: 2em auto 0;
  width: 100%;
}
.guide .anchorLink ul li {
  border: 1px solid #19191a;
  margin: 0 1% 1% 0;
  min-width: 15%;
  overflow: hidden;
  position: relative;
}
.guide .anchorLink ul li a {
  align-items: center;
  background: #fff;
  color: #19191a;
  display: flex;
  height: 100%;
  line-height: 1.4;
  padding: .5em 2em .5em 1em;
  transition: .3s;
  width: 100%;
}
.guide .anchorLink ul li a:hover {
  background: #19191a;
  color: #fff;
}
.guide .anchorLink ul li a::after {
  border-right: 1px solid #19191a;
  border-top: 1px solid #19191a;
  content: "";
  height: 5px;
  position: absolute;
  right: 1em;
  top: 40%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  transition: .3s;
  width: 5px;
}
.guide .anchorLink ul li a:hover:after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}

/*表*/
.scroll{
  margin-top: 20px;
}
th{
  /*border: solid 1px #19191a;*/
  color: #19191a;
  padding: 10px;
  width: calc(48% / 2);
  font-weight: bold;
  background: #f8f6f6;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}
tbody{
  text-align: center;
  font-feature-settings: "palt";
}
td{
  /*border:solid 1px #19191a;*/
  padding:10px;
  font-size:clamp(1.5rem, 3vw, 1.6rem);
  border: 2px solid #f8f6f6;
  vertical-align: middle;
}
.attention{
  margin-top: 20px;
}

/*sp*/
@media screen and (max-width: 767px) {
  .spNone {
    display: none;
  }
  .pcNone {
    display: block;
  }
  .qanda-box div.question {
    width: 95%;
    margin: 0 auto 5vw;
  }
  .qanda-box div.answer {
    width: 95%;
    margin: 0 auto;
    /*align-items: center;*/
  }
  .qanda-box div.icon img {
    width: 7.4vw;
    height: 7.4vw;
  }
  .qanda-box div.icon {
    margin-right: 4.2vw;
  }
  .qanda-box {
    margin-top: 8vw;
    padding-bottom: 8vw;
  }
  .to_top_list {
    margin-top: 5rem;
    padding: 2rem 3rem;
  }
  .to_top_list ul {
    display: block;
  }
  .to_top_list ul li {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .to_top_list ul li:nth-of-type(2) {
    margin-right: 0px;
    margin-bottom: 0px;
  }
  .to_top_list a {
    font-size: 1.2rem;
    padding: 1.2rem 0;
  }
/*新規会員登録*/
.qanda-box div p .linkBtn {
  width: 100%;
}
  .sec {
    display: block;
    margin-top: -6em;
    padding-top: 8em;
  }
  .guide .anchorLink ul li {
    align-items: center;
    display: flex;
    width: calc(96%/2);
    margin: 0 2% 2% 0;
  }
  .guide .anchorLink ul li:last-child {
    margin: 0 0 0;
  }
  .guide .anchorLink ul li a {
    align-items: center;
    display: flex;
    font-size: 90%;
    height: 100%;
    line-height: 1.2;
    padding: 1em 2em 1em 1em;
    transition: .3s;
  }
}
/*tb*/
@media screen and (min-width:768px) and (max-width:1023px) {
}