/* ---------- common --------- */
html {
  scroll-behavior: smooth;
}
:root {
  --mainColor: #f7701b;
  --bgColor01: #ffebe1;
}
.forPc {
    display: block;
}
.forSp {
    display: none;
}
@media screen and (max-width: 768px) {
    .forPc {
        display: none;
    }
    .forSp {
        display: block;
    }
}
#contents p {
    line-height: 1.5;
}
#contents .customHeading02 {
  background-color: var(--mainColor);
  color: #fff;
  font-size: 20px;
  padding: 15px 0;
  position: relative;
}
.customHeading02::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.customHeading02__inner {
  display: inline-block;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  background-color: var(--mainColor);
}
#contents .customHeading03 {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 23px;
}

.hasColor::first-letter {
  color: var(--mainColor);
}
@media screen and (max-width: 767px) {
    #contents .customHeading02 {
    font-size: 18px;
    padding: 8px 0;
}
.customHeading02__inner {
    padding: 0 15px;
}
.customHeading02::after {
    height: 1px;
}
#contents .customHeading03 {
  font-size: 18px;
}

}
/* ---------- schedule block --------- */

/* ---------- lead block --------- */

.reskillingLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.reskillingLogo img {
  object-fit: cover;
  height: 100%;
  display: inline-block;
}
.reskillingLogo__dhorizon {
  position: relative;
  width: 400px;
}
.reskillingLogo__dhw {
    width: 200px;
}
.reskillingLogo__cross {
  display: inline-block;
  width: 35px;
  height: 35px;
  /* background-image: url(downloadResource.viewer?path=/fdndh71847/Images/school/kumamoto/reskilling/icon_cross.webp); */
  background-size: cover;
}
.reskillingLogo__dhw {
}
.leadBlock h2 {
  text-align: center;
  margin-top: 1.5em !important;
  margin-bottom: 0.5em !important;
}
.leadBlock p {
  margin-bottom: 0.5em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .reskillingLogo {
    gap: 40px;
    flex-direction: column;
    gap: 15px;
}
.reskillingLogo__dhorizon {
    width: 180px;
}
.reskillingLogo__cross {
    width: 15px;
    height: 15px;
}
.reskillingLogo__dhw {
    width: 150px;
}
}
/* ---------- page in nav --------- */

.pageInNav {
  background-color: var(--bgColor01);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  margin: 100px 0;
}
.pageInNav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 15px;
  font-size: 12px;
  font-weight: bold;
  border-right: solid 1px var(--mainColor);
}
#contents .pageInNav__link {
  text-decoration: none;
}
.pageInNav__link:last-of-type {
  border-right: none;
}
.pageInNav__txt {
    text-align: center;
}
.pageInNav__arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: solid 1px var(--mainColor);
  border-bottom: solid 1px var(--mainColor);
  transform: rotate(45deg);
  position: relative;
  transition: transform ease 0.4s;
}
/* hover */
.pageInNav__link:hover .pageInNav__arrow {
  transform: translateY(3px) rotate(45deg);
}
@media screen and (max-width: 767px) {
    .pageInNav {
    flex-wrap: wrap;
    margin: 50px 0;
    padding-bottom: 30px;
}
#contents .pageInNav__link {
    width: calc(100% - 60px);
    flex-direction: row;
    justify-content: space-between;
    border-bottom: solid 1px var(--mainColor);
    border-right: none;
    margin: 0 30px;
    padding-right: 10px;
    padding-left: 0;
}
.pageInNav__arrow {
    width: 8px;
    height: 8px;
}
}
/* ---------- about block --------- */
.aboutBlock {
}
#contents .aboutBlock .customHeading02 {
    margin-bottom: 10px;
}
.aboutBlock__col {
  display: flex;
  gap: 70px;
  align-items: center;
  padding: 60px 0;
  border-bottom: solid 1px #eee;
}
.aboutBlock__col--reverse {
  flex-direction: row-reverse;
}
.aboutBlock__txt {
  width: 55%;
}
.aboutBlock__txt p {
  line-height: 1.5;
}
.aboutBlock__image {
  width: 45%;
}
.aboutBlock__image img {
  width: 100%;
}
.aboutBlock__detail {
    margin: 60px 0;
}
.aboutBlock__step {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}
.stepItem {
  background-color: var(--bgColor01);
  border-radius: 8px;
  padding: 20px 10px;
  padding-bottom: 110px;
  overflow: hidden;
}
#contents .stepItem__ttl {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}
.stepItem--row01 img {
    margin-top: 10px;
}
.arrowTxt {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 60px;
  width: calc(100% - 40px);
  background: var(--mainColor);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-top: -130px;
}
.arrowTxt::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 40px solid var(--mainColor);
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
}
@media screen and (max-width: 767px) {
    #contents .aboutBlock .customHeading02 {
        margin-bottom: 45px;
    }
    .aboutBlock__col {
    flex-direction: column;
    gap: 25px;
    padding: 0;
    margin-bottom: 50px;
}
.aboutBlock__txt {
    width: 100%;
}
.aboutBlock__image {
    width: 100%;
}
.aboutBlock__detail {
    margin: 30px 0;
}
.aboutBlock__step {
    gap: 6px;
    margin: 30px 0 20px;
    flex-wrap: wrap;
}
.stepItem {
    padding: 20px 3px;
    width: calc(50% - 3px);
}
#contents .stepItem__ttl {
    font-size: 14px;
}
.stepItem img {
    padding: 0 20px;
}
.arrowTxt {
    margin-top: 0;
    font-size: 16px;
    width: 100%;
    text-align: center;
}
.arrowTxt::after {
    display: none;
}
}
/* ---------- cta01 block --------- */
.ctaBlock01 {
    background-color: var(--bgColor01);
    border-radius: 20px;
    padding: 40px 60px 30px;
    margin: 60px 0;
    position: relative;
}
.ctaBlock01__txt {
    padding-right: 170px;
}
#contents .ctaBlock01__txt h3 {
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 1em;
}
.ctaBlock01__links {
    display: flex;
    gap: 20px;
}
.ctaBlock01__link {
    width: 250px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    color: var(--mainColor);
    border-radius: 50px;
    border: solid 2px var(--mainColor);
    font-weight: bold;
    padding: 0 2em;
    line-height: 50px;
    transition: all ease .4s;
}
#contents .ctaBlock01__link {
    text-decoration: none;
}
.ctaBlock01__link__arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: solid 1px var(--mainColor);
  border-bottom: solid 1px var(--mainColor);
  transform: translateX(10px) rotate(-45deg);
  position: relative;
  transition: transform ease 0.4s;
}
.ctaBlock01::after {
    /* content: "";
    display: inline-block;
    width: 180px;
    height: 194px;
    background-image: url(downloadResource.viewer?path=/fdndh71847/Images/school/kumamoto/reskilling/illust_woman01.webp);
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 30px;
    z-index: 1; */
}
.ctaBlock01__illust {
    display: inline-block;
    width: 180px;
    height: 194px;
    /* background-image: url(downloadResource.viewer?path=/fdndh71847/Images/school/kumamoto/reskilling/illust_woman01.webp); */
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 30px;
    z-index: 1;
}
/* hover */
.ctaBlock01__link:hover {
    transform: scale(1.03);
}
.ctaBlock01__link:hover .ctaBlock01__link__arrow {
  transform: translateX(15px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
    .ctaBlock01 {
    padding: 30px;
    margin: 40px 0;
    position: relative;
}
.ctaBlock01__txt {
    padding-right: 0;
}
#contents .ctaBlock01__txt h3 {
    font-size: 18px;
}
.ctaBlock01__links {
    gap: 20px;
    flex-direction: column;
}
.ctaBlock01__link {
    width: 220px;
}
/* .ctaBlock01::after {
    width: 80px;
    height: 87px;
    right: -40px;
} */
.ctaBlock01__illust {
    width: 80px;
    height: 87px;
    right: -40px;
}
}
/* ---------- course block --------- */
.courseBlock {}
.courseBlock__list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.courseBlock__item {
    width: calc((100% - 40px) / 2);
    border: solid 1px #eee;
    background-color: #fff;
    border-radius: 20px;
    transition: all ease .4s;
}
.courseBlock__item__link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px;
}
#contents .courseBlock__item__link {
    text-decoration: none;
}
.courseBlock__item__image {
    width: 100%;
}
.courseBlock__item__image img {
    width: 100%;
}
#contents  .courseBlock__item__ttl {
    background-color: inherit;
    color: var(--mainColor);
    font-size: 20px;
    margin: 1em 0;
}
.courseBlock__item__ttl__arrow {
      display: inline-block;
  width: 12px;
  height: 12px;
  border-right: solid 1px var(--mainColor);
  border-bottom: solid 1px var(--mainColor);
  transform: translateX(10px) rotate(-45deg);
  position: relative;
  transition: transform ease 0.4s;
  margin-left: 10px;

}
.courseBlock__item__desc {
    color: #1a1a1a;
}
.courseBlock__item__desc .em {
    color: #28a3c2;
}
.courseBlock__item:hover {
    transform: scale(1.01);
    filter: drop-shadow(5px 5px 10px #cccccc55);
}
@media screen and (max-width: 767px) {
    .courseBlock {
        margin-bottom: 50px;
    }
    .courseBlock__list {
        gap: 30px;
        flex-direction: column;
        margin: 0;
    }
    .courseBlock__item {
        width: 100%;
        border-radius: 15px;
    }
    #contents .courseBlock__item__ttl {
        font-size: 16px;
    }
    .courseBlock__item__ttl__arrow {
        display: none;
    }
}
/* ---------- course info block --------- */
.courseInfoBlock {
    padding: 60px 0;
    border-top: solid 1px #eee;
}
.courseInfoBlock__ttlWrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.courseInfoBlock__ttlWrapper .num {
    font-size: 36px;
    font-weight: bold;
    color: #808080;
}
#contents .courseInfoBlock__ttl {
    margin: 0;
}
.courseInfoBlock__col {
    display: flex;
    gap: 30px;
}
.courseInfoBlock__txt {
    width: 60%;
    padding-left: 60px;
}
#contents .courseInfoBlock__txt p {
    font-size: 14px;
}
.courseSpan {
    display: inline-flex;
    border: solid 1px var(--mainColor);
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    margin-top: 30px;
}
.courseSpan dt {
    background-color: var(--mainColor);
    color: #fff;
    padding: 0.1em 0.4em;
}
.courseSpan dd {
    padding: 0.1em 0.4em;
    color: var(--mainColor);
}
#contents .reskillingPrice {
    width: 450px;
    flex-shrink: 0;
    table-layout: fixed;
    margin: 0;
}
#contents .reskillingPrice th,#contents .reskillingPrice td {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}
#contents .reskillingPrice th {
    background-color: #808080;
}
#contents .reskillingPrice .normal {
    width: 24%;
}
#contents .reskillingPrice .price50 {
    width: 38%;
}
#contents .reskillingPrice .price70 {
    width: 38%;
}
#contents .reskillingPrice th.em {
    background-color: var(--mainColor);
}
#contents .reskillingPrice td.em {
    color: var(--mainColor);
}
.courseInfoBlock--pop .courseInfoBlock__ttl {
    position: relative;
}
.courseInfoBlock--pop .courseInfoBlock__ttl::before {
    content: "人気";
    display: inline-block;
    width: fit-content;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background-color: var(--mainColor);
    padding: 0.1em 0.8em;
    position: absolute;
    top: -30px;
    left: 0;
}
.courseInfoBlock--short .courseInfoBlock__ttl {
    position: relative;
}

.courseInfoBlock--short .courseInfoBlock__ttl::before {
    content: "締切間近";
    display: inline-block;
    width: fit-content;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background-color: var(--mainColor);
    padding: 0.1em 0.8em;
    position: absolute;
    top: -30px;
    left: 0;
}
@media screen and (max-width: 767px) {
    .courseInfoBlock {
    padding: 20px 0 40px;
}
.courseInfoBlock__ttlWrapper {
    gap: 15px;
    margin-bottom: 15px;
}
.courseInfoBlock__ttlWrapper .num{
    font-size: 28px;
}
.courseInfoBlock__col {
    flex-direction: column;
    gap: 20px;
}
.courseInfoBlock__txt {
    width: 100%;
    padding-left: 0;
}
.courseSpan {
    margin-top: 20px;
}
#contents .reskillingPrice {
    width: 100%;
}
#contents .reskillingPrice .normal {
    width: 50%;
}
.courseInfoBlock--pop , .courseInfoBlock--short {
    padding-top: 30px;
}
.courseInfoBlock--pop .courseInfoBlock__ttl::before {
    font-size: 11px;
    top: -20px;
}
.courseInfoBlock--short .courseInfoBlock__ttl::before {
    font-size: 11px;
    top: -20px;
}
}
/* ---------- interview block --------- */
.interviewBlock {
    margin: 100px 0;
}
.interviewBlock a {
    transition: opacity ease .4s;
}
.interviewBlock a:hover {
    opacity: 0.8;
}
@media screen and (max-width: 767px) {
    .interviewBlock {
        margin: 20px 0 60px;
    }
}
/* ---------- target block --------- */
.targetBlock {}
.targetBlock__list {
    display: flex;
    gap: 20px;
    margin: 60px 0;
}
.targetItem {
    width: 50%;
    border-radius: 25px;
    border: solid 2px var(--mainColor);
}
.targetItem--ok {
}
.targetItem--ng {
    border: solid 2px #808080;
}
.targetItem__head {
    background-color: var(--mainColor);
    border-radius: 20px 20px 0 0;
    padding: 30px;
    padding-right: 100px;
    position: relative;
}
.targetItem--ng .targetItem__head {
    background-color: #808080;
}
/* .targetItem__head::after {
    content: "";
    display: inline-block;
    width: 110px;
    height: 112px;
    background-image: url(downloadResource.viewer?path=/fdndh71847/Images/school/kumamoto/reskilling/illust_woman02.webp);
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 0;
} */
.targetItem__head__illust {
    display: inline-block;
    width: 110px;
    height: 112px;
    /* background-image: url(downloadResource.viewer?path=/fdndh71847/Images/school/kumamoto/reskilling/illust_woman02.webp); */
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 0;
}
/* .targetItem--ng .targetItem__head::after {
    background-image: url(downloadResource.viewer?path=/fdndh71847/Images/school/kumamoto/reskilling/illust_woman03.webp);
} */
.targetItem--ng .targetItem__head__illust {
    /* background-image: url(downloadResource.viewer?path=/fdndh71847/Images/school/kumamoto/reskilling/illust_woman03.webp); */
}

#contents .targetItem__ttl {
    margin: 0;
    font-size: 16px;
    color: #fff;
}
.targetItem__body {
    padding: 20px;
}
.targetItem__detail {
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px;
    margin-bottom: 20px;
}
.targetItem__detail li {
    font-weight: bold;
}
.targetItem__detail li::before {
    content: "・";
}
.targetItem__remarks {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 13px;
}
.targetBlock__term {
    padding: 60px 0;
    border-top: solid 1px #eee;
}
.targetBlock__term--70 {
    position: relative;
}
.targetBlock__term--70::before {
    content: "";
    display: inline-block;
    width: 300px;
    height: 40px;
    position: absolute;
    top: -20px;
    right: 0;
    background-color: #fff;
}
/* .targetBlock__term--70::after {
    content: "";
    display: inline-block;
    width: 128px;
    height: 195px;
    background-image: url(downloadResource.viewer?path=/fdndh71847/Images/school/kumamoto/reskilling/illust_money.webp);
    background-size: cover;
    background-color: #fff;
    position: absolute;
    top: -108px;
    right: 80px;
} */
.targetBlock__term--70__liiust {
    display: inline-block;
    width: 128px;
    height: 195px;
    /* background-image: url(downloadResource.viewer?path=/fdndh71847/Images/school/kumamoto/reskilling/illust_money.webp); */
    background-size: cover;
    background-color: #fff;
    position: absolute;
    top: -108px;
    right: 80px;
}
.targetBlock__term:last-of-type {
    padding-bottom: 0;
}
.targetBlock__term .small {
    font-size: 0.6em;
    margin-left: 2em;
}
.targetBlock__term__list li {
    padding-left: 1em;
    text-indent: -1em;
}
.targetBlock__term__list li::before {
    content: "・";
}
@media screen and (max-width: 767px) {
    .targetBlock__list {
    gap: 20px;
    margin: 30px 0 40px;
    flex-direction: column;
}
.targetItem {
    width: 100%;
    border-radius: 15px;
}
.targetItem__head {
    border-radius: 12px 12px 0 0;
    padding: 10px 20px;
    padding-right: 90px;
}
#contents .targetItem__ttl {
    font-size: 15px;
}
/* .targetItem__head::after {
    width: 80px;
    height: 82px;
} */
.targetItem__head__illust {
    width: 80px;
    height: 82px;
}
.targetItem--ng .targetItem__detail {
    margin-bottom: 0;
}
.targetBlock__term {
    padding: 40px 0;
}
/* .targetBlock__term--70::after {
    width: 49px;
    height: 75px;
    top: -42px;
    right: 0px;
} */
.targetBlock__term--70__illust {
    width: 49px;
    height: 75px;
    top: -42px;
    right: 0px;
}
.targetBlock__term--70::before {
    display: none;
}
}
/* ---------- q and a block --------- */
.qaBlock {}
.qaBlock__term {
    margin: 60px 0;
}
.qaBlock__list {}
.qaBlock__item {
    margin-bottom: 20px;
}
.qaBlock__item summary {
    background-color: var(--bgColor01);
    list-style: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    position: relative;
    padding-right: 40px;
    text-indent: -1.5em;
    line-height: 1.5;
    padding-left: calc(20px + 1.5em);
}
.qLabel {}
.qaBlock__item__arrow {
      display: inline-block;
  width: 12px;
  height: 12px;
  border-right: solid 2px var(--mainColor);
  border-bottom: solid 2px var(--mainColor);
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 14px;
  transition: transform ease 0.4s;
}
.qaBlock__item__a {
    padding: 20px;
    padding-left: calc(20px + 1.5em);
    text-indent: -1.5em;
    line-height: 1.5;
}
.aLabel {
    font-weight: bold;
    color: var(--mainColor);
}
/* open */
.qaBlock__item[open] .qaBlock__item__arrow {
  transform: translateY(5px) rotate(225deg);
}
@media screen and (max-width: 767px) {
    .qaBlock__term {
        margin: 40px 0;
    }
    .qaBlock__item__arrow {
    width: 8px;
    height: 8px;
    top: 14px;
}
}