/*
---------------------------------------------

    base settings

*/
:root {
  font-size: 62.5%;
  --s-2: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s2: calc(var(--s1) * 2);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
}

@media screen and (max-width: 1000px) {
  :root {
    font-size: 1vw;
  }

  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp base settings

  */
  :root {
    font-size: 2.6666666667vw;
  }

  body {
    font-size: 1.4rem;
  }

  .sp_br {
    display: inline;
  }

  .pc_br {
    display: none;
  }
}
/* ==============================
// l-stack
/* ==============================
/* PC */
.l-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--s4);
}
.l-stack > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* SP */
@media screen and (max-width: 767px) {
  .l-stack {
    gap: var(--s2);
  }
}
/* ==============================
// l-cluster
/* ==============================
/* PC */
.l-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

/* SP */
@media screen and (max-width: 767px) {
  .l-cluster {
    gap: var(--s1);
  }
}
/* ==============================
// l-column
/* ==============================
/* PC */
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
}
.l-column__side {
  width: 15rem;
}
.l-column__side02 {
  width: 37rem;
}
.l-column__side03 {
  width: 49rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

/* SP */
@media screen and (max-width: 767px) {
  .l-column {
    gap: var(--s2);
  }
  .l-column__side, .l-column__side02, .l-column__side03 {
    width: 100%;
  }
  .l-column__main {
    width: 100%;
  }
}
/* ==============================
// l-grid-areas
/* ==============================
/* PC */
.l-grid-areas {
  display: grid;
  grid-template-areas: "img catch" "img text";
  grid-template-columns: 40rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s2) var(--s5);
}
.l-grid-areas__cell-01 {
  grid-area: catch;
}
.l-grid-areas__cell-02 {
  grid-area: img;
}
.l-grid-areas__cell-03 {
  grid-area: text;
}
.l-grid-areas--row-reverse {
  grid-template-areas: "catch img" "text img";
  grid-template-columns: 1fr 40rem;
}
.l-grid-areas--align-center {
  grid-template-rows: auto auto;
}
.l-grid-areas--align-center .l-grid-areas__cell-01 {
  place-self: end start;
}
.l-grid-areas--align-center .l-grid-areas__cell-02 {
  place-self: center;
}
.l-grid-areas--align-center .l-grid-areas__cell-03 {
  place-self: start;
}

/* SP */
@media screen and (max-width: 767px) {
  .l-grid-areas {
    grid-template-areas: "catch" "img" "text";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    grid-gap: var(--s2);
  }
}
/* ==============================
// subgrid-card
/* ==============================
/* PC */
.subgrid-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  grid-gap: var(--s2);
}

.feature-mv {
  padding: 14rem 0 12.4rem;
  background: #fcf7e5 url(img/sec04_bg01.png) repeat center center/1.8rem auto;
  position: relative;
  z-index: 0;
}
.feature-mv:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/feature-mv-bg.svg) no-repeat center top/100% auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.feature-mv-deco {
  width: 94%;
  max-width: 146.7rem;
  min-width: 128rem;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
.feature-mv-deco:before {
  content: "";
  width: 55.9rem;
  height: 37.8rem;
  background: url(img/feature-mv-deco1.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: -10rem;
  z-index: -1;
}
.feature-mv-deco:after {
  content: "";
  width: 61rem;
  height: 32rem;
  background: url(img/feature-mv-deco2.png) no-repeat center/contain;
  position: absolute;
  left: -2.4rem;
  bottom: -8rem;
  z-index: -1;
}
.feature-mv__inner {
  width: 100%;
  overflow: hidden;
  border-radius: 30rem;
  background: #ee6600 url(img/dot_bg01.png) repeat center center/1.2rem auto;
  display: flex;
}
.feature-mv__left {
  width: fit-content;
  padding: 17.7rem var(--s5) 19.7rem 9rem;
}
.feature-mv__slide {
  flex: 1;
}
.feature-mv__slide .splide__slide {
  overflow: hidden;
}
.feature-mv__slide img.zoom {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center;
  transition: transform 5s linear;
  will-change: transform;
}
.feature-mv__slide .splide__slide.is-active img.zoom {
  transform: scale(1.18);
}

.mv-slide {
  height: 100%;
}

.splide__track {
  height: 100%;
}

.mv-title {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-size: 5.2rem;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}
.mv-title span.sm {
  display: block;
  font-size: 3.3rem;
  font-weight: 700;
}
.mv-title span.dot {
  position: relative;
  font-weight: 700;
}
.mv-title span.dot:before {
  content: "";
  width: calc(100% - 1em);
  height: 0.6rem;
  background: url(img/feature-mv-title-deco.png) no-repeat center/contain;
  position: absolute;
  left: 0.5em;
  top: -0.8rem;
}
.mv-title span.bg {
  padding: 0 2rem;
  border-radius: var(--s6);
  background: #fff;
  color: #ee6600;
  font-size: 5.6rem;
  font-weight: 700;
}

.mv-illust {
  width: 27.9rem;
  height: 21.3rem;
  position: absolute;
  left: 16%;
  bottom: -6rem;
}

@media screen and (max-width: 767px) {
  .sec p {
    line-height: 1.7;
  }

  .feature-mv {
    padding-top: 6rem;
    padding-bottom: 2rem;
    overflow: hidden;
  }
  .feature-mv__left {
    width: 100%;
    padding: var(--s4) var(--s2) 10rem;
  }
  .feature-mv .pr-text {
    margin: var(--s5) 0;
    padding: 0 var(--s3);
    position: relative;
  }

  .feature-mv-deco {
    max-width: 100%;
    min-width: 90%;
  }
  .feature-mv-deco:before {
    width: 35rem;
    left: 2rem;
  }
  .feature-mv-deco::after {
    width: 36rem;
    height: 23rem;
    left: -2rem;
  }

  .feature-mv__inner {
    padding: 0;
    flex-direction: column-reverse;
  }

  .mv-title {
    width: 100%;
    font-size: 2.5rem;
  }
  .mv-title span.sm {
    font-size: 1.8rem;
  }
  .mv-title span.dot:before {
    width: calc(100% - 0.5em);
    top: -0.4rem;
  }
  .mv-title span.bg {
    margin-right: var(--s-2);
    font-size: 2.8rem;
  }

  .mv-illust {
    width: 17rem;
    height: 13rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3rem;
  }
}
.common-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 0;
}
.common-title span.cl {
  color: #ee6600;
}
.common-title--01 {
  padding-top: 6rem;
  text-align: center;
}
.common-title--01:before {
  content: "";
  width: 70.3rem;
  height: 11.3rem;
  background: url(img/txt-question.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.common-title-block {
  align-items: center;
}
.common-title-block-end {
  align-items: flex-end;
}

.common-lead {
  line-height: 1.7;
}

.sec-question {
  padding: var(--s5) 0 0;
  background: #f7f5f0 url(img/sec04_bg01.png) repeat center/1.8rem auto;
  position: relative;
  z-index: 0;
}
.sec-question:before {
  content: "";
  width: 100%;
  height: 52rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sec-question:after {
  content: "";
  width: 100%;
  height: 66.9rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 17rem;
  z-index: -1;
}
.sec-question__subtitle {
  margin-bottom: var(--s3);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.sec-question__subtitle span.fkds {
  display: block;
  margin: 0 auto var(--s3);
  width: fit-content;
  padding: var(--s1) var(--s5);
  border-radius: var(--s10);
  background: #ee6600;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.sec-question__subtitle span.fkds:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.8rem 1.2rem 0 1.2rem;
  border-color: #ee6600 transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.sec-question-bottom {
  position: relative;
}
.sec-question-bottom:after {
  content: "";
  width: 100%;
  height: 45rem;
  background: linear-gradient(transparent 31rem, #fff 31rem), url(img/sec-bottom-round.svg) no-repeat center top/100% 31.9rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.card-link {
  grid-row: span 2;
}
.card-link__pic {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.card-link__pic img {
  max-width: 13rem;
}
.card-link__fkds {
  padding: 1.5rem 0 2.6rem;
  border-radius: var(--s10);
  background: #c8d8e4 url(img/more-btn.png) no-repeat center bottom 1rem/auto 1.4rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.card-link__fkds:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 13px 16px 13px;
  border-color: transparent transparent #c8d8e4 transparent;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.card-link__fkds span.sm {
  font-size: 1.6rem;
  font-weight: 700;
}
.card-link-wrap {
  margin: 0 auto;
  padding: 0 10.5rem;
  grid-gap: var(--s1);
}

.sec-summary-orange {
  margin: var(--s6) 0;
  padding: 0 var(--s6);
  position: relative;
  z-index: 0;
}

.sec-summary-orange p{
text-align:center;
  color:#fff;
}
.sec-summary-orange:before {
  content: "";
  width: 100%;
  height: 22.4rem;
  border-radius: 1rem;
  background: #ff832c url(img/dot_bg01.png) repeat center/1.2rem auto;
  position: absolute;
  left: 0;
  top: var(--s2);
  z-index: -1;
}

.sec-summary-grid {
  grid-gap: 1.8rem;
}

.card-checklist {
  padding: 3.6rem var(--s2);
  padding-left: 12.4rem;
  border-radius: 1rem;
  border: solid 1px #d9d9d9;
  background: #fff;
  position: relative;
}
.card-checklist__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--s2);
}
.card-checklist__title span.st {
  font-size: 1.8rem;
  font-weight: 700;
}
.card-checklist__pic {
  width: 7.6rem;
  position: absolute;
  left: var(--s3);
  top: var(--s3);
}
.card-checklist__pic2 {
  width: 9.9rem;
  position: absolute;
  left: var(--s1);
  top: 2rem;
}
.card-checklist__item {
  position: relative;
  padding-left: 2.9rem;
  font-size: 1.4rem;
}
.card-checklist__item:before {
  content: "";
  width: 2.4rem;
  height: 2.2rem;
  background: url(img/icon_check02.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.1em;
}
.card-checklist__item + .card-checklist__item {
  margin-top: var(--s2);
}

.question .item .ttl01Wrap .illust.reverse {
  order: 2;
  margin-right: var(--s7);
}
.question .item .ttl01Wrap .illust.normal {
  order: 0;
  margin-left: var(--s7);
  width: 14.4rem;
}

.question .item .ttl01.reverse {
  margin: var(--s4) var(--s7) 0 auto;
}
.question .item .ttl01.reverse:after {
  margin-top: -8px;
  left: 100%;
  border-left: 12px solid #8dabc1;
  border-right: none;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.question .item .ttl01.normal {
  margin: var(--s4) auto 0 var(--s7);
}
.question .item .ttl01.normal:after {
  margin-top: -8px;
  right: 100%;
  left: auto;
  border-right: 12px solid #8dabc1;
  border-left: none;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.question .ttl01Wrap .illust--ft06 {
  width: 9.6rem;
}
.question .ttl01Wrap .illust--ft08 {
  width: 11.4rem;
}

.question .ttl01--voice {
  margin-top: var(--s4);
  padding: 2rem var(--s2);
  text-align: center;
}
.question .ttl01--voice::before {
  width: 7.9rem;
  height: 1.8rem;
  background: url(img/txt-voice.png) no-repeat center/contain;
  top: 0.6rem;
  left: 1rem;
}

.question .ttl02Wrap--noline {
  padding-bottom: var(--s3);
}
.question .ttl02Wrap--noline:after {
  content: none;
}
.question .ttl02Wrap--second {
  padding-bottom: var(--s3);
  align-items: flex-start;
}
.question .ttl02Wrap--second:after {
  content: none;
}
.question .ttl02Wrap--second__right {
  width: calc(100% - 190px);
  padding: var(--s4) var(--s4) var(--s3);
}
.question .ttl02Wrap .btn-link a {
  margin-top: 1rem;
  margin-bottom: 0;
}

.schedule {
  padding: 0 var(--s6);
}
.schedule-term {
  min-height: 6.4rem;
  padding: var(--s1) var(--s5);
  border-radius: var(--s5);
  background: #f6f6f6;
  display: flex;
  align-items: center;
  position: relative;
}
.schedule-term:before {
  content: "";
  width: 1px;
  height: calc(100% + var(--s1));
  border-right: solid 1px #e0e0e0;
  position: absolute;
  left: 2.1rem;
  top: 50%;
  z-index: 1;
}
.schedule-term:last-child:before {
  display: none;
}
.schedule-term + .schedule-term {
  margin-top: 1.4rem;
}
.schedule-time {
  width: var(--s8);
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}
.schedule-time:before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: #ee6600;
  border-radius: 50%;
  position: absolute;
  left: -2.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.schedule-act {
  width: 16rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.schedule-exp {
  flex: 1;
}

.ttl02-inner {
  margin: var(--s4) 0;
}

.ttl02-second {
  margin-bottom: var(--s3);
  font-size: 2rem;
  font-weight: 700;
}

.item-inner {
  padding: 0 var(--s6);
}
.item-inner .btn-link a {
  margin-bottom: 0;
}

.income-grid {
  padding: var(--s3) 0 0;
  grid-gap: 3.8rem;
}

.card-income {
  padding: 0 var(--s3) var(--s3);
  border: solid 1px #707070;
  border-radius: 1rem;
  text-align: center;
  grid-row: span 2;
  position: relative;
}
.card-income:nth-of-type(1):after {
  content: "";
  width: 5.3rem;
  height: 2.7rem;
  background: url(img/deco_arrow02.png) no-repeat center/contain;
  position: absolute;
  left: calc(100% - 0.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.card-income__title {
  width: fit-content;
  margin: -2rem auto var(--s1);
  padding: var(--s1) var(--s5);
  border-radius: var(--s6);
  background: #707070;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.card-income__detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-income__exp {
  color: #707070;
  font-weight: 700;
}
.card-income__num {
  margin-bottom: var(--s1);
  font-size: 4rem;
  font-weight: 700;
}
.card-income__num span.sm {
  font-size: 2.8rem;
  font-weight: 700;
}
.card-income--ex {
  border-color: #ee6600;
}
.card-income--ex .card-income__title {
  background: #ee6600;
}
.card-income--ex .card-income__exp {
  color: #ee6600;
}

.box-memo {
  margin-top: var(--s4);
  padding: var(--s3) 7rem;
  position: relative;
  z-index: 0;
}
.box-memo:before {
  content: "";
  width: calc(100% + var(--s6));
  height: 100%;
  border-radius: 1rem 0 0 1rem;
  background: #f6f6f6 url(img/txt-memo.png) no-repeat 2rem 2rem/1.4rem auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.box-memo__title {
  margin-bottom: var(--s2);
  font-size: 1.9rem;
  font-weight: 700;
}

.about-mr {
  margin-top: var(--s4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) 0;
}
.about-mr__term {
  width: 16.5rem;
  padding-left: var(--s2);
  font-weight: 700;
  position: relative;
}
.about-mr__term:before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #dee3e6;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.4em;
}
.about-mr__term:after {
  content: "";
  width: 50%;
  height: 1px;
  background: #d9d9d9;
  position: absolute;
  right: 0;
  top: 0.7em;
  z-index: -1;
}
.about-mr__term span {
  padding-right: var(--s1);
  font-weight: 700;
  background: #f6f6f6;
}
.about-mr__desc {
  width: calc(100% - 16.5rem);
  padding-left: var(--s1);
}

.box-interview {
  padding: 3.8rem 2.6rem;
  position: relative;
  z-index: 0;
}
.box-interview:before {
  content: "";
  width: calc(100% + var(--s6));
  height: 100%;
  border-radius: 1rem 0 0 1rem;
  background: #fcf7e5 url(img/txt-interview.png) no-repeat 3.2rem 0.8rem/18.2rem auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.box-interview__pic {
  margin-bottom: var(--s1);
}
.box-interview__pic img {
  border-radius: 1rem;
}
.box-interview__name {
  font-size: 1.8rem;
  font-weight: 700;
}
.box-interview__name span.sm {
  font-size: 1.2rem;
  font-weight: 700;
}
.box-interview__title {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}
.box-interview .btn-internal a {
  margin: var(--s2) auto;
}
.box-interview .l-cluster {
  margin-left: var(--s1);
}

.tag-01 {
  padding: var(--s-2) var(--s1);
  border-radius: var(--s4);
  background: #fff;
}

.flow-lead {
  margin: var(--s4) 0;
  padding-bottom: var(--s8);
  background: url(img/deco_arrow01.png) no-repeat center bottom/auto 5.3rem;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}

.sv_parts_wrap {
  margin: 0 auto;
  padding: 0 5rem;
}
.sv_parts_wrap .sv_parts {
  margin-top: var(--s3);
}
.sv_parts_wrap .btn-link a {
  margin-bottom: 0;
}

.sec-about {
  padding: var(--s7) 0 var(--s12);
}
.sec-about .eng_ttl {
  max-width: 74.7rem;
  margin-bottom: var(--s1);
}

.m_ttl__upper {
  width: fit-content;
  margin-bottom: var(--s1);
  padding: var(--s-2) var(--s2);
  border-radius: var(--s5);
  background: #707070;
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
}

.box-knowledge {
  margin-top: var(--s9);
  padding: var(--s7) 0 var(--s2) var(--s5);
  border-radius: 1rem;
  position: relative;
}
.box-knowledge:before {
  content: "";
  width: 100vw;
  height: 28rem;
  background: #f7f5f0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.box-knowledge:after {
  content: "";
  width: 8.9rem;
  height: 5.1rem;
  background: url(img/txt-01.png) no-repeat center/contain;
  position: absolute;
  left: 3.8rem;
  top: -2rem;
}
.box-knowledge--02:after {
  width: 10.3rem;
  background-image: url(img/txt-02.png);
}
.box-knowledge__title {
  font-size: 2.7rem;
  font-weight: 700;
}
.box-knowledge .l-column__side02 {
  border-right: solid 1px #d9d9d9;
}
.box-knowledge .btn-link a {
  margin-top: var(--s1);
  margin-bottom: 0;
}
.box-knowledge__pic {
  max-width: 90rem;
  margin: var(--s5) auto;
}
.box-knowledge__pic img {
  border-radius: 1rem;
  border: solid 1px #d9d9d9;
}

.sec-support {
  padding: var(--s7) 0 0;
  background: url(img/txt-question2.png) no-repeat center top/44.3rem auto, url(img/dot_bg04.png) repeat center/2rem auto, linear-gradient(transparent 12rem, #f9efcc 12rem);
  position: relative;
}
.sec-support:before {
  content: "";
  width: 100%;
  height: 26rem;
  background: url(img/sec-top-round.svg) no-repeat center top/100% 100%;
  position: absolute;
  left: 0;
  top: 12rem;
}
.sec-support .ttlWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("img/shape02.png") no-repeat center/68.2rem auto;
  width: 79.3rem;
  height: 23.9rem;
  margin: auto auto var(--s5);
  padding: 0 14rem;
  position: relative;
}
.sec-support .ttlWrap:before {
  content: "";
  width: 16rem;
  height: 23.9rem;
  background: url("img/pic-support-1.png") no-repeat left top/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sec-support .ttlWrap:after {
  content: "";
  width: 15.1rem;
  height: 22.3rem;
  background: url("img/pic-support-2.png") no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec-support__title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.sec-support__title span.sm {
  font-size: 2.2rem;
}

.with-arrow {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.with-arrow:before {
  content: "";
  width: 2.7rem;
  height: 5.3rem;
  background: url(img/deco_arrow01.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: calc(100% + var(--s2));
  transform: translateX(-50%);
  z-index: 1;
}

.question--reverse {
  margin-top: var(--s5);
}
.question--reverse .item {
  padding-top: 5rem;
}
.question--reverse .item:nth-of-type(odd):after {
  height: 100%;
  left: 0;
  top: 0;
  right: auto;
  border-radius: 10px 0 0 10px;
}
.question--reverse .item:nth-of-type(even):after {
  height: 100%;
  left: auto;
  top: 0;
  right: 0;
  border-radius: 0 10px 10px 0;
}

.item-inner2 {
  padding: 0 3rem;
}

.line-center {
  margin: 2.8rem 0;
  text-align: center;
  position: relative;
  z-index: 0;
}
.line-center:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
.line-center span.bg {
  width: fit-content;
  margin: 0 auto;
  padding: var(--s1) var(--s5);
  border-radius: var(--s5);
  background: #707070;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.card-training {
  padding-bottom: var(--s3);
  border: solid 1px #d9d9d9;
  border-radius: 1rem;
  background: #f9efcc;
  grid-row: span 3;
}
.card-training__pic img {
  border-radius: 1rem 1rem 0 0;
}
.card-training__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-training__body {
  padding: 0 2rem;
}
.card-training-grid {
  margin-bottom: var(--s3);
}

.card-subject {
  padding: var(--s3) 2.4rem;
  background: url(img/card-bg-illust-1.png) no-repeat right 1rem bottom 1rem/6.3rem auto;
  border: solid 1px #ff832c;
  border-radius: 1rem;
  grid-row: span 2;
}
.card-subject__title {
  width: 100%;
  margin: -4.2rem auto var(--s2);
  padding: var(--s1);
  background: #ff832c url(img/txt-01-bk.png) no-repeat 1rem center/auto 1.7rem;
  border-radius: var(--s5);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.card-subject:nth-of-type(2) {
  background-image: url(img/card-bg-illust-2.png);
  background-size: 4.9rem auto;
  border-color: #118000;
}
.card-subject:nth-of-type(2) .card-subject__title {
  background: #118000 url(img/txt-02-bk.png) no-repeat 1rem center/auto 1.7rem;
}
.card-subject:nth-of-type(3) {
  background-image: url(img/card-bg-illust-3.png);
  background-size: 5.1rem auto;
  border-color: #00aaeb;
}
.card-subject:nth-of-type(3) .card-subject__title {
  background: #00aaeb url(img/txt-03-bk.png) no-repeat 1rem center/auto 1.7rem;
}
.card-subject-grid {
  margin-bottom: var(--s3);
  grid-gap: 1.4rem;
}

#feature .sec04_block {
  margin-top: var(--s7);
  padding: 8rem var(--s6) 14rem;
  background: #f7f5f0 url(img/dot_bg04.png) repeat center/2rem auto;
  position: relative;
  z-index: 0;
}
#feature .sec04_block:before {
  content: "";
  width: 26.7rem;
  height: 9.8rem;
  background: url(img/txt-point.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
#feature .sec04_block:after {
  top: 0;
  z-index: -1;
}
#feature .sec04_block .upper {
  margin-top: 0;
}

.sec-point {
  padding-top: var(--s8);
}
.sec-point__upper {
  margin-bottom: var(--s7);
  gap: 0;
  align-items: center;
}
.sec-point__upper--03 {
  margin-bottom: 0;
}
.sec-point__title {
  font-size: 3rem;
  font-weight: 700;
}
.sec-point__lead {
  line-height: 1.7;
}
.sec-point__pic {
  max-width: 80rem;
  margin: 0 auto;
  border-radius: 1rem;
}
.sec-point__pic img {
  border-radius: 1rem;
}
.sec-point + .sec-point {
  margin-top: var(--s8);
  border-top: solid 1px #d9d9d9;
}
.sec-point .btn-link a {
  margin-top: var(--s1);
  margin-bottom: 0;
}

.point-title-en {
  margin-bottom: var(--s2);
  width: auto;
  height: 2.2rem;
}
.point-title-en img {
  height: 100%;
  width: auto;
}

.card-merit {
  padding: var(--s4) 0;
  grid-row: span 3;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.05);
  position: relative;
}
.card-merit:before {
  content: "";
  width: 5.6rem;
  height: 3.1rem;
  background: url(img/txt-01-or.png) no-repeat center/contain;
  position: absolute;
  left: var(--s2);
  top: -1.5rem;
}
.card-merit:nth-of-type(2):before {
  background-image: url(img/txt-02-or.png);
}
.card-merit:nth-of-type(3):before {
  background-image: url(img/txt-03-or.png);
}
.card-merit:nth-of-type(4):before {
  background-image: url(img/txt-04-or.png);
}
.card-merit-grid {
  margin-top: var(--s5);
  grid-gap: 5.4rem var(--s5);
}
.card-merit__title {
  padding: 0 var(--s3);
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
}
.card-merit__pic {
  margin-left: var(--s3);
}
.card-merit__pic img {
  border-radius: 1rem 0 0 1rem;
}
.card-merit__txt {
  padding: 0 var(--s3);
  display: flex;
  align-items: center;
}
.card-merit__txt p {
  line-height: 1.7;
}

.sec-column {
  padding: 11rem 0;
}
.sec-column .eng_ttl {
  margin-bottom: var(--s2);
  width: 37rem;
}

.card-column {
  padding-bottom: var(--s3);
  border-radius: 1rem;
  background: #f6f6f6;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.05);
  grid-row: span 4;
  text-decoration: none;
}
.card-column__pic img {
  border-radius: 1rem 1rem 0 0;
}
.card-column__title {
  padding: 0 2rem;
  font-size: 1.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.card-column__body {
  padding: 0 2rem;
  line-height: 1.7;
}
.card-column__more {
  width: fit-content;
  margin: 0 2rem 0 auto;
  padding: var(--s1) var(--s3) 1rem var(--s2);
  border-radius: var(--s5);
  background: #ff832c url(img/arrow05.png) no-repeat center right 1rem/auto 0.9rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.card-column-grid {
  margin-top: var(--s5);
}

.more-gradient-sp-btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .common-title {
    font-size: 2.3rem;
  }
  .common-title--01 {
    padding-top: 2rem;
  }
  .common-title--01:before {
    height: 4rem;
  }

  .with-arrow {
    font-size: 2rem;
    line-height: 1.5;
  }

  .sec-question:before {
    height: 44rem;
  }
  .sec-question::after {
    height: 22rem;
    top: 32rem;
  }
  .sec-question .inner {
    padding: 0 2rem;
  }
  .sec-question__subtitle {
    margin-bottom: var(--s2);
    font-size: 1.9rem;
  }
  .sec-summary-orange p{
text-align:left;
}
  .sec-question__subtitle span.fkds {
    padding: var(--s1) var(--s3);
    font-size: 1.5rem;
  }
  .sec-question__subtitle span.fkds:before {
    border-width: 1.4rem 1rem 0 1rem;
  }

  .sec-question-bottom {
    padding-bottom: 4rem;
  }
  .sec-question-bottom:after {
    background-size: 100% 100%;
    height: 8rem;
  }

  .card-link {
    grid-template-columns: 9rem minmax(0, 1fr);
    grid-row: initial;
    grid-gap: 2rem;
    align-items: flex-end;
  }
  .card-link:nth-of-type(2) {
    grid-template-columns: minmax(0, 1fr) 9rem;
  }
  .card-link:nth-of-type(2) .card-link__pic {
    order: 1;
  }
  .card-link:nth-of-type(2) .card-link__fkds::before {
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent #c8d8e4;
    left: auto;
    right: -12px;
  }
  .card-link__fkds {
    font-size: 1.8rem;
  }
  .card-link__fkds:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 16px 8px 0;
    border-color: transparent #c8d8e4 transparent transparent;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
  }
  .card-link-wrap {
    margin-top: var(--s2);
    padding: 0;
  }

  .sec-summary-orange {
    padding: 0 var(--s2) var(--s3);
  }
  .sec-summary-orange:before {
    height: 100%;
  }

  .card-checklist {
    padding: var(--s2);
  }
  .card-checklist__pic {
    width: 5.5rem;
    left: auto;
    right: var(--s1);
    top: -0.8rem;
  }
  .card-checklist__pic2 {
    width: 7rem;
    left: auto;
    right: var(--s1);
    top: -1rem;
  }

  .question .item .ttl01Wrap .illust.reverse {
    margin: 0;
    width: 5rem;
    position: absolute;
    left: auto;
    right: var(--s2);
    bottom: 0;
  }

  .question .ttl01Wrap .ttlBox {
    padding-top: 2.5rem;
  }

  .question .item .ttl01.reverse {
    margin: 0;
    padding: 0;
  }

  .question .ttl01--voice {
    text-align: left;
    font-size: 1.9rem;
  }
  .question .ttl01--voice::before {
    top: -1.4rem;
    left: 0;
    padding: 0;
  }

  .question .item:nth-child(odd) .ttl01Wrap .ttlBox {
    margin: 0;
  }

  .question .item .ttl01.normal {
    margin: 0;
    padding: 0;
  }

  .question .item .ttl01Wrap .illust.normal {
    width: 8rem;
  }

  .question .item:nth-child(even) .ttl01::before {
    left: 0;
  }

  .question .ttl02 {
    font-size: 1.8rem;
  }

  .schedule {
    padding: 0;
  }
  .schedule-term {
    padding-right: 1rem;
    border-radius: var(--s2);
    display: grid;
    align-items: start;
    grid-template-columns: var(--s6) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: var(--s1);
    row-gap: var(--s-2);
  }
  .schedule-term:before {
    top: var(--s3);
    transform: none;
  }
  .schedule-time {
    grid-column: 1;
    grid-row: 1/3;
    width: auto;
  }
  .schedule-act {
    grid-column: 2;
    grid-row: 1;
    width: auto;
  }
  .schedule-exp {
    grid-column: 2;
    grid-row: 2;
    flex: none;
  }

  .question .ttl02Wrap--second__right {
    width: 100%;
    padding: var(--s2) 0 0;
  }

  .item-inner {
    padding: 0;
  }

  .card-income {
    padding: 0 var(--s1) var(--s3);
  }

  .card-income__title {
    font-size: 1.4rem;
  }

  .card-income__num {
    font-size: 3.2rem;
  }
  .card-income__num span.sm {
    font-size: 2.1rem;
  }

  .card-income:nth-of-type(1):after {
    width: 5rem;
    transform: translateX(-50%) rotate(90deg);
    left: 50%;
    top: 97%;
  }

  .income-grid {
    grid-gap: 4.8rem;
  }

  .box-memo {
    padding: var(--s3) 0 var(--s3) var(--s3);
  }
  .box-memo:before {
    width: calc(100% + 2rem);
    background-position: 0 1.8rem;
  }
  .box-memo__title {
    font-size: 1.5rem;
  }

  .about-mr {
    flex-direction: column;
    gap: var(--s1);
  }
  .about-mr__term {
    width: 100%;
  }
  .about-mr__desc {
    width: 100%;
    margin-bottom: var(--s1);
    padding-left: var(--s2);
  }

  .box-interview {
    padding-left: 2rem;
    padding-right: 0;
  }
  .box-interview:before {
    width: calc(100% + 2rem);
    background-size: 16rem;
    background-position: 2rem 0.8rem;
  }
  .box-interview__title {
    font-size: 1.7rem;
  }
  .box-interview .btn-internal a {
    max-width: 100%;
    margin-bottom: 0;
  }

  .flow-lead {
    font-size: 2rem;
  }

  .sv_parts_wrap {
    padding: 0;
  }

  .sec-about {
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 2rem;
  }
  .sec-about .common-title {
    text-align: center;
  }

  .m_ttl__upper {
    margin: 0 auto var(--s1);
    font-size: 1.6rem;
  }

  .box-knowledge {
    padding: var(--s5) var(--s2) var(--s3);
  }
  .box-knowledge:after {
    height: 2.8rem;
    background-position: left bottom;
    left: var(--s2);
    top: -1rem;
  }
  .box-knowledge:before {
    height: 100%;
    width: 100%;
  }
  .box-knowledge .l-column__side02 {
    border: none;
  }
  .box-knowledge__title {
    font-size: 2rem;
  }
  .box-knowledge__pic {
    max-width: 100%;
    margin-bottom: 0;
  }

  .sec-support {
    padding-top: 10rem;
    background: url(img/txt-question2.png) no-repeat center top/96% auto, url(img/dot_bg04.png) repeat center/1.2rem auto, linear-gradient(transparent 22rem, #f9efcc 22rem);
  }
  .sec-support:before {
    height: 11rem;
    top: 22rem;
  }
  .sec-support .ttlWrap {
    display: block;
    background: none;
    width: 95%;
    height: auto;
    margin: auto auto var(--s3);
    padding: 0 0 10rem;
  }
  .sec-support .ttlWrap:before {
    width: 7rem;
    height: 10rem;
    left: 8rem;
    top: auto;
    bottom: 0;
    transform: none;
  }
  .sec-support .ttlWrap:after {
    width: 7rem;
    height: 10rem;
    left: auto;
    right: 8rem;
    top: auto;
    bottom: 0;
    transform: none;
  }
  .sec-support .with-arrow:before {
    content: none;
  }
  .sec-support .with-arrow:after {
    content: "";
    width: 100%;
    height: calc(100% + var(--s6));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(img/shape02.png) no-repeat left top/100% 100%;
    z-index: -1;
  }

  .sec-support__title {
    font-size: 2.2rem;
    padding: 1.5rem;
  }
  .sec-support__title span.sm {
    display: block;
    margin-top: var(--s2);
    font-size: 1.4rem;
  }

  .question--reverse {
    padding: 0 2rem;
  }
  .question--reverse .item:nth-child(odd) {
    padding: var(--s2) 0 var(--s2) var(--s2);
  }
  .question--reverse .item:nth-child(even) {
    padding: var(--s2) var(--s2) var(--s2) 0;
  }
  .question--reverse .q_block {
    margin-top: 0;
  }
  .question--reverse .btn-internal a {
    margin: var(--s2) auto 0;
  }

  .item-inner2 {
    padding: 0;
  }

  .line-center span.bg {
    width: 100%;
    display: inline-block;
    padding-right: var(--s1);
    padding-left: var(--s1);
    font-size: 1.3rem;
  }

  .card-training-grid {
    grid-gap: var(--s2);
  }

  .card-subject-grid {
    margin-top: var(--s3);
    grid-gap: var(--s4);
  }

  #feature .sec04_block {
    padding: 4rem 2rem 6rem;
    background-size: 1.2rem auto;
  }
  #feature .sec04_block:before {
    width: 18rem;
    height: 4rem;
    padding-top: 0;
    top: -1rem;
  }
  #feature .sec04_block:after {
    background: url(img/dot_bg04.png) repeat center/1.2rem auto, url("img/sec04_bg02.png") no-repeat left top/100% auto;
  }

  .sec-point {
    padding-top: var(--s5);
  }
  .sec-point .m_ttl__upper {
    margin-left: 0;
  }

  .sec-point + .sec-point {
    margin-top: var(--s5);
  }

  .sec-point__upper {
    gap: var(--s2);
    margin-bottom: var(--s3);
  }

  .point-title-en {
    height: 1.8rem;
  }

  .sec-point__title {
    font-size: 2rem;
  }

  .card-merit {
    padding-top: var(--s6);
  }
  .card-merit:before {
    top: var(--s2);
    left: var(--s3);
    height: 1.9rem;
    background-position: left center;
  }

  .card-merit-grid {
    grid-gap: var(--s3);
  }

  .sec-column {
    padding: 6rem 2rem;
  }
  .sec-column .common-title {
    font-size: 2.4rem;
    text-align: center;
  }

  .sec-column .eng_ttl {
    width: 90%;
    margin: 0 auto var(--s2);
  }

  /*
  ---------------------------------------------

       sp more-gradient

  */
  .more-gradient-sp-btn {
    width: 18rem;
    padding: var(--s1) var(--s5);
    background: #fff;
    border-radius: 10rem;
    border: solid 1px #666;
    display: block;
    font-size: 1.4rem;
    text-align: center;
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: var(--s2);
    z-index: 2;
    transform: translateX(-50%);
    transition: background-color 0.6s;
  }

  .more-gradient-sp-btn::before {
    content: "";
    width: var(--s2);
    height: 0.2rem;
    background: #ee6600;
    border-radius: 0.2rem;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%);
  }

  .more-gradient-sp-btn::after {
    content: "";
    width: 0.2rem;
    height: var(--s2);
    background: #ee6600;
    border-radius: 0.2rem;
    position: absolute;
    top: 50%;
    right: var(--s3);
    transform: translate(50%, -50%);
    transition: transform 0.6s;
  }

  .more-gradient-sp-btn.is-open::after {
    transform: translate(0, -50%) rotate(90deg);
  }

  .more-gradient-sp-content {
    height: 40rem;
    padding-bottom: var(--s6);
    overflow: hidden;
    position: relative;
    transition: height 0.6s ease;
  }

  .more-gradient-sp-content::after {
    content: "";
    width: 100%;
    height: 13rem;
    background: linear-gradient(to bottom, transparent, #fff);
    opacity: 1;
    visibility: visible;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  .more-gradient-sp-content.is-open::after {
    opacity: 0;
    visibility: hidden;
  }
}
