#wrapper {
  position: relative;
}

@media (max-width: 768px) {
  .pc_only {
    display: none;
  }
}
@media (min-width: 769px) {
  .sp_only {
    display: none;
  }
}

.lowHeading {
  height: 707px;
}

.lowHeadingTxt p {
  letter-spacing: 0;
}

.lowHeading img {
  object-position:50% 20%;
}

.return_1 .about_wrap {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 60px;
}

.return_1 .about_wrap p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: .05em;
}

.return_2 #mainContents {
  display: flex;
  justify-content: center;
}

.return_2 .img-wrap {
  position: relative;
}
.return_2 .img-wrap > img {
  @media screen and (max-width: 768px) {
    height: 364px;
    width: auto;
  }
}

.scroll-hint {
  position: absolute;
  left: 120px;
  top: 30%;
  pointer-events: none;
  transition: opacity .3s, visibility .3s;
  @media screen and (min-width: 769px) {
    display: none;
  }
}

.scroll-hint-inner {
  animation: fadeBlink 2s infinite ease-in-out;
}

.scroll-hint.is-scroll {
  visibility: hidden;
  opacity: 0;
}
.scroll-hint img {
  width: 100px;
}

@keyframes fadeBlink {
  0% { opacity: .2; }
  50% { opacity: 1; }
  100% { opacity: .2; }
}

.return_4 .info > p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: .05em;
}

.return_4 .info .card {
  display: flex;
  gap: 24px;
  margin-top: 60px;
}

.return_4 .info .card a {
  display: block;
  border: 2px solid #eee;
}

.return_4 .info .card a > img {
  width: 100%;
  height: auto;
}

.return_4 .info .card a > span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 34px;
  letter-spacing: .05em;
}

.return_4 .info .card a > span img {
  margin-left: 10px;
}

.return_5 .interview {
  margin-top: 24px;
  letter-spacing: .05em;
}

.return_5 .interview_read {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.return_5 .interview_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}

.return_5 .card {
  width: 25%;
  border: 1px solid #DDDDDD;
}

.return_5 .card .img {
  width: 100%;
  aspect-ratio: 300 / 169;
  overflow: hidden;
}

.return_5 .card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.return_5 .card .txt {
  padding: 16px 16px 32px;
  text-align: center;
  background-color: #fff;
}

.return_5 .card .txt p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.return_5 .card .txt h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.return_5 .card .txt .btn {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  margin-top: 16px;
  padding: 8px 46px 8px 16px;
  text-align: center;
  font-size: 16px;
  color: #000;
  font-weight: 900;
  line-height: 34px;
  background-color: #fff;
  border: 1px solid #000;
  cursor: pointer;
}
.return_5 .card .txt .btn:hover {
  color: #fff;
  background-color: #000;
}
.return_5 .card .txt .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 26%;
  width: 26px;
  height: 26px;
  background-image: url("../images/icon_plus_black.svg");
  background-size: cover;
  transform: translateY(-50%);
}
.return_5 .card .txt .btn:hover::before {
  background-image: url("../images/icon_plus_white.svg");
}

.return_5 .card .txt .btn > img {
  display: block;
  width: 26px;
  height: auto;
  margin-left: 4px;
}

.return_5 .modal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0px;
  z-index: 999;
}

.return_5 .modal.is-active {
  display: block;
}

.return_5 .modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .8);
}

.return_5 .modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 90%;
  max-width: 996px;
  height: 90%;
  max-height: 639px;
  overflow-y: scroll;
}

.return_5 .modal_close {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 48px;
  height: 48px;
  background-color: #000;
  border: 1px solid #fff;
  cursor: pointer;
}

.return_5 .modal_close img {
  display: block;
  width: 24px;
  height: auto;
  margin: auto;
}

.return_5 .moda_inner {
  display: flex;
}

.return_5 .modal_image {
  width: 41%;
}

.return_5 .modal_image img {
  width: 100%;
  height: auto;
}

.return_5 .modal_name {
  margin-top: 24px;
  padding-left: 20%;
}

.return_5 .modal_name p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .05em;
}

.return_5 .modal_name h3 {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: .05em;
}

.return_5 .modal_text {
  width: 59%;
  padding: 40px 68px 40px 78px;
}

.return_5 .modal_text_wrap + .modal_text_wrap {
  margin-top: 32px;
}

.return_5 .modal_text_wrap h4 {
  font-size: 20px;
  font-weight: 900;
  color: #333;
  line-height: 1.6;
  letter-spacing: .05em;
}

.return_5 .modal_text_wrap p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #4B4B4B;
  line-height: 1.7;
  letter-spacing: .05em;
}

.return_6 {
  background-color: #EEE;
}

.return_6 .inner {
  max-width: 1240px;
}

.return_6 .inner #mainContents {
  padding-inline: 20px;
}

.area_qa {
  margin-bottom: 30px;
}

.showHideArea+.showHideArea {
  margin-top: 10px;
}

.area_qa .tp_question {
  cursor: pointer;
  position: relative;
}

.tp_question_icon {
  width: 52px;
  object-fit: contain;
}

.area_qa .tp_question_inner {
  background: url(../images/icon_plus.png) no-repeat 95% 50%;
  background-color: #fff;
  color: #000;
  padding: 37px 108px 37px 53px;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 34px;
  letter-spacing: 0.9px;
  display: flex;
  gap: 36px;
  align-items: center;
}

.area_qa .tp_question_op .tp_question_inner {
  background: url(../images/icon_minus.png) no-repeat 95% 50%;
  background-color: #fff;
}

.area_qa .tp_question_op .tp_question_inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 91%;
  height: 3px;
  background-color: #eee;
}

.area_qa .tp_answer_inner {
  padding: 15px;
  padding: 37px 63px 37px 53px;
  background-color: #fff;
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.area_qa .tp_answer_inner p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0.9px;
}

.area_qa .tp_answer_inner .link {
  margin-top: 23px;
  display: inline-block;
}

.area_qa .tp_answer_inner table,
.area_qa .tp_answer_inner th,
.area_qa .tp_answer_inner td {
  border: 1px solid #000;
  border-collapse: collapse;
}

.area_qa .tp_answer_inner table {
  margin-top: 16px;
}

.area_qa .tp_answer_inner th {
  width: 75%;
  padding: 12px 16px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .05em;
  background-color: #F3F3F3;
}

.area_qa .tp_answer_inner td {
  width: 25%;
  padding: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .05em;
}

.return_7 .banner {
  max-width: 1036px;
  margin-inline: auto;
  padding: 64px 20px;
}

.return_7 .banner a {
  display: block;
  width: 100%;
}

.return_7 .banner a img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .lowHeading {
    height: 851px;
  }

  .lowHeading img {
    top: 60px;
  }

  .lowHeading .h1_ptn1 {
    min-height: 83px;
  }

  /* .inner01 {
    padding-bottom: 0px;
  } */

  .lowHeadingTxt {
    position: absolute;
    top: 474px;
    padding-bottom: 43px;
  }

  .lowHeadingTxt p {
    margin-top: 2px;
    padding-right: 17px;
  }

  .return_1 .about_wrap {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }

  .return_1 .about_wrap img {
    width: 100%;
    height: auto;
  }

  .return_1 .about_wrap p {
    font-size: 14px;
    line-height: 26px;
  }

  .return_2 #mainContents {
    width: 100%;
    overflow-x: scroll;
    justify-content: start;
  }

  .return_4 .info > p {
    margin-top: 16px;
    font-size: 12px;
    line-height: 22px;
  }

  .return_4 .info .card {
    flex-direction: column;
    margin-top: 32px;
  }

  .return_4 .info .card a > span {
    padding: 20px;
    font-size: 16px;
    line-height: 20px;
  }

  .return_5 .interview_read {
    font-size: 14px;
    line-height: 1.85;
  }

  .return_5 .interview_list {
    flex-direction: column;
    margin-top: 32px;
  }

  .return_5 .card {
    width: 100%;
  }

  .return_5 .card .img {
    width: 100%;
    aspect-ratio: 335 / 188;
  }

  .return_5 .card .txt {
    padding: 16px 24px 24px;
  }

  .return_5 .card .txt p {
    font-size: 12px;
  }

  .return_5 .card .txt h3 {
    font-size: 14px;
  }

  .return_5 .card .txt .btn {
    height: 42px;
    padding: 10px 40px 10px 16px;
    font-size: 12px;
    line-height: 22px;
  }
  .return_5 .card .txt .btn::before {
    right: 26%;
    width: 20px;
    height: 20px;
  }

  .return_5 .card .txt .btn > img {
    width: 20px;
  }

  .return_5 .modal_content {
    max-width: 335px;
    max-height: 650px;
  }

  .return_5 .moda_inner {
    flex-direction: column;
  }

  .return_5 .modal_image {
    width: 100%;
  }

  .return_5 .modal_name {
    margin-top: 0;
    padding: 27px 24px 0;
  }

  .return_5 .modal_name p {
    font-size: 12px;
  }

  .return_5 .modal_name h3 {
    margin-top: 0;
    font-size: 12px;
  }

  .return_5 .modal_text {
    width: 100%;
    padding: 21px 24px;
  }

  .return_5 .modal_text_wrap + .modal_text_wrap {
    margin-top: 32px;
  }

  .return_5 .modal_text_wrap h4 {
    font-size: 16px;
  }

  .return_5 .modal_text_wrap p {
    margin-top: 2px;
    font-size: 12px;
  }

  .return_6 .inner {
    max-width: 335px;
  }

  .area_qa {
    margin-bottom: 30px;
  }

  .showHideArea+.showHideArea {
    margin-top: 20px;
  }

  .tp_question_icon {
    width: 18px;
    padding-top: 4px;
  }

  .area_qa .tp_question_inner {
    background-size: 20px;
    background-color: #fff;
    color: #000;
    padding: 13px 38px 13px 15px;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: 20px;
    letter-spacing: 0.6px;
    gap: 14px;
  }

  .area_qa .tp_question_op .tp_question_inner {
    background-color: #fff;
    background-size: 20px;
  }

  .area_qa .tp_question_op .tp_question_inner::after {
    width: 88%;
    height: 2px;
  }

  .area_qa .tp_answer_inner {
    padding: 13px 17px 24px 15px;
    gap: 14px;
  }

  .area_qa .tp_answer_inner p {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.6px;
  }

  .area_qa .tp_answer_inner .link {
    margin-top: 14px;
  }

  .area_qa .tp_answer_inner th {
    width: 100%;
    padding: 8px;
    text-align: center;
    font-size: 12px;
  }

  .area_qa .tp_answer_inner td {
    width: 100%;
    padding: 8px;
    font-size: 12px;
  }

  .return_7 .banner {
    max-width: 375px;
    padding: 32px 20px;
  }
}

h3.ttl {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
@media (max-width: 768px) {
  h3.ttl {
    padding-inline:20px;
    font-size: 28px;
  }
  h3.ttl::after {
    width: 105px;
    height: 13px;
    margin: 5px auto 0;
  }
}