.document {
  max-width: 1100px;
  margin: 100px auto 120px auto;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .document {
    margin: 60px 20px;
  }
}
.document-line {
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.document-line span {
  position: relative;
  display: block;
  width: 300px;
}

@media screen and (max-width: 600px) {
  .document-line span {
    width: 280px;
  }
}
.document-line span::before,
.document-line span::after {
  content: "";
  position: absolute;
  bottom: 4px;
}

.document-line .left::before {
  left: -10px;
  width: 20px;
  height: 10px;
  background-image: linear-gradient(to right, #1bb3e0 5px, transparent 5px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.document-line .left::after {
  left: 15px;
  height: 30px;
  border-left: 3px solid #fa1b1b;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.document-line .right::before {
  right: 5px;
  height: 15px;
  border-left: 3px solid #fa1b1b;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
}

.document-line .right::after {
  right: -1px;
  width: 30px;
  height: 22px;
  background-image: linear-gradient(to right, #1bb3e0 5px, transparent 5px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  -webkit-transform: rotate(-58deg);
          transform: rotate(-58deg);
}

.document-tit {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
  .document-tit {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.document-img {
  position: relative;
  display: block;
  background-image: url("../../../../images/document.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 10px;
  padding: 80px 0;
  z-index: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 600px) {
  .document-img {
    font-size: 18px;
    padding: 60px;
  }
}
.document-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  opacity: 0.3;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.document-img:hover {
  background-size: 105%;
}

.document-img:hover::before {
  opacity: 0.5;
}

.ch {
  position: relative;
  padding: 20px 40px 0;
}
@media screen and (max-width: 600px) {
  .ch {
    background-color: #1bb3e0;
    padding: 0;
  }
}
.ch::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  min-width: 1180px;
  height: 400px;
  background-color: #1bb3e0;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .ch::after {
    display: none;
  }
}
.ch-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .ch-thumb {
    border-radius: 0;
    overflow: visible;
  }
}
.ch-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ch-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgba(0, 0, 0, 0.7)), to(transparent));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7) 20%, transparent 100%);
  color: #fff;
  padding: 200px 45px 45px;
}
@media screen and (max-width: 600px) {
  .ch-content {
    position: initial;
    background-image: none;
    padding: 5.3333334vw 5.3333334vw 6.66666675vw;
  }
}
.ch-content__head p {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .ch-content__head p {
    font-size: 3.73333338vw;
  }
}
.ch-content__head h2 {
  font-family: "Noto Serif JP";
  font-size: 40px;
  font-weight: 500;
  line-height: 1.6;
  margin: 5px 0 10px;
}
@media screen and (max-width: 600px) {
  .ch-content__head h2 {
    font-size: 7.46666676vw;
    margin: 0 0 1.33333335vw;
  }
}
.ch-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 600px) {
  .ch-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.33333335vw;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    font-size: 3.46666671vw;
  }
}
.ch-flex a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ch-flex a:hover {
  text-decoration: underline;
}
.ch-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.ch-item {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 0px 7px;
}
@media screen and (max-width: 600px) {
  .ch-item {
    font-size: 2.6666667vw;
    border-radius: 0.80000001vw;
    padding: 0px 1.86666669vw;
  }
}
@media screen and (max-width: 600px) {
  .ch-item {
    margin-right: 1.33333335vw;
  }
}

.content {
  margin: 0 40px;
}
@media screen and (max-width: 600px) {
  .content {
    margin: 0 5.3333334vw;
  }
}
.content-list {
  max-width: 1180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 80px;
  margin: 100px auto;
}
@media screen and (max-width: 600px) {
  .content-list {
    row-gap: 10.6666668vw;
    margin: 10.6666668vw auto;
  }
}
.content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.content-item:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 600px) {
  .content-item:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.content-item__txt {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .content-item__txt {
    margin-top: 6.66666675vw;
  }
}
.content-item__txt h4 {
  position: relative;
  color: #1bb3e0;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .content-item__txt h4 {
    font-size: 4.80000006vw;
    line-height: 1.6;
    margin-bottom: 10.6666668vw;
  }
}
.content-item__txt h4::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#1bb3e0 25%, transparent 15%);
  background-size: 6px 6px;
}
@media screen and (max-width: 600px) {
  .content-item__txt h4::after {
    bottom: -6.13333341vw;
  }
}
.content-item__txt p {
  font-size: 16px;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 600px) {
  .content-item__txt p {
    font-size: 3.73333338vw;
    line-height: 2;
  }
}
.content-item__img {
  width: 100%;
  aspect-ratio: 3/2;
}
.content-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media screen and (max-width: 600px) {
  .content-item__img img {
    border-radius: 3.20000004vw;
  }
}

.faq {
  background-color: #f8f8f8;
  padding: 80px 0 90px;
}
@media screen and (max-width: 600px) {
  .faq {
    padding: 10.6666668vw 5.3333334vw 13.3333335vw;
  }
}
.faq-tit {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .faq-tit {
    font-size: 4.80000006vw;
    padding-bottom: 5.3333334vw;
  }
}
.faq-tit p {
  font-family: "Jost", sans-serif;
  font-weight: bold;
  color: #1bb3e0;
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .faq-tit p {
    font-size: 3.73333338vw;
    margin-bottom: 0;
  }
}
.faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .faq-list {
    row-gap: 2.6666667vw;
  }
}
.faq-item {
  background-color: #fff;
  padding: 15px 20px 15px 55px;
}
@media screen and (max-width: 600px) {
  .faq-item {
    padding: 4.00000005vw 2.6666667vw 4.00000005vw 13.3333335vw;
  }
}
.faq-item__q {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .faq-item__q {
    font-size: 3.73333338vw;
  }
}
.faq-item__q::before {
  content: "Q";
  position: absolute;
  top: 55%;
  left: -35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #1bb3e0;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .faq-item__q::before {
    left: -9.33333345vw;
    font-size: 6.40000008vw;
  }
}
.faq-item__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #1bb3e0;
  border-right: 2px solid #1bb3e0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 600px) {
  .faq-item__q::after {
    right: 2.6666667vw;
    width: 2.13333336vw;
    height: 2.13333336vw;
    border-top: 0.53333334vw solid #1bb3e0;
    border-right: 0.53333334vw solid #1bb3e0;
  }
}
.faq-item__q._under::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
.faq-item__a {
  position: relative;
  display: none;
  margin-top: 5px;
}
@media screen and (max-width: 600px) {
  .faq-item__a {
    margin-top: 1.33333335vw;
  }
}
.faq-item__a::before {
  content: "A";
  position: absolute;
  top: 2px;
  left: -33px;
  color: #fa1b1b;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .faq-item__a::before {
    top: 0.53333334vw;
    left: -8.80000011vw;
    font-size: 6.40000008vw;
  }
}
.faq-btn {
  display: block;
  max-width: 1100px;
  background-color: #1bb3e0;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border: 1px solid #1bb3e0;
  padding: 15px 0;
  margin: 20px auto 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 600px) {
  .faq-btn {
    font-size: 3.73333338vw;
    padding: 4.00000005vw 0;
    margin: 5.3333334vw auto 0;
  }
}
.faq-btn:hover {
  background-color: #fff;
  color: #1bb3e0;
}
.faq-line {
  display: block;
  max-width: 1100px;
  margin: 60px auto 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 600px) {
  .faq-line {
    margin: 8.0000001vw auto 0;
  }
}
.faq-line img {
  width: 100%;
}
.faq-line:hover {
  opacity: 0.7;
}
@media screen and (max-width: 600px) {
  .faq-line__pc {
    display: none;
  }
}
.faq-line__sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .faq-line__sp {
    display: block;
  }
}

.other {
  background-color: #1bb3e0;
  padding: 80px 0 100px;
}
@media screen and (max-width: 600px) {
  .other {
    padding: 13.3333335vw 5.3333334vw 16.0000002vw;
  }
}
.other-tit {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 55px;
}
@media screen and (max-width: 600px) {
  .other-tit {
    font-size: 4.80000006vw;
    padding-bottom: 13.3333335vw;
  }
}
.other-tit p {
  font-family: "Jost", sans-serif;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .other-tit p {
    font-size: 3.73333338vw;
    margin-bottom: 0;
  }
}
.other-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .other-list {
    grid-template-columns: 1fr;
    gap: 13.3333335vw;
  }
}
.other-thumb {
  position: relative;
  background-color: #c2c2c2;
  width: 100%;
  aspect-ratio: 3/2;
}
.other-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.other-cat {
  position: absolute;
  top: -12px;
  left: -10px;
  display: inline-block;
  background-color: #fff;
  color: #1bb3e0;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 20px;
}
@media screen and (max-width: 600px) {
  .other-cat {
    font-size: 3.20000004vw;
    padding: 1.33333335vw 5.3333334vw;
  }
}
.other-cat::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  border-bottom: 7px solid transparent;
  border-right: 10px solid #2283a0;
}
.other-txt {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .other-txt {
    font-size: 4.26666672vw;
    margin-top: 4.00000005vw;
  }
}
.other-txt a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.other-txt a:hover {
  opacity: 0.7;
}