@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  よくある質問

---------------------------------*/
.readBlock {
  padding: 7rem 0;
}
.readBlock .costReductionBox {
  background: rgba(255, 255, 255, 0.5);
  margin: 3rem auto 0;
  padding: 5rem;
}
.readBlock .costReductionBox .wrap {
  position: relative;
}
.readBlock .costReductionBox .wrap ._keyword {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.readBlock .costReductionBox .wrap ._keyword label {
  color: var(--col-sub02);
  font-size: 2rem;
  font-weight: 600;
  flex: 0 0 auto;
}
.readBlock .costReductionBox .wrap ._keyword input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  padding-right: 5rem;
  width: 100%;
}
.readBlock .costReductionBox .wrap ._keyword input:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}
.readBlock .costReductionBox .wrap ._btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 100%;
}
.readBlock .costReductionBox .wrap ._btn input {
  -webkit-appearance: none;
  background-color: transparent;
  background-image: url("../images/i_search.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 1em;
  margin: 0;
  padding: 0;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.readBlock .costReductionBox .wrap ._btn input:hover, .readBlock .costReductionBox .wrap ._btn input:focus {
  outline: none;
}
.readBlock .costReductionBox .wrap ._btn input::-moz-foucus-inner {
  border: none;
  padding: 0;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .readBlock {
    padding: 5rem 0;
  }
  .readBlock .costReductionBox {
    padding: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .readBlock {
    padding: 3rem 0;
  }
  .readBlock .costReductionBox {
    padding: 1.5rem;
  }
  .readBlock .costReductionBox .wrap ._keyword {
    flex-direction: column;
    gap: 1rem;
  }
  .readBlock .costReductionBox .wrap ._keyword input {
    height: 5rem;
  }
  .readBlock .costReductionBox .wrap ._btn {
    top: auto;
    bottom: 0;
    height: 5rem;
  }
}
/*---------------------------------

  一覧

---------------------------------*/
.faqBlock:first-child {
  padding-top: 0;
}
.faqBlock + .faqBlock {
  border-top: 1px dotted var(--col-sub02);
}
.faqBlock .title h2 {
  font-size: 2.8rem;
}
.faqBlock .wrap {}
.faqBlock .wrap .ItemBox {
  background: var(--col-sub01);
  border-radius: 1.5rem;
  margin-bottom: 2rem;
}
.faqBlock .wrap .ItemBox dt._question {
  cursor: pointer;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 2.5rem 2rem;
  padding-right: 7rem;
  position: relative;
}
.faqBlock .wrap .ItemBox dt._question p {
  background: url("../images/faq_Q.svg") top left/4rem no-repeat;
  line-height: 1.4;
  min-height: 4rem;
  padding: .3rem;
  padding-left: 6rem;
}
.faqBlock .wrap .ItemBox dt._question::before {
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  right: 3rem;
  bottom: 0;
  width: 25px;
  height: 2px;
  border-radius: 10px;
  background: var(--col-main);
}
.faqBlock .wrap .ItemBox dt._question::after {
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  right: 4.1rem;
  bottom: 0;
  width: 2px;
  height: 25px;
  border-radius: 10px;
  background: var(--col-main);
  transition: all 0.3s;
}
.faqBlock .wrap .ItemBox dt._question.open::before {
  transform: rotate(180deg);
}
.faqBlock .wrap .ItemBox dt._question.open::after {
  transform: rotate(270deg);
}
.faqBlock .wrap .ItemBox dd._answer {
  display: none;
  padding: 4rem 2rem;
  padding-right: 5rem;
  position: relative;
}
.faqBlock .wrap .ItemBox dd._answer::before {
  background: #ccc;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: calc(100% - 5rem);
  height: 1px;
}
.faqBlock .wrap .ItemBox dd._answer .__inner {
  background: url("../images/faq_A.svg") top left/4rem no-repeat;
  line-height: 1.4;
  min-height: 4rem;
  padding-left: 6rem;
}
.faqBlock .wrap .ItemBox dd._answer .__inner p {
  line-height: 1.6;
}
.faqBlock .btn {
  margin-top: 3rem;
}
.faqBlock .btn a:hover {
  box-shadow: none;
  transform: none;
}
@media screen and (max-width: 1024px) {
  .faqBlock .wrap .ItemBox dt._question {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 896px) {
  .faqBlock:first-child {
    padding-bottom: 5rem !important;
  }
  .faqBlock + .faqBlock {
    padding-top: 5rem !important;
  }
  .faqBlock .title h2 {
    font-size: 2.4rem;
  }
  .faqBlock .wrap .ItemBox dt._question {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 480px) {
  .faqBlock:first-child {
    padding-bottom: 3rem !important;
  }
  .faqBlock + .faqBlock {
    padding-top: 3rem !important;
  }
  .faqBlock .title h2 {
    font-size: 2.1rem;
  }
  .faqBlock .wrap .ItemBox dt._question {
    font-size: 1.5rem;
    padding: 1.5rem;
    padding-right: 3rem;
  }
  .faqBlock .wrap .ItemBox dt._question::before {
    right: 1.5rem;
    width: 15px;
    height: 2px;
  }
  .faqBlock .wrap .ItemBox dt._question::after {
    right: 2.2rem;
    width: 2px;
    height: 15px;
  }
  .faqBlock .wrap .ItemBox dt._question p {
    background-size: 3rem;
    min-height: 3rem;
    padding-left: 4rem;
  }
  .faqBlock .wrap .ItemBox dd._answer {
    padding: 1.5rem;
    padding-right: 2rem;
  }
  .faqBlock .wrap .ItemBox dd._answer::before {
    width: calc(100% - 2rem);
  }
  .faqBlock .wrap .ItemBox dd._answer .__inner {
    background-size: 3rem;
    min-height: 3rem;
    padding-left: 4rem;
  }
  .faqBlock .btn {
    margin-top: 1.5rem;
  }
}
/*---------------------------------

  詳細ページ

---------------------------------*/
.detailBlock {
  padding-top: 0;
}
.detailBlock .title {}
.detailBlock .title .category {
  background: var(--col-sub02);
  border-radius: .5rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 2rem;
  padding: .3rem 1.5rem;
}
.detailBlock .contentsTxt {
  /*background: url("../images/faq_A.svg") top left/4rem no-repeat;
  min-height: 4rem;
  padding-left: 6rem;*/
}
.detailBlock .contentsTxt h3 {}
.detailBlock .contentsTxt p {
  line-height: 2;
}
.detailBlock .btn {
  margin-top: 7rem;
}
@media screen and (max-width: 1024px) {
  .detailBlock .btn {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 896px) {
  .detailBlock .btn {
    margin-top: 3rem;
  }
  .detailBlock + .faqBlock {
    padding-top: 5rem !important;
  }
}
@media screen and (max-width: 480px) {}