@charset "UTF-8";
html {
  scroll-padding-top: 90px;
}

.search__form.header {
  width: 335px;
  height: 40px;
  padding: 6px;
  box-shadow: none;
  border: solid 1px #D1D5DA;
}
@media screen and (max-width: 920px) {
  .search__form.header {
    width: 295px;
  }
}
@media screen and (max-width: 768px) {
  .search__form.header {
    width: 48px;
    height: 48px;
    padding: 0;
    margin-right: 16px;
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .search__form.header img {
    padding: 0;
    margin: 0;
  }
}
.search__form.header input {
  font-size: 14px;
}
.search__form.header a {
  width: 64px;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
}

.search {
  margin-top: 80px;
  height: 96px;
  height: 0;
  background-image: url("../../img/manual/common/bg_fv.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 920px) {
  .search {
    margin-top: 64px;
  }
}
@media screen and (max-width: 584px) {
  .search {
    height: 128px;
    height: 0;
  }
}
.search__wrapper {
  width: 840px;
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 16px;
  margin: 0 auto;
  color: #fff;
  display: none;
}
@media screen and (max-width: 920px) {
  .search__wrapper {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 584px) {
  .search__wrapper {
    flex-direction: column;
    padding: 0 20px;
  }
}
.search__text {
  font-weight: 700;
  font-family: "メイリオ", "Meiryo", sans-serif;
}
.search__form {
  height: 48px;
  border-radius: 4px;
  padding: 6px;
  margin: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 920px) {
  .search__form {
    flex: 1;
  }
}
@media screen and (max-width: 584px) {
  .search__form {
    flex: inherit;
    width: min(100%, 335px);
    height: 40px;
  }
}
.search__form img {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0 14px;
}
@media screen and (max-width: 584px) {
  .search__form img {
    margin: 0 10px;
  }
}
.search__form a {
  height: 36px;
  line-height: 36px;
}
@media screen and (max-width: 584px) {
  .search__form a {
    height: 28px;
    line-height: 28px;
  }
}

.pan {
  background: #F6F8FA;
  padding: 14px 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 450px) {
  .pan {
    padding: 12px 0;
    margin-bottom: 20px;
  }
}
.pan__wrapper {
  width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 4px;
       column-gap: 4px;
  row-gap: 8px;
  align-items: center;
  font-size: 14px;
}
@media screen and (max-width: 1160px) {
  .pan__wrapper {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 450px) {
  .pan__wrapper {
    padding: 0 20px;
  }
}
.pan__link {
  color: #4278FF;
  padding-right: 18px;
  position: relative;
}
.pan__link::after {
  content: "";
  filter: invert(40%) sepia(71%) saturate(587%) hue-rotate(185deg) brightness(103%) contrast(110%);
  width: 14px;
  height: 14px;
  background: url("../../img/manual/common/icon_right.svg");
  background-size: contain;
  position: absolute;
  top: 3px;
  right: 0;
}
.pan__link:hover {
  text-decoration: underline;
}
.pan__link.text {
  color: #2F363D;
  padding: 0;
}
.pan__link.text::after {
  display: none;
}
.pan__link.text:hover {
  text-decoration: none;
}

.sidebar {
  position: relative;
  width: 260px;
  padding-right: 32px;
}
@media screen and (max-width: 920px) {
  .sidebar {
    width: 210px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 768px) {
  .sidebar {
    display: none;
  }
}
.sidebar p {
  font-weight: 700;
  font-family: "メイリオ", "Meiryo", sans-serif;
  color: #2F363D;
  height: 44px;
  padding: 10px 0 10px 10px;
  border-bottom: solid 1px #E9EEFA;
  position: relative;
}
.sidebar p:hover {
  cursor: pointer;
  background: #F1F5FF;
}
.sidebar p::after {
  content: "";
  filter: invert(41%) sepia(100%) saturate(2615%) hue-rotate(210deg) brightness(101%) contrast(101%);
  width: 16px;
  height: 16px;
  background: url("../../img/manual/common/icon_right.svg");
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.2s;
}
.sidebar p.active::after {
  transform: translateY(-50%) rotate(-90deg);
  transition: 0.2s;
}
.sidebar p.selected::after {
  transform: translateY(-50%) rotate(-90deg);
  transition: 0.2s;
}
.sidebar li {
  font-size: 14px;
  position: relative;
  border-bottom: solid 1px #E9EEFA;
}
.sidebar li:last-child {
  border-bottom: solid 1px #E9EEFA;
}
.sidebar li a {
  color: #2F363D;
  padding: 10px 8px 10px 32px;
}
.sidebar li a:hover {
  color: #4278FF;
  text-decoration: underline;
  background: #F1F5FF;
}
.sidebar li.active a {
  color: #4278FF;
  font-weight: 600;
  cursor: default;
}
.sidebar li.active a:hover {
  text-decoration: none;
  background: none;
}
.sidebar li::after {
  content: "";
  filter: invert(75%) sepia(10%) saturate(206%) hue-rotate(169deg) brightness(92%) contrast(87%);
  width: 16px;
  height: 16px;
  background: url("../../img/manual/common/icon_right.svg");
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  transition: 0.2s;
}

.device__changetab {
  display: flex;
  margin-top: 32px;
  border-bottom: solid 1px #D1D5DA;
}
.device__changetab-btn {
  padding: 1px 24px 6px;
  position: relative;
}
@media screen and (max-width: 450px) {
  .device__changetab-btn {
    width: 50%;
    padding: 1px 12px 6px;
    text-align: center;
  }
}
.device__changetab-btn.clicked {
  font-weight: 700;
  font-family: "メイリオ", "Meiryo", sans-serif;
  color: #4278FF;
}
.device__changetab-btn.clicked::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: #4278FF;
  border-radius: 2px;
}

.manual {
  flex: 1;
  line-height: 1.6;
}
.manual .icon-link {
  display: inline-block;
  filter: invert(46%) sepia(47%) saturate(5708%) hue-rotate(211deg) brightness(102%) contrast(101%);
  width: 16px;
  height: 16px;
  margin: 0 4px -2px 0;
}
.manual__wrapper {
  position: relative;
  width: 1080px;
  margin: 0 auto 120px;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  min-height: calc(100vh - 489px);
}
@media screen and (max-width: 1160px) {
  .manual__wrapper {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 450px) {
  .manual__wrapper {
    padding: 0 20px;
    margin-bottom: 80px;
  }
}
.manual__sp {
  display: none;
  flex-direction: column;
  row-gap: 32px;
}
.manual h1 {
  font-weight: 700;
  font-family: "メイリオ", "Meiryo", sans-serif;
  color: #2F363D;
  font-size: 32px;
}
@media screen and (max-width: 450px) {
  .manual h1 {
    font-size: 24px;
  }
}
.manual h2 {
  font-weight: 700;
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  padding: 12px 24px 10px 24px;
  background: rgba(66, 120, 255, 0.8);
  color: #fff;
  margin-top: 40px;
}
.manual__content {
  display: flex;
  flex-direction: column;
}
.manual__content h3 {
  font-weight: 700;
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  padding: 12px;
  border-bottom: solid 2px rgba(66, 120, 255, 0.6);
  margin-top: 32px;
}
.manual__content h4 {
  font-weight: 700;
  font-family: "メイリオ", "Meiryo", sans-serif;
  margin-top: 32px;
}
.manual__content p {
  margin-top: 40px;
}
.manual__content p.mt-24 {
  margin-top: 24px;
}
.manual__content-text {
  margin-top: 32px;
  padding-left: 30px;
}
.manual__content-text a {
  display: inline;
  color: #4278FF;
}
.manual__content-text a:hover {
  text-decoration: underline;
}
.manual__content-subtext {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  margin: 24px 0;
}
@media screen and (max-width: 450px) {
  .manual__content-subtext {
    padding: 0;
  }
}
.manual__content-subtext li {
  margin-top: 16px;
  padding-left: 24px;
  position: relative;
}
.manual__content-subtext li::before {
  content: "";
  background: #4278FF;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 8px;
}
.manual__content-subtext li a {
  display: inline;
  color: #4278FF;
}
.manual__content-subtext li a:hover {
  text-decoration: underline;
}
.manual__content-num {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #8FAFFF;
  text-align: center;
  border-radius: 2px;
  margin-right: 10px;
  margin-left: -30px;
}
.manual__content-link {
  color: #4278FF;
  display: inline;
  position: relative;
}
.manual__content-link:hover {
  text-decoration: underline;
}
.manual__content-note {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #69737C;
}
.manual__block {
  padding: 24px;
  margin-top: 32px;
}
.manual__block h4 {
  font-weight: 700;
  font-family: "メイリオ", "Meiryo", sans-serif;
  margin-bottom: 16px;
}
.manual__block a {
  display: inline;
  color: #4278FF;
}
.manual__block a:hover {
  text-decoration: underline;
}
.manual__block.bg {
  background: rgba(66, 120, 255, 0.1);
  border-radius: 8px;
}
.manual__block.bg .manual__img-wrapper {
  border: none;
  margin: 0;
}
.manual__block.line {
  border: solid 4px #D2DFFE;
  border-radius: 8px;
}
.manual__block.line .manual__img-wrapper {
  border: none;
  margin: 0;
}
.manual__block.link {
  border: solid 1px #A7AEB5;
  border-radius: 8px;
}
.manual__list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.manual__list li {
  padding-left: 24px;
  position: relative;
}
.manual__list li::before {
  content: "";
  background: #4278FF;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 8px;
}
.manual__img {
  border: solid 1px #e1e1e1;
  border-radius: 4px;
  margin: 0 auto;
}
.manual__img-wrapper {
  padding: 24px;
  margin: 24px 0 0;
  border: solid 1px #D1D5DA;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media screen and (max-width: 450px) {
  .manual__img.pc {
    display: none;
  }
}
.manual__img.sp {
  display: none;
}
@media screen and (max-width: 450px) {
  .manual__img.sp {
    display: block;
  }
}
.manual__img.noborder {
  border: none;
}
.manual__pc .manual__img {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(100%, 560px);
  height: auto;
  max-height: 315px;
  -o-object-fit: contain;
     object-fit: contain;
}
.manual__pc .manual__img.vertical {
  width: auto;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 315px;
}
.manual__pc .manual__img.large {
  max-height: inherit;
}
.manual__sp .manual__img {
  width: min(100%, 268px);
}
.manual__sp .manual__img.large {
  border: none;
  width: min(100%, 560px);
}
.manual__table {
  width: 100%;
  margin-top: 24px;
  text-align: left;
  border-collapse: collapse;
}
.manual__table tr {
  height: 58px;
}
@media screen and (max-width: 450px) {
  .manual__table tr {
    height: inherit;
    display: flex;
    flex-direction: column;
  }
}
.manual__table th {
  width: 34%;
  padding: 16px;
  vertical-align: top;
  background: #F5F8FF;
  border: solid 1px #CCD0D4;
}
@media screen and (max-width: 450px) {
  .manual__table th {
    width: 100%;
    padding: 14px 16px;
  }
}
.manual__table td {
  padding: 16px;
  vertical-align: top;
  border: solid 1px #CCD0D4;
}
@media screen and (max-width: 450px) {
  .manual__table td {
    width: 100%;
    padding: 14px 16px;
    margin-top: -1px;
  }
}
.manual__table td .td__flex {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 16px;
}
.manual__table td .td__flex .manual__img.pc {
  display: block;
  width: 100%;
}
.manual__table td .td__flex .manual__img.sp {
  display: block;
  width: max(45%, 160px);
}
@media screen and (max-width: 450px) {
  .manual__table td .td__flex .manual__img.sp {
    width: 70%;
    margin: 0 auto;
  }
}
.manual__table td a {
  display: inline;
  color: #4278FF;
}
.manual__table td a:hover {
  text-decoration: underline;
}

.index-link {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.index-link li {
  padding-left: 24px;
  position: relative;
}
.index-link li:hover a {
  color: #4278FF;
  text-decoration: inherit;
}
.index-link li:hover::before {
  filter: invert(46%) sepia(47%) saturate(5708%) hue-rotate(211deg) brightness(102%) contrast(101%);
}
.index-link li a {
  color: #2F363D;
}
.index-link li::before {
  content: "";
  filter: invert(75%) sepia(1%) saturate(2849%) hue-rotate(183deg) brightness(102%) contrast(67%);
  width: 18px;
  height: 18px;
  background: url("../../img/manual/common/icon_right.svg");
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
  transform: rotate(90deg);
}

.searchresult__wrapper {
  width: 1080px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 1160px) {
  .searchresult__wrapper {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 450px) {
  .searchresult__wrapper {
    padding: 0 20px;
    margin-bottom: 80px;
  }
}
.searchresult__title {
  color: #2F363D;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 24px;
       column-gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 450px) {
  .searchresult__title {
    margin-bottom: 16px;
  }
}
.searchresult__title h1 {
  font-weight: 400;
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-size: 32px;
}
@media screen and (max-width: 450px) {
  .searchresult__title h1 {
    font-size: 24px;
  }
}
.searchresult__title span {
  font-weight: 700;
  font-family: "メイリオ", "Meiryo", sans-serif;
  margin-right: 8px;
}
.searchresult__title p {
  font-size: 16px;
}
.searchresult__lists {
  margin-bottom: 64px;
}
@media screen and (max-width: 450px) {
  .searchresult__lists {
    margin-bottom: 48px;
  }
}
.searchresult__list {
  color: #2F363D;
  padding: 24px 0;
  border-bottom: solid 1px #D1D5DA;
}
.searchresult__list h2 {
  font-weight: 400;
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
  z-index: 1;
}
.searchresult__list h2::before {
  content: "";
  filter: invert(75%) sepia(1%) saturate(2849%) hue-rotate(183deg) brightness(102%) contrast(67%);
  width: 16px;
  height: 16px;
  background: url("../../img/manual/common/icon_right.svg");
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
}
.searchresult__list p {
  color: #69737C;
  padding-left: 32px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  height: 72px;
  overflow: hidden;
}
.searchresult__list:hover {
  background: #F1F5FF;
}
.searchresult__btn {
  margin: 0 auto;
  width: 240px;
  height: 56px;
  line-height: 56px;
  color: #2F363D;
  text-align: center;
  border: solid 1px #D1D5DA;
  border-radius: 8px;
}
.searchresult__btn:hover {
  border: solid 1px #4278FF;
}
.searchresult__btn button {
  width: 100%;
}
.searchresult__btn button:hover {
  color: #4278FF;
}
.searchresult__btn a {
  color: #2F363D;
}
.searchresult__btn a:hover {
  color: #4278FF;
}
.searchresult__none {
  margin-bottom: 80px;
}
@media screen and (max-width: 450px) {
  .searchresult__none {
    margin-bottom: 56px;
  }
}
.searchresult__none h2 {
  border-top: solid 1px #d1d5da;
  padding-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 450px) {
  .searchresult__none h2 {
    padding-top: 32px;
    margin-bottom: 24px;
    font-size: 20px;
  }
}

.bold {
  font-weight: 700;
  font-family: "メイリオ", "Meiryo", sans-serif;
}

.highlight {
  position: relative;
}
.highlight::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF7C1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.notfound {
  width: 1080px;
  margin: 0 auto 120px;
  text-align: center;
}
@media screen and (max-width: 1160px) {
  .notfound {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 450px) {
  .notfound {
    padding: 0 20px;
    margin: 48px 0 80px;
    text-align: left;
  }
}
.notfound__title {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-bottom: 40px;
  color: #8FAFFF;
}
@media screen and (max-width: 450px) {
  .notfound__title {
    justify-content: left;
    -moz-column-gap: 0px;
         column-gap: 0px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 450px) {
  .notfound__title img {
    width: 72px;
  }
}
.notfound__title p {
  font-weight: 600;
  font-size: 32px;
}
@media screen and (max-width: 450px) {
  .notfound__title p {
    font-size: 24px;
  }
}
.notfound h1 {
  font-size: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 450px) {
  .notfound h1 {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.notfound__text {
  margin-bottom: 80px;
}
@media screen and (max-width: 450px) {
  .notfound__text {
    margin-bottom: 56px;
  }
}
.notfound__topbtn {
  margin: 0 auto;
  width: 240px;
  height: 56px;
  line-height: 56px;
  color: #2F363D;
  text-align: center;
  border: solid 1px #D1D5DA;
  border-radius: 8px;
}
.notfound__topbtn a {
  color: #2F363D;
}
.notfound__topbtn:hover {
  border: solid 1px #4278FF;
}
.notfound__topbtn:hover a {
  color: #4278FF;
}/*# sourceMappingURL=underpage.css.map */