@charset "UTF-8";

#wrapper {
  --faq-font-regular:
    "BridgestoneTypeTP-Regular", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Sans", sans-serif;
  --color-dark-gray-1: #2e2e2e;
  --color-dark-gray-2: #333333;
  --color-dark-slate-gray: #33393b;
  --color-gray-2: #666666;
  --color-white: #ffffff;
  --font-weight-semi-bold: 600;
  --opacity-default: 0.7;
}

body.faq #wrapper .lpSection--contact,
body.faq #wrapper section.topSection {
  font-family: var(--faq-font-regular);
  letter-spacing: 0.05em;
}

body.faq #wrapper .lpSection--contact *,
body.faq #wrapper section.topSection * {
  font-feature-settings: "palt";
}

body.faq #wrapper section.pageKV.is-faq-reloading div.commonWidth {
  opacity: 0;
  transition: none;
}

body.faq #wrapper section.pageKV #load.is-faq-reloading {
  opacity: 1;
  visibility: visible;
  transition: none;
}

body.faq #wrapper section.pageKV #load.is-faq-reloading span {
  display: block !important;
  opacity: 1;
  transition: opacity 0.6s ease;
}

body.faq #wrapper section.pageKV #load.is-faq-reloading.is-faq-loader-exiting span {
  opacity: 0;
}

#wrapper section.faqContent {
  background: linear-gradient(to bottom, #111 0, #111 53px, #33393b 53px, #33393b 100%);
  padding: 0 0 100px;
}

.faqCategory .c-category__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
  height: auto;
}

.faqCategory .c-category__inner button {
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  height: auto;
  margin: 0;
  padding: 5px 27px;
  border: 1px solid #4c5153;
  border-radius: 8px;
  background: transparent;
  font-family: "UD新ゴM", "UD Shin Go Medium", sans-serif;
  color: #888;
  font-size: 16px;
  line-height: 2;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.faqCategory .c-category__inner button:hover {
  opacity: 0.7;
}

.faqCategory .c-category__inner button.current {
  background-color: #4c5153;
  color: #fff;
}

#wrapper .faqAccordion {
  width: 100%;
  margin: 0 auto;
  font-feature-settings: "palt";
}

#wrapper .faqAccordion__item {
  overflow: hidden;
  margin: 0 0 20px;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  color: #333;
}

#wrapper .faqAccordion__item[hidden] {
  display: none;
}

#wrapper .faqAccordion__item h2 {
  margin: 0;
}

#wrapper .faqAccordion__button {
  width: 100%;
  height: auto;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 40px;
  color: #333;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  padding: 0;
}

#wrapper .faqAccordion__questionGroup {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 20px;
  min-width: 0;
  word-break: break-word;
}

#wrapper .faqAccordion__qIcon,
#wrapper .faqAccordion__answerMark {
  width: 45px;
  height: 46px;
  flex: 0 0 45px;
  color: #999;
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  font-weight: 200;
  line-height: 46px;
  letter-spacing: 0.03em;
  text-align: center;
  font-feature-settings: "palt";
}

#wrapper .faqAccordion__question {
  flex: 1 1 auto;
  min-width: 0;
  color: #333;
  font-family: var(--faq-font-regular);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 34px;
}

#wrapper .faqAccordion__toggle {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  background: #333;
  position: relative;
  flex: 0 0 auto;
}

#wrapper .faqAccordion__toggle::before,
#wrapper .faqAccordion__toggle::after {
  content: "";
  width: 12px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 14px;
  top: 19.5px;
}

#wrapper .faqAccordion__toggle::after {
  width: 1px;
  height: 12px;
  left: 19.5px;
  top: 14px;
}

#wrapper .faqAccordion__button[aria-expanded="true"] .faqAccordion__toggle::after {
  display: none;
}

#wrapper .faqAccordion__button[aria-expanded="true"] .faqAccordion__toggle::before {
  width: 12px;
  height: 1px;
  left: 14px;
  top: 19.5px;
}

#wrapper .faqAccordion__panel {
  overflow: hidden;
  transition: height 0.35s ease;
}

#wrapper .faqAccordion__answer {
  display: flex;
  gap: 20px;
  align-items: start;
  margin: 0;
  padding: 60px 0 0;
  position: relative;
}

#wrapper .faqAccordion__answer::before {
  content: "";
  height: 1px;
  background: #ddd;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
}

#wrapper .faqAccordion__answerBody {
  flex: 1 1 auto;
  min-width: 0;
  color: #333;
  font-family: var(--faq-font-regular);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#wrapper .faqAccordion__answerBody > :first-child {
  margin-top: 0;
}

#wrapper .faqAccordion__answerBody > :last-child {
  margin-bottom: 0;
}

#wrapper .faqAccordion__answerBody p,
#wrapper .faqAccordion__answerBody ul,
#wrapper .faqAccordion__answerBody ol,
#wrapper .faqAccordion__answerBody blockquote,
#wrapper .faqAccordion__answerBody h2,
#wrapper .faqAccordion__answerBody h3,
#wrapper .faqAccordion__answerBody h4,
#wrapper .faqAccordion__answerBody h5,
#wrapper .faqAccordion__answerBody h6 {
  margin: 0 0 16px;
  color: inherit;
  font: inherit;
}

#wrapper .faqAccordion__answerBody ul,
#wrapper .faqAccordion__answerBody ol {
  padding-left: 1.5em;
}

#wrapper .faqAccordion__answerBody ul {
  list-style: disc;
}

#wrapper .faqAccordion__answerBody ol {
  list-style: decimal;
}

#wrapper .faqAccordion__answerBody li + li {
  margin-top: 4px;
}

#wrapper .faqAccordion__answerBody blockquote {
  padding-left: 1em;
  border-left: 3px solid #ddd;
}

#wrapper .faqAccordion__answerBody img {
  max-width: 100%;
  height: auto;
}

#wrapper .faqAccordion__answer a {
  display: block;
  margin: 10px 0;
  color: inherit;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: opacity 0.3s ease;
  text-decoration: underline;
}

#wrapper .faqAccordion__answerBody > a:last-child {
  margin-bottom: 0;
}

#wrapper .faqAccordion__answer a::after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  border: 1px solid #333;
  border-radius: 50%;
  background: url(/products/softrobotics/tetote/img/ico_arrow_right_circle.svg) no-repeat center / 30px 30px;
  vertical-align: middle;
}

@media (any-hover: hover) {
  #wrapper .faqAccordion__answer a:hover {
    opacity: var(--opacity-default);
  }
}

#wrapper .faqAccordion__empty {
  padding: 34px;
  border-radius: 10px;
  background: #fff;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: #333;
  font-family: var(--faq-font-regular);
  font-weight: 500;
}

#wrapper section.faqLineup {
  margin: 0;
  padding: 60px 0 60px;
  background-color: var(--color-dark-gray-1);
  font-family: var(--faq-font-regular);
  letter-spacing: 0.05em;
  color: var(--color-white);
}

#wrapper .faqLineup__title {
  margin: 0 0 30px;
  padding: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
}

#wrapper .faqLineup__grid {
  display: grid;
  row-gap: 40px;
}

#wrapper .faqLineup__card {
  overflow: hidden;
  border-radius: 25px;
}

#wrapper .faqLineup__image {
  display: block;
  margin: 0;
}

#wrapper .faqLineup__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

#wrapper .faqLineup__body {
  padding: 20px 30px 30px;
  background-color: var(--color-dark-slate-gray);
}

#wrapper .faqLineup__headline {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-gray-2);
}

#wrapper .faqLineup__body h3 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

#wrapper .faqLineup__body dl {
  margin: 0;
  font-weight: 500;
}

#wrapper .faqLineup__body dl div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 0;
  line-height: 1.5;
}

#wrapper .faqLineup__body dt,
#wrapper .faqLineup__body dd {
  margin: 0;
  color: var(--color-white);
}

#wrapper .faqLineup__body dt {
  min-width: 5em;
  font-size: 12px;
}

#wrapper .faqLineup__body dd {
  font-size: 14px;
}

#wrapper .faqLineup__button {
  text-align: center;
}

#wrapper .faqLineup__link {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 4px 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid var(--color-white);
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 980px) {
  #wrapper section.faqLineup {
    padding: 100px 0 100px;
  }

  #wrapper .faqLineup__title {
    font-size: 28px;
    margin-bottom: 50px;
  }

  #wrapper .faqLineup__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  #wrapper .faqLineup__card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  #wrapper .faqLineup__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 30px;
  }

  #wrapper .faqLineup__body h3 {
    font-size: 18px;
  }

  #wrapper .faqLineup__body dl {
    margin-top: 10px;
  }

  #wrapper .faqLineup__link {
    height: 40px;
    padding: 7px 25px;
  }

  @media (any-hover: hover) {
    #wrapper .faqLineup__link:hover {
      opacity: var(--opacity-default);
    }
  }
}

#wrapper .lpSection {
  overflow: hidden;
  margin-top: 60px;
}

#wrapper .lpSection .lpSectionInner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 90px;
}

@media screen and (max-width: 1279px) {
  #wrapper .lpSection .lpSectionInner {
    max-width: 100%;
    padding: 0 70px;
  }
}
@media screen and (max-width: 979px) {
  #wrapper .lpSection .lpSectionInner {
    padding: 0 33px;
  }
}

/* contactSection */
#wrapper .lpSection.lpSection--contact {
  background: #111 url(/products/softrobotics/tetote/img/bg_contact_text.svg) no-repeat left bottom;
  background-size: contain;
  .lpSectionInner {
    padding-block: 60px;
  }
}
#wrapper .contactBandSection {
  .contactBandHeadline {
    margin-bottom: 10px;
  }
  .contactBandHeadTitle {
    font-size: 22px;
    font-weight: var(--font-weight-semi-bold);
    line-height: 1.6;
    color: var(--color-white);
  }
  .contactBandBody {
  }
  .contactBandDescription {
    font-size: 16px;
    font-weight: var(--font-weight-semi-bold);
    line-height: 1.9;
    letter-spacing: 0.48px;
    text-align: justify;
    br {
      display: none;
    }
  }
}

.contactButtonArea {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 20px;
  .contactButtonDownload,
  .contactButtonContact {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 70px;
    border-radius: 10px;
    padding: 10px 60px 10px 20px;
    font-size: 16px;
    font-weight: var(--font-weight-semi-bold);
    box-sizing: border-box;
    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      width: 17px;
      height: 14px;
      background-size: contain;
    }
  }
  .contactButtonDownload {
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    &::after {
      background: url(/products/softrobotics/tetote/img/ico_arrow_right_white.svg) no-repeat 0 0;
    }
  }
  .contactButtonContact {
    border: 2px solid var(--color-white);
    background-color: var(--color-white);
    &::after {
      background: url(/products/softrobotics/tetote/img/ico_arrow_right_black.svg) no-repeat 0 0;
    }
    span {
      position: relative;
      display: block;
      padding-left: 40px;
      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 19px;
        height: 15px;
        background: url(/products/softrobotics/tetote/img/ico_mail_gray.svg) no-repeat 0 0;
        background-size: contain;
      }
    }
  }
}
#wrapper a.contactButtonContact {
  color: var(--color-dark-gray-2);
}

#wrapper .contactBandSection.contactBandSection--products {
  .contactBandHeadline {
    .contactBandDescription {
      margin-top: 10px;
      font-size: 16px;
    }
  }
}
@media screen and (min-width: 979px) {
  #wrapper .lpSection.lpSection--contact {
    .lpSectionInner {
      padding-block: 100px;
    }
  }
  #wrapper .contactBandSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: 30px;
    .contactBandHeadline {
    }
    .contactBandHeadTitle {
      font-size: 28px;
    }
    .contactBandBody {
      flex: 1;
      max-width: 750px;
    }
    .contactBandDescription {
      font-size: 18px;
      br {
        display: block;
      }
    }
  }

  .contactButtonArea {
    flex-direction: row;
    column-gap: 30px;
    .contactButtonDownload,
    .contactButtonContact {
      flex: 1;
      height: 94px;
      padding: 10px 60px 10px 30px;
      font-size: 18px;
      transition: opacity 0.3s ease;
      &::after {
        right: 30px;
      }
    }
  }
  @media (any-hover: hover) {
    #wrapper .contactButtonArea {
      .contactButtonDownload:hover,
      .contactButtonContact:hover {
        opacity: var(--opacity-default);
      }
    }
  }

  #wrapper .contactBandSection.contactBandSection--products {
    gap: 47px;
    .contactBandHeadline {
      flex: 1;
      .contactBandDescription {
        font-size: 18px;
        letter-spacing: 0.03em;
      }
    }
    .contactBandBody {
      max-width: 300px;
    }
  }
}

/* snsWrap */
#wrapper section.topSection {
  padding: 60px 0;
  background-color: var(--color-dark-slate-gray);
}
#wrapper section.topSection div.snsWrap {
  display: grid;
  gap: 33px;
  padding: 0;
}
#wrapper section.topSection div.snsWrap h2 {
  line-height: 1;
  padding: 0;
}
#wrapper section.topSection div.snsWrap ul {
  margin-top: 0;
}

#wrapper section.topSection div.snsWrap ul li {
  margin: 0 15px;
}

#wrapper section.topSection div.snsWrap ul li a {
  background: #000;
  padding: 0;
}
@media screen and (min-width: 769px) {
  #wrapper section.topSection {
    padding: 74px 0;
  }
  #wrapper section.topSection div.snsWrap {
    gap: 40px;
  }
}

#wrapper .lpSection.lpSection--contact.bottom {
  margin-top: 0;
}

@media screen and (max-width: 979px) {
  #wrapper section.faqContent {
    background: linear-gradient(to bottom, #111 0, #111 55px, #33393b 55px, #33393b 100%);
    padding: 0 0 80px;
  }

  .faqCategory .c-category__inner {
    gap: 10px 8px;
  }

  .faqCategory .c-category__inner button {
    padding: 2px 12px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 2;
  }

  #wrapper .faqAccordion__item {
    margin-bottom: 20px;
    padding: 25px 24px;
    border-radius: 10px;
  }

  #wrapper .faqAccordion__button {
    min-height: 60px;
    gap: 24px;
    padding: 0;
  }

  #wrapper .faqAccordion__questionGroup {
    gap: 18px;
  }

  #wrapper .faqAccordion__qIcon,
  #wrapper .faqAccordion__answerMark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 38px;
    line-height: 38px;
  }

  #wrapper .faqAccordion__question {
    font-size: 16px;
    line-height: 30px;
  }

  #wrapper .faqAccordion__toggle {
    width: 36px;
    height: 36px;
  }

  #wrapper .faqAccordion__toggle::before,
  #wrapper .faqAccordion__toggle::after {
    width: 11px;
    height: 1px;
    left: 13px;
    top: 17.5px;
  }

  #wrapper .faqAccordion__toggle::after {
    width: 1px;
    height: 11px;
    left: 17.5px;
    top: 13px;
  }

  #wrapper .faqAccordion__button[aria-expanded="true"] .faqAccordion__toggle::before {
    width: 10px;
    height: 1px;
    left: 13px;
    top: 17.5px;
  }

  #wrapper .faqAccordion__answer {
    gap: 18px;
    margin: 0 48px 0 0;
    padding: 52px 0 0;
  }

  #wrapper .faqAccordion__answer::before {
    top: 26px;
  }

  #wrapper .faqAccordion__answerBody {
    font-size: 15px;
    line-height: 30px;
  }

}

@media screen and (max-width: 599px) {
  .faqCategory.c-category__section {
    padding-bottom: 40px;
  }

  #wrapper section.faqContent {
    padding: 0 0 60px;
  }

  #wrapper .faqAccordion__button {
    min-height: 60px;
    gap: 10px;
    padding: 0;
  }

  #wrapper .faqAccordion__item {
    padding: 25px 20px;
  }

  #wrapper .faqAccordion__questionGroup {
    gap: 15px;
  }

  #wrapper .faqAccordion__qIcon,
  #wrapper .faqAccordion__answerMark {
    width: 31px;
    height: 38px;
    flex-basis: 31px;
    font-size: 38px;
    line-height: 38px;
  }

  #wrapper .faqAccordion__question {
    font-size: 16px;
    line-height: 30px;
  }

  #wrapper .faqAccordion__toggle {
    width: 30px;
    height: 30px;
  }

  #wrapper .faqAccordion__toggle::before,
  #wrapper .faqAccordion__toggle::after {
    width: 9px;
    height: 1px;
    left: 10.5px;
    top: 14.5px;
  }

  #wrapper .faqAccordion__toggle::after {
    width: 1px;
    height: 9px;
    left: 14.5px;
    top: 10.5px;
  }

  #wrapper .faqAccordion__button[aria-expanded="true"] .faqAccordion__toggle::before {
    width: 10px;
    height: 1px;
    left: 10px;
    top: 14.5px;
  }

  #wrapper .faqAccordion__answer {
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 45px 0 0;
  }

  #wrapper .faqAccordion__answer::before {
    top: 25px;
  }

  #wrapper .faqAccordion__answer a::after {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }

  #wrapper .faqAccordion__answerBody {
    font-size: 15px;
    line-height: 30px;
  }

}
