.page-cyber-security-academy ol li, .page-cyber-security-academy ul li {
  list-style: none
}

.page-cyber-security-academy .l-main__body, .page-cyber-security-academy .l-main__contents {
  padding-bottom: 0
}

.xcockpit-note {
  font-size: 1.2rem
}

.l-main__body {
  padding-top: 0
}

@media only print, screen and (min-width:768px) {
  .p-category-menu__items {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: fit-content
  }
}

.cv-area {
  background-color: #fff5df;
  margin-left: calc(-50vw - -50%);
  margin-right: calc(-50vw - -50%);
  padding: 4rem calc(50vw - 50%)
}

@media only print, screen and (min-width:768px) {
  .cv-area .cv-area {
    padding: 6rem calc(50vw - 50%)
  }
}

.cv-area-list {
  column-gap: 3rem;
  display: grid;
  margin: 0 auto;
  max-width: 1200px;
  row-gap: 2rem
}

@media only print, screen and (min-width:768px) {
  .cv-area-list {
    display: flex
  }
}

.cv-area-list li {
  flex: 1
}

.cv-area-list li a {
  align-items: center;
  background-image: linear-gradient(90deg, #d33f00, #b63700);
  border-radius: 1.2rem;
  box-shadow: 0 0 2.2rem 0 #00000024;
  color: #fff;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 1.6rem;
  padding: 1.6rem 0;
  position: relative;
  text-align: center;
  text-decoration: none
}

.cv-area-list li a>* {
  position: relative;
  z-index: 1
}

.cv-area-list li a svg {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem
}

.cv-area-list li:nth-child(3) a {
  background: linear-gradient(90deg, #009d79, #008a6a)
}

@media only print, screen and (min-width:768px) {
  .cv-area-list li:nth-child(3) a:after {
    background: linear-gradient(90deg, #017c5f, #00644d)
  }

  .cv-area-list li a {
    font-size: 1.8rem;
    padding: 2.4rem 0
  }

  .cv-area-list li a:after {
    background-image: linear-gradient(90deg, #a33201, #7a2601);
    border-radius: 1.2rem;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity .3s ease 0s !important;
    width: 100%;
    z-index: 0
  }

  .cv-area-list li a:hover:after {
    opacity: 1
  }

  .cv-area-list li svg {
    right: 3rem;
    width: 3.2rem
  }
}

.cv-area__shoulder {
  column-gap: 1rem;
  display: grid;
  font-size: 1.8rem;
  font-weight: 700;
  grid-template-columns: .4rem auto .4rem;
  line-height: 1;
  margin: 0 auto;
  text-align: center;
  width: -webkit-fit-content;
  width: fit-content
}

.cv-area__shoulder:after {
  transform: translateY(.2rem) rotate(25deg)
}

.cv-area__shoulder:after, .cv-area__shoulder:before {
  background-color: #263b74;
  border-radius: 9999px;
  content: "";
  display: block;
  height: 1em;
  width: .4rem
}

.cv-area__shoulder:before {
  transform: translateY(.2rem) rotate(-25deg)
}

.p-index-header__bg-link {
  bottom: 0;
  left: 0;
  padding: 0 .5rem .5rem;
  position: absolute;
  width: 100%
}

@media only print, screen and (min-width:768px) {
  .p-index-header__bg-link {
    border-radius: 1.2rem;
    display: block;
    height: 17.8rem;
    inset: 7.2rem auto auto 50%;
    overflow: hidden;
    padding: 0;
    transform: translateX(24rem);
    width: 36rem
  }

  .p-index-header__bg-link img {
    position: relative;
    transition: opacity .3s ease 0s;
    vertical-align: bottom;
    z-index: 1
  }

  .p-index-header__bg-link:after {
    background-color: #fff;
    content: "";
    display: block;
    height: calc(100% - 2px);
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
  }

  .p-index-header__bg-link:hover img {
    opacity: .8
  }
}

.problem__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.problem__item {
  width: 100%;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.14);
}

.problem__item-title {
  font-weight: 500;
  color: #263B74;
}

@media (max-width: 767px) {
  .problem__item-title {
    margin-bottom: 1em;
  }

  .problem__item {
    max-width: 500px;
    margin-bottom: 30px;
  }

  .problem__item-inner {
    padding: 15px;
  }

  .problem__item-image {
    max-width: 250px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .problem__row {
    justify-content: space-between;
  }

  .problem__item {
    width: 49%;
    margin-bottom: 2%;
    padding: 20px 20px;
  }

  .problem__item-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
  }

  .problem__item-title {
    grid-row: 1/2;
    grid-column: 1/3;
  }

  .problem__item-text {
    grid-row: 2/3;
    grid-column: 1/2;
    padding-right: 10px;
  }

  .problem__item-button {
    grid-row: 3/4;
    grid-column: 1/2;
    padding-right: 32px;
  }

  .problem__item-image {
    grid-row: 2/4;
    grid-column: 2/3;
  }
}


.reason {
  background-color: #fff5df;
  margin-left: calc(-50vw - -50%);
  margin-right: calc(-50vw - -50%);
  padding: 6rem calc(50vw - 50%);
}

.reason__block {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.reason__block:last-of-type {
  margin-bottom: 0;
}

.reason__block-title {
  font-weight: 500;
  color: #263B74;
  margin-bottom: 10px;
}

.reason__block-unit {

  padding-right: 15px;
}

.reason__block-image figcaption {
  border: none;
  padding: 0;
  border-radius: none;
  width: 100%;
  margin-bottom: 0;
  text-align: left;
  font-size: 0.7em;
}

.reason__block-image-wrap {
  display: grid;
  grid-template-columns: 2.1fr 0.8fr;
  gap: 10px;
}

@media (max-width: 767px) {
  .reason__block {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reason__block-image {
    max-width: 400px;
    margin: 0 auto;
  }
}


.lineup__figure {
  text-align: center;
}


.lineup__block-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.lineup__block-title {
  margin-bottom: 20px;
}

.lineup__item {
  width: 49%;
  margin-bottom: 2%;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.14);
  border-radius: 20px;
  height: 100%;
}

.lineup__item-title {
  background-color: #263B74;
  padding: 1em;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.lineup__item-unit {
  padding: 1.5em;
}

.lineup__item dl {
  display: flex;
  font-size: 1.4rem;
  margin-bottom: 10px;
  align-items: flex-start;
}

.lineup__item dt {
  background-color: #263B74;
  color: #fff;
  min-width: 80px;
  text-align: center;
  margin-right: 20px;
  padding: 2px 11px;
}

.lineup__block-02 .lineup__item-title,
.lineup__block-02 .lineup__item dt {
  background: #197a4b;
}

.lineup__block-03 .lineup__item-title,
.lineup__block-03 .lineup__item dt {
  background: #896900;
}

.lineup__block-04 .lineup__item-title,
.lineup__block-04 .lineup__item dt {
  background: #cc287e;
}

@media (max-width: 767px) {
  .lineup__item-unit {
      padding: 1em;
  }

  .lineup__item {
    width: 100%;
    margin-bottom: 30px;
  }

  .lineup__item dl {
    font-size: 1.3rem;
  }

  .lineup__item dt {
    min-width: 70px;
    margin-right: 15px;
    padding: 2px 4px;
  }
}

.bottom-banner a {
  border-radius: 1.2rem;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  width: -webkit-fit-content;
  width: fit-content
}

@media only print, screen and (min-width:768px) {
  .bottom-banner a {
    transition: opacity .2s ease 0s
  }

  .bottom-banner a:hover {
    opacity: .8
  }
}