@charset "UTF-8";

.faq-area {
  width: 100%;
  box-sizing: border-box;
  margin: 24px 0 40px;
  padding: 24px 0px;
  background: #EFEFEF;
}

.faq-area__inner {
  width: 100%;
  box-sizing: border-box;
  margin: 40px auto 0;
  padding: 0 14px;
}

.faq-area__inner:first-of-type {
  margin-top: 0;
}

.faq-area .faq-main-hd {
  position: relative;
  width: 100%;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.faq-area .faq-second-hd {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.faq-area .faq-box {
  padding: 14px 14px;
  background: #FFF;
}

.faq-area .faq-box dl {
  margin: 12px 0;
}

.faq-area .faq-box dl dt {
  margin: 8px 0 0;
  font-weight: 700;
}

.faq-area .contact {
  border-top: solid 1px #CCC;
  border-bottom: solid 1px #CCC;
  margin: 12px 0 0;
  padding: 4px 4px;
}

.faq-area .contact .link-btn-area {
  margin-left: 12px;
  text-align: left;
}

.fixed-block {
  transform: translatey(100%);
  transition: all 0.3s ease 0s;
  background-color: rgba(0, 0, 0, 0.7);
  /*box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, .2);*/
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
}

.fixed-block__inner {
  padding: 4px 14px;
}

.btn-area .btn-decision {
  width: auto;
  padding: 8px 20px;
  background-color: #CC0000;
  box-shadow: 0 5px 0 0 rgb(125, 0, 0);
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.btn-area .disabled {
  background: #CCC;
  box-shadow: none;
}

.btn-area .btn-decision--small {
  padding: 0 4px;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
}

.btn-area .btn-clear {
  background: #FFF;
  color: #000;
  margin-right: 8px;
  padding: 8px 20px;
  border: solid 1px #000;
  border-bottom: solid 2px #000;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  line-height: 2;
}

.faq-nav {
  margin: 12px 0 0;
  background: #EFEFEF;
  padding: 12px;
}

.faq-nav div {
  margin: 0 0 12px;
}

.faq-nav div:last-child {
  margin: 0;
}

.faq-nav dt {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.faq-nav dd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.faq-nav a {
  position: relative;
  margin: 8px 8px 4px 0;
  padding: 8px 8px;
  background: #FFF;
  border: solid 1px #FFF;
  border-radius: 12px;
  box-shadow: 0 3px 0 0 #CCC;
  font-size: 12px;
  line-height: 1.3;
}

.faq-nav a:last-child {
  margin-right: 0;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

.faq {
  /*details[open] .icon {*/
  /*  transform: rotate(180deg);*/
  /*}*/
  /* is-openedクラスが付与されたときのスタイル */
  /* アイコンのバーのスタイル */
}

.faq .icon {
  display: block;
  position: absolute;
  top: 54%;
  right: 2%;
  width: 12px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}

.faq details.is-opened .icon {
  transform: rotate(180deg);
}

.faq .icon::before,
.faq .icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 2px;
  background-color: #9e9e9e;
}

.faq .icon::before {
  left: 0;
  transform: rotate(45deg);
}

.faq .icon::after {
  right: 0;
  transform: rotate(-45deg);
}

.faq__item {
  margin-bottom: 2px;
}

.faq__item--question {
  background-color: #F5F5F5;
  padding: 14px 20px 14px 60px;
  position: relative;
  font-weight: 700;
}

.faq__item--question::before {
  content: "Q";
  font-family: system-ui;
  font-size: 21px;
  margin-right: 12px;
  background-color: #333;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__item--anser {
  overflow: hidden;
}

.faq__item--anser__inner {
  font-size: 15px;
  line-height: 1.6;
  padding: 24px 0 24px 60px;
}

.faq__list {
  margin: 8px 0 0;
}

.faq__list li::before {
  background: none;
  content: "・";
}

.warranty-mv {
  margin: 12px 0;
}

.warranty-mv__inner {
  box-sizing: border-box;
  background: #EFEFEF;
  margin: 0 0 16px;
  padding: 0px 8px 12px;
}

.warranty-mv .warranty-point {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.warranty-mv .warranty-point li {
  width: 30%;
  text-align: center;
}

.warranty-mv .warranty-point-last {
  margin: 8px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.warranty-mv .warranty-point-last .sub {
  width: 30%;
  padding: 10px 0;
}

.warranty-mv .warranty-point-last .main {
  width: 70%;
}

.warranty-mv .sub {
  width: 100%;
  padding: 2px 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  background: #CC0000;
  color: #FFF;
}

.warranty-mv .main {
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  background: #FFF;
}

.warranty-feature {
  margin: 0 0 8px;
}

.warranty-feature dt {
  padding: 8px 0;
  border-top: solid 1px #CCC;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.warranty-feature dd {
  padding: 0 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.warranty-feature dd:last-of-type {
  border-bottom: solid 1px #CCC;
}

.warranty-feature dd .icon {
  width: 15%;
}

.warranty-feature dd .text {
  width: 80%;
}

.guide-mv {
  margin: 12px 0;
}

.guide-area {
  width: 100%;
  box-sizing: border-box;
  margin: 24px 0 40px;
}

.guide-area p {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.6;
}

.guide-area__inner {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 14px;
}

.guide-area .col2-box {
  margin: 40px 0;
}

.guide-area .col2-box:first-of-type {
  margin-top: 0;
}

.guide-area .col2-box .right-area {
  margin: 20px 0 0;
}

.guide-area .float-box {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.guide-area .float-box .text-area {
  order: 1;
}

.guide-area .float-box .illust-area {
  order: 2;
  width: 100px;
  float: right;
}

.guide-area .float-box:after {
  content: "";
  display: block;
  clear: both;
}

.guide-area .photo-box {
  width: 49%;
}

.guide-area .col2-box-img {
  display: flex;
  justify-content: space-between;
}

.guide-area .contact-area__inner--tel {
  font-size: 24px;
}

.fixed-block {
  transform: translatey(100%);
  transition: all 0.3s ease 0s;
  background-color: rgba(0, 0, 0, 0.7);
  /*box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, .2);*/
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
}

.fixed-block__inner {
  padding: 4px 14px;
}

.btn-area .btn-decision {
  width: auto;
  padding: 8px 20px;
  background-color: #CC0000;
  box-shadow: 0 5px 0 0 rgb(125, 0, 0);
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.btn-area .disabled {
  background: #CCC;
  box-shadow: none;
}

.btn-area .btn-decision--small {
  padding: 0 4px;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
}

.btn-area .btn-clear {
  background: #FFF;
  color: #000;
  margin-right: 8px;
  padding: 8px 20px;
  border: solid 1px #000;
  border-bottom: solid 2px #000;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  line-height: 2;
}

.is-in .fixed-block {
  transform: translateX(0);
}

.toc-area {
  box-sizing: border-box;
  width: 100%;
  margin: 16px auto;
  padding: 14px 14px 8px;
  background-color: #EFEFEF;
}

.toc-area--title {
  margin: 0 0 12px;
  font-weight: 700;
}

.toc-area ol {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  counter-reset: number;
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-area ol li {
  width: 48%;
  margin: 0 8px 12px 0;
  font-size: 14px;
}

.toc-area ol li:before {
  /* カウンタ（数字になる部分） */
  counter-increment: number;
  /* 任意の名前を付けて！ */
  content: counter(number) ".";
  padding-right: 4px;
}

.toc-area ol li a:hover {
  text-decoration: underline;
}

.point-list {
  margin: 12px 0 0;
  padding-left: 24px;
}

.point-list li {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.5;
  list-style-type: disc;
}

.guide-menu {
  background: #EFEFEF;
  padding: 10px;
}

.guide-menu-list li {
  margin: 0 4px 12px 0;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}

.guide-menu-list li:nth-child(4n) {
  margin-right: 0;
}

.guide-menu-list li a:hover {
  text-decoration: underline;
}

.reason {
  font-size: 13px;
  line-height: 1.5;
  background-color: #fbf9f3;
}

.reason .reason__heading {
  font-size: 28px;
  font-weight: 900;
  position: relative;
  margin-bottom: 8px;
}

.reason .reason__heading--color {
  color: #C00;
}

.reason .reason__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.reason .reason__item {
  width: 31%;
}

.reason .reason__item--heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}

.reason .reason__item--heading span {
  background-color: #C00;
  color: #FFF;
  font-size: 12px;
  line-height: 1;
  padding: 4px 6px;
  display: inline-block;
  border-radius: 4px;
  margin-right: 4px;
  margin-bottom: 3px;
}

.reason .reason__item--small-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.reason .reason__item--icon {
  margin-right: 4px;
  vertical-align: -2px;
  width: 24px;
  height: 24px;
}

.reason .reason__item--img {
  border: 1px solid #CCC;
}

.reason .reason__item--text {
  margin-top: 8px;
}

.reason p {
  margin-bottom: 0;
}

.person-box {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border: solid 1px #000;
  box-sizing: border-box;
  line-height: 1.5;
  align-items: center;
}

.person-box .photo {
  width: 30%;
}

.person-box .text {
  width: 78%;
}

.person-box .company {
  font-size: 14px;
}

.person-box .name {
  font-size: 14px;
}

.person-box .name span {
  font-size: 18px;
}

.question {
  margin-bottom: 8px;
  font-weight: 700;
}

.interview-box:first-of-type {
  margin-top: 0;
}

.interview-photobox .photo-note {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
}

@media screen and (min-width: 640px) {
  .faq-area {
    margin: 40px 0 60px;
  }

  .faq-area__inner {
    width: 1020px;
  }

  .faq-area .faq-main-hd {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }

  .faq-area .faq-second-hd {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }

  .faq-area .faq-box {
    padding: 24px 20px;
  }

  .faq-area .contact {
    padding: 8px 8px;
  }

  .fixed-block__inner {
    width: 600px;
    margin: 0 auto;
  }

  .btn-area .btn-decision {
    padding: 8px 12px 8px;
    font-size: 20px;
  }

  .btn-area .btn-decision--small {
    font-size: 14px;
  }

  .btn-area .btn-clear {
    font-size: 14px;
    margin-top: 4px;
    padding: 8px 12px;
    line-height: 1.3;
  }

  .faq-nav {
    display: flex;
    justify-content: space-between;
  }

  .faq-nav div {
    width: 32%;
    margin: 0 0 0;
  }

  .faq-nav dt {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .faq-nav a {
    margin: 8px 8px 4px 0;
    font-size: 13px;
    padding: 4px 8px;
  }

  .faq__item--question {
    font-size: 18px;
    cursor: pointer;
  }

  .warranty-mv__inner {
    margin: 0 0 24px;
  }

  .warranty-mv .warranty-point {
    width: 80%;
  }

  .warranty-mv .warranty-point-last {
    width: 80%;
  }

  .warranty-mv .warranty-point-last .sub {
    padding: 16px 0;
  }

  .warranty-mv .sub {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    padding: 8px 0;
  }

  .warranty-mv .main {
    padding: 12px 12px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
  }

  .warranty-feature dt {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }

  .warranty-feature dd .icon {
    width: 5%;
  }

  .warranty-feature dd .text {
    width: 94%;
  }

  .guide-area p {
    margin: 0 0 16px;
  }

  .guide-area {
    margin: 40px 0 60px;
  }

  .guide-area__inner {
    width: 1020px;
    padding: 0;
  }

  .guide-area .col2-box {
    display: flex;
    justify-content: space-between;
  }

  .guide-area .col2-box .left-area {
    width: 50%;
  }

  .guide-area .col2-box .right-area {
    margin: 0;
    width: 48%;
  }

  .guide-area .float-box {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
  }

  .guide-area .float-box .text-area {
    width: 60%;
  }

  .guide-area .float-box .illust-area {
    width: 30%;
  }

  .guide-area .contact-area {
    width: 1020px;
    padding: 10px;
  }

  .guide-area .contact-area__inner {
    width: 1000px;
    padding: 10px;
    margin-bottom: 0;
  }

  .guide-area .contact-area__inner--tel {
    font-size: 40px;
  }

  .fixed-block__inner {
    width: 600px;
    margin: 0 auto;
  }

  .btn-area .btn-decision {
    padding: 8px 12px 8px;
    font-size: 20px;
  }

  .btn-area .btn-decision--small {
    font-size: 14px;
  }

  .btn-area .btn-clear {
    font-size: 14px;
    margin-top: 4px;
    padding: 8px 12px;
    line-height: 1.3;
  }

  .toc-area {
    padding: 16px;
  }

  .toc-area ol li {
    width: auto;
    margin: 0 16px 0 0;
    font-size: 15px;
  }

  .toc-area ol li:last-of-type {
    margin-right: 0;
  }

  .point-list {
    padding-left: 40px;
  }

  .point-list li {
    margin: 0 0 12px;
    font-size: 18px;
  }

  .guide-menu {
    padding: 16px 12px;
  }

  .guide-menu-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }

  .guide-menu-list li {
    font-size: 16px;
  }

  .guide-menu-list li:after {
    content: "｜";
    right: 0;
    top: 0;
  }

  .reason {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .reason .reason__inner {
    width: 1020px;
    margin: auto;
    padding: 32px 0;
  }

  .person-box {
    width: 45%;
  }

  .interview-box {
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
  }

  .interview-box .left-area {
    width: 60%;
  }

  .interview-box .right-area {
    margin: 0;
    width: 38%;
  }

  .interview-photobox div {
    width: 49%;
  }

  .interview-photobox {
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
  }

  .interview-qabox {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 640px) {
  .fixed-block .plans__price {
    padding-top: 0;
  }

  .faq__item--question {
    font-size: 14px;
    padding-left: 38px;
    line-height: 1.3;
  }

  .faq__item--question::before {
    font-size: 16px;
    width: 30px;
  }

  .faq__item--anser__inner {
    font-size: 14px;
    line-height: 1.8;
    padding: 20px 0;
  }

  .fixed-block .plans__price {
    padding-top: 0;
  }

  .toc-area ol li:nth-child(2n) {
    margin-right: 0;
  }

  .guide-menu-list li {
    margin-left: 1.4em;
    text-indent: -1.4em;
  }

  .guide-menu-list li::before {
    content: "・";
    left: 0;
    top: 0;
  }

  .reason {
    width: 100%;
    margin-top: 16px;
    line-height: 1.8;
  }

  .reason .reason__inner {
    padding: 16px;
  }

  .reason .reason__heading {
    font-size: 20px;
    background-color: #f5efd8;
    margin: -16px -16px 8px;
    text-align: center;
    line-height: 1;
    padding: 12px;
  }

  .reason .reason__list {
    flex-direction: column;
  }

  .reason .reason__item {
    width: 100%;
  }

  .reason .reason__item:not(:first-of-type) {
    margin-top: 16px;
  }

  .reason .reason__item--heading {
    font-size: 16px;
    justify-content: flex-start;
  }

  .reason .reason__item--small-heading {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .reason .reason__item--body {
    display: flex;
    align-items: flex-start;
  }

  .reason .reason__item--icon {
    width: 20px;
    height: 20px;
  }

  .reason .reason__item--img {
    width: 50%;
    height: auto;
    flex-shrink: 0;
    margin-right: 8px;
  }

  .reason .reason__item--text {
    margin-top: 0;
  }

  .person-box {
    width: 100%;
  }

  .interview-box {
    margin-top: 24px;
  }

  .interview-box .right-area {
    margin: 24px 0;
  }

  .interview-photobox div {
    margin-bottom: 12px;
  }

  .interview-photobox {
    margin-top: 24px;
  }

  .interview-qabox {
    margin-bottom: 24px;
  }
}