ul {
  list-style: none;
}

.ta-banner {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: none;
}
.ta-banner img {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .ta-banner {
    display: block;
  }
}

.guide {
  min-height: calc(100vh - 80px);
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .guide {
    padding-top: 60px;
  }
}
.guide__wrapper {
  width: min(1080px, 92%);
  margin: 0 auto;
  padding: 56px 0;
  text-align: center;
  display: flex;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media screen and (max-width: 768px) {
  .guide__wrapper {
    padding: 40px 0;
  }
}
.guide__side {
  width: 252px;
}
@media screen and (max-width: 768px) {
  .guide__side {
    display: none;
  }
}
.guide__side-item {
  font-size: 16px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  border-bottom: 1px solid #D0DFEE;
  text-align: left;
}
.guide__side-item a {
  display: block;
  width: 100%;
  height: 47px;
  line-height: 47px;
  padding: 0 12px;
  color: #0f2650;
  text-decoration: none;
}
.guide__side-item a:hover {
  color: #0f8fef;
}
.guide__side-item a.active {
  color: #0f8fef;
  background-color: #E9F5FF;
}
.guide__side-item.accordion-btn {
  height: 47px;
  line-height: 47px;
  padding: 0 12px;
  position: relative;
  cursor: pointer;
}
.guide__side-item.accordion-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #0f2650;
  border-bottom: 2px solid #0f2650;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%) rotate(45deg);
}
.guide__side-item.accordion-btn:hover {
  color: #0f8fef;
}
.guide__side-item.accordion-btn:hover::after {
  border-right: 2px solid #0f8fef;
  border-bottom: 2px solid #0f8fef;
}
.guide__side-item.accordion-btn.active::after {
  transform: translateY(-50%) rotate(-135deg);
}
.guide__side-item.accordion-link {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.guide__side-item.accordion-link a {
  font-size: 15px;
  display: block;
  width: 100%;
  height: 47px;
  line-height: 47px;
  padding: 0 12px 0 18px;
}
.guide__side .accordion-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.guide__side .accordion-links.active {
  max-height: 1200px;
}
.guide__side .accordion-links.no-transition {
  transition: none;
}
.guide__main {
  width: calc(100% - 305px);
}
@media screen and (max-width: 768px) {
  .guide__main {
    width: 100%;
  }
}

.content {
  text-align: left;
}
.content .breadcrumb {
  font-size: 13px;
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 4px;
       column-gap: 4px;
  row-gap: 8px;
  margin-bottom: 16px;
  word-break: break-all;
  color: #6F7D96;
}
@media screen and (max-width: 768px) {
  .content .breadcrumb {
    padding: 0;
    margin-bottom: 32px;
  }
}
.content .breadcrumb__link {
  color: #6F7D96;
  padding-right: 20px;
  position: relative;
  text-decoration: none;
}
.content .breadcrumb__link::after {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../image/icon_chevron.svg);
  position: absolute;
  top: 50%;
  right: 1px;
  transform: translateY(-50%);
}
.content .breadcrumb a:hover {
  text-decoration: underline;
}
.content__title {
  font-size: 34px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
  color: #0f2650;
}
@media screen and (max-width: 768px) {
  .content__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 430px) {
  .content__title {
    font-size: 24px;
  }
}
.content__title-img {
  max-width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 56px;
  font-size: inherit;
}
.content__title-img img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .content__title-img {
    display: none;
  }
}
.content__subtitle {
  color: #0f2650;
  line-height: 1.5;
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 430px) {
  .content__subtitle {
    font-size: 22px;
    padding-bottom: 16px;
  }
}
.content__subtitle::before {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #CFD4DC;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 40px;
}
.content__subtitle:after {
  content: "";
  width: 96px;
  height: 4px;
  background: linear-gradient(90deg, rgb(15, 143, 239) 0%, rgb(15, 143, 239) 26%, rgb(37, 97, 204) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 40px 0 0 40px;
}
.content__lead {
  color: #0f2650;
  line-height: 1.5;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-left: 14px;
  position: relative;
}
.content__lead:before {
  content: "";
  width: 4px;
  height: 100%;
  background: linear-gradient(90deg, rgb(15, 143, 239) 0%, rgb(15, 143, 239) 26%, rgb(37, 97, 204) 100%);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 430px) {
  .content__lead {
    font-size: 18px;
  }
}
.content__body {
  padding: 32px 0 56px;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media screen and (max-width: 430px) {
  .content__body {
    padding-bottom: 40px;
    row-gap: 24px;
  }
}
.content__body .img-wrapper {
  max-width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.content__body .img-wrapper img {
  width: 100%;
  height: 100%;
}
.content__text {
  font-size: 16px;
  line-height: 1.5;
  color: #0f2650;
  text-align: justify;
}
.content__text a {
  text-decoration: underline;
  color: #0f8fef;
}
.content__text a:hover {
  opacity: 0.8;
  color: #0f8fef;
}
.content__text a.link-newwindow {
  display: inline-block;
  padding-right: 20px;
  position: relative;
}
.content__text a.link-newwindow::after {
  content: "";
  background-image: url(../image/icon_link-blue.svg);
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}
.content__list {
  list-style: none;
}
.content__list li {
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  color: #0f2650;
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .content__list li {
    padding-left: 24px;
  }
}
.content__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #0f2650;
  position: absolute;
  top: 10px;
  left: 12px;
  border-radius: 50%;
}
@media screen and (max-width: 600px) {
  .content__list li::before {
    left: 4px;
  }
}
.content__list-ordered li {
  margin-left: 20px;
  padding-left: 8px;
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  color: #0f2650;
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .content__list-ordered li {
    padding-left: 4px;
  }
}
.content .bg-change-block {
  width: 100%;
  background-color: #f2f7fd;
  padding: 24px;
  line-height: 1.5;
  word-break: break-all;
}
@media screen and (max-width: 430px) {
  .content .bg-change-block {
    padding: 20px;
  }
}
.content .border-block {
  width: 100%;
  border: 1px solid #0f2650;
  padding: 24px;
  margin-bottom: 32px;
}
.content .border-block:last-child {
  margin-bottom: 0;
}
.content .border-block p {
  line-height: 1.5;
  word-break: break-all;
}

.screenshot {
  width: min(100%, 480px);
  max-height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  margin: 16px 0 20px;
}
.screenshot.size-large {
  max-height: 350px;
}
.screenshot.border {
  border: 1px solid #e0e6ee;
}
@media screen and (max-width: 430px) {
  .screenshot.size-sp {
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
}

.th-left {
  width: 100%;
  border: 1px solid #e7e9ed;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.th-left th {
  border: 1px solid #e7e9ed;
  border-collapse: collapse;
  padding: 20px 15px;
  background-color: #f2f7fd;
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0f2650;
  white-space: normal;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .th-left th {
    display: block;
    width: 100%;
    padding: 12px 15px;
  }
}
.th-left td {
  border: 1px solid #e7e9ed;
  border-collapse: collapse;
  padding: 20px 16px;
  font-size: 16px;
  line-height: 1.3;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #0f2650;
  text-align: justify;
  word-break: break-all;
}
@media screen and (max-width: 600px) {
  .th-left td {
    display: block;
    width: 100%;
    padding: 16px;
  }
}/*# sourceMappingURL=guide.css.map */