@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
h3.faqn-tit {
  font-size: 1.5rem;
  text-align: center;
  margin: 50px 0;
}

@media only screen and (min-width: 768px) {
  h3.faqn-tit {
    font-size: 2.5rem;
    margin: 100px 0;
  }
}

.faq-n-wrap .tab-faq {
  position: relative;
}

.faq-n-wrap .tab-faq ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .faq-n-wrap .tab-faq ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: nowrap;
    -ms-flex-flow: nowrap;
    flex-flow: nowrap;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    width: auto;
  }
}

.faq-n-wrap .tab-faq ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  width: 48%;
}

@media only screen and (min-width: 768px) {
  .faq-n-wrap .tab-faq ul > li {
    margin-bottom: 0;
    width: auto;
  }
}

.faq-n-wrap .tab-faq ul > li a {
  display: block;
  background: #FFFFFF;
  color: #a89423;
  padding: 10px 35px;
  text-align: center;
  font-size: 1.1rem;
  height: 80px;
  line-height: 1.9;
  font-weight: bold;
  border: 1px solid #a89423;
  border-radius: 8px;
}

@media only screen and (min-width: 768px) {
  .faq-n-wrap .tab-faq ul > li a {
    font-size: 1.3rem;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border-top: 1px solid #a89423;
    border-left: 1px solid #a89423;
    border-right: 1px solid #a89423;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom: none;
  }
}

.faq-n-wrap .tab-faq ul > li a span {
  display: block;
  text-align: center;
  font-size: 1rem;
  border-bottom: 1px solid #a89423;
  font-weight: normal;
}

.faq-n-wrap .tab-faq ul > li a:hover {
  background: #a89423;
  color: #FFFFFF;
}

.faq-n-wrap .tab-faq ul > li.active a {
  background: #a89423;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 20px 35px;
  font-size: 1rem;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  .faq-n-wrap .tab-faq ul > li.active a {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 1.3rem;
  }
}

.faq-n-wrap .tab-faq ul > li.btn-wide {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .faq-n-wrap .tab-faq ul > li.btn-wide {
    width: auto;
  }
}

.faq-n-wrap .faq-blockcon-wrap {
  border: 1px solid #a89423;
  padding: 20px;
  height: 500px;
  overflow: hidden;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .faq-n-wrap .faq-blockcon-wrap {
    padding: 70px 100px;
  }
}

.faq-n-wrap .faq-blockcon-wrap dl {
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  padding: 15px 0px 30px 0px;
}

@media only screen and (min-width: 768px) {
  .faq-n-wrap .faq-blockcon-wrap dl {
    padding: 15px 25px 30px 25px;
  }
}

.faq-n-wrap .faq-blockcon-wrap dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  font-size: 1rem;
  color: #a89423;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.5;
}

@media only screen and (min-width: 768px) {
  .faq-n-wrap .faq-blockcon-wrap dl dt {
    font-size: 1.5rem;
  }
}

.faq-n-wrap .faq-blockcon-wrap dl dt::before {
  content: "Q";
  display: block;
  font-size: 2rem;
  color: #a89423;
  margin-right: 1.5rem;
  position: relative;
  top: -10px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  .faq-n-wrap .faq-blockcon-wrap dl dt::before {
    font-size: 2.5rem;
  }
}

.faq-n-wrap .faq-blockcon-wrap dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  word-break: break-all;
}

.faq-n-wrap .faq-blockcon-wrap dd::before {
  content: "A";
  display: block;
  font-size: 2rem;
  font-weight: 600;
  margin-right: 1.5rem;
  position: relative;
  top: -15px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  .faq-n-wrap .faq-blockcon-wrap dd::before {
    font-size: 2.5rem;
  }
}

.faq-n-wrap .faq-blockcon-wrap .faq-blockcon a {
  display: inline-block;
  color: #a89423;
}

.faq-n-wrap .faq-blockcon-tit {
  text-align: center;
  font-weight: bold;
  margin: 50px 0 20px;
  font-size: 1.8rem;
  color: #a89423;
}

@media only screen and (min-width: 768px) {
  .faq-n-wrap .faq-blockcon-tit {
    margin: 80px 0;
  }
}

.faq-n-wrap .faq-blockcon-tit span {
  font-size: 1.4rem;
  margin-right: 1rem;
}

.kani-gra01 {
  position: absolute;
  top: -100px;
  right: 0px;
  z-index: 10;
}

@media only screen and (min-width: 768px) {
  .kani-gra01 {
    top: 0;
    right: 20px;
  }
}

.kani-gra01 img {
  width: 80px;
}

@media only screen and (min-width: 768px) {
  .kani-gra01 img {
    width: 150px;
  }
}

@media only screen and (min-width: 768px) {
  .has-text-align-center br {
    display: none;
  }
}

.heightmorebtn {
  background: #a89423;
  color: #FFFFFF;
  width: 200px;
  margin: auto;
  border-radius: 100px;
  text-align: center;
  padding: 10px;
  margin-top: 50px;
  -webkit-transition: .5s;
  transition: .5s;
}

.heightmorebtn a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  margin-left: 1rem;
}

.heightmorebtn a.active::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
}

.heightmorebtn:hover {
  opacity: .7;
}

.search-key {
  text-align: center;
}

.search-key h3.faqn-tit {
  margin: 100px 0 50px;
}

.search-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  max-width: 1200px;
  margin: 80px auto 100px;
}

@media screen and (min-width: 768px) {

.search-link {

  margin: 120px auto 100px;

}

}

.search-link .link-box {
  margin-bottom: 20px;
  width: 47%;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (min-width: 768px) {
  .search-link .link-box {
    width: 23%;
    margin-bottom: 30px;
  }
}

.search-link .link-box:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.search-link .link-box .tit {
  font-size: 0.9rem;
  line-height: 1;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  .search-link .link-box .tit {
    font-size: 1.3rem;
  }
}

.search-link .link-box a {
  display: block;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  height: 120px;
}

@media only screen and (min-width: 768px) {
  .search-link .link-box a {
    height: 200px;
    padding: 20px;
  }
}

.search-link .link-box a .icon {
  width: 50px;
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .search-link .link-box a .icon {
    width: 80px;
  }
}

.search-link .link-box.num03 img {
  width: 80%;
}

.search-link .link-box.num04 img {
  width: 90%;
}

.search-link .link-box.num08 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-link .link-box.num08 img {
  width: 60%;
}

.faq-category-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

@media only screen and (min-width: 768px) {
  .faq-category-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (min-width: 1025px) {
  .faq-category-list {
    -webkit-flex-flow: nowrap;
    -ms-flex-flow: nowrap;
    flex-flow: nowrap;
    border-bottom: 2px solid #a89423;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.faq-category-list li {
  width: 48%;
  margin-bottom: 5px;
}

@media only screen and (min-width: 768px) {
  .faq-category-list li {
    width: 23.5%;
    margin-bottom: 10px;
    margin-right: 5px;
    margin-left: 5px;
  }
}

@media only screen and (min-width: 1025px) {
  .faq-category-list li {
    width: 14.5%;
    margin: 0;
  }
}

@media only screen and (min-width: 1025px) {
  .faq-category-list li:nth-child(1) a {
    border-left: 2px solid #a89423;
  }
}

@media only screen and (min-width: 1025px) {
  .faq-category-list li:last-child a {
    border-right: 2px solid #a89423;
  }
}

.faq-category-list li a {
  border: 1px solid #a89423;
  border-radius: 10px;
  width: 100%;
  display: block;
  color: #a89423;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  letter-spacing: -.1rem;
  padding: 10px;
  font-size: clamp(13px, 2.5vw, 15px);
  line-height: 1.2;
}

@media only screen and (min-width: 1025px) {
  .faq-category-list li a {
    border-top: 2px solid #a89423;
    border-right: 1px solid #a89423;
    border-left: 1px solid #a89423;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.faq-category-list li a:hover {
  background: #a89423;
  color: #FFFFFF;
}

.tit-cate-faq {
  text-align: center;
  font-size: 5vw;
  padding-top: 60px;
  position: relative;
  margin-top: 80px;
}

@media only screen and (min-width: 768px) {
  .tit-cate-faq {
    font-size: 2rem;
  }
}

.faq-list {
  max-width: 1000px;
  margin: 50px auto 0px;
}

.faq-list h3 {
  line-height: 1.5;
  font-size: 4vw;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 15px;
  padding-right: 20px;
}

@media only screen and (min-width: 768px) {
  .faq-list h3 {
    font-size: 1.5rem;
    padding-right: 30px;
  }
}

.faq-list h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #ddd;
  /* デフォルトはグレー */
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  /* 常に表示 */
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: background-color 1s ease, -webkit-transform 1s ease;
  transition: background-color 1s ease, -webkit-transform 1s ease;
  transition: background-color 1s ease, transform 1s ease;
  transition: background-color 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.faq-list h3:hover::after {
  background-color: #a89423;
  /* ホバー時の色 (青などに変更可) */
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  /* 同じ長さを保つ（省略可） */
}

.faq-list h3 a {
  color: #a89423;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.faq-list h3 a::before {
  content: "Q";
  display: block;
  font-size: 1.5rem;
  color: #a89423;
  margin-right: 1rem;
  position: relative;
  top: -7px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  .faq-list h3 a::before {
    font-size: 2rem;
    margin-right: 1.5rem;
    top: -5px;
  }
}

.faq-list h3 a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  position: absolute;
  right: 10px;
  -webkit-transition: .2s;
  transition: .2s;
}

.faq-list h3 a:hover::after {
  right: 0;
}

h2#faq-cat-279::before {
  content: "";
  display: block;
  background: url(images/faq/ic_fq01.svg) center top no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -0px;
}

h2#faq-cat-280::before {
  content: "";
  display: block;
  background: url(images/faq/ic_fq02.svg) center top no-repeat;
  width: 60px;
  height: 50px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -0px;
}

h2#faq-cat-281::before {
  content: "";
  display: block;
  background: url(images/faq/ic_fq03.svg) center top no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -0px;
}

h2#faq-cat-282::before {
  content: "";
  display: block;
  background: url(images/faq/ic_fq04.svg) center top no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -0px;
}

h2#faq-cat-283::before {
  content: "";
  display: block;
  background: url(images/faq/ic_fq05.svg) center top no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -0px;
}

h2#faq-cat-284::before {
  content: "";
  display: block;
  background: url(images/faq/ic_fq06.svg) center top no-repeat;
  width: 60px;
  height: 50px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -0px;
}

h2#faq-cat-285::before {
  content: "";
  display: block;
  background: url(images/faq/ic_fq07.svg) center top no-repeat;
  width: 60px;
  height: 50px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -0px;
}

p.txt-none {
  text-align: center;
  margin-top: 50px;
}

.faqs-content {
  padding-bottom: 200px;
}

.txt-upper-faq {
  margin-top: 80px;
}

.faq-views {
  display: none;
}

.faqs-detail {
  max-width: 1000px;
  margin: 100px auto;
  width: 90%;
}

.faqs-detail h2.faqs-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #a89423;
  margin-bottom: 30px;
  font-size: 4vw;
}

@media only screen and (min-width: 768px) {
  .faqs-detail h2.faqs-title {
    font-size: 1.7rem;
  }
}

.faqs-detail h2.faqs-title::before {
  content: "Q";
  display: block;
  font-size: 2rem;
  color: #a89423;
  margin-right: 1.5rem;
  position: relative;
  top: -10px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  .faqs-detail h2.faqs-title::before {
    font-size: 2.5rem;
  }
}

.faqs-detail .faqs-exp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 2vw;
  
}

@media only screen and (min-width: 768px) {
  .faqs-detail .faqs-exp {
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 1025px) {
  .faqs-detail .faqs-exp {
    font-size: 1rem;
  }
}

.faqs-detail .faqs-exp::before {
  content: "A";
  display: block;
  font-size: 2rem;
  font-weight: 600;
  margin-right: 1.5rem;
  position: relative;
  top: -15px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  .faqs-detail .faqs-exp::before {
    font-size: 2.5rem;
  }
}

.faqs-list-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.faqs-list-btn a::after {
  top: .2rem;
  position: relative;
}

.faq-ready {
  text-align: center;
}

.faq-blockcon-wrap.search-wrap {
  padding: 0;
  border: none;
  height: auto;
}


#faq-cat{
  position: relative;
  z-index: 10;
}

.faq-search-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .faq-search-form {
    margin-top: 50px;
  }
}

.faq-search-form input {
  border: 1px solid #ccc;
  padding: 10px;
  height: 40px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

@media only screen and (min-width: 768px) {
  .faq-search-form input {
    min-width: 500px;
  }
}

.faq-search-form .search-submit {
  background: #a89423;
  color: #FFFFFF;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-transition: .5s;
  transition: .5s;
  font-size: 1.6rem;
  width: 50px;
  height: 40px;
}

.faq-search-form .search-submit:hover {
  opacity: .9;
}

.faqn-tit.search-tit {
  margin-bottom: 20px;
  letter-spacing: .5rem;
  font-size: clamp(1.8rem, 2.5vw, 50px);
}

@media only screen and (min-width: 768px) {
  .faqn-tit.search-tit {
    margin-bottom: 30px;
  }
}

#faq-cat {
  padding-bottom: 20px;
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  #faq-cat {
    padding-bottom: 0;
    margin-top: -50px;
  }
}

#faq-cat ul.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: nowrap;
  -ms-flex-flow: nowrap;
  flex-flow: nowrap;
}

#faq-cat ul.flex li {
  width: auto;
}

#search-key {
  margin-top: -100px;
  padding-top: 100px;
}

.faqs-exp-inner {
  display: flex;
  flex-flow: column;
   font-size: clamp(.85rem, 1vw, 1.2rem);
    word-break: break-all; /* 枠からはみ出る際は改行 */
}

