main {
  margin-top: 60px;
}

@media screen and (min-width:769px) {
  main {
    margin-top: 135px;
  }
}

.-is-color-red {
  color: #FF3F00;
}

.-is-color-blue {
  color: var(--color-accent);
}

.-is-color-gold {
  color: #ca9c11;
}

.-is-color-link {
  color: #0000EE !important;
}

.-is-text-align-center {
  text-align: center;
}

.-is-text-align-center_SP {
  text-align: center;
}

.-is-text-align-right {
  text-align: right;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb10 {
  margin-bottom: 10px;
}

@media screen and (min-width:769px) {
  .-is-text-align-center_SP {
    text-align: left;
  }
}

.-is-black-link {
  text-decoration: none;
  color: var(--color-def);
  border-bottom: var(--color-def) solid 1px;
}

.-is-black-link:hover {
  border-bottom: none;
}

/*
/////////////////////////////////////////////////////

ホバー時の処理

/////////////////////////////////////////////////////
*/
@media screen and (min-width:769px) {
  a:hover {
    opacity: 0.7;
  }
}


/*
/////////////////////////////////////////////////////

SPとPCの表示切替

/////////////////////////////////////////////////////
*/
.forSP {
  display: block;
}

.forPC {
  display: none;
}

@media screen and (min-width:769px) {
  .forSP {
    display: none;
  }

  .forPC {
    display: block;
  }
}

/*
/////////////////////////////////////////////////////

汎用パーツ

/////////////////////////////////////////////////////
*/

/*
ボタンデザイン
*/
.CF-btn {
  display: block;
  text-decoration: none;
  font-size: var(--fs-component-16);
  line-height: 1.6;
  background: url(/ns/ps/_assets/images/svg/arrow_blue.svg) no-repeat var(--color-base);
  background-position: right 18px center;
  background-size: auto 17px;
  color: var(--color-dark-blue);
  border: var(--color-dark-blue) solid 2px;
  border-radius: 100px;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 14px 18px;
}

.CF-btn.-color-brown {
  color: var(--color-dark-brown);
  border: currentColor solid 2px;
  background: url(/ns/ps/_assets/images/svg/arrow01_brown.svg) no-repeat var(--color-base);
  background-position: right 18px center;
  background-size: auto 17px;
}

.CF-btn.-color-black {
  color: #333333;
  border: currentColor solid 2px;
  background: url(/ns/ps/_assets/images/svg/arrow01_black.svg) no-repeat var(--color-base);
  background-position: right 18px center;
  background-size: auto 17px;
}

.CF-btn.-color-normal {
  color: var(--color-def);
  border: currentColor solid 1px;
  background: url(/ns/ps/_assets/images/svg/arrow01_black.svg) no-repeat var(--color-base);
  background-position: right 18px center;
  background-size: auto 17px;
}

.CF-btn.-color-reverse {
  color: var(--color-base);
  border: currentColor solid 2px;
  background: url(/ns/ps/_assets/images/svg/arrow01_white.svg) no-repeat var(--color-accent);
  background-position: right 18px center;
  background-size: auto 17px;
}

.CF-btn.-color-inversion {
  background-image: none;
  position: relative;
}

.CF-btn.-color-inversion::before {
  content: "";
  background: url(/ns/ps/_assets/images/svg/arrow01_black.svg) center center no-repeat;
  background-size: contain;
  width: 10px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%) rotate(180deg);
}

.CF-btn.-has-much-content {
  background-position: right 10px center;
  background-size: auto 12px;
  padding: 14px 28px;
}

@media screen and (min-width:769px) {
  .CF-btn {
    font-weight: bold;
  }

  .CF-btn.-has-much-content {
    padding: 14px 40px;
    width: fit-content;
    margin: 0 auto;
  }
}

/*
ボタン配置
*/
.CF-component-btn {
  text-align: center;
  margin-top: 20px;
}

.CF-component-btn.-is-right {
  text-align: right;
}

.CF-component-btn.-is-left {
  text-align: left;
}

.CF-component-btn.-is-bottom {
  margin-bottom: 20px;
}

.CF-btn.-is-variable {
  display: inline-block;
  width: fit-content;
  padding: 14px 40px;
  background-size: auto 14px;
}

/* /ボタン配置 */

/*
番号なしリスト
*/
.CF-unordered-list {
  list-style: none;
  padding-left: 0;
}

.CF-unordered-list li {
  position: relative;
  padding-left: 20px;
}

.CF-unordered-list li::before {
  content: "・";
  position: absolute;
  font-weight: 500;
  display: block;
  top: 0;
  left: 0;
}

/* /番号なしリスト */

/*
ボタン付きカード
*/

.CF-sample-card-data {
  background: #f0ede3;
  border: #cccccc solid 5px;
  margin-bottom: 32px;
}

.CF-sample-card-data.-is-accent {
  background: #ffe9e2;
  border: var(--color-accent) solid 5px;
}

.CF-sample-card-data:last-child {
  margin-bottom: 0;
}

.CF-sample-card-group {
  padding: 15px 15px;
}

.CF-sample-card-title {
  font-size: var(--fs-component-20);
  font-weight: 800;
}

.CF-sample-card-text {
  margin-top: 10px;
  font-size: var(--fs-component-16);
}

.CF-sample-card-text strong {
  font-size: var(--fs-component-20);
  color: #ff7629;
  font-weight: 900;
  background: linear-gradient(to top, #ffff00 0%, #ffff00 55%, transparent 55%, transparent 100%);
}

.CF-sample-card-img img {
  vertical-align: bottom;
  width: 100%;
}

.CF-sample-card-btn {
  margin-top: 15px;
}

@media screen and (min-width:769px) {
  .CF-sample-card-data {
    display: flex;
    flex-flow: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .CF-sample-card-data {
    padding: 30px;
    margin-bottom: 50px;
  }

  .CF-sample-card-data:last-child {
    margin-bottom: 0;
  }

  .CF-sample-card-img {
    width: 260px;
    margin-right: 30px;
    flex-shrink: 0;
  }

  .CF-sample-card-group {
    width: 73%;
    padding: 0;
  }

  .CF-sample-card-title {
    font-size: 30px;
  }

  .CF-sample-card-title.-is-small {
    font-size: 24px;
  }

  .CF-sample-card-text {
    margin-top: 5px;
    font-size: var(--fs-component-18);
    font-weight: 600;
  }

  .CF-sample-card-text strong {
    font-size: 24px;
  }

  .CF-sample-card-btn {
    max-width: 420px;
    margin-top: 22px;
  }

  .CF-sample-card-btn.-is-large {
    max-width: 600px;
  }
}

/* /ボタン付きカード */

/* コンテンツタイトル */
.CF-contents-header-title {
  background-color: var(--color-cream);
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
  height: 140px;
}

.CF-contents-header-title-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.CF-contents-header-title span {
  font-size: 24px;
  line-height: 1.42;
  font-weight: bold;
  position: relative;
  padding-left: 10px;
}

.CF-contents-header-title span.-is-icon-calendar {
  padding-left: 50px;
}

.CF-contents-header-title span.-is-icon-calendar::before {
  content: "";
  background: url(/ns/ps/_assets/images/svg/icn_calendar.svg) center center no-repeat;
  background-size: contain;
  width: 46px;
  height: 50px;
  display: block;
  position: absolute;
  top: -12px;
  left: -5px;
}

.CF-contents-header-title span.-is-icon-about {
  padding-left: 50px;
}

.CF-contents-header-title span.-is-icon-about::before {
  content: "";
  background: url(/ns/ps/_assets/images/svg/icn_about.svg) center center no-repeat;
  background-size: contain;
  width: 46px;
  height: 50px;
  display: block;
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

.CF-contents-header-title span.-is-icon-exam {
  padding-left: 50px;
}

.CF-contents-header-title span.-is-icon-exam::before {
  content: "";
  background: url(/ns/ps/_assets/images/svg/icn_exam.svg) center center no-repeat;
  background-size: contain;
  width: 46px;
  height: 50px;
  display: block;
  position: absolute;
  top: -12px;
  left: -5px;
}

.CF-contents-header-title span.-is-icon-qa {
  padding-left: 50px;
}

.CF-contents-header-title span.-is-icon-qa::before {
  content: "";
  background: url(/ns/ps/_assets/images/svg/icn_qa.svg) center center no-repeat;
  background-size: contain;
  width: 50px;
  height: 60px;
  display: block;
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

.CF-contents-header-title span.-is-icon-voice {
  padding-left: 86px;
}

.CF-contents-header-title span.-is-icon-voice::before {
  content: "";
  background: url(/ns/ps/_assets/images/svg/icn_voice.svg) center center no-repeat;
  background-size: contain;
  width: 86px;
  height: 50px;
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: -8px;
  transform: translateY(-50%);
}

.CF-contents-header-title span.-is-icon-column {
  padding-left: 86px;
}

.CF-contents-header-title span.-is-icon-column::before {
  content: "";
  background: url(/ns/ps/_assets/images/svg/icn_column.svg) center center no-repeat;
  background-size: contain;
  width: 86px;
  height: 50px;
  display: block;
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

.CF-contents-header-title span.-is-icon-pen {
  padding-left: 66px;
}

.CF-contents-header-title span.-is-icon-pen::before {
  content: "";
  background: url(/ns/ps/_assets/images/common/logo_pen.png) center center no-repeat;
  background-size: contain;
  width: 55px;
  height: 50px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

.CF-contents-header-title span.-is-icon-office::before {
  content: "";
  background: url(/ns/ps/_assets/images/svg/icn_office.svg) center center no-repeat;
  background-size: contain;
  width: 82px;
  height: 47px;
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  left: -86px;
  transform: translateY(-50%);
}

@media screen and (min-width:769px) {
  .CF-contents-header-title {
    position: relative;
    height: 160px;
    margin-bottom: 50px;
  }

  .CF-contents-header-title span {
    font-size: 30px;
    line-height: 1.5;
    padding-left: 0px;
  }

  .CF-contents-header-title span.-is-icon-calendar::before {
    top: 50%;
    left: -15px;
    transform: translate(0, -50%);
  }

  .CF-contents-header-title span.-is-icon-about::before {
    left: -8px;
  }

  .CF-contents-header-title span.-is-icon-exam::before {
    top: 50%;
    left: -15px;
    transform: translate(0%, -50%);
  }

  .CF-contents-header-title span.-is-icon-voice::before {
    left: -10px;
  }

  .CF-contents-header-title span.-is-icon-column::before {
    left: -10px;
  }

  .CF-contents-header-title span.-is-icon-office::before {
    left: -98px;
  }
}

/* コンテンツタイトル */

/*
絞り込みパーツ
*/
.CF-filter {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: var(--color-def) solid 3px;
  margin-bottom: 28px;
}

.CF-filter-title {
  position: relative;
  font-size: var(--fs-component-24);
  line-height: 28px;
  width: 100%;
}

.CF-filter-title span {
  position: relative;
  padding-left: 35px;
  font-weight: 800;
}

.CF-filter-title span::before {
  position: absolute;
  content: "";
  background: url(/ns/ps/_assets/images/svg/icon-filter.svg) center center no-repeat;
  background-size: contain;
  width: 25px;
  height: 21px;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
}

.CF-filter-btn {
  margin: 14px 5px 0px;
}

.CF-filter-btn a {
  display: inline-block;
  text-decoration: none;
  color: var(--color-def);
  font-size: var(--fs-component-12);
  padding: 7px 20px;
  background: var(--color-base);
  border: var(--color-def) solid 1px;
  border-radius: 20px;
}

@media screen and (min-width:769px) {
  .CF-filter {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 0px;
    border-bottom: var(--color-def) solid 3px;
    margin-bottom: 28px;
  }

  .CF-filter-title {
    position: relative;
    font-size: var(--fs-component-24);
    line-height: 28px;
    width: auto;
    margin: 0 10px 14px 0;
  }

  .CF-filter-btn {
    margin-left: 0;
    margin-top: 0px;
    margin-bottom: 14px;
  }

  .CF-filter-btn a {
    display: inline-block;
    text-decoration: none;
    color: var(--color-def);
    font-size: var(--fs-component-16);
    padding: 7px 28px;
    background: var(--color-base);
    border: var(--color-def) solid 1px;
    border-radius: 20px;
    margin: 0 0 0 10px;
  }

  .CF-filter-btn a:hover {
    opacity: 0.7;
  }
}

/* /絞り込みパーツ */


/*
アンカーナビ
*/
.CF-anchor-nav {
  border: 1px solid #cccccc;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 50px;
}

.CF-anchor-nav ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}

.CF-anchor-nav ul li {
  font-size: var(--fs-component-16);
  line-height: 1.25;
  border-top: #ccc solid 1px;
  flex-grow: 1;
  width: 50%;
  font-size: 16px;
  padding: 10px 0px
}

.CF-anchor-nav li:last-child a::before {
  content: "";
  position: absolute;
  background: #ccc;
  width: 1px;
  height: 20px;
  display: block;
  left: 0px;
}

.CF-anchor-nav ul li:first-child {
  width: 100%;
  border-top: none;
}

.CF-anchor-nav ul li.-is-description {
  background: var(--color-cream);
  padding: 10px;
}

.CF-anchor-nav ul li.-is-description strong {
  color: var(--color-red);
}

.CF-anchor-nav ul li a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  position: relative;
}

.CF-anchor-nav ul li a span {
  position: relative;
  padding-left: 20px;
}

.CF-anchor-nav ul li a span::before {
  position: absolute;
  content: "";
  background: url(/ns/ps/_assets/images/svg/arrow02_black.svg) center center no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
}

@media screen and (min-width:769px) {
  .CF-anchor-nav {
    border-radius: 100px;
    overflow: hidden;
  }

  .CF-anchor-nav ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .CF-anchor-nav ul li {
    text-align: center;
    padding: 0px;
    line-height: 3.5;
    border-top: none;
    align-self: stretch;
    position: relative;
    width: auto;
    white-space: nowrap;
    font-size: 14px;
  }

  .CF-anchor-nav li:last-child a::before {
    background: transparent;
  }

  .CF-anchor-nav ul li.-is-description {
    order: 1;
    flex-grow: 1;
    text-align: center;
    padding: 0px;
  }

  .CF-anchor-nav ul li.-is-description::before {
    display: none;
  }


  .CF-anchor-nav ul li:last-child::before {
    display: none;
  }

  .CF-anchor-nav ul li::before {
    content: "";
    position: absolute;
    display: block;
    background: #ccc;
    width: 1px;
    height: 20px;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
  }

  .CF-anchor-nav ul li a {
    padding: 0px 58px;
    text-decoration: none;
  }

  .CF-anchor-nav ul li a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width:820px) {
  .CF-anchor-nav ul li {
    font-size: 16px;
  }
}

/* /アンカーナビ */

/*
コンテンツナビ
*/
.CF-contents-nav {
  margin: 30px 0;
}

.CF-contents-nav ul {
  list-style: none;
  padding-left: 0;
  border: #cccccc solid 1px;
  border-radius: 5px;
}

.CF-contents-nav ul li:first-child {
  border-top: none;
}

.CF-contents-nav ul li {
  border-top: #ccc solid 1px;
}

.CF-contents-nav ul li a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 10px 10px 10px 28px;
  background: url(/ns/ps/_assets/images/svg/arrow03_black.svg) left 10px center no-repeat;
  background-size: 15px 15px;
  font-size: var(--fs-component-16);
  line-height: 18px;
}

.CF-contents-nav ul li.-is-active a {
  background: url(/ns/ps/_assets/images/svg/arrow03_black.svg) left 10px center no-repeat var(--color-cream);
  background-size: 15px 15px;
  color: var(--color-def);
}

@media screen and (min-width:769px) {
  .CF-contents-nav ul {
    display: flex;
    flex-flow: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .CF-contents-nav ul li {
    position: relative;
    border-top: none;
    flex-grow: 1;
    align-self: stretch;
  }

  .CF-contents-nav ul li::before {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: calc(100% - 30px);
    background: #ccc;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
  }

  .CF-contents-nav ul li:first-child::before {
    display: none;
  }

  .CF-contents-nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 36px;
    background: url(/ns/ps/_assets/images/svg/arrow03_black.svg) left 15px center no-repeat;
    background-size: 15px 15px;
    height: 100%;
    text-align: center;
  }

  .CF-contents-nav ul li.-is-active a {
    background: url(/ns/ps/_assets/images/svg/arrow03_black.svg) left 15px center no-repeat var(--color-cream);
    background-size: 15px 15px;
    color: var(--color-def);
  }

  .CF-contents-nav ul li a:hover {
    opacity: 0.7;
  }
}

/* /コンテンツナビ */

/*
2カラムコンテンツ
*/
.CF-column02 {
  margin-top: 23px;
}

.CF-column02-data {
  margin-top: 20px;
}

.CF-column02-data:first-child {
  margin-top: 0px;
}

@media screen and (min-width:769px) {
  .CF-column02 {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 0 0 -30px;
  }

  .CF-column02-data {
    width: calc((100% / 2) - 30px);
    margin: 0 0 0 30px;
    align-self: stretch;
  }

  .CF-top-cc-small-btn .CF-btn {
    font-size: var(--fs-component-14);
  }
}

/* /2カラムコンテンツ */

/*
背景色付きカードリスト
*/
.CF-card-data {
  display: flex;
  flex-flow: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 0px 33px -17px #b5b5b5;
  height: 100%;
}

.CF-card-img {
  width: 90px;
  margin-right: 20px;
  flex-shrink: 0;
}

.CF-column-group {
  flex-grow: 1;
}

.CF-card-btn {
  margin-top: 10px;
}

.CF-card-btn .CF-btn {
  padding: 4px 18px;
  font-size: var(--fs-component-14);
}

.CF-card-list-box {
  background: #fff;
  box-shadow: 0px 0px 33px -17px #b5b5b5;
  padding: 20px;
  margin-top: 20px;
}

.CF-card-list-text {
  font-size: var(--fs-component-18);
  line-height: 32px;
}

.CF-card-list-btn {
  margin-top: 20px;
}

.CF-card-list-btn .CF-btn {
  padding: 4px 18px;
}


@media screen and (min-width:769px) {
  .CF-card-img {
    width: 120px;
  }

  .CF-card-btn {
    margin-top: 30px;
    max-width: 250px;
  }

  .CF-card-btn .CF-btn {
    font-size: var(--fs-component-16);
    padding: 4px 30px;
  }

  .CF-card-list-box {
    display: flex;
    flex-flow: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    margin-top: 30px;
  }

  .CF-card-list-text {
    position: relative;
    padding-left: 0px;
  }

  .CF-card-list-btn {
    margin-top: 0px;
  }

  .CF-card-list-btn .CF-btn {
    padding: 14px 30px;
  }
}

/* /背景色付きカードリスト */

/*
汎用画像+テキスト
*/
.CF-it {
  margin: 20px 0;
}

.CF-it-img img {
  vertical-align: bottom;
  width: auto;
}

.CF-it-data {
  background: #fff;
  padding: 15px 15px 30px;
}

.CF-it-data-no-img {
  background: #fff;
  padding: 0px 15px 30px;
}

.CF-it-title {
  font-size: var(--fs-component-18);
  line-height: 38px;
  font-weight: 700;
  text-align: center;
}

.CF-it-title strong {
  font-size: 30px;
  color: #ff6937;
  font-weight: 800;
}

.CF-it-title span {
  font-size: var(--fs-component-14);
}

.CF-it-btn {
  margin-top: 20px;
}

.CF-it-btn .CF-btn {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media screen and (min-width:769px) {
  .CF-it {
    display: flex;
    flex-flow: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
  }

  .CF-it.-is-reverse {
    flex-flow: row-reverse;
  }

  .CF-it .CF-it-data {
    flex-grow: 1;
    padding: 0 0 0 40px;
    width: calc(50% - 40px);
  }

  .CF-it-data-no-img {
    padding: 0;
  }

  .CF-it .CF-it-data>*:first-child {
    margin-top: 0;
  }

  .CF-it .CF-it-data>*:last-child {
    margin-bottom: 0;
  }

  .CF-it.-is-reverse .CF-it-data {
    padding: 0 40px 0 0;
  }

  .CF-it.-is-asym .CF-it-data {
    width: calc(75% - 40px);
  }

  .CF-it-img {
    flex-shrink: 0;
    width: calc(50%);
  }

  .CF-it.-is-asym .CF-it-img {
    width: calc(25%);
  }

  .CF-it-img img {
    vertical-align: bottom;
    object-fit: cover;
  }

  .CF-it-title {
    font-size: var(--fs-component-24);
    line-height: 46px;
    text-align: left;
  }

  .CF-it-title strong {
    font-size: 42px;
  }

  .CF-it-btn {
    max-width: 350px;
  }

  .CF-it-btn .CF-btn {
    font-size: var(--fs-component-14);
  }
}

/* /汎用画像+テキスト */


/*
汎用2カラム(大)
*/
.CF-large-column02-data .CF-img {
  text-align: center;
}

.CF-it-img.-is-auto {
  text-align: center;
}

.CF-it-img.-is-auto img {
  width: auto;
}

.CF-large-column02-data .CF-img img {
  vertical-align: bottom;
  box-shadow: 12px 5px 14px -10px #777777;
  width: 160px;
}

.CF-large-column02-data .CF-img.-is-learn-reference-video img {
  width: 380px;
}

.CF-book-card-data {
  background: var(--color-cream);
  margin-bottom: 32px;
}

.CF-book-card-data:last-child {
  margin-bottom: 0;
}

.CF-book-card-group {
  padding: 15px;
}

.CF-book-card-group .CF-book-card-data-table a {
  color: var(--color-accent);
}

.CF-book-card-group>*:first-child {
  margin-top: 0;
}

.CF-book-card-group>*:last-child {
  margin-bottom: 0;
}

.CF-book-card-title {
  font-size: var(--fs-component-18) !important;
  font-weight: 700 !important;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #ff6937;
  border-bottom: #ff6937 solid 2px;
}

.CF-book-card-list {
  list-style: none;
  padding-left: 0;
}

.CF-book-card-list li {
  font-size: var(--fs-component-16);
  line-height: 28px;
  font-weight: 600;
}

.CF-book-card-list li.-is-color {
  color: var(--color-accent);
}

.CF-book-card-flow {
  background: #666;
}

.CF-book-card-flow a {
  display: block;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  color: var(--color-base);
}

.CF-book-card-flow a span {
  position: relative;
  padding-left: 25px;
}

.CF-book-card-flow a span::before {
  content: "";
  position: absolute;
  display: block;
  background: url(/co/_assets/images/svg/white-circle-arrow.svg) center center no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translate(0, -50%) rotate(90deg);
  left: 0px;
}

.CF-book-card-btn {
  margin: 10px auto 0;
  max-width: 300px;
}


.CF-book-card-btn .CF-btn {
  line-height: 18px;
}

/*---250312追加--*/


.CF-book-card-data-table td ul{
  padding-left: 0px;
  position: relative;
}
.CF-book-card-data-table td ul li{
list-style: none;
margin-left: 15px;
}
.CF-book-card-data-table td ul li::before{
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0px;
}

@media screen and (min-width:769px) {
  .CF-book-card-data-table td ul{
    padding-left: 0px;
    position: relative;
  }
  .CF-book-card-data-table td ul li{
  list-style: none;
  margin-left: 15px;
  }
  .CF-book-card-data-table td ul li::before{
    content: "・";
    display: inline-block;
    position: absolute;
    left: 0px;
  }

}

@media screen and (min-width:769px) {
  .CF-large-column02 {
    display: flex;
    flex-flow: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .CF-large-column02-data:nth-child(1) {
    flex-shrink: 0;
  }

  .CF-large-column02-data:nth-child(2) {
    flex-grow: 1;
  }

  .CF-large-column02-data .CF-img {
    margin-right: 32px;
  }

  .CF-it-img.-is-auto img {
    width: 100%;
  }

  .CF-large-column02-data .CF-component-text:first-child {
    margin-top: 0;
  }

  .CF-large-column02-data .CF-img {
    margin-top: 0;
  }

  .CF-book-card {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    margin: 0 0 0 -30px;
  }


  .CF-book-card-data {
    width: calc((100% / 2) - 30px);
    margin: 0 0 0 30px;
    align-self: stretch;
    position: relative;
    padding-bottom: 60px;
    flex-grow: 1;
  }

  .CF-book-card-data.-no-bottom-btn {
    padding-bottom: 0px;
  }

  .CF-book-card-data.-is-nobtn {
    padding-bottom: 0px;
  }

  .CF-book-card-group {
    padding: 30px;
  }

  .CF-book-card-flow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .CF-book-card-flow a {
    padding: 18px 0;
  }

  .CF-book-card-flow a:hover {
    opacity: 0.7;
  }

  .CF-book-card-list+.CF-book-card-btn {
    margin-top: 32px;
  }

  .CF-book-card-btn {
    margin: 10px auto 0;
    max-width: 300px;
  }

  .CF-book-card-btn .CF-btn {
    padding: 12px 30px;
    font-weight: 500;
    background: url(/ns/ps/_assets/images/svg/arrow_blue.svg) right 10px center no-repeat var(--color-base);
    background-size: auto 12px;
  }
}

/* /汎用2カラム(大) */

/*
汎用テキスト
*/
.CF-component-text {
  font-size: var(--fs-component-16);
  line-height: 1.75;
  font-weight: 500;
  margin: 15px 0 30px;
}

.CF-component-text span.-is-accent {
  color: #ff2828;
}

.CF-component-text a {
  text-decoration: none;
  color: var(--color-def);
  border-bottom: var(--color-def) solid 1px;
  word-break: break-all;
}

.CF-component-text h6 {
  margin: 20px 0;
  border-left: 3px solid var(--color-green);
  padding-left: 10px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--color-green);
}

.CF-component-text.-is-right {
  text-align: right;
}

@media screen and (min-width:769px) {
  .CF-component-text {
    margin: 20px 0;
  }

  .CF-component-text a:hover {
    border-bottom: none;
  }
}

/* /汎用テキスト */

/*
汎用見出し(中)
*/
.CF-heading-meddium {
  color: var(--color-base);
  font-size: var(--fs-component-20);
  line-height: 1.8;
  background: var(--color-dark-blue);
  padding: 10px;
  border-left: var(--color-accent) solid 5px;
  font-weight: bold;
}

.CF-heading-meddium span.-is-end {
  display: block;
  background: #ec0000;
  padding: 4px 6px;
  border-radius: 2px;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  margin-bottom: 5px;
}

@media screen and (min-width:769px) {
  .CF-heading-meddium {
    position: relative;
    font-size: var(--fs-component-24);
    line-height: 36px;
    padding: 12px 20px;
    margin: 50px 0 30px;
  }

  .CF-heading-meddium span.-is-end {
    position: absolute;
    width: fit-content;
    top: 0;
    right: 0;
  }
}

/* /汎用見出し(中) */

/*
背景色付き見出しH2
*/
.CF-heading-bgtitle {
  background: var(--color-cream);
  padding: 7px 10px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.CF-heading-bgtitle.-has-underline {
  border-bottom: solid 2px #ccc;
}

.CF-heading-bgtitle.-has-smart-underline {
  border-bottom: solid 1px #ccc;
}

.CF-heading-bgtitle.-is-bg-transparent {
  background-color: transparent;
  color: var(--color-accent);
}

.CF-heading-bgtitle > span {
  display: flex;
  align-items: center;
  padding-left: 15px;
  font-size: var(--fs-component-18);
  line-height: 20px;
  border-left: var(--color-accent) solid 5px;
  font-weight: bold;
}

@media screen and (min-width:769px) {
  .CF-heading-bgtitle {
    padding: 8px 15px 8px 15px;
    margin: 40px 0 20px;
  }

  .CF-heading-bgtitle > span {
    font-size: var(--fs-component-20);
    line-height: 24px;
    font-weight: 800;
  }
}

/*
出典
*/
.CF-component-refer {
  text-align: right;
}

.CF-component-refer a {
  color: var(--color-accent);
}

/*
汎用テーブル
*/
.CF-table {
  overflow: auto;
  margin: 30px 0;
}

.CF-table table {
  min-width: 680px;
  border-collapse: collapse;
}

.CF-table.inline {
  overflow: auto;
  margin: 0;
}

.CF-table.inline table {
  min-width: auto;
  width: auto;
}

.CF-table.-is-visible {
  overflow: visible;
}

.CF-table.-is-visible table {
  min-width: auto;
  width: 100%;
}

.CF-table table th {
  color: var(--color-base);
  background: var(--color-accent);
  font-size: var(--fs-component-14);
  white-space: nowrap;
  padding: 15px 3px;
  border: #ccc solid 1px;
}

.CF-table table td {
  background: #fff;
  font-size: var(--fs-component-14);
  border: #ccc solid 1px;
  padding: 10px;
  text-align: left;
}

.CF-table td.-is-center {
  text-align: center;
}

.CF-table table .-is-head {
  background: var(--color-cream);
  color: var(--color-def);
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

.CF-table table .-color-second {
  background: var(--color-cream);
  color: var(--color-def);
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

.CF-table table .-color-third {
  background: #7F7F7F;
  color: var(--color-base);
  font-weight: 700;
  white-space: nowrap;
  text-align: left;
}

.CF-table table span.-is-entry {
  background: #ec0000;
  padding: 2px 6px;
  border-radius: 2px;
  text-align: center;
  font-size: 12px;
  display: inline-block;
  color: #fff;
}

.CF-table table a {
  color: var(--color-def);
}

.CF-table table thead.-smart-row th,
.CF-table table thead.-smart-row td {
  padding-top: 6px;
  padding-bottom: 6px;
}

.CF-table table tbody.-smart-row th,
.CF-table table tbody.-smart-row td {
  padding-top: 6px;
  padding-bottom: 6px;
}

@media screen and (min-width:769px) {
  .CF-table {
    overflow: visible;
  }

  .CF-table table {
    min-width: auto;
    width: 100%;
  }

  .CF-table table th {
    padding: 20px 10px;
  }

  .CF-table table td {
    padding: 15px;
  }
}

.CF-table table a:hover {
  text-decoration: none;
}

/* /汎用テーブル */

/*
汎用テーブル(大)
*/
.CF-large-table {
  overflow: auto;
  margin: 18px 0 30px;
}

.CF-large-table table {
  min-width: 680px;
  border-collapse: collapse;
}

.CF-large-table table th {
  color: #fff;
  background: var(--color-accent);
  font-size: var(--fs-component-14);
  white-space: nowrap;
  padding: 15px 10px;
  border: #ccc solid 1px;
}

.CF-large-table table td {
  background: #fff;
  font-size: var(--fs-component-14);
  border: #ccc solid 1px;
  padding: 10px;
  text-align: left;
}

.CF-large-table.-text-align-center table td {
  text-align: center;
}

.CF-large-table table .-is-bg-color {
  background: var(--color-red);
}

.CF-large-table table .-is-head {
  color: var(--color-base);
  background: var(--color-blue);
  font-weight: 700;
  white-space: nowrap;
}

.CF-large-table table .-is-class {
  font-weight: bold;
}

.CF-large-table table .-is-about {
  font-weight: bold;
  color: #ca9c11;
}

.CF-large-table table .-is-date {
  background: var(--color-cream);
  color: var(--color-accent);
  font-weight: bold;
}

.CF-large-table table .-is-date strong {
  font-size: var(--fs-component-16);
  color: var(--color-red);
}

.CF-large-table table .-is-date span {
  font-size: var(--fs-component-16);
  font-weight: 800;
}

.CF-large-table table .-is-bg-color-02 {
  background: #fff;
}

.CF-large-table table span.-is-entry {
  background: #ec0000;
  padding: 2px 6px;
  border-radius: 2px;
  text-align: center;
  font-size: 12px;
  display: inline-block;
  color: #fff;
  margin-top: 5px;
}

.CF-large-table table span.-is-start {
  background: #00a157;
  padding: 2px 6px;
  border-radius: 2px;
  text-align: center;
  font-size: 12px;
  display: inline-block;
  color: #fff;
  margin-top: 5px;
}

.CF-large-table table span.-is-end {
  background: #666666;
  padding: 2px 6px;
  border-radius: 2px;
  text-align: center;
  font-size: 12px;
  display: inline-block;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 20px;
}

.CF-large-table table span.-is-before {
  background: var(--color-dark-brown);
  padding: 2px 6px;
  border-radius: 2px;
  text-align: center;
  font-size: 12px;
  display: inline-block;
  color: #fff;
}

.CF-large-table table .CF-large-table-btn {
  margin-top: 15px;
  margin-bottom: 15px;
}

.CF-large-table table .CF-large-table-btn .CF-btn {
  font-size: 12px;
  padding: 11px 18px;
  line-height: 14px;
  background-size: auto 12px;
  border: solid 2px var(--color-dark-blue);
  color: var(--color-dark-blue);
  background: url(/ns/ps/_assets/images/svg/arrow_blue.svg) no-repeat var(--color-base);
  background-position: right 18px center;
  background-size: auto 12px;
}

.CF-large-table table .CF-large-table-btn .CF-btn.-is-reverse {
  color: #fff !important;
  background: url(/ns/ps/_assets/images/svg/arrow01_white.svg) right 18px center no-repeat var(--color-accent);
  background-position: right 18px center;
  background-size: auto 12px;
  border: solid 2px var(--color-accent);
}

.CF-large-table.-is-exam-date-table .-th-exam-date {
  min-width: 125px;
}

.CF-large-table.-is-exam-date-table .-th-exam-class {
  min-width: 80px;
}

.CF-large-table.-is-exam-date-table .-th-exam-fee {
  min-width: 80px;
}

.CF-large-table.-is-exam-date-table .-th-exam-result-announce {
  min-width: 250px;
}

.table.-about-os {
  min-width: 0;
  width: 100%;
}

.table.-about-os tbody tr:nth-child(2n+1) td {
  background-color: var(--color-cream);
}

@media screen and (min-width:769px) {
  .CF-large-table {
    overflow: visible;
    margin-bottom: 25px;
  }

  .CF-large-table table {
    min-width: auto;
    width: 100%;
  }

  .CF-large-table table th {
    padding: 20px 10px;
  }

  .CF-large-table table td {
    padding: 15px;
  }

  .CF-large-table table .CF-large-table-btn {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
  }

  .CF-large-table table .CF-large-table-btn .CF-btn {
    font-size: 14px;
    background-position: right 13px center;
  }

  .CF-large-table table .CF-large-table-btn .CF-btn.-is-get-notice {
    font-size: 12px;
  }
}

@media screen and (min-width:1010px) {
  .CF-large-table table .CF-large-table-btn .CF-btn.-is-get-notice {
    font-size: 16px;
  }
}

/* /汎用テーブル(大) */

/*
汎用フロー
*/
.CF-flow-box {
  margin: 30px 0;
}

.CF-flow-data {
  margin-top: 30px;
  position: relative;
}

.CF-flow-data:first-child {
  margin-top: 0;
}

.CF-flow-data:first-child::before {
  display: none;
}

.CF-flow-data::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #666666 transparent transparent transparent;
  top: -22px;
  left: 50%;
  transform: translate(-50%, 0);
}

.CF-flow-step {
  font-size: var(--fs-component-20);
  font-family: "Lato";
  line-height: 24px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  background: #666666;
  padding: 10px;
}

.CF-flow-group {
  background: #f0ede3;
  padding: 15px;
}

.CF-flow-group>*:first-child {
  margin-top: 0 !important;
}

.CF-flow-group>*:last-child {
  margin-bottom: 0;
}

.CF-flow-title {
  font-size: var(--fs-component-18);
  line-height: 24px;
  font-weight: 700;
}

.CF-flow-btn .CF-btn {
  font-size: var(--fs-component-14);
}

@media screen and (min-width:769px) {
  .CF-flow-box {
    margin: 20px 0;
  }

  .CF-flow-data {
    display: flex;
    flex-flow: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
    background: #666666;
  }

  .CF-flow-data::before {
    top: -27px;
  }

  .CF-flow-step {
    font-size: var(--fs-component-24);
    line-height: 26px;
    width: 200px;
    flex-shrink: 0;
  }

  .CF-flow-group {
    padding: 15px 20px;
    flex-grow: 1;
  }

  .CF-flow-group>*:last-child {
    margin-bottom: 0 !important;
  }

  .CF-flow-group .CF-component-text {
    margin: 10px 0;
  }

  .CF-flow-btn {
    max-width: 420px;
    margin: 0 auto 50px;
  }

  .CF-flow-btn .CF-btn {
    font-size: var(--fs-component-18);
  }
}

/* /汎用フロー */

/*
モーダル表示
*/

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 80%);
  padding: 40px 20px 40px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 10;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: var(--contents-width);
  width: 90%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -30px;
  right: 0px;
  font-size: var(--fs-component-16);
  color: #fff;
  cursor: pointer;
}

.modal-close span {
  position: relative;
}

.modal-close span::before {
  content: "";
  position: absolute;
  background: url(/ns/ps/_assets/images/svg/circle-close.svg) center center no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translate(0, -50%);
  left: -30px;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 10px;
}

.modal-content>.CF-modal-area>*:first-child {
  margin-top: 0;
}

.modal-content>.CF-modal-area>*:last-child {
  margin-bottom: 0;
}

.CF-modal-btn .CF-btn {
  font-size: var(--fs-component-14);
  line-height: 16px;
}

@media screen and (min-width:769px) {
  .modal-container {
    padding: 100px 20px 40px;
  }

  .modal-content {
    padding: 40px;
  }

  .CF-modal-btn {
    max-width: 540px;
    margin: 0 auto;
  }

  .CF-modal-btn .CF-btn {
    font-size: var(--fs-component-16);
    line-height: 18px;
  }
}

/* /モーダル表示 */



/*
/////////////////////////////////////////////////////

独自パーツ

/////////////////////////////////////////////////////
*/

/*
サンプル問題
*/

.CF-question {
  background-image: linear-gradient(90deg, transparent 0, transparent 7px, #f7f2dc 7px, #f7f2dc 8px, transparent 8px, transparent 33px, #f7f2dc 33px, #f7f2dc 34px, transparent 34px, transparent 46px, #f7f2dc 46px, #f7f2dc 47px, transparent 47px),
    linear-gradient(0deg, transparent 0, transparent 7px, #f7f2dc 7px, #f7f2dc 8px, transparent 8px, transparent 33px, #f7f2dc 33px, #f7f2dc 34px, transparent 34px, transparent 46px, #f7f2dc 46px, #f7f2dc 47px, transparent 47px);
  background-size: 50px 50px;
  background-color: #fffae3;
  background-repeat: repeat;
}

.CF-question-inner {
  position: relative;
}

.CF-question.-is-correct .CF-question-btn-box,
.CF-question.-is-incorrect .CF-question-btn-box {
  position: relative;
}

.CF-question.-is-correct .CF-question-btn-box::before,
.CF-question.-is-incorrect .CF-question-btn-box::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 160px;
  top: calc(50% + 8px);
  transform: translate(-50%, -50%);
  left: calc(50% + 8px);
  z-index: 1;
}

.CF-question.-is-correct .CF-question-btn-box::before {
  background: url(/ns/ps/_assets/images/sample/correct.png) center center no-repeat;
  background-size: contain;
}

.CF-question.-is-incorrect .CF-question-btn-box::before {
  background: url(/ns/ps/_assets/images/sample/incorrect.png) center center no-repeat;
  background-size: contain;
}

.CF-question.-is-correct .CF-question-btn-data {
  opacity: 0.7;
}

.CF-question.-is-incorrect .CF-question-btn-data {
  opacity: 0.7;
}

.CF-question.-is-correct .CF-question-btn-data.-is-active,
.CF-question.-is-incorrect .CF-question-btn-data.-is-active {
  border: #ff6937 solid 1px;
  opacity: 1;
}

.CF-question.-is-correct .CF-question-btn-data.-is-active .CF-question-btn-label,
.CF-question.-is-incorrect .CF-question-btn-data.-is-active .CF-question-btn-label {
  background: #ff6937;
}

.CF-question.-is-correct .CF-question-btn-data.-is-active .CF-question-btn-text,
.CF-question.-is-incorrect .CF-question-btn-data.-is-active .CF-question-btn-text {
  color: #ff6937;
}

.CF-question-wrap .CF-question .CF-question-inner {
  border-top: #333333 solid 1px;
}

.CF-question-wrap .CF-question:first-child .CF-question-inner {
  border: none;
}

.CF-question-lead-box {
  position: relative;
  text-align: center;
  margin-top: 50px;
}

.CF-question-lead {
  display: inline-block;
  position: relative;
  font-size: 22px;
  font-weight: 800;
  line-height: 32px;
  text-align: center;
  margin-bottom: 20px;
  height: 100%;
  color: #333;
  padding: 0 18px;
}


.CF-question-lead::before {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(to bottom left, transparent, transparent 48.5%, #333333 49.5%, #333333 54.5%, transparent 55.5%, transparent);
  width: 18px;
  height: 100%;
  top: 0;
  left: 0;
}

.CF-question-lead::after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(to bottom right, transparent, transparent 48.5%, #333333 49.5%, #333333 54.5%, transparent 55.5%, transparent);
  width: 18px;
  height: 100%;
  top: 0;
  right: 0;
}


.CF-question-box {
  display: flex;
  flex-flow: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  background-color: var(--color-dark-blue);
  border-radius: 5px;
  height: 116px;
}

.CF-question-icon {
  width: 68px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.CF-question-icon>img {
  width: 30px;
}

.CF-question-text-data {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  padding: 16px 16px 16px 0px;
  border-radius: 0px 5px 5px 0px;
  display: flex;
  align-items: center;
}

.CF-question-text {
  font-size: var(--fs-component-16);
  font-weight: 500;
  line-height: 1.5;
}

.CF-question-text strong {
  color: var(--color-red);
  font-weight: bold;
}

.CF-question-btn-data {
  display: flex;
  flex-flow: nowrap;
  justify-content: flex-start;
  align-self: stretch;
  min-height: 72px;
  margin-bottom: 20px;
  background: #ffffff;
  border: #aaa solid 1px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.CF-question-btn-label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #ffffff;
  background-color: var(--color-accent);
  text-align: center;
  padding: 5px 0;
  width: 72px;
  flex-shrink: 0;
  font-weight: bold;
}

.-for-column-useful .CF-question-btn-label {
  font-size: 20px;
  width: 50px;
  font-weight: normal;
}

.CF-question-btn-text {
  font-size: var(--fs-component-16);
  line-height: 1.5;
  color: #333333;
  padding: 15px;
}

.CF-question-btn {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.56;
  font-weight: bold;
}

.CF-question-btn.-is-checked {
  display: none;
}

.CF-question-btn.-is-checked+.CF-answer {
  display: flex;
}

.CF-answer {
  display: none;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 100px;
  background: #ffffff;
  border: #ff2828 solid 2px;
  border-radius: 6px;
  margin-top: 20px;
}

.CF-answer-box {
  font-size: var(--fs-component-16);
  font-weight: 600;
  color: #333333;
  padding: 10px;
}

.CF-answer-label {
  font-size: 22px;
  color: #ffffff;
  background-color: #ff2828;
  text-align: center;
  padding: 5px 0;
  width: 100%;
}

.CF-answer-title {
  font-size: var(--fs-component-18);
  margin-bottom: 10px;
  color: #ff2828;
  font-weight: 800;
}

.CF-answer-text a {
  text-decoration: none;
  color: #333333;
}

.CF-question-more {
  position: relative;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 90px 120px 0 120px;
  border-color: #ff6937 transparent transparent transparent;
  margin: 16px auto;
}

.CF-question-more span {
  display: block;
  position: absolute;
  text-align: center;
  width: 180px;
  top: -75px;
  left: -90px;
  margin: 0 auto;
  font-size: var(--fs-component-16);
  font-weight: 600;
  color: #ffffff;
}



@media screen and (min-width:769px) {
  .CF-question {
    padding-bottom: 80px;
  }

  .CF-question-inner {
    max-width: var(--contents-width);
    margin: 0 auto;
  }

  .CF-question-lead {
    font-size: 34px;
    line-height: 45px;
    margin-bottom: 0px;
    font-weight: 900;
    padding: 0 85px;
  }

  .CF-question-lead::before {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(to bottom left, transparent, transparent 48.5%, #333333 49.5%, #333333 54.5%, transparent 55.5%, transparent);
    width: 71px;
    height: 100%;
    top: 0;
    left: 0;
  }

  .CF-question-lead::after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(to bottom right, transparent, transparent 48.5%, #333333 49.5%, #333333 54.5%, transparent 55.5%, transparent);
    width: 71px;
    height: 100%;
    top: 0;
    right: 0;
  }

  .CF-question-box {
    margin-bottom: 48px;
  }

  .CF-question-icon {
    margin-bottom: 0px;
    margin-right: 0px;
    width: 116px;
  }

  .CF-question-icon>img {
    width: 36px;
  }

  .CF-question-text-data {
    padding-top: 22px;
    padding-left: 28px;
  }

  .CF-question-text {
    font-size: var(--fs-component-20);
    line-height: 1.6;
    margin-bottom: 0;
  }

  .CF-question-btn-box {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin: -30px 0 0 -32px;
  }

  .CF-question-btn-data {
    flex-flow: nowrap;
    min-height: 100px;
    width: calc((100% / 2) - 32px);
    margin: 30px 0 0 32px;
  }

  .CF-question-btn-data:hover {
    border: var(--color-dark-brown) solid 1px;
  }

  .CF-question-btn-data:hover .CF-question-btn-label {
    background-color: var(--color-dark-brown);
  }

  .CF-question-btn-data:hover .CF-question-btn-text {
    color: var(--color-dark-brown);
  }

  .CF-question-btn-label {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    padding: 0;
    line-height: 2;
    width: 100px;
    flex-shrink: 0;
  }

  .CF-question-btn-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: var(--fs-component-16);
    line-height: 1.75;
    padding: 20px 24px;
  }

  .-for-column-useful .CF-question-btn-text {
    padding: 15px 20px;
    line-height: 1.5;
  }

  .-for-column-useful .CF-question-btn-data {
    background-color: var(--color-cream);
  }

  .CF-question-btn {
    max-width: 420px;
    margin: 50px auto 0;
  }

  .CF-answer {
    flex-flow: nowrap;
    align-items: stretch;
    min-height: 100px;
    margin-top: 50px;
  }

  .CF-answer-box {
    font-weight: 600;
    color: #333333;
    padding: 24px 30px;
  }

  .CF-answer-label {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    padding: 0;
    width: 160px;
    flex-shrink: 0;
  }

  .CF-answer-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .CF-answer-text {
    font-size: var(--fs-component-16);
    line-height: 28px;
  }

  .CF-question-more {
    border-width: 125px 240px 0 240px;
    margin: 30px auto;
    position: relative;
    top: 113px;
  }

  .CF-question-more span {
    width: 250px;
    top: -100px;
    left: -125px;
    font-size: 28px;
  }

  .-for-column-useful .CF-question-btn-label {
    font-size: 22px;
    font-weight: bold;
  }
}

/* /サンプル問題 */

/* アイコン付きタイトル */
.CF-top-title-box {
  display: flex;
  width: 100%;
  justify-content: center;
}

.CF-top-title {
  text-align: center;
  margin-bottom: 0px;
}

.CF-top-title>span {
  display: block;
  font-size: 18px;
  line-height: 1.78;
  width: fit-content;
  margin: 0 auto;
  font-weight: normal;
}

.CF-top-title>span::before {
  content: "";
  display: block;
}

.CF-top-title.-is-sample {
  position: relative;
  width: 318px;
}

.CF-top-title.-is-sample::before {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(to bottom left, transparent, transparent 49.5%, var(--color-dark-brown) 50.5%, var(--color-dark-brown) 53.5%, transparent 55.5%, transparent);
  width: 68px;
  height: 100px;
  bottom: 8px;
  left: 0px;
}

.CF-top-title.-is-sample::after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(to bottom right, transparent, transparent 49.5%, var(--color-dark-brown) 50.5%, var(--color-dark-brown) 53.5%, transparent 55.5%, transparent);
  width: 68px;
  height: 100px;
  bottom: 8px;
  right: 0px;
}

.CF-top-title.-is-sample>span::before {
  background: url(/ns/ps/_assets/images/svg/icn_qa.svg) center center no-repeat;
  background-size: contain;
  width: 60px;
  height: 50px;
  margin: 0 auto 5px;
}

.CF-top-title span.-is-weight-bold {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.23;
}

@media screen and (min-width:769px) {

  .CF-top-title.-is-sample {
    width: 680px;
  }

  .CF-top-title.-is-sample>span {
    font-size: 30px;
    line-height: 1.5;
    text-indent: 18px;
  }

  .CF-top-title.-is-sample>span::before {
    content: "";
    display: inline-block;
    height: 48px;
    position: absolute;
    left: 140px;
    top: -2px;
  }

  .CF-top-title.-is-sample span.-is-weight-bold {
    font-size: 40px;
    line-height: 1.5;
  }
}

/* アイコン付きタイトル */

/*
/////////////////////////////////////////////////////

サイトトップ

/////////////////////////////////////////////////////
*/

/* 
  メインビジュアル
*/
.CF-mv {
  position: relative;
}

.CF-mv-inner {
  background-color: var(--color-cream);
  padding: 0px 0px 30px;
}

.CF-mv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.CF-mv-group {
  padding: 0 15px;
  background-image: url(/ns/ps/_assets/images/top/mv-title-bg-sp.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 16px;
}

.CF-mv-subtitle-box {
  position: relative;
}

.CF-mv-subtitle-01 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 5px;
}

.CF-mv-subtitle-02 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-red);
  position: relative;
  z-index: 2;
}

.CF-mv-icon {
  position: absolute;
  top: 0px;
  right: -5px;
  max-width: 100px;
  z-index: 1;
}

.CF-mv-title {
  margin: 12px auto 0px;
  font-family: "Noto Sans JP", serif;
}

.CF-mv-title span {
  color: var(--color-def);
  background-color: var(--color-base);
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
  padding: 5px 7px;
  margin-bottom: 10px;
}

.CF-mv-subtitle-02 span {
  background: linear-gradient(transparent 50%, #ffe400 40%);
  display: inline-block;
}

.CF-mv-btn-about-outer {
  margin: 0px 15px;
}

.CF-mv-btn-about {
  height: 100%;
  max-width: 200px;
  margin: 40px 20px 30px;
}

.CF-mv-btn-about .CF-btn.-color-blue {
  color: var(--color-base);
  border: var(--color-base) solid 2px;
  background: url(/ns/ps/_assets/images/svg/arrow01_white.svg) no-repeat var(--color-dark-blue);
  background-position: right 18px center;
  background-size: auto 17px;
  padding: 9px 18px;
  font-size: 18px;
  font-weight: bold;
}

.CF-mv-btn-about .CF-btn.-color-green {
  background-position: right 18px center;
  background-size: auto 17px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.44;
}

.CF-mv-group-venue {
  font-family: "Noto Sans JP", serif;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-base);
}

.CF-mv-pc-img {
  display: none;
}

.CF-mv-schedule.-for-mv {
  margin-top: 24px;
  margin-left: 15px;
  margin-right: 15px;
}

.CF-mv-schedule-heading {
  position: relative;
  font-size: var(--fs-component-20);
  line-height: 1.4;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 10px 9px 10px 0;
  font-weight: bold;
}

.CF-mv-schedule-heading.-is-color-blue {
  background-color: var(--color-dark-blue);
}

.CF-mv-schedule-heading span {
  display: inline-block;
}

.CF-mv-schedule-heading span::before {
  content: "";
  display: inline-block;
  background: url(/ns/ps/_assets/images/svg/icn_calendar_white.svg) center center no-repeat;
  background-size: 22px 25px;
  width: 22px;
  height: 25px;
  margin-right: 9px;
  vertical-align: middle;
}

.CF-mv-schedule-heading::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 12px 0 12px;
  border-color: var(--color-accent) transparent transparent transparent;
  bottom: -18px;
  left: 50%;
  transform: translate(-50%, 0);
}
.CF-mv-schedule-heading.-is-color-blue::before {
  border-color: var(--color-dark-blue) transparent transparent transparent;
}


.CF-mv-schedule-box {
  padding: 20px 0px 0px;
  background: #fff;
}

.CF-mv-schedule-data {
  margin-bottom: 10px;
}

.CF-mv-schedule-data:last-child {
  margin-bottom: 0px;
}

.CF-mv-schedule-data:last-child .CF-mv-schedule-date {
  margin-bottom: 0;
}

.CF-mv-schedule-label {
  font-size: var(--fs-component-16);
  line-height: 28px;
  background: var(--color-indigo);
  text-align: center;
  color: #fff;
  padding: 1px 0;
  margin: 0px 15px;
}

.CF-mv-schedule-date {
  position: relative;
  font-size: 16px;
  line-height: 29px;
  color: #000;
  background-color: var(--color-beige);
  margin: 0px 15px;
  padding: 20px 0px 13px 10px;
}

.CF-mv-schedule-date strong {
  font-size: 30px;
  line-height: 0.74;
  color: #000;
  font-family: "Lato", sans-serif;
}

.CF-mv-schedule-date span {
  font-family: "Lato";
  font-size: 20px;
  color: #000;
  line-height: 1.17;
}

.CF-mv-schedule-date .-icon-notice {
  position: absolute;
  font-size: 12px;
  line-height: 1.17;
  font-weight: normal;
  padding: 2px 6px;
  text-align: center;
  border-radius: 2px;
  display: inline-block;
  width: 60px;
  bottom: 15px;
  right: 15px;
}

.CF-mv-schedule-date .-is-start {
  color: #fff;
  background: #39bf81;
}

.CF-mv-schedule-date .-is-accepting {
  color: #fff;
  background: #ff4c4c;
}

.CF-mv-schedule-date .-is-finish {
  color: #fff;
  background: #999999;
}

.CF-mv-schedule-date .-is-before {
  color: #fff;
  background: var(--color-dark-brown);
}

.CF-mv-btn {
  margin: 0 auto;
  background: var(--color-base);
  padding: 16px 13px 20px;
  position: relative;
}

.CF-mv-btn .CF-btn {
  font-size: 18px;
  line-height: 1.44;
  font-weight: bold;
}

.CF-mv-btn.CF-mv-schedule-box-btn .CF-btn {
  color: var(--color-base);
  background-color: var(--color-accent);
  border: none;
  background-image: url(/ns/ps/_assets/images/svg/arrow01_white.svg);
  background-position: right 18px center;
  background-size: auto 17px;
  background-repeat: no-repeat;
  font-weight: normal;
  padding: 10px 18px;
}

@media screen and (min-width:374px) {
  .CF-mv-title span {
    font-size: 29px;
    font-feature-settings: "palt";
  }
}

@media screen and (min-width:769px) {
  .CF-mv-schedule.-for-mv {
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .CF-mv-inner {
    height: 44vw;
    max-height: 370px;
    height: 370px;
    background-color: var(--color-cream);
    background-image: url(/ns/ps/_assets/images/top/mv-title-bg-pc.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }

  .CF-mv-group {
    margin-left: 0px;
    background-image: none;
    position: relative;
  }

  .CF-mv-subtitle-01 {
    font-size: 24px;
  }

  .CF-mv-title {
    margin: 20px 0px;
  }

  .CF-mv-data {
    position: relative;
    max-width: 1020px;
    margin: 0px auto;
    height: 370px;
  }

  .CF-mv-icon {
    display: block;
    position: absolute;
    top: 125px;
    left: 360px;
    max-width: 120px;
  }

  .CF-mv-btn-about-outer {
    position: absolute;
    left: 0px;
    margin-left: 0px;
    width: 333px;
    top: 250px;
  }

  .CF-mv-btn-about .CF-btn.-color-green {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 13px;
  }

  .CF-mv-schedule {
    position: absolute;
    margin-top: 0px;
    margin-right: 0px;
    top: 0px;
    right: 0px;
    padding: 0px 0px;
    width: 31vw;
  }

  .CF-mv-schedule-heading {
    font-size: 16px;

  }

  .CF-mv-schedule-box {
    padding: 17px 0px;
    border-left: #CCCCCC solid 1px;
    border-right: #CCCCCC solid 1px;
  }

  .CF-mv-schedule-heading span::before {
    width: 28px;
    height: 30px;
  }

  .CF-mv-schedule-heading::before {
    border-width: 15px 12px 0 12px;
    bottom: -15px;
  }

  .CF-mv-schedule-label {
    margin-left: 22px;
    margin-right: 22px;
    font-weight: bold;
  }

  .CF-mv-schedule-date {
    margin-left: 22px;
    margin-right: 22px;
    margin-bottom: 8px;
    line-height: 1.75;
    font-size: 10px;
    padding-left: 0px;
  }

  .CF-mv-schedule-date strong {
    font-size: 20px;
  }

  .CF-mv-schedule-date span {
    font-size: 16px;
  }

  .CF-mv-schedule-date .-icon-notice {
    right: 0px;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5px;
    padding-bottom: 5px;
    height: 28px;
    width: 51px;
    font-size: 8px;
  }

  .CF-mv-btn {
    padding: 13px 13px 20px;
    border-left: #CCCCCC solid 1px;
    border-right: #CCCCCC solid 1px;
    border-bottom: #CCCCCC solid 1px;
  }

  .CF-mv-btn .CF-btn {
    font-size: 15px;
  }

  .CF-mv-btn-about {
    height: 100%;
    max-width: 215px;
    margin: 0px 0px 15px;
  }

  .CF-mv-group-venue {
    text-align: left;
    font-size: 16px;
  }

  .CF-mv-pc-img {
    display: block;
    position: absolute;
    left: 274px;
    bottom: -6px;
    max-width: 310px;
  }

  .CF-mv-btn-about .CF-btn.-color-brown {
    padding: 9px 18px;
  }

  .CF-mv-btn.CF-mv-schedule-box-btn {
    padding-top: 0px;
    padding-bottom: 32px;
  }

  .CF-mv-btn.CF-mv-schedule-box-btn .CF-btn {
    padding: 10px 18px;
    max-width: 300px;
    margin: 0 auto;
    font-weight: bold;
  }
}

@media screen and (min-width:880px) {
  .CF-mv-pc-img {
    display: block;
    position: absolute;
    left: 274px;
    bottom: -6px;
    max-width: 410px;
  }
}

@media screen and (min-width:990px) {
  .CF-mv-inner {
    height: 370px;
  }

  .CF-mv-icon {
    top: -37px;
    left: 442px;
    max-width: 140px;
  }

  .CF-mv-title {
    position: relative;
    z-index: 1;
  }

  .CF-mv-btn-about-outer {
    width: 333px;
    top: 230px;
    z-index: 4;
  }

  .CF-mv-btn-about .CF-btn.-color-green {
    font-size: 18px;
  }

  .CF-mv-schedule {
    width: 370px;
  }

  .CF-mv-schedule-heading {
    font-size: 20px;
  }

  .CF-mv-schedule-date {
    font-size: 16px;
    padding: 20px 20px 13px;
  }

  .CF-mv-schedule-date span {
    font-size: 24px;
  }

  .CF-mv-schedule-date strong {
    font-size: 32px;
  }

  .CF-mv-schedule-date .-icon-notice {
    height: 35px;
    width: 64px;
    font-size: 12px;
    margin-right: 10px;
  }

  .CF-mv-btn .CF-btn {
    font-size: 18px;
  }
}

@media screen and (min-width:1020px) {
  .CF-mv-text-data {
    display: block;
  }

  .CF-mv-subtitle {
    font-size: 28px;
  }

  .CF-mv-title {
    font-size: 38px;
    margin: 20px 0;
    line-height: normal;
    max-width: 535px;
  }

  .CF-mv-title span {
    font-size: 38px;
    padding: 5px 18px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .CF-mv-chatch {
    position: absolute;
    bottom: 0;
    right: 155px;
    width: 165px;
    height: 165px;
  }

  .CF-mv-img-btn {
    margin-top: 25px;
  }
}
@media screen and (min-width:1370px) {
  .CF-mv-inner {
    background-size: cover;
  }
}

/* /メインビジュアル */

/* お知らせ */
.CF-section.-for-news {
  padding-top: 30px;
}

.CF-news-title {
  font-size: 18px;
  padding-bottom: 6px;
  border-bottom: #cccccc solid 2px;
  margin-bottom: 15px;
  font-weight: bold;
}

.CF-news-list-data {
  margin-bottom: 20px;
}

.CF-news-list-date {
  font-size: var(--fs-component-16);
  line-height: 1.63;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.CF-news-list-date span {
  color: #fff;
  text-align: center;
  margin-left: 5px;
  width: 80px;
}

.u-cat8 {
  background: #0099CC;
  font-size: 12px;
  line-height: 2.5;
}

.CF-news-list-title a {
  font-size: var(--fs-component-16);
  line-height: 1.63;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  border-bottom: #333 solid 1px;
}

.CF-top-news-btn {
  margin: 0 auto;
  border-radius: 20px;
  width: 240px;
  height: 40px;
}

.CF-top-news-btn .CF-btn {
  font-size: 14px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width:769px) {
  .CF-section.-for-news {
    padding-top: 60px;
  }

  .CF-news {
    position: relative;
  }

  .CF-news-list-data {
    display: flex;
    flex-flow: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .CF-news-list-date {
    margin-right: 16px;
  }

  .CF-news-title {
    border-bottom: #cccccc solid 4px;
  }

  .CF-news-list-title a:hover {
    border-bottom: none;
  }

  .CF-top-news-btn {
    position: absolute;
    top: -7px;
    right: 0px;
    width: 130px;
    height: 30px;
  }

  .CF-top-news-btn .CF-btn {
    margin: 0 auto;
    font-size: 14px;
    padding: 0px;
    background-image: none;
  }
}

/* /お知らせ */

/* ビジネス著作権検定とは */
.CF-section.-for-bc {
  background-color: var(--color-cream);
  padding-top: 30px;
  padding-bottom: 30px;
}

.CF-bc-subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-base);
  text-align: center;
  margin: 0 auto 5px;
}

.CF-bc-subtitle span {
  display: inline-block;
  background: var(--color-accent);
  margin-bottom: 5px;
  padding: 2px 2px;
}

.CF-bc-title {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-base);
  text-align: center;
  margin: 0 auto 10px;
}

.CF-bc-title span {
  display: inline-block;
  background-color: var(--color-dark-blue);
  margin-bottom: 5px;
  padding: 0px 15px;
  font-weight: bold;
}

.CF-bc-mainTitle {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}



.CF-bc .CF-component-text {
  margin-top: 20px;
  margin-bottom: 18px;
}

.CF-component-img.CF-component01 {
  text-align: center;
  margin-bottom: 30px;
}

.CF-component-img.CF-component01-center {
  width: fit-content;
  margin: 0 auto 30px;
}

.CF-column03-data {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--color-base);
  margin-bottom: 20px;
}

.CF-column03-data-img-text {
  font-size: 13px;
}

.CF-column03-data-img-text a {
  text-decoration: none;
  color: var(--color-def);
  border-bottom: var(--color-def) solid 1px;
}

.CF-column03-img {
  max-width: 120px;
}

.CF-column03-img img {
  vertical-align: bottom;
}

.CF-column03-text {
  padding-left: 25px;
  font-size: 16px;
  line-height: 1.5;
}

.CF-bc-notice {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.CF-bc-contentBox-img {
  width: 100%;
  margin-bottom: 20px;
}
.CF-bc-contentBox-img img {
  width: 100%;
}

.CF-bc-feature-box {
  margin-bottom: 20px;
}
.CF-bc-feature-item {
  display: grid;
  grid-template-columns: 80px 10px 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 10px;
}
.CF-bc-feature-item:last-child {
  margin-bottom: 0px;
}
.CF-bc-feature-item-img {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.CF-bc-feature-item-data {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  display: flex;
  align-items: center;
}
.CF-bc-feature-item-data-sub {
  font-size: 14px;
  line-height: 1.36;
}
.CF-bc-feature-item-data-main {
  font-size: 23px;
  line-height: 1.35;
  color: var(--color-accent);
  border-bottom: solid 3px var(--color-def);
  font-weight: bold;
}

.CF-top-bc-btn .CF-btn {
  color: var(--color-def);
  border: currentColor solid 2px;
  background: url(/ns/ps/_assets/images/svg/arrow01_black.svg) no-repeat var(--color-base);
  background-position: right 18px center;
  background-size: auto 17px;
  padding: 15px 18px;
}

@media screen and (min-width:371px) {
  .CF-bc-feature-item-data-main {
    font-size: 26px;
  }
}

@media screen and (min-width:375px) {
  .CF-bc-subtitle {
    font-size: 18px;
  }
  .CF-bc-title {
    font-size: 20px;
  }
}

@media screen and (min-width:769px) {
  .CF-section.-for-bc {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .CF-bc-subtitle {
    font-size: 34px;  
    line-height: 1.5;
    margin: 0 auto 5px;
    font-weight: bold;
  }

  .CF-bc-subtitle span {
    margin-bottom: 10px;
    padding: 0px 15px;
  }

  .CF-bc-title {
    font-size: 34px;
    line-height: 1.5;
    color: var(--color-base);
    text-align: center;
    margin: 0 auto 10px;
  }

  .CF-bc-title span {
    margin-bottom: 10px;
  }

  .CF-bc-mainTitle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
  }

  .CF-component-text {
    margin-bottom: 30px;
  }

  .CF-bc-component-text {
    text-align: center;
  }

  .CF-bc .CF-component-text {
    margin-top: 16px;
    margin-bottom: 25px;
  }

  .CF-column03-data-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: -30px;
  }

  .CF-column03-data {
    display: block;
    margin-bottom: 20px;
    flex-grow: 1;
    margin-left: 30px;
  }

  .CF-column03-img {
    max-width: 320px;
  }

  .CF-column03-img img {
    vertical-align: bottom;
  }

  .CF-column03-text {
    padding: 30px 0px;
    text-align: center;
  }

  .CF-bc-notice {
    text-align: right;
    margin-bottom: 50px;
  }

  .CF-bc-contentBox {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: 1fr;
    margin-bottom: 32px;
  }
  .CF-bc-contentBox-img {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    margin-bottom: 0px;
  }
  .CF-bc-feature-box {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-bottom: 0px;
  }
  .CF-bc-feature-item {
    margin-left: 23px;
    margin-bottom: 0px;
    margin-top: 15px;
  }
  .CF-bc-feature-item-data-sub {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.36;
  }
  .CF-bc-feature-item-data-main {
    font-size: 32px;
    font-weight: bold;
  }
  .CF-top-bc-btn .CF-btn {
    max-width: 320px;
    margin: 0 auto;
  }
}
@media screen and (min-width:900px) {
  .CF-bc-contentBox {
    grid-template-columns: 1fr 1fr;
  }
}

/* /ビジネス著作権検定とは */

/* 受験者の声・活用事例 */
.CF-top-voice-title {
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 70px;
}

.CF-top-voice-title span {
  position: relative;
}

.CF-top-voice-title span::before {
  content: "";
  position: absolute;
  background: url(/ns/ps/_assets/images/svg/icn_voice.svg) center center no-repeat;
  background-size: contain;
  width: 53px;
  height: 31px;
  left: -65px;
}

.CF-top-voice-box {
  margin-bottom: 30px;
}

a.voicelink {
  text-decoration: none;
  color: var(--color-def);
}

.CF-top-voice-data {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--color-cream);
  padding: 15px 18px 15px 15px;
  margin-bottom: 20px;
  position: relative;
}

.CF-top-voice-img-tag {
  min-width: 90px;
  text-align: center;
  font-size: 10px;
  line-height: 1.6;
  color: var(--color-base);
  background-color: var(--color-dark-blue);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  padding: 0 10px;
}

.CF-top-voice-img {
  width: 90px;
  height: 120px;
  flex-shrink: 0;
  position: relative;
  text-align: center;
}

.CF-top-voice-img img {
  object-fit: cover;
  height: 100%;
  vertical-align: bottom;
  padding-top: 20px;
}

.CF-top-voice-group {
  margin-left: 16px;
  font-size: 14px;
  line-height: 1.3;
}

.CF-top-voice-name {
  font-size: 20px;
  line-height: 1.35;
}

.CF-top-voice-data-triangle {
  width: 30px;
  height: 30px;
  background: var(--color-accent);
  position: absolute;
  bottom: 0;
  right: 0;
}

.CF-top-voice-data-triangle::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(/ns/ps/_assets/images/svg/arrow01_white.svg) center center no-repeat;
  background-size: 10px;
  width: 8px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.CF-top-voice-btn {
  max-width: 280px;
  margin: 0 auto;
}

.CF-top-voice-btn .CF-btn {
  font-size: 14px;
  padding: 6px 20px;
  line-height: 1.86;
  background-image: none;
}

@media screen and (min-width:769px) {
  .CF-section.-for-top-voice {
    margin-bottom: 90px;
  }

  .CF-top-voice {
    position: relative;
  }

  .CF-top-voice-title {
    font-size: 22px;
    line-height: 0.9;
    margin-bottom: 50px;
    padding-left: 0px;
  }

  .CF-top-voice-title span::before {
    content: "";
    position: absolute;
    background: url(/ns/ps/_assets/images/svg/icn_voice.svg) center center no-repeat;
    background-size: contain;
    width: 104px;
    height: 60px;
    top: -10px;
    left: -125px;
  }

  .CF-top-voice-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    margin-bottom: 0px;
  }

  a.voicelink {
    display: block;
  }

  .CF-top-voice-data {
    display: block;
    padding: 0;
    margin-bottom: 0;
    height: 100%;
  }

  .CF-top-voice-img-tag {
    min-width: 67px;
    font-size: 12px;
    line-height: 2.5;
    font-weight: bold;
  }

  .CF-top-voice-img {
    max-width: 320px;
    width: auto;
    height: 160px;
    overflow: hidden;
    position: relative;
  }

  .CF-top-voice-img img {
    vertical-align: bottom;
    padding-top: 0;
  }

  .CF-top-voice-group {
    margin-left: 0px;
    padding: 16px 34px 40px 23px;
    font-size: 14px;
    line-height: 1.3;
  }

  .CF-top-voice-name {
    font-weight: bold;
  }

  .CF-top-voice-data-triangle {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
  }

  .CF-top-voice-data-triangle::before {
    content: "";
    display: inline-block;
    position: absolute;
    background: url(/ns/ps/_assets/images/svg/arrow01_white.svg) center center no-repeat;
    background-size: 16px;
    width: 9px;
    height: 16px;
  }

  .CF-top-voice-btn {
    position: absolute;
    top: -2px;
    right: 0px;
    max-width: 255px;
  }

  .CF-top-voice-btn .CF-btn {
    padding: 2px 12px;
  }
}

@media screen and (min-width: 950px) {
  .CF-top-voice-title {
    font-size: 40px;
  }

  .CF-top-voice-title span::before {
    content: "";
    position: absolute;
    background: url("/ns/ps/_assets/images/svg/icn_voice.svg") center center no-repeat;
    background-size: contain;
    width: 104px;
    height: 60px;
    top: -10px;
    left: -125px;
  }
}

/* /受験者の声・活用事例 */

/* トップ サンプル問題 */
.CF-section.-for-top-sample {
  background-image: url("/ns/ps/_assets/images/top/bg_sample_sp.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-top: 23px;
  padding-bottom: 29px;
  margin-bottom: 0px;
}
.CF-top-sample-heading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.42;
  margin-bottom: 30px;
}
.CF-top-sample-heading span {
  display: inline-block;
}
.CF-top-sample-heading span span {
  display: inline-block;
  margin-bottom: 3px;
  color: var(--color-base);
  background-color: var(--color-accent);
  padding: 0px 5px;
}
.CF-top-sample-heading span.-is-dark-blue {
  background-color: var(--color-dark-blue);
  color: var(--color-base);
  padding: 0px 15px;
}
.CF-top-sample-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.CF-top-sample-btn .CF-btn {
  padding: 16px 18px;
  border-width: 3px;
  font-weight: bold;
}
@media screen and (min-width:769px) {
  .CF-section.-for-top-sample {
    background-image: url("/ns/ps/_assets/images/top/bg_sample_pc.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-top: 41px;
    padding-bottom: 51px;
  }
  .CF-top-sample-heading {
    text-align: center;
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .CF-top-sample-text {
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 44px;
  }
  .CF-top-sample-btn {
    text-align: center;
  }
  .CF-top-sample-btn .CF-btn {
    padding: 19px 18px;
    max-width: 600px;
    display: inline-block;
    font-size: 24px;

  }
}
/* /トップ サンプル問題 */

/* トップ サンプル問題にチャレンジ */
.CF-question.-for-top-sample {
  padding-top: 30px;
  padding-bottom: 50px;
  margin-bottom: 0px;
}

.CF-question.-for-top-sample .CF-question-contents {
  padding-top: 30px;
  padding-bottom: 30px;
}

.CF-question.-for-top-sample.-is-sample .CF-question-contents {
  padding-bottom: 0px;
}

.CF-top-question-btn .CF-btn {
  padding: 17px 18px;
}

.CF-top-question-btn-box {
  border-top: #cccccc solid 2px;
  padding-top: 30px;
  font-size: 18px;
  line-height: 1.56;
  font-weight: bold;
}

.CF-question.-is-question-list {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.CF-question.-is-question-list .CF-question-contents {
  padding: 40px 0px;
  border-bottom: #333333 solid 1px;
}

.CF-question.-is-question-list:last-of-type .CF-question-contents {
  border-bottom: none;
}

.CF-section.-is-question-lead-box {
  margin-top: 40px;
}

@media screen and (min-width:769px) {
  .CF-question.-for-top-sample {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .CF-question.-for-top-sample .CF-question-contents {
    padding-top: 45px;
    padding-bottom: 50px;
  }

  .CF-top-question-btn-box {
    padding-top: 50px;
  }

  .CF-top-question-btn {
    max-width: 600px;
    margin: 0 auto;
  }

  .CF-top-question-btn .CF-btn {
    font-size: 24px;
    line-height: 1.33;
    padding: 24px 35px;
  }

  .CF-top-question-btn .CF-btn.-is-reverse {
    padding: 24px 20px;
    font-size: 24px;
    background: url(/ns/ps/_assets/images/svg/arrow01_white.svg) right 18px center no-repeat var(--color-accent);
    background-size: auto 20px;
  }

  .CF-question.-is-question-list .CF-question-contents {
    padding: 80px 0px;
  }

  .CF-section.-is-question-lead-box {
    margin-top: 80px;
  }
}

/* トップ　サンプル問題にチャレンジ */

/* 試験内容・学習について */
.CF-section.-for-top-learn {
  margin-top: 45px;
  margin-bottom: 40px;
}

.CF-top-learn-title {
  text-align: center;
  font-size: 22px;
  line-height: 1.3;
  position: relative;
  margin-bottom: 25px;
}

.CF-top-learn-title span {
  position: relative;
  padding-top: 60px;
  display: inline-block;
}

.CF-top-learn-title span::before {
  content: "";
  position: absolute;
  background: url(/ns/ps/_assets/images/svg/icn_exam.svg) center center no-repeat;
  background-size: contain;
  width: 45px;
  height: 50px;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.CF-top-learn-text {
  margin-bottom: 20px;
}

.CF-top-learn-item {
  margin-bottom: 20px;
}

.CF-top-learn-item.-is-beginner {
  background-color: #efefef;
}

.CF-top-learn-item.-is-advanced {
  background-color: #faf5e7;
}

.CF-top-learn-item.-is-organization {
  background-color: #e9f1fd;
}

.CF-top-learn-item-title {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-base);
  padding: 6px 0px;
  margin-bottom: 15px;
}

.-is-beginner .CF-top-learn-item-title {
  background-color: #666666;
  position: relative;
}

.-is-beginner .CF-top-learn-item-title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-top: 12px solid #666666;
  border-bottom: 0;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
}

.-is-advanced .CF-top-learn-item-title {
  background-color: #ca9c11;
  position: relative;
}

.-is-advanced .CF-top-learn-item-title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-top: 12px solid #ca9c11;
  border-bottom: 0;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
}

.-is-organization .CF-top-learn-item-title {
  background-color: #2c90d3;
  position: relative;
  line-height: 1;
}

.-is-organization .CF-top-learn-item-title span {
  font-size: 12px;
}

.-is-organization .CF-top-learn-item-title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-top: 12px solid #2c90d3;
  border-bottom: 0;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
}

.CF-top-learn-item-text {
  padding: 0px 17px 15px;
  font-size: 16px;
  line-height: 1.5;
}

.-is-advanced .CF-top-learn-item-text strong {
  color: #ca9c11;
}

.-is-organization .CF-top-learn-item-text strong {
  color: #2c90d3;
}

.CF-top-learn-btn .CF-btn {
  background: url(/ns/ps/_assets/images/svg/arrow01_brown.svg) no-repeat var(--color-base);
  background-position: right 10px top 19px;
  background-size: auto 15px;
  font-weight: bold;
  padding: 14px 24px;
}

@media screen and (min-width:769px) {
  .CF-section.-for-top-learn {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .CF-top-learn-title {
    font-size: 40px;
  }

  .CF-top-learn-title span {
    padding-top: 0px;
    padding-left: 50px;
  }

  .CF-top-learn-title span::before {
    content: "";
    position: absolute;
    background: url(/ns/ps/_assets/images/svg/icn_exam.svg) center center no-repeat;
    background-size: contain;
    width: 35px;
    height: 40px;
    top: 5px;
    left: 0;
    transform: none;
  }

  .CF-top-learn-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    margin-bottom: 50px;
  }

  .CF-top-learn-item {
    margin-bottom: 0px;
  }

  .-is-beginner .CF-top-learn-item-title,
  .-is-advanced .CF-top-learn-item-title {
    padding: 9.6px 0px;
  }

  .CF-top-learn-btn {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* /試験内容・学習について */

/* 試験日程・受験方法 */
.CF-top-aboutExam-box.for-individual .CF-top-aboutExam-item {
  border: solid 1px #CCCCCC;
  margin-top: -1px;
}

.CF-section.-for-top-schedule {
  background-color: var(--color-cream);
  padding-top: 30px;
  padding-bottom: 30px;
}

.-for-top-schedule .CF-top-title {
  margin-bottom: 15px;
}

.CF-top-title.-is-schedule>span::before {
  background: url(/ns/ps/_assets/images/svg/icn_calendar.svg) center center no-repeat;
  background-size: contain;
  width: 46px;
  height: 50px;
  margin: 0 auto 5px;
}

.CF-top-title.-is-schedule>span {
  display: block;
  font-size: 22px;
  line-height: 2.05;
  font-weight: bold;
  width: fit-content;
}

.-for-top-schedule .CF-mv-schedule-heading {
  border-radius: 0px 0px 0px 0px;
}

.-for-top-schedule .CF-mv-btn {
  background-color: transparent;
  padding-top: 30px;
  padding-bottom: 0px;
  border-radius: 0px 0px 0px 0px;
}
.-for-top-schedule .CF-mv-btn .CF-btn {
  font-size: 16px;
  line-height: 1.31;
}


 /* Photoshop検定　追加 */
.CF-top-title-text {
  font-size: 16px;
  line-height: 1.46;
  margin-bottom: 13px;
}
.CF-top-aboutExam-box {
  margin-bottom: 30px;
}
.CF-top-aboutExam-heading {
  color: var(--color-base);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.78;
  text-align: center;
  padding: 4px 0px;
  background-color: var(--color-dark-blue);
}
.CF-top-aboutExam-data {
  padding: 14px 15px 20px;
  background-color: var(--color-base);
}
.CF-top-aboutExam-text {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 16px;
} 
.CF-top-aboutExam-btn .CF-btn {
  color: var(--color-dark-blue);
  border-color: var(--color-dark-blue);
  padding: 6px 18px;
  max-width: 280px;
  margin: 0 auto;
  background: url(/ns/ps/_assets/images/svg/arrow_blue.svg) no-repeat var(--color-base);
  background-position: right 15px top 11px;
  background-size: auto 12px;
}
.-for-publicExam .CF-top-aboutExam-heading {
  background-color: var(--color-accent);
}
.-for-publicExam .CF-top-aboutExam-text span {
  color: var(--color-accent);
}

.CF-top-entry-schedule-wrapper {
  margin-bottom: 30px;
}
.-for-top-schedule .CF-mv-schedule-heading span::before {
    display: none;
}
.-for-top-schedule .CF-mv-schedule-box {
  padding: 20px 15px 30px;
}
.-for-top-schedule .CF-mv-schedule-label {
  font-size: var(--fs-component-18);
  line-height: 1.67;
  padding: 0px;
  margin: 0px;
}
.-for-top-schedule .CF-mv-schedule-date {
  margin: 0px 0px 30px;
  padding: 12px 13px 10px 16px;
}

@media screen and (min-width:769px) {
  .CF-top-aboutExam-box {
    margin-bottom: 50px;
  }
  .CF-section.-for-top-schedule {
    padding-top: 88px;
    padding-bottom: 50px;
  }

  .CF-top-title.-is-schedule {
    margin-bottom: 40px;
  }

  .CF-top-title.-is-schedule>span {
    position: relative;
    font-size: 40px;
    line-height: 1.125;
  }

  .CF-top-title.-is-schedule>span::before {
    background: url(/ns/ps/_assets/images/svg/icn_calendar.svg) center center no-repeat;
    background-size: contain;
    width: 46px;
    height: 50px;
    margin: 0 0 0px;
    display: inline-block;
    position: absolute;
    left: -65px;
    top: -8px;
  }
  .CF-top-title-text {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 23px;
    text-align: center;
  }

  .-for-top-schedule .CF-mv-schedule-heading {
    font-size: 28px;
    line-height: 1;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .-for-top-schedule .CF-mv-schedule-heading span {
    position: relative;
  }

  .-for-top-schedule .CF-mv-schedule-heading span::before {
    background-size: 28px 31px;
    position: absolute;
    left: -40px;
    top: -4px;
  }

  .-for-top-schedule .CF-mv-schedule-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row-reverse;
    padding: 30px 40px;
    text-align: center;
    width: 100%;
    border: none;
  }

  .-for-top-schedule .CF-mv-schedule-data {
    width: calc(50% - 15px);
    margin-right: 30px;
    background-color: #f3f0eb;
  }

  .-for-top-schedule .CF-mv-schedule-data:first-child {
    margin-right: 0;
  }

  .-for-top-schedule .CF-mv-schedule-label {
    height: 40px;
    width: 100%;
    margin-left: 0px;
    text-align: center;
    font-size: 20px;
    line-height: 2;
  }

  .-for-top-schedule .CF-mv-schedule-date {
    font-size: 15px;
    line-height: 41.53px;
    margin: 0px 5px;
    background-color: transparent;
    padding: 24px 13px 0px 16px;
  }

  .-for-top-schedule .CF-mv-schedule-date span {
    font-size: 20px;
  }

  .-for-top-schedule .CF-mv-schedule-date strong {
    font-size: 26px;
  }

  .-for-top-schedule .CF-mv-schedule-date .-icon-notice {
    font-size: 14px;
    line-height: 1.14;
    height: auto;
    padding: 5px 10px;
    width: auto;
    border-radius: 12.5px;
    position: static;
    display: block;
    max-width: 133px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
    margin-bottom: 20px;
  }

  .-for-top-schedule .CF-mv-btn {
    display: flex;
    justify-content: center;
    border: none;
    padding-top: 32px;
  }

  .-for-top-schedule .CF-mv-btn .CF-btn {
    font-size: 24px;
    line-height: 1.33;
    max-width: 600px;
    padding-top: 21px;
    padding-bottom: 21px;
    background-size: auto 24px;
  }

  .CF-section.for-individual-again .CF-btn {
    width: 420px;
  }

  .-for-publicExam .CF-top-aboutExam-text span {
    font-weight: bold;
  }

  .CF-top-aboutExam-item {
    display: grid;
    grid-template-columns: 210px 1fr;
    grid-template-rows: 1fr;
    border: solid 2px #CCCCCC;
    margin-top: -2px;
  }
  .CF-top-aboutExam-heading {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .CF-top-aboutExam-data {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    padding: 22px 22px 20px 32px;
  }
  .CF-top-aboutExam-text {
    line-height: 1.62;
    margin-bottom: 0px;
  }
  .-for-neededExam .CF-top-aboutExam-data {
    display: grid;
    grid-template-columns: 1fr 200px;
    grid-template-rows: 1fr;
  }
  .-for-neededExam .CF-top-aboutExam-text {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .-for-neededExam .CF-top-aboutExam-btn {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .-for-neededExam .CF-top-aboutExam-btn .CF-btn {
    font-size: 14px;
    line-height: 1.2;
    height: auto;
    background: url(/ns/ps/_assets/images/svg/arrow_blue.svg) no-repeat var(--color-base);
    background-position: right 15px top 16px;
    background-size: auto 12px;
  }
}

@media screen and (min-width:935px) {
  .-for-top-schedule .CF-mv-schedule-date {
    font-size: 20px;
  }

  .-for-top-schedule .CF-mv-schedule-date span {
    font-size: 26px;
  }

  .-for-top-schedule .CF-mv-schedule-date strong {
    font-size: 28px;
  }


}

@media screen and (min-width:1055px) {
  .-for-top-schedule .CF-mv-schedule-date strong {
    font-size: 35px;
  }
}

/*  試験日程・受験方法 */

/* 資格受付ONLINEとは */
section.-for-top-schedule-article {
  padding: 30px 20px;
  margin-top: 30px;
  border-top: 3px solid var(--color-def);
  background-color: #fff;
  border-top: solid 3px var(--color-accent);
}

section.-for-top-schedule section:last-child {
  margin-bottom: 20px;
}

.CF-top-about-title {
  font-size: 20px;
  line-height: 1.6;
  font-weight: bold;
  color: var(--color-def);
  text-align: center;
}

.CF-top-about-box {
  margin-top: 10px;
}

.CF-top-about-img {
  text-align: center;
}

.CF-top-about-img img {
  vertical-align: bottom;
  width: 200px;
}

.CF-top-about-data {
  padding-top: 18px;
  font-size: 18px;
  line-height: 1.33;
}

.CF-top-about-list {
  list-style: none;
  padding-left: 0;
  padding-bottom: 30px;
  color: #FF3F00;
}

.CF-top-about-list li {
  position: relative;
  font-size: var(--fs-component-16);
  line-height: 1.5;
  font-weight: bold;
  padding-left: 32px;
  margin-top: 15px;
}

.CF-top-about-list li::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/ns/ps/_assets/images/svg/icn_check.svg) center center no-repeat;
  background-size: contain;
  width: 21px;
  height: 35px;
  top: 0;
  left: 0;
}

.CF-top-about-list li span {
  background: linear-gradient(to top, #ffff00 0, #ffff00 40%, transparent 40%, transparent 100%);
}

.CF-top-about-btn {
  line-height: 1.3;
  font-weight: bold;
}

.CF-top-about-btn .CF-btn {
  padding: 8px 0px;
  background-size: auto 18px;
  border-width: 3px;
}

@media screen and (min-width:769px) {
  section.-for-top-schedule-article {
    max-width: var(--contents-width);
    margin: 51px auto 0px;
    border-top: 5px solid var(--color-accent);
    padding-top: 40px;
    padding-left: 50px;
    padding-bottom: 40px;
  }

  .CF-top-about-title {
    font-size: 28px;
    line-height: 1.14;
  }

  .CF-top-about-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .CF-top-about-img {
    margin: 0px;
  }

  .CF-top-about-text {
    text-align: left;
  }

  .CF-top-about-data {
    padding-top: 0px;
    font-size: 16px;
    margin-left: 38px;
  }

  .CF-top-about-btn {
    max-width: 420px;
    margin: 0px auto;
  }

  .CF-top-about-btn .CF-btn {
    padding: 14px 0px;
    line-height: 1.78;
  }
}

/* 資格受付ONLINEとは */

/* 受験方法　*/
.-for-top-method .CF-top-title {
  width: 116px;
  background-color: var(--color-dark-brown);
  border-radius: 5px 5px 5px 5px;
  margin: 0 auto;
}

.CF-top-method-box {
  background-color: var(--color-base);
  padding: 26px 13px 30px;
}

.-for-top-method .CF-top-title span {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  line-height: 1.45;
  font-weight: bold;
}

.CF-top-method-img {
  padding: 0px 20px;
}
.CF-top-method-img img {
  vertical-align: bottom;
  width: 100%;
}

.CF-top-method-title {
  font-size: var(--fs-component-18);
  font-weight: bold;
  text-align: center;
  margin-top: 17px;
}

.CF-top-method-title strong {
  font-size: 30px;
  color: var(--color-accent);
  font-weight: 800;
}

.CF-top-method-btn {
  margin-top: 23px;
}

.CF-top-method-btn .CF-btn {
  font-weight: bold;
  line-height: 1.31;
  padding: 8px 0px;
  color: var(--color-def);
  border: currentColor solid 2px;
  background: url(/ns/ps/_assets/images/svg/arrow01_black.svg) no-repeat var(--color-base);
  background-position: right 18px center;
  background-size: auto 17px;
}

.CF-top-method-wrapper .CF-top-method-detailBtn .CF-btn {
  border-width: 3px;
}
@media screen and (min-width:769px) {
  section.-for-top-method {
    padding-top: 0px;
    padding-right: 0px;
    height: 289px;
    position: relative;
    border-top: solid 5px var(--color-dark-brown);
  }

  .CF-top-method-img {
    width: 390px;
    margin-top: 0px;
    padding: 0px;
  }

  .CF-top-method-img img {
    object-fit: cover;
    height: 100%;
  }

  .CF-top-method-title {
    font-size: 16px;
    margin-top: 0px;
  }

  .CF-top-method-title strong {
    font-size: 32px;
  }

  .CF-top-method-btn {
    position: absolute;
    width: 260px;
  }

  .CF-top-method-btn .CF-btn {
    font-size: 10px;
    line-height: 2.29;
    padding: 2px 0px;
    background-position: right 14px center;
    background-size: auto 12px;
  }
}


@media screen and (min-width:850px) {

  .CF-top-method-img {
    width: 400px;
  }

  .CF-top-method-title {
    font-size: 24px;
  }

  .CF-top-method-title strong {
    font-size: 42px;
  }

  .CF-top-method-btn {
    width: 346px;
  }

  .CF-top-method-btn .CF-btn {
    font-size: 14px;
  }
}

@media screen and (min-width:930px) {

  .CF-top-method-img {
    width: 480px;
  }

  .CF-top-method-img img {
    object-fit: none;
  }


}

/* 受験方法　*/

/* 試験内容・学習について */
.-for-top-learn .CF-top-title > span {
  display: block;
  font-size: 22px;
  line-height: 2.05;
  font-weight: bold;
  width: fit-content;
}
.-for-top-learn .CF-top-title > span::before {
  background: url(/ns/ps/_assets/images/svg/icn_exam.svg) center center no-repeat;
  background-size: contain;
  width: 46px;
  height: 50px;
  margin: 0 auto 5px;
}
.CF-top-learn-img {
  width: 192px;
  margin: 30px auto;
}
.CF-top-learn-btn .CF-btn {
  padding: 3px 24px;
  background: url(/ns/ps/_assets/images/svg/arrow01_black.svg) no-repeat var(--color-base);
  background-position: right 10px top 19px;
  background-size: auto 15px;
}
@media screen and (min-width:769px) {
  .-for-top-learn .CF-top-title {
    margin-bottom: 20px;
  }
  .-for-top-learn .CF-top-title > span {
    position: relative;
    font-size: 40px;
    line-height: 1.125;
  }
  .-for-top-learn .CF-top-title > span::before {
    width: 45px;
    height: 50px;
    margin: 0 0 0px;
    display: inline-block;
    position: absolute;
    left: -65px;
    top: -8px;
  }
  .CF-top-learn-wrapper {
    position: relative;
  }
  .-for-top-learn .CF-top-title-text {
    width: calc(100% - 180px);
    padding-right: 22px;
    text-align: left;
    font-size: 16px;
    margin-bottom: 40px;
  }
  .CF-top-learn-img {
    width: 180px;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .CF-top-learn-btn .CF-btn {
    padding: 3px 24px;
    background: url(/ns/ps/_assets/images/svg/arrow01_black.svg) no-repeat var(--color-base);
    background-position: right 10px top 19px;
    background-size: auto 15px;
    max-width: 400px;
    padding: 16px 35px;
  }
}
@media screen and (min-width:810px) {
  .CF-top-learn-btn .CF-btn {
    max-width: 420px;
  }
}
@media screen and (min-width:970px) {
  .-for-top-learn .CF-top-title-text {
    text-align: right;
  }
}
/* /試験内容・学習について */

/* 新規記事コラム */
.CF-marketing-blog-list-wrapper {
  margin-bottom: 0px;
}

.CF-marketing-blog-list-inner {
  border-top: solid 3px #CCCCCC;
  padding: 30px 0px 0px;
}

.CF-marketing-blog-list-main-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 17px;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.CF-marketing-blog-list-main-title::before {
  content: "";
  display: block;
  background: url(/ns/ps/_assets/images/svg/icn_column.svg) center center no-repeat;
  background-size: contain;
  width: 34px;
  height: 50px;
  margin: 0 auto 5px;
  position: absolute;
  top: -10px;
  left: -50px;
}

.CF-marketing-blog-list-contents {
  padding-top: 20px;
  padding-bottom: 19px;
  display: flex;
  justify-content: flex-start;
  border-bottom: #ccc solid 1px;
}

.CF-marketing-blog-list-inner>a:first-of-type {
  border-top: #ccc solid 1px;
}

.CF-marketing-blog-list-img {
  width: 100px;
  flex-shrink: 0;
  margin-right: 16px;
}

.CF-marketing-blog-list-contents-link {
  text-decoration: none;
  display: block;
}

.CF-marketing-blog-list-textarea {
  color: var(--color-def);
}

.CF-marketing-blog-list-dataWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.CF-marketing-blog-list-date {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-accent);
  font-weight: bold;
  margin-right: 5px;
}

.CF-marketing-blog-list-tag {
  background-color: var(--color-dark-blue);
  color: var(--color-base);
  display: inline-block;
  font-size: 12px;
  min-height: 20px;
  line-height: 1.67;
  padding: 0px 7px;
  word-break: break-all;
  border-radius: 5px;
}

.CF-marketing-blog-list-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 14px;
}

.CF-marketing-blog-btn {
  font-weight: bold;
  margin-top: 30px;
}


@media screen and (min-width:769px) {
  .CF-marketing-blog-list-textarea {
    max-width: 590px;
  }
  .CF-marketing-blog-list-contents {
    position: relative;
  }
  .CF-marketing-blog-list-contents::after {
    content: "";
    display: block;
    background-image: url(/ns/ps/_assets/images/svg/arrow01_black.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 1049px) {
  .CF-marketing-blog-list-contents::after {
    width: 32px;
    height: 32px;
  }
  .CF-marketing-blog-list-inner {
    border-top: solid 5px #CCCCCC;
    padding: 70px 0px 0px;
  }
  
  .CF-marketing-blog-list-main-title {
    font-size: 40px;
    padding-bottom: 15px;
  }
  
  .CF-marketing-blog-list-main-title::before {
    width: 68px;
    top: 0px;
    left: -83px;
  }
  
  .CF-marketing-blog-list-contents {
    padding-top: 28px;
    padding-bottom: 29px;
    border-bottom: #ccc solid 2px;
  }
  
  .CF-marketing-blog-list-inner>a:first-of-type {
    border-top: #ccc solid 2px;
  }
  
  .CF-marketing-blog-list-img {
    width: 220px;
    margin-right: 28px;
  }
  
  .CF-marketing-blog-list-title {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 11px;
  }
  
  .CF-marketing-blog-btn {
    font-weight: bold;
    margin-top: 32px;
    width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* /新規記事コラム */

/* 背景色付きカードリスト */
.CF-section.-for-to-card-list {
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: var(--color-cream);
}

.CF-card-list-data {
  background-color: var(--color-base);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
}

.CF-card-list-data:last-child {
  margin-bottom: 0px;
}

.CF-card-list-img {
  width: 90px;
  min-width: 90px;
}

.CF-card-list-group {
  margin-left: 15px;
  width: 100%;
}

.CF-card-list-text {
  font-size: 16px;
  line-height: 1.5;
  margin-top: -3px;
}

.CF-card-list-btn {
  min-width: 200px;
  margin-top: 10px;
}

.CF-card-list-btn .CF-btn {
  padding: 6px 0px;
  font-size: 14px;
  line-height: 1.85;
  background-position: right 10px center;
  background-size: auto 12px;
  border: none;
}

.CF-group-exam-data {
  background-color: var(--color-base);
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

.CF-group-exam-card-img {
  margin-bottom: 10px;
}

.CF-group-exam-card-img img {
  width: 77px;
}

.CF-group-exam-card-text {
  margin-bottom: 12px;
  font-size: 16px;
}

.CF-group-exam-card-btn .CF-btn {
  color: var(--color-base);
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
  background: url(/ns/ps/_assets/images/svg/arrow01_white.svg) no-repeat var(--color-orange);
  background-position: right 18px center;
  background-size: auto 17px;
  border: var(--color-dark-orange) solid 2px;
  padding: 10px 18px;
}

.CF-btn.-is-letter-space-narrow_SP {
  letter-spacing: -2px;
}

@media screen and (min-width:769px) {
  .CF-section.-for-to-card-list {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .CF-card-list-upper-side-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .CF-card-list-data {
    width: 48.5%;
    padding-top: 30px;
    padding-left: 30px;
    margin-bottom: 0px;
  }

  .CF-card-list-img {
    flex-shrink: 0;
    width: 27%;
  }

  .CF-card-list-group {
    margin-left: 20px;
  }

  .CF-card-list-text {
    font-size: 14px;
    line-height: 1.78;
  }

  .CF-card-list-btn {
    width: 100%;
    margin-top: 25px;
  }

  .CF-card-list-btn .CF-btn {
    font-size: 12px;
    line-height: 1.625;
    background-position: right 15px center;
  }

  .CF-group-exam-data.-forSP-flat {
    display: flex;
    align-items: center;
    margin-top: 30px;
  }

  .CF-group-exam-data.-forSP-flat .CF-group-exam-card-img {
    margin-top: 15px;
    margin-left: 10px;
  }

  .CF-group-exam-data.-forSP-flat .CF-group-exam-card-text {
    line-height: 1.78;
    margin-bottom: 0px;

    font-size: 14px;
    width: 44%;
  }

  .CF-group-exam-data.-forSP-flat .CF-group-exam-card-btn {
    width: 42%;
  }

  .CF-group-exam-data.-forSP-flat .CF-group-exam-card-btn .CF-btn {
    font-size: 18px;
    line-height: 1.17;
    padding: 18px 0px;
    display: inline-block;
    padding-right: 10px;
    background-position: right 13px center;
    background-size: auto 15px;
  }

  .CF-group-exam-card-btn br.forSP {
    display: block;
  }

  .CF-btn.-is-letter-space-narrow_SP {
    letter-spacing: 0px;
  }
}

@media screen and (min-width:900px) {
  .CF-card-list-text {
    font-size: 18px;
    line-height: 1.78;
  }

  .CF-card-list-btn .CF-btn {
    font-size: 16px;
    line-height: 1.625;
    background-position: right 15px center;
    max-width: 260px;
  }
}

@media screen and (min-width:1050px) {
  .CF-group-exam-card-btn br.forSP {
    display: none;
  }

  .CF-group-exam-data.-forSP-flat .CF-group-exam-card-text {
    font-size: 18px;
    line-height: 1.78;
    margin-bottom: 0px;
    margin-left: 20px;
    text-align: left;
  }

  .CF-group-exam-data.-forSP-flat .CF-group-exam-card-btn {
    width: 420px;
    margin-left: 0px;
  }

  .CF-group-exam-data.-forSP-flat {
    display: flex;
    align-items: center;
    margin-top: 30px;
  }
}

/* /背景色付きカードリスト */


/*
/////////////////////////////////////////////////////

ビジネス著作権検定とは

/////////////////////////////////////////////////////
*/
@media screen and (min-width:769px) {
  .CF-introduction-about .CF-bc-notice {
    margin-bottom: 0px;
  }
}


/*
/////////////////////////////////////////////////////

著作権検定委員会

/////////////////////////////////////////////////////
*/
.CF-committee-date {
  margin-top: 20px;
  text-align: right;
}


/*
/////////////////////////////////////////////////////

試験日程・受験方法

/////////////////////////////////////////////////////
*/
/* アノテーション */
.CF-annotation {
  border: solid 5px #F3F3F3;
  padding: 0px 15px;
}

.CF-annotation-box {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cccccc;
}

.CF-annotation-box:last-child {
  border-bottom: none;
}

.CF-annotation-box-flex .CF-annotation-text-box {
  margin-bottom: 20px;
}

.CF-annotation-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
}

.CF-annotation-text {
  font-size: 14px;
  line-height: 1.5;
}

.CF-annotation-box-flex .CF-annotation-text {
  margin-top: 10px;
}

@media screen and (min-width:769px) {
  .CF-annotation {
    border-width: 10px;
    padding: 0px 30px;
  }

  .CF-annotation-box {
    padding-top: 30px;
    padding-bottom: 0px;
    border-bottom: none;
    position: relative;
  }

  .CF-annotation-box-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .CF-annotation-box-flex .CF-annotation-text-box {
    margin-bottom: 0px;
  }

  .CF-annotation-box-flex .CF-annotation-img-box {
    max-width: 325px;
    flex-shrink: 0;
    margin-left: 30px;
  }

  .CF-annotation-box:last-child {
    padding-bottom: 30px;
  }

  .CF-annotation-box::after {
    content: "";
    display: block;
    width: 305px;
    height: 1px;
    background-color: var(--color-gray);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .CF-annotation-box:last-child:after {
    display: none;
  }

  .CF-annotation-text {
    margin-left: 15px;
  }
  .-is-text-flat-forPC .CF-annotation-text {
    position: absolute;
    top: 8px;
    left: 250px;
  }
  .CF-annotation-text.-has-slash-forPC {
    font-size: 14px !important;
  }
  .CF-annotation-text.-has-slash-forPC::before {
    content: "＼";
  }

  .CF-annotation-text.-has-slash-forPC::after {
    content: "／";
  }
}
@media screen and (min-width:820px) {
  .CF-annotation-text.-has-slash-forPC {
    font-size: 16px !important;
  }
}

/* アノテーション */

/* 受験方法 */
.CF-section.for-individual-method {
  margin-top: 50px;
}


.CF-individual-method-box {
  padding-top: 20px;
}

.CF-individual-method-img {
  width: 280px;
  margin: 0px auto;
}

.CF-individual-method-text {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 5px;
}

.CF-individual-method-btn {
  margin-top: 24px;
}

.CF-individual-method-btn .CF-btn {
  font-size: 16px;
  line-height: 1.31;
  padding: 8px 0px;
}

.CF-individual-method-title strong {
  font-size: 30px;
  color: var(--color-dark-orange);
  font-weight: 800;
}

.CF-individual-method-title {
  font-size: var(--fs-component-18);
  line-height: 39.2px;
  font-weight: bold;
  text-align: center;
}

.CF-annotation-title.-has-left-red-line {
  border-left: solid 5px var(--color-accent);
  padding-left: 10px;
}

.for-individual-method .CF-annotation-title {
  font-size: 18px;
  line-height: 18px;
  padding-top: 2px;
}

.for-individual-method .CF-annotation-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.CF-annotation-special-support {
  margin-top: 30px;
}

.CF-annotation-special-support .CF-annotation-btn {
  margin-top: 15px;
}

.CF-annotation-special-support .CF-btn {
  font-size: 16px;
  line-height: 1.31;
  padding: 8px 40px;
}

.CF-icon-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}

.CF-icon-group-data {
  padding-bottom: 6px;
  width: 46.5%;
}

.CF-icon-group-data:nth-child(2n) {
  margin-left: 7%;
}

.CF-icon-group-icon {
  height: 56px;
  background-color: #EAF6FF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.CF-icon-group-text {
  font-size: 12px;
  line-height: 1.33;
  text-align: center;
  margin-top: 6px;
}

.CF-exam-date-notice {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}

.CF-exam-date-notice::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.CF-exam-date-notice.-is-bolder {
  font-weight: bold;
}

.CF-exam-date-notice ul {
  padding-left: 0px;
  margin-left: -18px;
}

.CF-exam-date-notice ul li {
  list-style: none;
  padding-left: 14px;
  position: relative;
}

.CF-exam-date-notice ul li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.CF-exam-date-notice a {
  color: var(--color-accent);
  text-decoration: underline;
  cursor: pointer;
}

.CF-exam-venue-title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
}

.CF-exam-venue-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-red);
  margin-top: 10px;
}

@media screen and (min-width:769px) {
  .CF-top-method-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    padding: 26px 35px 30px;
  }
  .CF-top-method-img {
    flex-shrink: 1;
    width: auto;
  }
  .CF-top-method-img img {
    width: 354px;
    object-fit: fill;
  }
  .CF-top-method-btn {
    margin-top: 34px;
  }
  .CF-annotation-special-support .CF-annotation-btn {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .CF-annotation-special-support .CF-annotation-btn .CF-btn {
    padding-top: 13px;
    padding-bottom: 13px;
    background: url(/ns/ps/_assets/images/svg/arrow01_black.svg) no-repeat var(--color-base);
    background-position: right 18px center;
    background-size: auto 12px;
  }
  .CF-icon-group {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .CF-icon-group-data {
    padding-bottom: 0px;
    width: auto;
  }
}
/* /試験日程・受験方法 */


/*
/////////////////////////////////////////////////////

試験日程・受験方法（タブ切替）

/////////////////////////////////////////////////////
*/
.pt_individual_tab input[type="radio"] {
  display: none;
}
.pt_individual_tab_label {
  padding: 0px 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.pt_individual_tab_label label {
  font-size: 14px;
  line-height: 1.3;
  height: 60px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  background-color: #F3F3F3;
  text-align: center;
  border: solid 3px #CCCCCC;
  border-bottom: solid 3px var(--color-accent);
}
#testingMethod01:checked ~ .pt_individual_tab_label #testingMethod_label_01 {
  color: var(--color-base);
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  position: relative;
}
#testingMethod01:checked ~ .pt_individual_tab_label #testingMethod_label_01::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 20px solid var(--color-accent);
  border-bottom: 0;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
#testingMethod02:checked ~ .pt_individual_tab_label #testingMethod_label_02 {
  color: var(--color-base);
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  position: relative;
}
#testingMethod02:checked ~ .pt_individual_tab_label #testingMethod_label_02::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 20px solid var(--color-accent);
  border-bottom: 0;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.pt_individual_tab_contentBox {
  margin-top: -3px;
  padding-top: 24px;
  border-top: solid 3px var(--color-accent);
  border-bottom: solid 3px var(--color-accent);
}
/* タブ切替 */
.pt_individual_tab_content {
  display: none;
}
#testingMethod01:checked ~ .pt_individual_tab_contentBox #testingMethod_content_01 {
  display: block;
}
#testingMethod02:checked ~ .pt_individual_tab_contentBox #testingMethod_content_02 {
  display: block;
}
/* /タブ切替 */
.pt_individual_tab_content .CF-section:last-child {
  margin-bottom: 26px;
}
#testingMethod_content_01 .CF-component-tab-topText {
  font-size: 14px;
  text-align: center;
  margin-bottom: 13px;
}

@media screen and (min-width:769px) {
  .pt_individual_tab {
    max-width: var(--contents-width);
    margin: 0 auto;
  }
  .pt_individual_tab_label {
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pt_individual_tab_label label {
    font-size: 20px;
    line-height: 1.5;
    height: 70px;
  }
  .pt_individual_tab_label label:hover {
    cursor: pointer;
  }
  .pt_individual_tab_contentBox {
    padding-top: 30px;
    border: solid 3px var(--color-accent);
  }
  .pt_individual_tab_content .CF-section {
    margin-bottom: 45px;
    padding: 0 50px;
  }
  #testingMethod_content_01 .CF-component-tab-topText {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 24px;
  }
  #testingMethod_content_01 .CF-component-tab-topHeading {
    margin-top: 0px;
  }
  .pt_individual_tab_content .CF-section:last-child {
    margin-bottom: 46px;
  }
}

/*
/////////////////////////////////////////////////////

試験日程・受験方法（受験方法）

/////////////////////////////////////////////////////
*/
@media screen and (min-width:769px) {
  .for-individual-method .CF-top-method-box {
    display: grid;
    grid-template-columns:1fr 35px 47%;
    grid-template-rows: 1fr;
    padding: 0px 0px 50px;
  }
  .for-individual-method .CF-top-method-img {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }
  .for-individual-method .CF-top-method-img img {
    width: 100%;
  }
  .for-individual-method .CF-top-method-data {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .for-individual-method .CF-top-method-title {
    text-align: left;
  }
  .for-individual-method .CF-top-method-btn {
    position: relative;
    margin-top: 24px;
  }
}

/*
/////////////////////////////////////////////////////

新規記事コラム（詳細ページ）

/////////////////////////////////////////////////////
*/
/* ヘッダー */
.CF-new-article-header-wrapper {
  background-color: var(--color-cream);
  padding: 30px 15px;
}

.CF-new-article-heading-box {
  border-bottom: solid 1px #ccc;
}

.CF-new-article-heading {
  padding-top: 50px;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  position: relative;
}

.CF-new-article-heading::before {
  content: "";
  background: url(/ns/ps/_assets/images/svg/icn_column.svg) center center no-repeat;
  background-size: contain;
  width: 66px;
  height: 39px;
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.CF-new-article-heading-back {
  max-width: 240px;
  margin: 30px auto;
}

.CF-new-article-heading-back .CF-btn {
  padding: 8px 18px;
  background-image: none;
  position: relative;
  font-size: 14px;
}

.CF-new-article-heading-back .CF-btn::before {
  content: "";
  background: url(/ns/ps/_assets/images/svg/arrow01_black.svg) center center no-repeat;
  background-size: contain;
  width: 10px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%) rotate(180deg);
}

.CF-new-article-title-box {
  padding-top: 30px;
}

.CF-new-article-title-date {
  color: var(--color-accent);
  margin-bottom: 10px;
  font-weight: bold;
}

.CF-new-article-title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: normal;
}

@media screen and (min-width:769px) {
  .CF-new-article-header-wrapper {
    padding: 40px 0px;
  }

  .CF-new-article-header-inner {
    max-width: 1020px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
  }

  .CF-new-article-heading-box {
    border-bottom: none;
    padding-right: 50px;
    border-right: solid 1px #ccc;
  }

  .CF-new-article-heading {
    padding-top: 70px;
    font-size: 20px;
  }

  .CF-new-article-heading::before {
    top: 25px;
  }

  .CF-new-article-heading-back {
    max-width: 135px;
    margin: 25px auto 0;
  }

  .CF-new-article-title-box {
    padding-top: 0px;
    padding-left: 50px;
  }

  .CF-new-article-title {
    font-size: 30px;
    line-height: 1.5;
    font-weight: bold;
  }

  .CF-new-article-heading-back .CF-btn {
    padding: 3px 18px;
  }
}

/* /ヘッダー */

/* 本文 */
.CF-new-article-beginning-img {
  margin: 30px auto 0;
  text-align: center;
}

.CF-new-article-beginning-annotation {
  padding: 20px;
}

.CF-new-article-beginning-annotation-btn .CF-btn {
  margin-top: 15px;
  padding: 15px 18px;
}

.CF-new-article-section .CF-heading-meddium {
  padding: 15px;
  line-height: 1.3;
}

.CF-new-article-section .CF-heading-bgtitle {
  background-color: transparent;
  padding: 7px 0px;
}

.CF-new-article-section-text h4 {
  font-weight: normal;
  margin-bottom: 12px;
}

@media screen and (min-width:769px) {
  .CF-new-article-beginning-img {
    margin: 50px auto 50px;
    width: fit-content;
  }

  .CF-new-article-beginning-annotation {
    padding: 25px;
  }

  .CF-new-article-beginning-annotation-btn .CF-btn {
    margin-top: 30px;
    max-width: 250px;
  }

  .CF-new-article-section .CF-heading-meddium {
    padding: 15px 20px;
    line-height: 1.5;
  }

  .CF-new-article-section-text h4 {
    font-weight: bold;
  }

  .CF-new-article-beginning-annotation-btn .CF-btn {
    padding: 5px 18px;
    background: url(/ns/ps/_assets/images/svg/arrow_blue.svg) no-repeat var(--color-base);
    background-position: right 18px center;
    background-size: auto 14px;
    border-width: 3px;
  }
}

/* /本文 */

/* サンプル問題 */
.CF-annotation>.CF-heading-bgtitle.-is-first {
  margin-top: 0;
}

.CF-new-article-section .CF-question-text-data {
  background-color: var(--color-dark-blue);
  color: var(--color-base);
}

.CF-new-article-section .CF-question-box {
  border-radius: 0;
  height: auto;
}

.CF-new-article-section .CF-question-icon {
  margin-top: 16px;
}

.CF-new-article-section .CF-question-btn-data {
  border-radius: 0;
  border: transparent;
}

.CF-new-article-sample-btn .CF-btn {
  margin-top: 15px;
  padding: 15px 18px;
}

.CF-new-article-sample-answer {
  color: #FF3F00;
  text-align: center;
  margin: 15px 0 0;
}

.CF-new-article-section .CF-question-btn-data {
  background-color: var(--color-cream);
}

@media screen and (min-width:769px) {

  .CF-new-article-section .CF-question-text-data {
    padding-left: 0;
    padding: 13px 16px 13px 0px;
  }

  .CF-new-article-section .CF-question-btn-data {
    pointer-events: none;
    width: 100%;
    background-color: var(--color-cream);
    min-height: auto;
  }

  .CF-new-article-section .CF-question-btn-box {
    display: block;
    width: 100%;
  }

  .CF-new-article-section .CF-question-icon {
    margin-top: 14px;
    max-width: 55px;
    padding: 0 15px;
  }

  .CF-new-article-sample-btn .CF-btn {
    margin-top: 30px;
    max-width: 340px;
  }

  .CF-new-article-sample-answer {
    text-align: left;
    margin: 30px 0 0;
  }

  .CF-new-article-sample-btn .CF-btn {
    padding: 5px 18px;
    max-width: 250px;
    border-width: 3px;
    background: url(/ns/ps/_assets/images/svg/arrow_blue.svg) no-repeat var(--color-base);
    background-position: right 18px center;
    background-size: auto 14px;
  }
}

/* /サンプル問題 */

/* 執筆者プロフィール */
.CF-writer-profile {
  display: flex;
  background-color: #F3F3F3;
  padding: 20px 15px;
}

.CF-writer-profile-img-box {
  min-width: 100px;
  margin-right: 20px;
}

.CF-writer-profile-img {
  margin-bottom: 10px;
}

.CF-writer-profile-img-btn .CF-btn {
  padding: 0;
  font-size: 12px;
  border-radius: 12.5px;
  background: url(/ns/ps/_assets/images/svg/arrow01_black.svg) no-repeat transparent;
  background-position: right 5px center;
  background-size: auto 8px;
}

.CF-writer-profile-about {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.CF-writer-profile-name {
  color: var(--color-dark-blue);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.CF-new-article-back {
  max-width: 240px;
  margin: 0px auto 50px;
}

.CF-new-article-back .CF-btn {
  padding: 7px 18px;
}

@media screen and (min-width:769px) {
  .CF-article-section-profile {
    margin-bottom: 40px;
  }

  .CF-writer-profile {
    padding: 30px 20px;
  }

  .CF-new-article-back {
    margin-bottom: 80px;
  }
}


/*
/////////////////////////////////////////////////////

想定受験者

/////////////////////////////////////////////////////
*/
.CF-section.-for-examinee {
  margin-bottom: 0px;
}
.CF-examinee-wrapper {
  padding: 0px 10px 30px;
}
.CF-examinee-item {
  padding: 15px 30px 0px;
  border: solid 1px #CCCCCC;
  border-radius: 10px;
  margin-top: 20px;
}
.CF-examinee-item-top {
  padding-bottom: 30px;
}
.CF-examinee-item-top-heading {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: var(--color-dark-blue);
}
.CF-examinee-item-top-icon {
  margin-top: 10px;
  height: 60px;
  text-align: center;
}
.CF-examinee-item-top-icon img {
  height: 100%;
}
.CF-examinee-item-top-list {
  margin-top: 10px;
  padding-left: 0px;
  text-align: center;
}
.CF-examinee-item-top-list li {
  font-size: 16px;
  list-style: none;
  position: relative;
}
.CF-examinee-item-top-list li::before {
  content: "・";
  display: inline-block;
}
.CF-examinee-item-middle {
  border-top: solid 1px #CCCCCC;
  padding-top: 6px;
}
.CF-examinee-item-middle-heading {
  color: var(--color-dark-blue);
  font-size: 16px;
  font-weight: bold;
}
.CF-examinee-item-middle-list {
  margin-top: 10px;
  padding-left: 0px;
  padding-bottom: 12px;
}
.CF-examinee-item-middle-list li {
  font-size: 16px;
  list-style: none;
  position: relative;

}
.CF-examinee-item-middle-list li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0px;
  left: -1rem;
}
.CF-examinee-item-bottom {
  border-top: solid 1px #CCCCCC;
  padding-top: 6px;
  padding-bottom: 20px;
}
.CF-examinee-item-bottom-heading {
  color: var(--color-dark-blue);
  font-size: 16px;
  font-weight: bold;
}
.CF-examinee-item-bottom-voice a {
  display: block;
  color: var(--color-accent);
  font-size: 16px;
  margin-top: 7px;
  padding-left: 30px;
  position: relative;
}
.CF-examinee-item-bottom-voice a::before {
  content: "";
  display: block;
  background-image: url(/ns/ps/_assets/images/learn/examinee/field_ico_voice.png);
  background-position: center;
  background-size: 26px;
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 0px;
  left: 0px;
}


@media screen and (min-width:769px) {
  .CF-section.-for-examinee {
    margin-bottom: 30px;
  }
  .CF-examinee-wrapper {
    padding: 0px 30px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .CF-examinee-item {
    margin-top: 10px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0px;
  }
  .CF-examinee-item-top {
    padding-bottom: 0px;
  }
  .CF-examinee-item-top-list {
    margin-bottom: 10px;
  }
}

/*
/////////////////////////////////////////////////////

オープンバッジ/デジタル認定証明書

/////////////////////////////////////////////////////
*/
.-is-badge-box img {
  height: 100px;
}

@media screen and (min-width:769px) {
  .-is-badge-box img {
    height: 160px;
  }
}

/*
/////////////////////////////////////////////////////

検定委員会

/////////////////////////////////////////////////////
*/
.CF-committee-date {
  text-align: right;
}
.CF-committee-member-img img {
  max-width: 80px;
}
@media screen and (min-width:769px) {
  .CF-committee-member-img img {
    max-width: none;
  }
}

/*
/////////////////////////////////////////////////////

PBL

/////////////////////////////////////////////////////
*/
.CF-pbl-index3_box {
  border: 1px solid var(--color-def);
  padding: 5px 10px;
  display: inline-block;
}

.-pbl-part03-movie-item {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.-pbl-part03-movie-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.CF-component-text.CF-bpl-2023-block02 {
  background: #EEE;
  padding: 24px;
}

.CF-component-text.CF-bpl-2023-block02 .pt-name {
  margin-top: 20px;
  text-align: right;
}


/*
/////////////////////////////////////////////////////

受験者の声・活用事例

/////////////////////////////////////////////////////
*/
.CF-voice-voice-box a.voicelink {
  text-decoration: none;
  margin-bottom: 20px;
  border: 1px solid #cccccc;
  display: block;
}

.CF-voice-voice-data {
  border-top: var(--color-accent) solid 3px;
  padding: 20px 0px 0px;
  background-color: #f3f3f3;
}

.CF-voice-voice-leftbox {
  margin-left: 20px;
  margin-right: 20px;
}

.CF-voice-voice-group {
  margin-top: 20px;
  margin-left: 15px;
}

.CF-voice-voice-data .imgbox img {
  vertical-align: bottom;
  width: 100%;
}

.CF-voice-voice-leftbox img.default {
  width: 88px;
  height: 88px;
}

.CF-voice-voice-subtitle {
  font-size: var(--fs-component-18);
  line-height: 1.56;
  color: var(--color-def);
  font-weight: bold;
  margin-top: -3px;
  word-break: break-all;
}

.CF-voice-voice-company {
  font-size: var(--fs-component-12);
  line-height: 2.1;
  color: #000;
  margin-top: -2px;
}

.CF-voice-voice-name {
  font-size: var(--fs-component-16);
  line-height: 1.56;
  color: #000;
}

.CF-voice-voice-more {
  text-align: center;
  background-color: var(--color-accent);
  height: 40px;
  margin-top: 10px;
}

.CF-voice-voice-more span {
  display: block;
  font-size: var(--fs-component-16);
  position: relative;
  text-decoration: none;
  color: #fff;
  background: url(/ns/ps/_assets/images/svg/arrow01_white.svg) right 12px center no-repeat;
  background-size: auto 12px;
  line-height: 2.5;
  font-weight: bold;
}

@media screen and (min-width:769px) {
  .CF-voice-voice-box a.voicelink {
    margin-bottom: 28px;
    min-height: 136px;
  }

  .CF-voice-voice-data {
    position: relative;
    border-top: none;
    border-left: var(--color-accent) solid 8px;
    padding: 0px;
    display: flex;
  }

  .CF-voice-voice-leftbox {
    display: flex;
    margin: 25px 0px 22px 30px;
    width: 780px;
    align-items: center;
  }

  .CF-voice-voice-data .imgbox {
    width: 200px;
    flex-shrink: 0;
  }

  .CF-voice-voice-group {
    margin-left: 20px;
  }

  .CF-voice-voice-subtitle {
    font-size: 26px;
    line-height: 1.15;
    margin-top: 1px;
    margin-bottom: 10px;
    margin-right: 15px;
  }

  .CF-voice-voice-more.forPC {
    width: 200px;
    height: auto;
    display: flex;
    align-items: center;
    margin-top: 0px;
  }

  .CF-voice-voice-more span {
    width: 100%;
    font-size: 12px;
  }
}

/* 詳細ページ */
.-for-voice-and-casestudy .CF-back-btn {
  text-align: right;
}
.-for-voice-and-casestudy .CF-btn {
    border: #999999 solid 1px;
    color: #333 !important;
    background: url(/ns/ps/_assets/images/svg/gray-arrow-reverse.svg) left 10px center no-repeat #ffffff;
    background-size: 7px 11px;
    padding: 10px 30px;
    display: inline-block;
    width: fit-content;
    margin: 20px 0px;
}


/*
/////////////////////////////////////////////////////

お役立ちコンテンツ

/////////////////////////////////////////////////////
*/
.CF-heading-meddium-subtext {
  font-size: 16px;
  line-height: 1.5;
  padding-top: 20px;
  padding-bottom: 20px;
}

.-for-contents-marketing-blog .CF-marketing-blog-list-inner {
  border-top: none;
  border-radius: 0px;
  padding: 0px;
}

.-for-contents-marketing-blog .CF-marketing-blog-list-wrapper {
  border: none;
  border-radius: 0px;
}

.CF-heading-meddium.-is-color-blue {
  background: var(--color-pale-blue);
  border-left: var(--color-blue) solid 5px;
}

.CF-marketing-blog-list-tag.-is-color-blue {
  background-color: var(--color-blue);
}

.CF-marketing-blog-list-contents-wrapper {
  border: none;
}

@media screen and (min-width:769px) {
  .-for-contents-marketing-blog .CF-heading-meddium {
    margin-bottom: 0px;
  }

  .-is-flat-for-PC .CF-marketing-blog-list-wrapper {
    width: 100%;
  }

  .-for-contents-marketing-blog .CF-marketing-blog-list-img {
    width: 23%;
    margin-left: 2%;
  }

  .-for-contents-marketing-blog img {
    width: 100%;
  }

  .-for-contents-marketing-blog .CF-marketing-blog-list-textarea {
    width: 75%;
    max-width: 500px;
  }

  .-for-contents-marketing-blog .CF-marketing-blog-list-title {
    font-size: 20px;
  }

  .-for-contents-marketing-blog .CF-marketing-blog-list-date {
    font-size: 16px;
    line-height: 1.75;
  }

  .CF-marketing-blog-list-textarea__reverse-forPC .CF-marketing-blog-list-tag {
    text-align: center;
    width: 120px;
  }

  .-for-contents-marketing-blog .CF-marketing-blog-list-textarea__reverse-forPC .CF-marketing-blog-list-text-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
  }

  .-for-contents-marketing-blog .CF-marketing-blog-list-textarea__reverse-forPC .CF-marketing-blog-list-tag {
    text-align: center;
    width: 120px;
  }

  .-for-contents-marketing-blog .CF-marketing-blog-list-contents::after {
    width: 18px;
    height: 18px;
  }

}

@media screen and (min-width:1090px) {
  .-is-flat-for-PC .CF-marketing-blog-list-contents-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: #cccccc solid 1px;
  }

  .-is-flat-for-PC .CF-marketing-blog-list-contents-wrapper a {
    border-bottom: #cccccc solid 1px;
    margin-bottom: -1px;
  }

  .-is-flat-for-PC .CF-marketing-blog-list-contents {
    padding-top: 30px;
    padding-bottom: 30px;
    border: none;
    width: 510px;
  }

  .-is-flat-for-PC .CF-marketing-blog-list-contents.-has-border-top {
    border: none;
  }

  .-is-flat-for-PC .CF-marketing-blog-list-img {
    width: 200px;
  }

  .-is-flat-for-PC .CF-marketing-blog-list-img img {
    width: 200px;
  }

  .-is-flat-for-PC .CF-marketing-blog-list-title {
    max-width: 220px;
    font-size: 18px;
  }

  .-is-flat-for-PC .CF-heading-meddium-subtext {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .-is-flat-for-PC .CF-marketing-blog-list-contents::after {
    right: 24px;
  }
}




/*
/////////////////////////////////////////////////////

【団体受験】教育機関・企業の方はこちら(新規追加パーツ)

/////////////////////////////////////////////////////
*/
.CF-brightBtn a {
  display: block;
  border: 2px solid #333333;
  border-radius: 1000px;
  background-image: url('data:image/svg+xml;utf8,<svg id="c_arrow" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6.447 11.462"><path d="M1.126,0,0,1.214,4.2,5.737,0,10.248l1.126,1.214L6.447,5.737Z" fill="%232f2727"/></svg>');
  background-repeat: no-repeat;
  background-size: 6.45px 11.462px;
  background-position: right 14px center;
  background-color: #fff !important;
  font-size: 14px;
  line-height: 1.2;
  padding: 10px;
  color: #333 !important;
  font-weight: 700;
  width: 100%;
  text-decoration: none;
  text-align: center;
}

.CF-p-c-lea-model .CF-brightBtn {
  margin-top: 20px;
}

.CF-passed-the-exam {
  background-color: #fff;
  margin-top: 16px;
  padding: 18px;
  border: 5px solid #F3F3F3;
}

.CF-passed-the-exam-container {
  display: grid;
  grid-template-columns: 26.76% 8% 26.76% 8.38% 30.1%;
}

.CF-passed-the-exam-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.CF-passed-the-exam-item-title {
  font-size: 12px;
  color: #fff;
  text-align: center;
  background-color: var(--color-accent);
  padding: 4px;
}

.CF-passed-the-exam-item-img.-is-first {
  padding: 10px 12.5px 10px 10px;
  background-color: var(--color-cream);
  text-align: center;
}

.CF-passed-the-exam-item-img.-is-second {
  padding: 23px 5px 10.8px;
  background-color: var(--color-cream);
  text-align: center;
}

.CF-passed-the-exam-item-img img {
  width: 100%;
  vertical-align: bottom;
}

.CF-passed-the-exam-item-img.-is-first img {
  max-width: 71.81px;
  box-shadow: 0px 0px 15px -5px #999;
}

.CF-passed-the-exam-item-img.-is-second img {
  max-width: 105.7px;
}

.CF-passed-the-exam-item-caption {
  font-size: 12px;
  text-align: center;
  padding: 4px 4px 0;
}

.CF-passed-the-exam-item.-is-nosubgrid {
  position: relative;
}

.CF-passed-the-exam-item.-is-nosubgrid .CF-passed-the-exam-item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
}

.CF-passed-the-exam-item.-is-nosubgrid .CF-passed-the-exam-item-img.-is-equal {
  width: 19px;
}

.CF-passed-the-exam-item.-is-nosubgrid .CF-passed-the-exam-item-img img {
  vertical-align: top;
}

.CF-passed-the-exam-item-pass {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.CF-passed-the-exam-item-pass-img {
  text-align: center;
}

.CF-passed-the-exam-item-pass-img img {
  width: 100%;
  max-width: 180px;
  vertical-align: bottom;
}

.CF-passed-the-exam-item-pass-text {
  text-align: center;
  font-size: 20px;
  padding: 4px 0 0;
  color: #CB461A;
}

.CF-operation-img {
  text-align: center;
  margin: 30px 0;
}

.CF-operation-img img {
  vertical-align: bottom;
}

.CF-operation-btn {
  margin: 0 15px;
}

.CF-operation-btn .CF-brightBtn {
  max-width: 360px;
  margin: 0 auto;
}

.CF-operation-btn .CF-brightBtn a {
  padding: 18px;
  font-size: 16px;
}

.CF-usage-image {
  margin-bottom: 20px;
}

.CF-usage-image-item {
  border-bottom: 1px dotted #999999;
  padding: 20px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.CF-usage-image-item:first-child {
  padding-top: 0;
}

.CF-usage-image-item-icon {
  width: 80px;
  flex-shrink: 0;
  margin-right: 9px;
}

.CF-usage-image-item-icon img {
  vertical-align: bottom;
}

.CF-usage-image-item-title {
  font-size: 16px;
  font-weight: 700;
}

.CF-usage-image-item-text {
  margin-top: 9px;
  font-size: 14px;
}

.CF-digital-question-book {
  margin-top: 30px;
  background-color: var(--color-cream);
  padding: 40px 15px 50px;
  margin-left: -15px;
  margin-right: -15px;
}

.CF-digital-question-book-title {
  text-align: center;
}

.CF-digital-question-book-title>span {
  font-size: 16px;
  display: inline;
  padding: 0 5px;
  color: #fff;
  background: linear-gradient(transparent 0%, #11457B 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.CF-digital-question-book-lead {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
}

.CF-digital-question-book-box {
  margin-top: 16px;
}

.CF-digital-question-book-box+.CF-digital-question-book-box {
  margin-top: 46px;
}

.CF-digital-question-book-box-title {
  text-align: center;
}

.CF-digital-question-book-box-title>span {
  font-size: 20px;
  display: inline;
  padding: 0 5px;
  color: var(--color-accent);
  background: linear-gradient(transparent 90%, #330000 0);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 1.8;
}

.CF-digital-question-book-box .CF-operation-btn {
  margin-top: 20px;
}

.CF-digital-question-book-box .CF-operation-btn .CF-brightBtn a {
  padding: 10px;
}

.CF-digital-question-book-merit-item {
  margin-top: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.CF-digital-question-book-merit-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background-color: var(--color-accent);
  padding: 7px 0 6px;
  color: #fff;
}

.CF-digital-question-book-merit-data {
  background-color: #fff;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px;
}

.CF-digital-question-book-merit-img {
  width: 136px;
  flex-shrink: 0;
  margin-right: 12px;
}

.CF-digital-question-book-merit-img img {
  vertical-align: bottom;
  border: 1px solid #CCCCCC;
}

.CF-digital-question-book-merit-text span {
  font-size: 14px;
  display: block;
}

.CF-digital-question-book-merit-text span br {
  display: none;
}

.CF-digital-question-book-merit-text span+span {
  margin-top: 9px;
}

.CF-digital-question-book-situation-box {
  border-top: 1px solid #CCCCCC;
  margin-top: 20px;
  padding-top: 20px;
}

.CF-digital-question-book-situation-lead-img {
  width: 160px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.CF-digital-question-book-situation-lead-img img {
  vertical-align: bottom;
}

.CF-digital-question-book-situation-lead-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 15px;
}

.CF-digital-question-book-situation-lead-text {
  margin-top: 15px;
  font-size: 16px;
}

.CF-digital-question-book-situation-point {
  margin-top: 25px;
  background-color: #fff;
  border-radius: 5px;
  padding: 11px 18px 18px;
}

.CF-digital-question-book-situation-point-title {
  font-size: 14px;
}

.CF-digital-question-book-situation-point-flow {
  margin-top: 15px;
  padding: 0 34px;
}

.CF-digital-question-book-situation-point-flow-title {
  background-color: var(--color-accent);
  border-radius: 5px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  padding: 5px;
}

.CF-digital-question-book-situation-point-flow-title span {
  font-size: 28px;
}

.CF-digital-question-book-situation-point-flow-title img {
  vertical-align: bottom;
  width: 60px;
}

.CF-digital-question-book-situation-point-flow-text {
  font-size: 14px;
  text-align: center;
  margin-top: 4px;
}

.CF-digital-question-book-situation-point-flow-item.-is-arrow {
  position: relative;
  padding-top: 29px;
}

.CF-digital-question-book-situation-point-flow-item.-is-arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 12px solid #333;
  border-bottom: 0;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translate(-50%, 0);
}

.CF-digital-question-book-situation-point-flow-item.-is-border {
  padding-top: 16px;
}

@media screen and (min-width:769px) {
  .CF-p-c-lea-model {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .CF-p-c-lea-model .CF-brightBtn {
    margin-top: 0;
    width: 230px;
  }

  .CF-passed-the-exam {
    margin-top: 25px;
    padding: 30px 30px 20px;
    border: 10px solid #F3F3F3;
  }

  .CF-passed-the-exam-container {
    grid-template-columns: 31.78% 7.42% 31.78% 9.64% 19.38%;
  }

  .CF-passed-the-exam-item-title {
    font-size: 20px;
    font-weight: 700;
    padding: 10px;
  }

  .CF-passed-the-exam-item-title>br {
    display: none;
  }

  .CF-passed-the-exam-item-img.-is-first {
    padding: 20px 12.5px 20px 10px;
  }

  .CF-passed-the-exam-item-img.-is-second {
    padding: 20px 5px 20px;
  }

  .CF-passed-the-exam-item-caption {
    font-size: 18px;
    padding: 10px 4px 0;
  }

  .CF-passed-the-exam-item.-is-nosubgrid .CF-passed-the-exam-item-img {
    width: 30px;
  }

  .CF-passed-the-exam-item.-is-nosubgrid .CF-passed-the-exam-item-img.-is-equal {
    width: 50px;
  }

  .CF-passed-the-exam-item-pass-text {
    font-size: 32px;
    font-weight: 700;
    padding: 6px 0 0;
  }

  .CF-usage-image {
    margin-bottom: 30px;
  }

  .CF-usage-image-item {
    padding: 14px 0;
    align-items: center;
  }

  .CF-usage-image-item-icon {
    margin-right: 20px;
  }

  .CF-usage-image-item-title {
    font-size: 20px;
  }

  .CF-usage-image-item-text {
    margin-top: 7px;
    font-size: 16px;
  }



  .CF-digital-question-book {
    margin-top: 50px;
    padding: 50px;
    margin-left: 0;
    margin-right: 0;
  }

  .CF-digital-question-book-title br {
    display: none;
  }

  .CF-digital-question-book-title>span {
    font-size: 24px;
  }

  .CF-digital-question-book-lead {
    margin-top: 14px;
    font-size: 20px;
  }

  .CF-digital-question-book-box {
    margin-top: 35px;
  }

  .CF-digital-question-book-box+.CF-digital-question-book-box {
    margin-top: 70px;
  }

  .CF-digital-question-book-box-title {
    text-align: center;
  }

  .CF-digital-question-book-box-title>span {
    font-size: 30px;
  }

  .CF-digital-question-book-box-title>span br {
    display: none;
  }

  .CF-digital-question-book-box .CF-operation-btn {
    margin-top: 30px;
  }

  .CF-digital-question-book-box .CF-operation-btn .CF-brightBtn a {
    padding: 20px;
  }

  .CF-digital-question-book-box .CF-operation-btn .CF-brightBtn a br {
    display: none;
  }

  .CF-digital-question-book-merit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    justify-content: space-between;
    margin-top: 20px;
  }

  .CF-digital-question-book-merit-item {
    margin-top: 0;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }

  .CF-digital-question-book-merit-title {
    font-size: 20px;
    padding: 10px 0 9px;
  }

  .CF-digital-question-book-merit-data {
    display: block;
    padding: 20px 10px 25px;
  }

  .CF-digital-question-book-merit-img {
    width: 200px;
    margin-right: 0;
    margin: 0 auto 10px;
  }

  .CF-digital-question-book-merit-text span {
    text-align: center;
  }

  .CF-digital-question-book-merit-text span br {
    display: initial;
  }

  .CF-digital-question-book-merit-text span+span {
    margin-top: 18px;
  }

  .CF-digital-question-book-situation-box {
    border-top: 2px solid #CCCCCC;
    margin-top: 30px;
    padding-top: 30px;
  }

  .CF-digital-question-book-situation-lead {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .CF-digital-question-book-situation-lead-img {
    margin: 0 20px 0 0;
    flex-shrink: 0;
  }

  .CF-digital-question-book-situation-lead-img img {
    vertical-align: bottom;
  }

  .CF-digital-question-book-situation-lead-title {
    font-size: 24px;
    margin-top: 0;
  }

  .CF-digital-question-book-situation-lead-text {
    margin-top: 6px;
  }

  .CF-digital-question-book-situation-point {
    margin-top: 30px;
    padding: 13px 19px 27px;
  }

  .CF-digital-question-book-situation-point-title {
    font-size: 14px;
    font-weight: 700;
  }

  .CF-digital-question-book-situation-point-flow {
    margin-top: 10px;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
  }

  .CF-digital-question-book-situation-point-flow-title {
    font-weight: 700;
  }

  .CF-digital-question-book-situation-point-flow-text {
    margin-top: 10px;
  }

  .CF-digital-question-book-situation-point-flow-item.-is-arrow {
    position: relative;
    padding-top: 0;
  }

  .CF-digital-question-book-situation-point-flow-item.-is-arrow::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid #555555;
    border-right: 0;
    position: absolute;
    top: 15px;
    left: -23px;
    transform: translate(-50%, 0);
  }

  .CF-digital-question-book-situation-point-flow-item.-is-border {
    padding-top: 0;
    position: relative;
  }

  .CF-digital-question-book-situation-point-flow-item.-is-border::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    background-color: #ccc;
    top: 0;
    left: -26px;
    transform: translate(-50%, 0);
  }
}


/*
/////////////////////////////////////////////////////

公式テキスト・問題集

/////////////////////////////////////////////////////
*/
/* Adobe Photoshop フォントのインストールについて */
.CF-annotation ul {
  padding-left: 0px;
}

.CF-annotation ul li {
  list-style: none;
}

.for-learn-install-font .CF-annotation-text {
  margin-top: 18px;
  margin-bottom: 0px;
  margin-left: 0px;
}
.CF-annotation-text a {
  color: var(--color-accent);
}

/* 公式テキスト・問題集 */
.CF-book-card-img {
  margin-bottom: 20px;
}

.CF-book-card-data-table th {
  text-align: left;
  vertical-align: top;
  position: relative;
  padding: 3px 0px;
  padding-right: 10px;
  width: 33%;
  font-size: 12px;
}

.CF-book-card-data-table th::after {
  content: ":";
  display: block;
  position: absolute;
  right: 2px;
  top: 0;
}

.CF-book-card-data-table td {
  padding: 3px 0px;
  font-size: 12px;
}

.CF-book-card-data-text {
  font-size: 12px;
}

.CF-flow-subText-about {
  margin-top: 40px;
}

@media screen and (min-width:769px) {
  .CF-book-card-img {
    width: 150px;
  }

  .CF-book-card-img img {
    width: 100% !important;
  }

  .CF-book-card-data-table th {
    width: 20%;
    font-size: 16px;
  }

  .CF-book-card-data-table td {
    font-size: 16px;
  }

  .CF-book-card-data-text {
    font-size: 16px;
  }
}

/*
/////////////////////////////////////////////////////

お役立ちコンテンツ

/////////////////////////////////////////////////////
*/
.CF-section.-for-column {
  margin-bottom: 30px;
}
@media screen and (min-width:769px) {
  .CF-section.-for-column {
    margin-bottom: 50px;
  }
}

/*
/////////////////////////////////////////////////////

【団体受験】教育機関・企業の方はこちら(既存のスタイルを流用)

/////////////////////////////////////////////////////
*/
.page-migrate {
  padding: 0 15px 50px;
}

.page-migrate .u-mb20 {
  margin-bottom: 20px;
}

.page-migrate .u-mb40 {
  margin-bottom: 40px;
}

.page-migrate p {
  font-size: 13px;
}

.page-migrate a:link,
.page-migrate a:visited {
  color: #39c;
}

.c-localnavi {
  margin-bottom: 30px;
}

.c-localnavi a,
.c-localnavi span {
  color: #fff !important;
  display: block;
  text-align: center;
  background: #999;
  font-size: 12.09px;
  line-height: 120%;
  padding: 11px 2px 9px;
  text-decoration: none;
  position: relative;
}

.c-localnavi a.is-active,
.c-localnavi span.is-active {
  background: var(--color-accent);
}

.c-localnavi a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.c-localnavi a::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.c-localnavi ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.c-localnavi ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 50%;
}

.c-localnavi+.p-ns-box1 {
  margin-top: 0;
}

.c-localnavi+.p-ns-box1 .c-title11 {
  margin-top: 0;
}

.c-title10 {
  border-bottom: 2px solid var(--color-accent);
  padding: 5px 0;
}

.c-title10 h2 {
  font-size: 13px;
  text-align: center;
  color: var(--color-accent);
}

.p-ns-box1 {
  margin-top: 40px;
  padding-top: 1px;
  padding-bottom: 1px;
}

.p-ns-box1#flow {
  padding-top: 70px;
  margin-top: -70px;
}


.c-title11 {
  border-bottom: 2px solid #D9D9D9;
  padding-bottom: 12px;
  margin-bottom: 25px;
  margin-top: 25px;
}

.c-title11 h2 {
  font-size: 15px;
  font-weight: bold;
  border-left: 4px solid var(--color-accent);
  padding-left: 8px;
}

.c-table1 {
  margin-bottom: 30px;
}

.c-table1 table {
  display: table;
  border-spacing: 0;
  width: 100%;
}

.c-table1 thead {
  display: table-header-group;
}

.c-table1 tbody {
  display: table-row-group;
}

.c-table1 tfoot {
  display: table-footer-group;
}

.c-table1 tr {
  display: table-row;
}

.c-table1 th,
.c-table1 td {
  display: table-cell;
}

.c-table1 table+table {
  margin-top: 30px;
}

.c-table1 th,
.c-table1 td {
  padding: 18px 10px;
  font-size: 13px;
  line-height: 160%;
  box-sizing: border-box;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-weight: normal;
}

.c-table1 th {
  background: var(--color-accent);
  text-align: center;
  color: #fff;
}

.c-table1 td {
  background: #ededed;
}

.c-table1 tbody tr:last-child th,
.c-table1 tbody tr:last-child td {
  border-bottom: 0;
}

.c-table1 th:last-child,
.c-table1 td:last-child {
  border-right: 0;
}

p+.c-table1 {
  margin-top: 30px;
}

.c-table1 img {
  max-width: none;
}

.c-table1 th .u-step {
  font-size: 13px;
  margin: 8px 0 8px 0;
  background: #FFF;
  color: var(--color-def);
  border-radius: 10px;
  display: inline-block;
  padding: 0 15px;
}

.c-frame2 {
  padding: 15px;
  background: url("/ns/ps/_assets/images/_migrate/bg_03.png");
}

.c-btn1 a {
  background: var(--color-pink);
  color: #FFF !important;
  display: block;
  padding: 10px 10px 9px;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
}

.c-btn1 a::before {
  content: url("/ns/ps/_assets/images/_migrate/icon_06.png");
  display: inline-block;
  margin: 2px 8px 0 0;
  vertical-align: middle;
}

.c-frame4 {
  background: #f2f2f2;
  padding: 10px;
}

.c-title3 {
  margin-top: 40px;
  margin-bottom: 10px;
}

.c-title3 h2,
.c-title3 h3,
.c-title3 h4,
.c-title3 h5,
.c-title3 h6 {
  color: var(--color-accent);
  font-size: 15px;
}

.c-table1.table3 th {
  width: 100px;
}

.c-table1.table3 th:nth-child(n+2) {
  width: 76px;
}

.c-table1.table3 td {
  text-align: center;
}

.c-table1.table3 th,
.c-table1.table3 td {
  padding: 8px 6px;
}

.c-table1.js-table-xscroll {
  overflow-y: auto;
}

.c-table1 th.u-color1 {
  background-color: var(--color-dark-blue) !important;
}

.page-migrate sub,
.page-migrate sup {
  font-size: 75%;
  line-height: 0;
}

.p-c-lea-model {
  margin-top: 20px;
}

.p-c-lea-model__txt1 table,
.p-c-lea-model__txt1 tbody,
.p-c-lea-model__txt1 tr,
.p-c-lea-model__txt1 th,
.p-c-lea-model__txt1 td {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.p-c-lea-model__txt1 th {
  background: var(--color-accent);
  color: #fff;
  font-size: 14.04px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  padding-top: 15px;
  padding-bottom: 15px;
}

.p-c-lea-model__txt1 td {
  border: 2px solid #d7d7d7;
  border-top: 0;
  padding: 20px 15px;
  text-align: center;
}

.p-c-lea-model__txt1 td p {
  font-size: 15.6px;
  margin-bottom: 15px;
  line-height: 140%;
  text-align: center;
}

.p-c-lea-model__txt1.-has-not-pdf td p {
  margin-bottom: 0px;
}

.p-c-lea-model__txt1 td p strong {
  font-size: 20.748px;
  color: red;
  font-weight: bold;
}

.p-c-lea-model__txt1 td a {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color-pink);
  color: #fff;
  text-decoration: none;
}

.p-c-lea-model__txt1 td a span {
  display: inline-block;
  background: url("/ns/ps/_assets/images/_migrate/model-icon-pdf.png") no-repeat left center;
  padding-left: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #fff;
  font-size: 13px;
}

.p-c-lea-model.-is-materials .p-c-lea-model__txt1 td {
  background-color: #fff;
}

.p-c-lea-model.-is-materials .p-c-lea-model__txt1 td ul {
  margin: 0;
  padding: 0;
}

.p-c-lea-model.-is-materials .p-c-lea-model__txt1 td ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: 14.04px;
}

.p-c-lea-model.-is-materials .p-c-lea-model__txt1 td ul li a {
  text-align: left;
  background: none;
  color: #000;
  text-decoration: underline;
  font-size: 14.04px;
}

.p-org-ope-nav {
  margin-bottom: 30px;
}

.p-org-ope-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.p-org-ope-nav ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 49%;
}

.p-org-ope-nav li a {
  display: block;
  border-bottom: 1px dotted #999;
  padding-bottom: 10px;
  padding-top: 10px;
  font-size: 16px;
  text-decoration: none;
  color: #333;
}

.p-org-ope-nav li a span {
  display: block;
  background: url("/ns/ps/_assets/images/_migrate/icon_01.png") no-repeat left center;
  padding-left: 24px;
  font-size: 16px;
  color: #333;
}

.page-migrate dl.-is-instructor dt {
  text-align: center;
  margin-bottom: 10px;
}

.page-migrate dl.-is-instructor dd {
  font-size: 13px;
}

.page-migrate div.flow {
  padding-bottom: 1px;
}

.page-migrate div.flow_navi {
  margin-bottom: 40px;
}

.page-migrate div.flow_navi ul {
  margin: 0;
  padding: 0;
}

.page-migrate div.flow_navi ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-migrate div.flow_navi ul li a {
  display: block;
  padding: 15px;
  background-color: #d3e2ea;
  border-bottom: 1px solid #afcad9;
  font-size: 13px;
}

.page-migrate div.flow ul.flow_list {
  margin-bottom: 40px;
  padding: 0;
}

.page-migrate div.flow ul.flow_list li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.page-migrate div.box {
  margin-bottom: 40px;
  padding: 15px;
  border: 1px solid #999;
}

.page-migrate div.box ul {
  padding: 0;
  margin: 0;
}

.page-migrate div.box ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 13px;
}

.page-migrate ul#member_navi {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.page-migrate ul#member_navi li {
  padding: 0;
  margin: 0 10px 10px 0;
  list-style: none;
}

.page-migrate ul#member_navi li a {
  padding: 10px 15px;
  display: block;
  background-color: var(--color-emerald);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
}

.page-migrate .-areabox {
  margin-bottom: 50px;
}

.page-migrate .-areabox h3 {
  margin-bottom: 20px;
  padding: 0 0 0 20px;
  color: var(--color-emerald);
  border-left: 5px solid var(--color-emerald);
  line-height: 1.2;
  font-weight: 500;
  font-size: 20px;
}

.page-migrate .-areabox .member_table table {
  width: 100%;
  border-spacing: 0;
}

.page-migrate .-areabox .member_table th {
  padding: 15px;
  background-color: var(--color-accent);
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  color: #FFF;
  font-weight: 700;
  text-align: left;
  font-size: 13px;
}

.page-migrate .-areabox .member_table th:nth-child(1) {
  width: 30%;
}

.page-migrate .-areabox .member_table th:nth-child(2) {
  width: 30%;
}

.page-migrate .-areabox .member_table td {
  padding: 15px;
  background: #f5f5f5;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  line-height: 1.6;
  font-weight: 500;
  font-size: 13px;
}

.organization-flow h3 {
  margin-bottom: 30px;
  padding: 0 0 0 20px;
  color: var(--color-emerald);
  border-left: 5px solid var(--color-emerald);
  line-height: 1.2;
  font-weight: 500;
  font-size: 20px;
}

@media screen and (min-width:769px) {
  .page-migrate {
    max-width: 1054px;
    margin: 0 auto;
    padding: 0 15px 70px;
  }

  .page-migrate .u-mb40 {
    margin-bottom: 0;
  }

  .c-localnavi {
    margin-bottom: 50px;
  }

  .c-localnavi a,
  .c-localnavi span {
    font-size: 18.005px;
    padding: 15px 2px 13px;
  }

  .c-localnavi a.is-active,
  .c-localnavi span.is-active {
    background: var(--color-accent);
  }

  .c-localnavi a::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }

  .c-localnavi a::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }

  .c-localnavi ul {
    flex-wrap: nowrap;
  }

  .c-localnavi ul li {
    width: 100%;
  }

  .c-localnavi.-is-instructor {
    margin-bottom: 20px;
  }

  .c-title10 {
    padding: 8px 0;
  }

  .c-title10 h2 {
    font-size: 20.007px;
  }

  .p-ns-box1 {
    margin-top: 50px;
  }

  .p-ns-box1#flow {
    padding-top: 150px;
    margin-top: -150px;
  }

  .c-title11 {
    border-bottom: 3px solid #D9D9D9;
    padding-bottom: 18px;
    margin-bottom: 35px;
    margin-top: 35px;
  }

  .c-title11 h2 {
    font-size: 20px;
    font-weight: bold;
    border-left: 4px solid var(--color-accent);
    padding-left: 12px;
  }

  .page-migrate p {
    font-size: 13px;
  }

  .c-table1 th,
  .c-table1 td {
    padding: 18px 12px;
    font-size: 14.04px;
  }

  .c-table1 th {
    background: var(--color-accent);
    text-align: center;
    color: #fff;
    width: 200px;
  }

  .c-table1 td {
    background: #ededed;
  }

  .c-table1 tbody tr:last-child th,
  .c-table1 tbody tr:last-child td {
    border-bottom: 0;
  }

  .c-table1 th:last-child,
  .c-table1 td:last-child {
    border-right: 0;
  }

  .c-frame2 {
    padding: 30px;
    margin-bottom: 30px;
    margin-top: 35px;
  }

  .c-table1+.c-frame2 {
    position: relative;
    margin-top: -30px;
  }

  .c-btn1 a {
    padding: 22px 0 21px;
    width: 70%;
    margin: 0 auto;
  }

  .c-btn1 a::before {
    margin: 2px 8px 0 0;
    vertical-align: middle;
  }

  .c-frame2 p {
    color: #F00;
    text-align: center;
    margin-top: 12px;
  }

  .c-frame4 {
    background: #f2f2f2;
    padding: 20px;
  }

  .p-c-lea-model__txt1 table {
    display: table;
    border-spacing: 0;
    width: 100%;
  }

  .p-c-lea-model__txt1 tbody {
    display: table-row-group;
  }

  .p-c-lea-model__txt1 tr {
    display: table-row;
  }

  .p-c-lea-model__txt1 th {
    display: table-cell;
    width: 24.5%;
  }

  .p-c-lea-model__txt1 td {
    display: table-cell;
  }

  .p-c-lea-model__txt1 th {
    font-size: 15.6px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .p-c-lea-model__txt1 td {
    border: 2px solid #d7d7d7;
    border-left: 0;
    padding: 10px 50px;
  }

  .p-c-lea-model__txt1 td p {
    font-size: 17.29px;
    margin: 0;
  }

  .p-c-lea-model__txt1 td p strong {
    font-size: 25.935px;
  }

  .p-c-lea-model__txt1 td a {
    width: 230px;
    margin: 0;
  }

  .p-c-lea-model.-is-materials {
    margin-bottom: 30px;
  }

  .p-c-lea-model.-is-materials .p-c-lea-model__txt1 td {
    padding: 18px 50px;
  }

  .p-c-lea-model.-is-materials .p-c-lea-model__txt1 td a {
    width: 100%;
  }

  .p-org-ope-nav {
    margin-bottom: 50px;
  }

  .p-org-ope-nav ul {
    flex-wrap: nowrap;
  }

  .p-org-ope-nav ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 31%;
  }

  .p-org-ope-nav li a {
    padding-bottom: 10px;
    padding-top: 10px;
    font-size: 18px;
    text-decoration: none;
    color: #333;
  }

  .p-org-ope-nav li a span {
    display: block;
    background: url("/ns/ps/_assets/images/_migrate/icon_01.png") no-repeat left center;
    padding-left: 24px;
    font-size: 18px;
  }

  .page-migrate dl.-is-instructor {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .page-migrate dl.-is-instructor dt {
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .page-migrate dl.-is-instructor dd {
    font-size: 13px;
  }

  .organization-flow h3 {
    margin-top: 30px;
  }
}

/* /【団体受験】教育機関・企業の方はこちら(既存のスタイルを流用) */

/* 【団体受験】団体受験者の声 */
.page-migrate .CF-top-voice-box a {
  color: var(--color-def);
}
@media screen and (min-width:769px) {
  .page-migrate .CF-top-voice-box {
    margin-bottom: 30px;
  }
}

/* サンプル問題 */
.CF-sample-box {
  margin-bottom: 30px;
}
@media screen and (min-width:769px) {
  .CF-sample-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .CF-sample-img img {
    width: 300px;
  }
}

/* 埋め込みフォーム調整 */
#bdash_embed_form_container_prd_100567_133 iframe {
    height: 990px;
    border: 0;
}
@media screen and (min-width:769px) {
#bdash_embed_form_container_prd_100567_133 iframe {
    height: 950px;
    border: 0;
}
}

/* 団体向けリンク調整 */
.page-migrate .CF-section{
	padding: 0;
}
.page-migrate .CF-contents-nav ul li a{
	color: #333;
}

/*v-voice-detail*/
.c-casestudy-detail.l-container, .c-voice-detail.l-container { padding-left: 10px; padding-right: 10px; }
.c-casestudy-detail .l-inner, .c-voice-detail .l-inner { margin: 20px 0; }
.c-casestudy-detail .casestudy-block01, .c-voice-detail .casestudy-block01 { margin-top: 30px; margin-bottom: 30px; }
.c-casestudy-detail .casestudy-block01 img, .c-voice-detail .casestudy-block01 img { margin-top: 10px; }
.c-casestudy-detail .casestudy-block01 .sub-title, .c-voice-detail .casestudy-block01 .sub-title { border-left: #0099CC 3px solid; padding: 5px 10px; margin: 20px 0; font-size: 14px; }
.c-casestudy-detail .casestudy-block01 h5, .c-voice-detail .casestudy-block01 h5 { font-size: 20px; padding: 10px; color: #FFF; background: #0099CC; }
.c-casestudy-detail .casestudy-block01 .profile .profile__name, .c-voice-detail .casestudy-block01 .profile .profile__name { font-size: 18px; font-weight: bold; margin-bottom: 12px; }
.c-casestudy-detail .casestudy-block01 dt, .c-voice-detail .casestudy-block01 dt { float: left; font-weight: bold; }
.c-casestudy-detail .casestudy-01, .c-voice-detail .casestudy-01 { margin-bottom: 30px; }
.c-casestudy-detail .casestudy-01 h6, .c-voice-detail .casestudy-01 h6 { border: solid #0099CC 3px; margin-bottom: 10px; padding: 5px 5px 5px 50px; color: #0099CC; font-size: 16px; background: url("/ns/ps/_assets/images/common/icon_05.png") 10px center no-repeat; }
@media screen and (min-width:769px) {
.c-casestudy-detail.l-container, .c-voice-detail.l-container { min-width: 1024px; width: 1024px !important; }
.c-casestudy-detail.l-container .casestudy-01 .caption-right, .c-voice-detail.l-container .casestudy-01 .caption-right { float: right; /*width:349px;*/ }
.c-casestudy-detail.l-container .casestudy-01 .caption-left, .c-voice-detail.l-container .casestudy-01 .caption-left { float: left; width: 349px; }
.c-casestudy-detail.l-container .casestudy-01 .casestudy-right, .c-voice-detail.l-container .casestudy-01 .casestudy-right { float: right; width: 628px; }
.c-casestudy-detail.l-container .casestudy-01 .casestudy-left, .c-voice-detail.l-container .casestudy-01 .casestudy-left { float: left; width: 628px; }
.c-casestudy-detail .l-inner, .c-voice-detail .l-inner { margin-bottom: 40px; }
.c-casestudy-detail .casestudy-block01, .c-voice-detail .casestudy-block01 { margin-bottom: 50px; }
.c-casestudy-detail .casestudy-block01 .sub-title, .c-voice-detail .casestudy-block01 .sub-title { border-left: #0099CC 3px solid; padding: 5px 10px; margin: 20px 0; font-size: 18px; }
.c-casestudy-detail .casestudy-block01 h5, .c-voice-detail .casestudy-block01 h5 { font-size: 24px; padding: 16px; color: #FFF; background: #0099CC; }
.c-casestudy-detail .casestudy-01, .c-voice-detail .casestudy-01 { margin-bottom: 30px; }
.c-casestudy-detail .casestudy-01 h6, .c-voice-detail .casestudy-01 h6 { border: 0px; margin-top: 35px; margin-bottom: 30px; padding: 5px 5px 5px 50px; color: #0099CC; font-size: 20px; background: url("/ns/ps/_assets/images/common/icon_05.png") 10px center no-repeat; }
}
.c-voice-detail div::before,
.c-voice-detail div::after,
.c-casestudy-detail div::before,
.c-casestudy-detail div::after {
content: "";
display: table;
}
.c-voice-detail div::after,
.c-casestudy-detail div::after{
clear: both;
}

/*
ブログ用SNS
*/
.CF-sns-share {
  margin-top: 10px;
}
.CF-sns-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
}
.CF-sns-share ul li {
  list-style: none;
  margin: 5px 5px 0 0;
}
.CF-sns-share ul li iframe {
  vertical-align: bottom;
}
.CF-sns-share ul li.sns_note iframe {
  width: 70px;
}
@media screen and (min-width:769px) {
  .CF-sns-share {
    margin-top: 0;
  }
  .CF-sns-share ul li.sns_line {
    display: none;
  }
}

/* 現役クリエイターに聞く 検定試験の評価 IL用 
-----------------------------------------*/
.p-ns-il-hyouka { max-width: 1024px; margin-left: auto; margin-right: auto; }

.p-ns-il-hyouka .c-c-top-title1 { margin-bottom: 35px; }

.p-ns-il-hyouka__box1 { margin-top: 60px; }

.p-ns-il-hyouka__box1 .c-title3 { margin-top: 0; margin-bottom: 35px; }

.p-ns-il-hyouka__box1 .box1 { margin-top: 60px; }

.p-ns-il-hyouka__box1 .txt1 { float: left; width: 64.94%; }

.p-ns-il-hyouka__box1 p { line-height: 180%; }

.p-ns-il-hyouka__box1 em { font-weight: bold; color: #F79500; font-style: normal; }

.p-ns-il-hyouka__box1 em.em1 { color: #333; background: #FFFF33; }

.p-ns-il-hyouka__box1 .img1 { float: right; width: 31.54%; }

.p-ns-il-hyouka__box1 .img1 img { width: 100%; height: auto; }

.p-ns-il-hyouka__box1 .box1.hyouka2 .txt1 { width: 50.94%; }

.p-ns-il-hyouka__box1 .box1.hyouka2 .img1 { width: 45.54%; }


.p-ns-il-hyouka__box1_title { display: flex; justify-content: space-between; align-items: center;}

.p-ns-il-hyouka__box1_title h2 { font-family: '游ゴシック Medium', sans-serif; font-size: 20px; font-weight: bold; padding: 50px 50px 50px 30px; border-left: 20px solid #F79500; box-shadow: -5px 0 #FFCE49; width: 60%;}

.p-ns-il-hyouka__box1_title img {width: 40%;}

.p-ns-il-interview__content dt .txt2, .p-ns-il-interview__content dd .txt2 { width: calc(97% - 140px); }

.p-ns-il-interview__content dt {display: flex; justify-content: space-between; align-items: center;}

.p-ns-il-interview__content .txt3 {margin: 0 0 25px; }
.p-ns-il-interview { max-width: 1024px; margin-left: auto; margin-right: auto; margin-top: 45px; }
.p-ns-il-interview__heading { border-bottom: 8px solid #ECECEC; padding-bottom: 22px; margin-bottom: 44px; }
.p-ns-il-interview__heading .block1 { float: left; width: 62.5%; }
.p-ns-il-interview__heading .block1 .box1 { border-left: 20px solid #F79500; box-shadow: -5px 0 #FFCE49; margin-left: 5px; padding: 28px 0 30px 28px; margin-bottom: 30px; }
.p-ns-il-interview__heading .block1 .box1 h3 { font-size: 153.84%; color: #F79500; line-height: 140%; font-weight: bold; margin-bottom: 12px; }
.p-ns-il-interview__heading .block1 .box1 h3 span { font-weight: normal; font-size: 60%; color: #333; }
.p-ns-il-interview__heading .block1 .box1 .title { font-size: 184.61%; line-height: 130%; font-weight: bold; margin-bottom: 15px; }
.p-ns-il-interview__heading .block1 .box1 .title em { font-style: normal; color: #F79500; }
.p-ns-il-interview__heading .block1 .box1 .qual { color: #666; font-size: 92.3%; font-weight: bold; margin-bottom: 3px; }
.p-ns-il-interview__heading .block1 .box1 .name { font-weight: bold; color: #F79500; font-size: 153.84%; }
.p-ns-il-interview__heading .block1 .box2 { background: url(../img/top/int_txt1.png) no-repeat left top; padding: 3px 0 3px 65px; }
.p-ns-il-interview__heading .block1 .box2 p { line-height: 180%; }
.p-ns-il-interview__heading .block2 { float: right; width: 31.25%; text-align: right; }
.p-ns-il-interview__content dt, .p-ns-il-interview__content dd { margin-bottom: 30px; *zoom: 1; }
.p-ns-il-interview__content dt:after, .p-ns-il-interview__content dd:after { display: block; content: ""; clear: both; }
.p-ns-il-interview__content dt .img1, .p-ns-il-interview__content dd .img1 { width: 140px; }
.p-ns-il-interview__content dt .txt1, .p-ns-il-interview__content dd .txt1 { width: calc(100% - 140px); border-radius: 9px; -webkit-box-sizing: border-box; box-sizing: border-box; position: relative; padding: 22px 26px; }
.p-ns-il-interview__content dt .txt1:before, .p-ns-il-interview__content dd .txt1:before { display: block; content: ""; position: absolute; top: 0; z-index: 1; background-position: center; background-repeat: no-repeat; width: 80px; height: 25px; }
.p-ns-il-interview__content dt .img1 { float: left; }
.p-ns-il-interview__content dt .txt1 { float: right; /*margin-top: 24px;*/ border: 2px solid #F79500; }
.p-ns-il-interview__content dt .txt1:before { left: 0; background-image: none; border-radius: 8px 0 0 0; }
.p-ns-il-interview__content dd .img1 { float: right; }
.p-ns-il-interview__content dd .txt1 { float: left; border: 2px solid #FFCE49; }
.p-ns-il-interview__content dd .txt1:before { right: 0; background-image: none; border-radius: 0 8px 0 0; }
.p-ns-il-interview__content dd .btn1 { margin-top: 20px; }
.p-ns-il-interview__content dd .btn1 a { display: inline-block; *display: inline; *zoom: 1; vertical-align: middle; margin-right: 20px; }
.p-ns-il-interview__content dd .btn1 a:last-child { margin-right: 0; }
.p-ns-il-interview__content dd .box1-img1 { float: left; width: 14.8780%; }
.p-ns-il-interview__content dd .box1-txt1 { float: right; width: 81.7073%; }
.p-ns-il-interview__content dd .box2-img1 { float: left; width: 32.8048%; }
.p-ns-il-interview__content dd .box2-txt1 { float: right; width: 64.6341%; }
@media screen and (max-width:768px) {
.p-ns-il-hyouka {margin: 45px 15px 30px 15px;}

.p-ns-il-hyouka__box1_title {margin-top: 30px;}

.p-ns-il-hyouka__box1_title h2 { border-left: 10px solid #F79500; box-shadow: -3px 0 #FFCE49; margin-left: 3px; padding: 10px 0 10px 15px; margin-bottom: 30px;}

.p-ns-il-interview__content dt {display: flex; justify-content: space-between; align-items: center;}

.p-ns-il-interview__content .txt3 {margin: 0 0 25px; }
.p-ns-il-interview { margin-left: 15px; margin-right: 15px; margin-bottom: 30px; margin-top: 45px; }
.p-ns-il-interview__heading { border-bottom: 8px solid #ECECEC; padding-bottom: 22px; margin-bottom: 44px; }
.p-ns-il-interview__heading .block1 { margin-bottom: 15px; }
.p-ns-il-interview__heading .block1 .box1 { border-left: 10px solid #F79500; box-shadow: -3px 0 #FFCE49; margin-left: 3px; padding: 10px 0 10px 15px; margin-bottom: 30px; }
.p-ns-il-interview__heading .block1 .box1 h3 { font-size: 130%; color: #F79500; line-height: 140%; font-weight: bold; margin-bottom: 12px; }
.p-ns-il-interview__heading .block1 .box1 h3 span { font-weight: normal; font-size: 60%; color: #333; }
.p-ns-il-interview__heading .block1 .box1 .title { font-size: 150%; line-height: 130%; font-weight: bold; margin-bottom: 15px; }
.p-ns-il-interview__heading .block1 .box1 .title em { font-style: normal; color: #F79500; }
.p-ns-il-interview__heading .block1 .box1 .qual { color: #666; font-size: 92.3%; font-weight: bold; margin-bottom: 3px; }
.p-ns-il-interview__heading .block1 .box1 .name { font-weight: bold; color: #F79500; font-size: 140%; }
.p-ns-il-interview__heading .block1 .box2 { background: url(../img/top/int_txt1.png) no-repeat left top; padding: 3px 0 3px 65px; }
.p-ns-il-interview__heading .block1 .box2 p { line-height: 180%; }
.p-ns-il-interview__heading .block2 p { text-align: center; }
.p-ns-il-interview__content dt, .p-ns-il-interview__content dd { margin-bottom: 30px; *zoom: 1; }
.p-ns-il-interview__content dt:after, .p-ns-il-interview__content dd:after { display: block; content: ""; clear: both; }
.p-ns-il-interview__content dt .img1, .p-ns-il-interview__content dd .img1 { width: 70px; margin-right: 10px;}
.p-ns-il-interview__content dt .txt1, .p-ns-il-interview__content dd .txt1 { width: calc(100% - 70px); border-radius: 9px; -webkit-box-sizing: border-box; box-sizing: border-box; position: relative; padding: 15px 12px 15px; }
.p-ns-il-interview__content dt .txt1:before, .p-ns-il-interview__content dd .txt1:before { display: block; content: ""; position: absolute; top: 0; z-index: 1; background-position: center top; background-repeat: no-repeat; width: 80px; height: 25px; }
.p-ns-il-interview__content dt .img1 { float: left; }
.p-ns-il-interview__content dt .txt1 { float: right; border: 2px solid #F79500; }
.p-ns-il-interview__content dt .txt1:before { left: 0; background-image: none; border-radius: 8px 0 0 0; }
.p-ns-il-interview__content dd .img1 { float: right; }
.p-ns-il-interview__content dd .txt1 { float: left; border: 2px solid #FFCE49; }
.p-ns-il-interview__content dd .txt1:before { right: 0; background-image: none; border-radius: 0 8px 0 0; }
.p-ns-il-interview__content dd .btn1 { margin-top: 10px; text-align: center; }
.p-ns-il-interview__content dd .btn1 a { display: inline-block; *display: inline; *zoom: 1; vertical-align: middle; margin-bottom: 10px; margin-left: 5px; margin-right: 5px; }
.p-ns-il-interview__content dd .btn1 a:last-child { margin-bottom: 0; }
.p-ns-il-interview__content dd .box1-img1, .p-ns-il-interview__content dd .box2-img1 { margin-bottom: 10px; }
.p-ns-il-interview__content dd .box1-img1 p, .p-ns-il-interview__content dd .box2-img1 p { text-align: center; }
}
/* 現役クリエイターに聞く 検定試験の評価 PS用 
-----------------------------------------*/
.p-ns-ps-hyouka { max-width: 1024px; margin-left: auto; margin-right: auto; }

.p-ns-ps-hyouka .c-c-top-title1 { margin-bottom: 35px; }

.p-ns-ps-hyouka__box1 { margin-top: 60px; }

.p-ns-ps-hyouka__box1 .c-title3 { margin-top: 0; margin-bottom: 35px; }

.p-ns-ps-hyouka__box1 .box1 { margin-top: 60px; }

.p-ns-ps-hyouka__box1 .txt1 { float: left; width: 64.94%; }

.p-ns-ps-hyouka__box1 p { line-height: 180%; }

.p-ns-ps-hyouka__box1 em { font-weight: bold; color: #069BCD; font-style: normal; }

.p-ns-ps-hyouka__box1 em.em1 { color: #333; background: #FFFF33; }

.p-ns-ps-hyouka__box1 .img1 { float: right; width: 31.54%; }

.p-ns-ps-hyouka__box1 .img1 img { width: 100%; height: auto; }

.p-ns-ps-hyouka__box1 .box1.hyouka2 .txt1 { width: 50.94%; }

.p-ns-ps-hyouka__box1 .box1.hyouka2 .img1 { width: 45.54%; }


.p-ns-ps-hyouka__box1_title { display: flex; justify-content: space-between; align-items: center;}

.p-ns-ps-hyouka__box1_title h2 { font-family: '游ゴシック Medium', sans-serif; font-size: 20px; font-weight: bold; padding: 50px 50px 50px 30px; border-left: 20px solid #069BCD; box-shadow: -5px 0 #82CDE6; width: 60%;}

.p-ns-ps-hyouka__box1_title img {width: 40%;}

.p-ns-ps-interview__content dt .txt2, .p-ns-ps-interview__content dd .txt2 { width: calc(97% - 140px); }

.p-ns-ps-interview__content dt {display: flex; justify-content: space-between; align-items: center;}

.p-ns-ps-interview__content .txt3 {margin: 0 0 25px; }
.p-ns-ps-interview { max-width: 1024px; margin-left: auto; margin-right: auto; margin-top: 45px; }
.p-ns-ps-interview__heading { border-bottom: 8px solid #ECECEC; padding-bottom: 22px; margin-bottom: 44px; }
.p-ns-ps-interview__heading .block1 { float: left; width: 62.5%; }
.p-ns-ps-interview__heading .block1 .box1 { border-left: 20px solid #069BCD; box-shadow: -5px 0 #82CDE6; margin-left: 5px; padding: 28px 0 30px 28px; margin-bottom: 30px; }
.p-ns-ps-interview__heading .block1 .box1 h3 { font-size: 153.84%; color: #069BCD; line-height: 140%; font-weight: bold; margin-bottom: 12px; }
.p-ns-ps-interview__heading .block1 .box1 h3 span { font-weight: normal; font-size: 60%; color: #333; }
.p-ns-ps-interview__heading .block1 .box1 .title { font-size: 184.61%; line-height: 130%; font-weight: bold; margin-bottom: 15px; }
.p-ns-ps-interview__heading .block1 .box1 .title em { font-style: normal; color: #069ACC; }
.p-ns-ps-interview__heading .block1 .box1 .qual { color: #666; font-size: 92.3%; font-weight: bold; margin-bottom: 3px; }
.p-ns-ps-interview__heading .block1 .box1 .name { font-weight: bold; color: #069ACC; font-size: 153.84%; }
.p-ns-ps-interview__heading .block1 .box2 { background: url(../img/top/int_txt1.png) no-repeat left top; padding: 14px 0 14px 65px; }
.p-ns-ps-interview__heading .block1 .box2 p { line-height: 180%; }
.p-ns-ps-interview__heading .block2 { float: right; width: 31.25%; text-align: right; }
.p-ns-ps-interview__content dt, .p-ns-ps-interview__content dd { margin-bottom: 30px; *zoom: 1; }
.p-ns-ps-interview__content dt:after, .p-ns-ps-interview__content dd:after { display: block; content: ""; clear: both; }
.p-ns-ps-interview__content dt .img1, .p-ns-ps-interview__content dd .img1 { width: 140px; }
.p-ns-ps-interview__content dt .txt1, .p-ns-ps-interview__content dd .txt1 { width: calc(100% - 140px); border-radius: 9px; -webkit-box-sizing: border-box; box-sizing: border-box; position: relative; padding: 22px 26px; }
.p-ns-ps-interview__content dt .txt1:before, .p-ns-ps-interview__content dd .txt1:before { display: block; content: ""; position: absolute; top: 0; z-index: 1; background-position: center; background-repeat: no-repeat; width: 80px; height: 25px; }
.p-ns-ps-interview__content dt .img1 { float: left; }
.p-ns-ps-interview__content dt .txt1 { float: right; /*margin-top: 24px;*/ border: 2px solid #3399CC; }
.p-ns-ps-interview__content dt .txt1:before { left: 0; background-image: none; border-radius: 8px 0 0 0; }
.p-ns-ps-interview__content dd .img1 { float: right; }
.p-ns-ps-interview__content dd .txt1 { float: left; border: 2px solid #006Db8; }
.p-ns-ps-interview__content dd .txt1:before { right: 0; background-image: none; border-radius: 0 8px 0 0; }
.p-ns-ps-interview__content dd .btn1 { margin-top: 20px; }
.p-ns-ps-interview__content dd .btn1 a { display: inline-block; *display: inline; *zoom: 1; vertical-align: middle; margin-right: 20px; }
.p-ns-ps-interview__content dd .btn1 a:last-child { margin-right: 0; }
.p-ns-ps-interview__content dd .box1-img1 { float: left; width: 21.12956%; }
.p-ns-ps-interview__content dd .box1-txt1 { float: right; width: 75.6097%; }
.p-ns-ps-interview__content dd .box2-img1 { float: left; width: 32.9268%; }
.p-ns-ps-interview__content dd .box2-txt1 { float: right; width: 65.2439%; }

@media screen and (max-width:768px) {
.p-ns-ps-hyouka { margin: 30px 15px; }

.p-ns-ps-hyouka__box1_title { margin-top: 30px;}

.p-ns-ps-hyouka__box1_title h2 { border-left: 10px solid #069BCD; box-shadow: -3px 0 #82CDE6; margin-left: 3px; padding: 10px 0 10px 15px; margin-bottom: 30px;}

.p-ns-ps-interview__content dt {display: flex; justify-content: space-between; align-items: center;}

.p-ns-ps-interview__content .txt3 {margin: 0 0 25px; }
.p-ns-ps-interview { margin-left: 15px; margin-right: 15px; margin-bottom: 30px; margin-top: 45px; }
.p-ns-ps-interview__heading { border-bottom: 8px solid #ECECEC; padding-bottom: 22px; margin-bottom: 44px; }
.p-ns-ps-interview__heading .block1 { margin-bottom: 15px; }
.p-ns-ps-interview__heading .block1 .box1 { border-left: 10px solid #069BCD; box-shadow: -3px 0 #82CDE6; margin-left: 3px; padding: 10px 0 10px 15px; margin-bottom: 30px; }
.p-ns-ps-interview__heading .block1 .box1 h3 { font-size: 130%; color: #069BCD; line-height: 140%; font-weight: bold; margin-bottom: 12px; }
.p-ns-ps-interview__heading .block1 .box1 h3 span { font-weight: normal; font-size: 60%; color: #333; }
.p-ns-ps-interview__heading .block1 .box1 .title { font-size: 150%; line-height: 130%; font-weight: bold; margin-bottom: 15px; }
.p-ns-ps-interview__heading .block1 .box1 .title em { font-style: normal; color: #069ACC; }
.p-ns-ps-interview__heading .block1 .box1 .qual { color: #666; font-size: 92.3%; font-weight: bold; margin-bottom: 3px; }
.p-ns-ps-interview__heading .block1 .box1 .name { font-weight: bold; color: #069ACC; font-size: 140%; }
.p-ns-ps-interview__heading .block1 .box2 { background: url(../img/top/int_txt1.png) no-repeat left top; padding: 3px 0 3px 65px; }
.p-ns-ps-interview__heading .block1 .box2 p { line-height: 180%; }
.p-ns-ps-interview__heading .block2 p { text-align: center; }
.p-ns-ps-interview__content dt, .p-ns-ps-interview__content dd { margin-bottom: 30px; *zoom: 1; }
.p-ns-ps-interview__content dt:after, .p-ns-ps-interview__content dd:after { display: block; content: ""; clear: both; }
.p-ns-ps-interview__content dt .img1, .p-ns-ps-interview__content dd .img1 { width: 70px; margin-right: 10px; }
.p-ns-ps-interview__content dt .txt1, .p-ns-ps-interview__content dd .txt1 { width: calc(100% - 70px); border-radius: 9px; -webkit-box-sizing: border-box; box-sizing: border-box; position: relative; padding: 15px 12px 15px; }
.p-ns-ps-interview__content dt .txt1:before, .p-ns-ps-interview__content dd .txt1:before { display: block; content: ""; position: absolute; top: 0; z-index: 1; background-position: center top; background-repeat: no-repeat; width: 80px; height: 25px; }
.p-ns-ps-interview__content dt .img1 { float: left; }
.p-ns-ps-interview__content dt .txt1 { float: right; border: 2px solid #3399CC; }
.p-ns-ps-interview__content dt .txt1:before { left: 0; background-image: none; border-radius: 8px 0 0 0; }
.p-ns-ps-interview__content dd .img1 { float: right; }
.p-ns-ps-interview__content dd .txt1 { float: left; border: 2px solid #006Db8; }
.p-ns-ps-interview__content dd .txt1:before { right: 0; background-image: none; border-radius: 0 8px 0 0; }
.p-ns-ps-interview__content dd .btn1 { margin-top: 10px; text-align: center; }
.p-ns-ps-interview__content dd .btn1 a { display: inline-block; *display: inline; *zoom: 1; vertical-align: middle; margin-bottom: 10px; margin-left: 5px; margin-right: 5px; }
.p-ns-ps-interview__content dd .btn1 a:last-child { margin-bottom: 0; }
.p-ns-ps-interview__content dd .box1-img1, .p-ns-ps-interview__content dd .box2-img1 { margin-bottom: 10px; }
.p-ns-ps-interview__content dd .box1-img1 p, .p-ns-ps-interview__content dd .box2-img1 p { text-align: center; }
}

/* 公開試験 受験申込の流れ調整 
-----------------------------------------*/
.CF-it.flow .CF-it-img {
	margin-bottom: 20px;
	width: 100%;
}
.CF-it.flow .-is-badge-box img {
	height: auto;
}
.CF-it.flow .CF-component-text,
.CF-it.flow .CF-heading-bgtitle {
	margin-top: 0;
}
.CF-it.flow a {
	color: var(--color-accent);
	border-bottom: var(--color-accent) solid 1px;;
}
@media screen and (min-width:769px) {
.CF-it.flow .CF-it-img {
	margin-right: 20px;
	margin-bottom: 0px;
	width: calc(35%);
}
}