@charset "UTF-8";

/* faq.css側に分離 */

/* faq
-------------------------------------------------- */
@media screen and (max-width:767px) {
  body.faq {
    line-height: 1.5;
  }
}

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

.faq .description {
  font-weight: 500;
}

@media screen and (max-width:767px) {
  .faq .title {
    margin-bottom: 10px;
  }
}

.faq .title:before,
.faq .title:after {
  display: none;
}

.faq .faqItemBox .inquiryBtn .t {
  padding-left: 1.8em;
  padding-right: 0.7em;
}

.faq .moreBtn01 {
  width: auto;
}

.faq .navMenu .item .t {
  position: relative;
}

.navMenu .item .t {
  line-height: 1.4;
  background: #EEEEEE;
  height: 65px;
}

@media screen and (max-width:767px) {
  .navMenu .item .t {
    height: 60px;
  }
}

.navMenu .item .t {
  padding: 10px;
  letter-spacing: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main_color);
}

.faq .navMenu .item .t::after {
  display: block;
  content: "";
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  border-top: 2px solid #215274;
  border-right: 2px solid #215274;
  transform: rotateZ(135deg);
  right: 12px;
  margin: auto;
}

.faq .navMenu>.inner {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(4, calc((900px - (3 * 10px)) / 4));
  gap: 10px;
  width: 900px;
  margin: auto;
  /* センタリングのための設定 */
}

/* タブレットエリアの調整 */
@media (max-width: 926px) and (min-width: 767px) {
  .faq .navMenu .item .t {
    padding: 8px;
    text-align: center;
  }

  .faq .navMenu .item .t::after {
    right: 9px;
  }

  .faq .navMenu .item .t {
    font-size: 14px;
  }

  .faq .navMenu .link1 .t {
    font-size: 13px;
  }

  .faq .navMenu>.inner {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(4, calc((100% - (3 * 10px)) / 4));
    padding: 0 13px;
  }
}

/* SP時のスタイル */
@media (max-width: 767px) {
  .navMenu .item .t {
    font-size: 14px !important;
    line-height: 1.1;
    text-align: center;
    padding: 0 5px 8px !important;
  }

  .faq .navMenu .item .t::after {
    right: unset;
    bottom: 9px;
    width: 0.5em;
    height: 0.5em;
  }

  ul.faqItemBox span {
    width: 92%;
  }

  .faq .navMenu .item .t {
    padding: 10px;
  }

  .faq .navMenu>.inner {
    grid-template-columns: repeat(2, calc((100% - (1 * 10px)) / 2));
    gap: 10px;
    max-width: 100%;
    width: 100%;
    margin: auto;
    /* センタリングのための設定 */
    padding: 0 13px;
    /* SP時の左右の余白 */
  }
}

.faq .tabletOnly {
  display: none;
}

.faq .tabletNone {
  display: block;
}

@media (max-width: 926px) and (min-width: 768px) {
  .faq .tabletOnly {
    display: block;
  }

  .faq .tabletNone {
    display: none;
  }
}

.under.faq .contents>.inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
  position: relative;
}

@media screen and (max-width:767px) {
  .under.faq .contents>.inner {
    padding: 30px 0;
  }
}

.navMenu {
  margin: 30px 0 40px;
}

.navMenu>.inner {
  max-width: var(--main_width);
  margin: 0 auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.navMenu .item.current a {
  background: #FEED02;
}

.under.faq .contents {
  margin-bottom: 60px;
  background: #EBF4F5;
}

@media screen and (max-width:767px) {
  .under.faq .contents {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.faqItemBox .item {
  padding: 18px;
  margin: 0 0 15px;
  /*0 0 15px*/
  border-bottom: 1px solid #f5f5f5;
  background: #fff;
}

/* main幅900pxに左右合計26pxが追加された時 */
@media screen and (max-width:926px) {
  .faqItemBox .item {
    margin: 0 13px 15px;
  }
}

.faqItemBox .item .t {
  font-weight: 600;
  position: relative;
}

/* 二本の横棒を作成する */
.faqItemBox .item .flexBox.t::before,
.faqItemBox .item .flexBox.t::after {
  content: '';
  display: block;
  width: 15px;
  height: 1.5px;
  border-radius: 0px;
  background: #111;
  position: absolute;
  right: 0;
  top: 48%;
  transform: translateY(-50%);
}

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

  .faqItemBox .item .flexBox.t::before,
  .faqItemBox .item .flexBox.t::after {
    top: 11px;
  }
}

.faqItemBox .item .flexBox.t::after {
  background: #111;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.faqItemBox .inner .flexBox.t {
  cursor: pointer;
}

.faqItemBox .inner.open .flexBox.t::before,
.faqItemBox .inner.open .flexBox.t::after {
  transform: rotate(0);
  transition: 0.2s;
}

.faqItemBox .inner.open .c.aText,
.faqItemBox .inner.open .moreBox {
  display: block;
}

.faqItemBox .c.aText,
.faqItemBox .moreBox {
  display: none;
}

.faqItemBox .item .t span {
  position: relative;
}

.faqItemBox .item .t {
  padding-left: 2.5em;
}

.faqItemBox .item .t span:before {
  display: block;
  position: absolute;
  content: "Q";
  min-width: 30px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-right: 10px;
  padding: 0 0 0 1px;
  border-radius: 50%;
  font-weight: 600;
  display: flex;
  justify-content: center;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  background-color: #feed02;
  text-indent: 0em;
  margin-left: -2.5em;
}

.faqItemBox .item .c {
  padding-left: 2.5em;
}

.faqItemBox .item .c .text {
  position: relative;
  margin-top: 15px;
}

.faqItemBox .item .c .text:before {
  position: absolute;
  content: "A";
  min-width: 30px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0 0 0 1px;
  margin-right: 10px;
  display: block;
  background-color: #eee;
  border-radius: 50%;
  font-weight: 600;
  text-align: center;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  text-indent: 0em;
  margin-left: -2.5em;
}

.faqItemBox .moreBox {
  margin-top: 10px;
}

@media screen and (max-width:767px) {
  .faqItemBox .moreBox {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .navMenu {
    margin: 20px 0 30px;
  }

  .navMenu>.inner {
    margin: 0 8px;
  }

  .navMenu .item .t {
    padding: 0 5px;
  }
}

@media screen and (max-width: 429px) {
  .navMenu>.inner {
    margin: 0 20px;
    flex-direction: column;
    font-size: 0.9rem;
  }

  .navMenu .item .t {
    padding: 0 5px;
  }
}

section[id^="link"]:not([id="link1"]) {
  display: none;
}

.faq .topBtn {
  display: none;
  bottom: 120px;
}

/* 問い合わせ･TELボタンのスタイル */
/*--------------------------------------------------------------------*/
.under.faq section.consulInqArea02 {
  width: auto;
  max-width: none;
  border: none;
  border-radius: 0;
  padding: 1em 0;
  font-weight: 700;
  background-color: #FCFCFC;
  position: relative;
  z-index: 2;
}

.under.faq section.consulInqArea02::after {
  display: none;
}

.under.faq section.consulInqArea02 .heading .main {
  font-size: 2.1875rem;
  font-weight: 700;
  color: #393939;
  margin-bottom: .5em;
}

.under.faq section.consulInqArea02 .heading .main b {
  font-size: 2.1875rem;
  font-weight: 700;
  color: #FE6A4D;
}

@media screen and (max-width: 767px) {
  .under.faq section.consulInqArea02 {
    padding: 1.5em 3.4vw 1em;
  }
}

@media screen and (max-width: 520px) {
  .under.faq section.consulInqArea02 .heading .main {
    font-size: 6vw;
  }

  .under.faq section.consulInqArea02 .heading .main b {
    font-size: 6vw;
  }
}

/*--------------------------------------------------------------------*/
.under.faq section.consulInqArea02 .consulInfoBox {
  background-color: transparent;
  border-radius: 0;
  padding-bottom: 0;
  gap: 2%;
}

.under.faq section.consulInqArea02 .consulInfoBox .searchBtn:hover .inner {
  transform: none;
}

.under.faq section.consulInqArea02 .consulInfoBox .searchBtn,
.under.faq section.consulInqArea02 .consulInfoBox .telBox {
  padding: 0;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  display: inline-flex;
  height: 72px;
  align-items: center;
  margin-bottom: .5em;
}

.under.faq section.consulInqArea02 .consulInfoBox .searchBtn,
.under.faq section.consulInqArea02 .consulInfoBox .telBox {
  max-width: 100%;
  box-sizing: border-box;
  display: inline-flex;
  border-radius: 3em;
  align-items: center;
  margin-bottom: .5em;
  background-color: transparent;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 1);
  transition: box-shadow .3s, transform .3s;
  pointer-events: auto;
}

.under.faq section.consulInqArea02 .consulInfoBox .searchBtn::after,
.under.faq section.consulInqArea02 .consulInfoBox .telBox::after {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1C758E;
  border-radius: 9em;
  bottom: -.3rem;
  left: 0;
  pointer-events: auto;
}

.under.faq section.consulInqArea02 .consulInfoBox .searchBtn .button,
.under.faq section.consulInqArea02 .consulInfoBox .telBox .button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: .5em 2em;
  width: 24rem;
  border-radius: 3em;
  height: 72px;
  transition: transform .3s;
}

.under.faq section.consulInqArea02 .consulInfoBox .searchBtn:hover,
.under.faq section.consulInqArea02 .consulInfoBox .telBox:hover {
  transform: translateY(5px);
  box-shadow: 0px 0px 0px transparent;
}

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

  .under.faq section.consulInqArea02 .consulInfoBox .searchBtn .button,
  .under.faq section.consulInqArea02 .consulInfoBox .telBox .button {
    padding: .5em 1em;
    width: 20rem;
  }
}

@media screen and (max-width: 767px) {
  .under.faq section.consulInqArea02 .consulInfoBox {
    padding: 0 3vw;
  }

  .under.faq section.consulInqArea02 .consulInfoBox .searchBtn,
  .under.faq section.consulInqArea02 .consulInfoBox .telBox {
    height: 63px;
  }

  .under.faq section.consulInqArea02 .consulInfoBox .searchBtn .button,
  .under.faq section.consulInqArea02 .consulInfoBox .telBox .button {
    width: 100%;
    padding: .2em .5em;
    height: 63px;
  }
}

/*--------------------------------------------------------------------*/
.under.faq section.consulInqArea02 .consulInfoBox .leftBox {
  border-right: 0;
  width: auto;
  flex: 1;
  align-items: start;
}

.under.faq section.consulInqArea02 .consulInfoBox .leftBox .inner {
  padding-right: 0;
  font-size: 1.375rem;
  font-weight: 700;
  background-color: transparent;
}

.under.faq section.consulInqArea02 .consulInfoBox .searchBtn {
  box-shadow: 0 5px 0 #E55C5C;
}

.under.faq section.consulInqArea02 .consulInfoBox .leftBox .searchBtn::after {
  background-color: #E55C5C;
}

.under.faq section.consulInqArea02 .consulInfoBox .leftBox .searchBtn .icon-mail {
  margin-right: .5em;
}

.under.faq section.consulInqArea02 .consulInfoBox .searchBtn .button {
  background-color: #FF8181;
}

@media screen and (max-width: 767px) {
  .under.faq section.consulInqArea02 .consulInfoBox .searchBtn {
    width: 100%;
  }

  .under.faq section.consulInqArea02 .consulInfoBox .leftBox {
    width: 100%;
    margin-bottom: 0.5em;
  }

  .under.faq section.consulInqArea02 .consulInfoBox .leftBox .inner {
    width: 100%;
  }

  .under.faq section.consulInqArea02 .consulInfoBox .leftBox .inner a {
    width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .under.faq section.consulInqArea02 .consulInfoBox .leftBox .inner {
    font-size: 5vw;
  }
}

/*--------------------------------------------------------------------*/
.under.faq section.consulInqArea02 .consulInfoBox {
  width: auto;
  flex: 1;
}

.under.faq section.consulInqArea02 .consulInfoBox .rightBox .inner {
  padding: 0;
}

.under.faq section.consulInqArea02 .consulInfoBox .telBox {
  font-size: 1.75rem;
  font-weight: 600;
}

.under.faq section.consulInqArea02 .consulInfoBox .telBox .button {
  color: #fff;
  align-items: center;
  background-color: #215274;
  /*#FEED02*/
}

.under.faq .telBox .button img {
  width: 33px;
  height: auto;
}

.under.faq section.consulInqArea02 .consulInfoBox .telBox::after {
  background-color: #D3D3D3;
}

.under.faq section.consulInqArea02 .consulInfoBox .telBox .button .num {
  margin-left: .3em;
}

@media screen and (max-width: 767px) {
  .under.faq section.consulInqArea02 .consulInfoBox .telBox {
    width: 100%;
    font-weight: 600;
  }
}

@media screen and (max-width: 520px) {
  .under.faq section.consulInqArea02 .consulInfoBox .telBox {
    font-size: 7vw;
  }
}

/*--------------------------------------------------------------------*/
.under.faq section.meritArea {
  max-width: 850px;
  margin: 0 auto;
  padding: 120px 0 4em 0;
}

.under.faq section.meritArea .heading {
  display: flex;
  justify-content: center;
  margin-bottom: 4em;
  position: relative;
  z-index: 2;
}

.under.faq section.meritArea .heading .hContainer {
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}

.under.faq section.meritArea .heading .hContainer::after {
  width: 8em;
  height: 8em;
  background-image: url("../img/estimate/merit_deco.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  right: 0;
  top: 0;
  transform: translate(60%, -45%);
}

.under.faq section.meritArea .heading .hContainer .comp {
  color: var(--color-navy-1);
  margin-left: .5em;
  padding-top: 2em;
}

.under.faq section.meritArea .heading .hContainer .pre {
  font-size: 1.75rem;
  font-weight: 700;
}

.under.faq section.meritArea .heading .hContainer .main>* {
  font-size: 2.75rem;
  font-weight: 700;
}

@media screen and (max-width: 1299px) {
  .under.faq section.meritArea {
    max-width: 850px;
    margin: 0 auto;
    padding: 80px 0 4em 0;
  }
}

@media screen and (max-width: 959px) {
  .under.faq section.meritArea {
    padding: 70px 0 2em 0;
  }

  .under.faq section.meritArea .heading .hContainer .pitacle {
    max-width: 220px;
  }

  .under.faq section.meritArea .heading .hContainer .comp {
    padding-top: .75em;
  }

  .under.faq section.meritArea .heading .hContainer .pre {
    font-size: 1.2rem;
    white-space: nowrap;
    font-weight: 900;
  }

  .under.faq section.meritArea .heading .hContainer .main>* {
    font-size: 1.8rem;
    white-space: nowrap;
    font-weight: 900;
  }
}

@media screen and (max-width: 767px) {
  .under.faq section.meritArea .heading .hContainer .pitacle img {
    max-width: 30vw;
  }

  .under.faq section.meritArea .heading .hContainer .comp {
    padding-top: 2vw;
  }

  .under.faq section.meritArea {
    padding: 60px 6vw 4em 6vw;
  }

  .under.faq section.meritArea .heading {
    padding: 0 8vw;
    margin-bottom: 2em;
  }

  .under.faq section.meritArea .heading .hContainer::after {
    width: 20vw;
    height: 20vw;
    max-width: 100px;
    max-height: 100px;
  }

  .under.faq section.meritArea .heading .hContainer .pitacle img {
    max-width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .under.faq section.meritArea .heading .hContainer .pre {
    font-size: 4vw;
  }

  .under.faq section.meritArea .heading .hContainer .main>* {
    font-size: 6vw;
  }
}

/*--------------------------------------------------------------------*/
.under.faq section.meritArea .bodying::after {
  width: 150%;
  height: 0;
  padding-top: 150%;
  position: absolute;
  background-color: #fafafa;
  border-radius: 50%;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.under.faq section.meritArea .bodying .bContainer {
  justify-content: center;
  align-items: center;
  gap: 5%;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.under.faq section.meritArea .bodying .bContainer .merit {
  align-items: center;
  width: 45%;
  box-sizing: border-box;
  margin-bottom: 2em;
  letter-spacing: .06em;
}

.under.faq section.meritArea .bodying .bContainer .number {
  min-width: 2em;
  max-width: 2em;
  min-height: 2em;
  max-height: 2em;
  border-radius: 5em;
  background-color: var(--color-yellow-1);
  font-size: 1.5625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  margin-right: .75em;
}

.under.faq section.meritArea .bodying .bContainer .merit sup {
  font-size: 60%;
}

.under.faq section.meritArea .bodying .bContainer .text {
  font-size: 1.3125rem;
  font-weight: 700;
  border-bottom: 1px dashed #707070;
  white-space: nowrap;
  padding: .2em 0;
}

.under.faq section.meritArea .bodying .note {
  margin-left: 6em;
  position: relative;
  z-index: 2;
}

.under.faq section.meritArea .bodying .note p {
  font-size: 0.75rem;
}

@media screen and (max-width: 815px) {
  .under.faq section.meritArea .bodying .bContainer .number {
    font-size: 1.2rem;
  }

  .under.faq section.meritArea .bodying .bContainer .text {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .under.faq section.meritArea .bodying::after {
    width: 180vw;
    padding-top: 180vw;
    ;
  }

  .under.faq section.meritArea .bodying .bContainer {
    padding: 0 3vw;
    flex-direction: column;
    justify-content: flex-start;
  }

  .under.faq section.meritArea .bodying .bContainer {
    display: table;
    margin: 0 auto;
  }

  .under.faq section.meritArea .bodying .bContainer .merit {
    width: auto;
  }

  .under.faq section.meritArea .bodying .note {
    text-align: center;
    margin-left: 0;
  }

  .under.faq section.meritArea .bodying .bContainer .merit {
    width: 100%;
    margin-bottom: 1.5em;
  }

  .under.faq section.meritArea .bodying .bContainer .number {
    font-size: 1.5rem;
  }

  .under.faq section.meritArea .bodying .bContainer .text {
    width: 100%;
    font-size: 1.3rem;
    font-weight: 700;
    border-bottom: 1px dashed #707070;
    white-space: normal;
    padding: .2em 0;
  }

  .under.faq section.meritArea .bodying .note {
    margin-left: 0em;
    text-align: center;
  }
}

@media screen and (max-width: 520px) {
  .under.faq section.meritArea .bodying .bContainer .number {
    font-size: 5.6vw;
  }

  .under.faq section.meritArea .bodying .bContainer .text {
    font-size: 4vw;
  }

  .under.faq section.meritArea .bodying .note {
    font-size: 3.2vw;
  }
}
