@charset "UTF-8";

/*
  CSS Reset
*/
*,*::before,*::after{box-sizing:border-box}*{margin:0}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:inline-block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}
body {font-family: "メイリオ", Meiryo, "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif; color: var(--color-def);}

/*
  カスタムプロパティ
*/
:root {

  /* カラー設定 */
  /* デフォルトカラー */
  --color-def: #333;

  /* ベースカラー */
  --color-base: #FFF;
  

  /* アクセントカラー */
  --color-accent: #ff6937;
  --color-subaccent: #b7502e;
  --color-red: #ff2828;

  /* リンクカラー */
  --color-blue1: #3498db;

  /* フォントサイズ設定 */
  --fs-heading-h2: 34px;    /* PC H2見出し */
  --fs-component-20: 20px;  /* ※SPのH2見出し */
  --fs-component-18: 18px;  /* コンポーネントサイズ(大)  */
  --fs-component-16: 16px;  /* コンポーネントサイズ(中) ※PCのフォントサイズが18pxの時SPではこれを使う */
  --fs-component-14: 14px;  /* コンポーネントサイズ(小)※PCのフォントサイズが16pxの時SPではこれを使う */
  --fs-component-12: 12px;  /* ※PCのフォントサイズが14pxの時SPではこれを使う */
  --fs-component-10: 10px;
  /* コンテンツ幅 */
  --contents-width: 1020px;
}

.CF-heading-h1 {
  position: relative;
  background: #f0ede3;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  padding: 70px 15px 20px;
  line-height: 34px;
  margin-bottom: 25px;
  color: #333;
}

.CF-heading-h1 span::before {
  content: "";
  position: absolute;
  display: block;
  width: 46px;
  height: 50px;
  top: 15px;
  left: 50%;
  transform: translate(-50%, 0);
}

.CF-heading-h1.-icon-01 span::before {
  background: url(/nm/_assets/images/svg/icon-01.svg) center center no-repeat;
  background-size: contain;
}

.CF-heading-h1.-icon-02 span::before {
  background: url(/nm/_assets/images/svg/icon-schedule.svg) center center no-repeat;
  background-size: contain;
}

.CF-heading-h1.-icon-03 span::before {
  background: url(/nm/_assets/images/svg/icon-tl.svg) center center no-repeat;
  background-size: contain;
}

.CF-heading-h1.-icon-04 span::before {
  background: url(/nm/_assets/images/svg/sample_q_logo.svg) center center no-repeat;
  background-size: contain;
}

.CF-heading-h1.-icon-05 span::before {
  background: url(/nm/_assets/images/svg/sample_q_logo.svg) center center no-repeat;
  background-size: contain;
}

.CF-heading-h1.-icon-cc span::before {
  background: url(/nm/_assets/images/svg/icon-cc.svg) center center no-repeat;
  background-size: contain;
}

.CF-heading-h1.-icon-voice span::before {
  background: url(/nm/_assets/images/svg/icon-voice.svg) center center no-repeat;
  background-size: contain;
}

@media screen and (min-width:769px) {
  .CF-heading-h1 {
    margin-top: 178px;
    margin-bottom: 50px;
    padding: 63px 80px;
    font-size: 30px;
  }

  .CF-heading-h1 span {
    position: relative;
    padding: 0 80px;
  }

  .CF-heading-h1 span::before {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 50px;
    top: -2px;
    left: 0px;
    transform: none;
  }
}

/*
改行
*/
br.forPC {
  display: none;
}

@media screen and (min-width:769px) {
  br.forSP {
    display: none;
  }

  br.forPC {
    display: block;
  }
}

/*
/////////////////////////////////////////////////////////////////////

ヘッダーCSS

////////////////////////////////////////////////////////////////////
*/
.CF-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

.CF-header-group {
  position: relative;
  display: flex;
  flex-flow: nowrap;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  width: 100%;
}

.CF-header-logo {
  display: flex;
  margin-left: 16px;
  align-items: end;
}

.CF-header-logo-inner {
    display: inline-block;
}


.CF-header-logo-inner_exam {
  width: 180px;
  
  
}

.CF-header-logo-inner_exam img {
  vertical-align: bottom;
}

.CF-header-logo-inner_certify {
    width: 92px;
    margin-left: 12px;
    margin-right: 16px;
}

.CF-header-logo-inner_certify img {
  vertical-align: bottom;
}

.CF-hamburger {
  position: relative;
  width: 60px;
  height: 60px;
  background: #ff9700;
  cursor: pointer;
}

body.-is-open .CF-hamburger-box {
  display: block;
  height: calc(100vh - 60px);
  overflow-y: auto;
}

.CF-hamburger-box {
  display: none;
}

.CF-hamburger > span {
  display: block;
}

.CF-hamburger > span::before {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background: #fef0ec;
  top: 17px;
  right: 26%;
}

.CF-hamburger > span::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background: #fef0ec;
  top: 33px;
  right: 26%;
}

.CF-hamburger > span > span:before {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background: #fef0ec;
  top: 25px;
  right: 26%;
}

.CF-hamburger > span > span {
  display: block;
  font-size: 10px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding-top: 40px;
}

body.-is-open .CF-hamburger > span::before {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background: #fef0ec;
  top: 26px;
  right: 26%;
  transform: rotate(45deg);
}

body.-is-open .CF-hamburger > span::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background: #fef0ec;
  top: 26px;
  right: 26%;
  transform: rotate(-45deg);
}

body.-is-open .CF-hamburger > span > span:before {
  display: none;
}

.CF-header-nav ul {
  padding: 0;
}

.CF-header-nav li {
  list-style: none;
  border-bottom: #cccccc solid 1px;
}

.CF-header-nav a {
  display: block;
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  line-height: 46px;
  background: url(/nm/_assets/images/svg/arrow02_green.svg) right 18px center no-repeat #e3f9f9;
  background-size: auto 17px;
  height: 100%;
  padding: 0 40px 0 20px;
  font-weight: normal;
}

.CF-header-nav span.-is-new {
  background: #FF4C4C;
  padding: 2px;
  border-radius: 2px;
  text-align: center;
  font-size: 10px;
  display: inline-block;
  color: #fff;
  line-height: 12px;
  margin-left: 4px;
}

.CF-header-link ul {
  padding: 0;
}

.CF-header-link li {
list-style: none;
border-bottom: #cccccc solid 1px;
}

.CF-header-link a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  height: 100%;
}

.CF-header-link a {
  background: url(/nm/_assets/images/svg/arrow02_white.svg) right 18px center no-repeat #ff9700;
  font-size: 16px;
  line-height: 46px;
  background-size: auto 17px;
  padding: 0 40px 0 20px;
}

.CF-header-link li.-color-green a {
  background: url(/nm/_assets/images/svg/arrow02_green.svg) right 18px center no-repeat #e3f9f9;
  background-size: auto 17px;
  color: #000000;
}

.CF-header-banner-btn {
  background: #00aaaa;
  padding: 20px 0px 30px;
}

.CF-header-banner-btn a {
  display: block;
  text-decoration: none;
  color: #000000;
  text-align: center;
  background: url(/nm/_assets/images/svg/arrow02_black.svg) right 20px center no-repeat #ffe927;
  background-size: auto 17px;
  width: auto;
  height: 70px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
  border: #ffffff solid 2px;
  border-radius: 35px;
  padding: 14px 0;
  margin: 0px 15px;
}

body.-is-open .CF-header-shadow {
  position: fixed;
  background-color: #000000;
  width: 100%;
  height: 100vh;
  opacity: 0.9;
  z-index: 4;
}

.CF-header-title {
  font-size: 10px;
  line-height: 1.5;
  background: #00aaaa;
  margin-top: 60px;
  text-align: left;
  color: #ffffff;
  padding: 9px 18px;
  height: 55px;
  display: flex;
    align-items: center;
}

.CF-header-title a{
  color: #ffffff;
	text-decoration: none;
}

.CF-header-title-text {
  display: block;
}



@media screen and (min-width:769px) {
  .CF-header-wrapper {
    background-image: linear-gradient(#fff 90px,#00aaaa 90px,#00aaaa 150px,#fff 150px, #fff 100%);
  }
  .CF-header-group {
    height: 90px;
    max-width: var(--contents-width);
    margin: 0 auto;
  }

  .CF-header-logo {
    margin-left: 0px;
  }

  .CF-header-logo-inner_exam {
    width: 23vw;
  }
  
  .CF-header-logo-inner_certify {
      width: 12vw;
  }

  body.-is-open .CF-hamburger-box {
    height: auto;
    overflow-y: auto;
  }

  .CF-hamburger {
    display: none;
  }

  .CF-hamburger-box {
    display: block;
  }

  .CF-header-nav {
    margin-top: 61px;
    border-bottom: #ccc solid 1px;
  }
  
  /*
  .CF-header-nav .-is-active a {
    color: #ff6937;
    background-image: linear-gradient(to top,#ff6937 3px,#ff6937 3px,#fff 3px, #fff 100%);
  }

  .NAV-01 .CF-header-nav ul li:nth-child(1) a {
    color: #ff6937;
    background-image: linear-gradient(to top,#ff6937 3px,#ff6937 3px,#fff 3px, #fff 100%);
  }

  .NAV-02 .CF-header-nav ul li:nth-child(2) a {
    color: #ff6937;
    background-image: linear-gradient(to top,#ff6937 3px,#ff6937 3px,#fff 3px, #fff 100%);
  }

  .NAV-03 .CF-header-nav ul li:nth-child(3) a {
    color: #ff6937;
    background-image: linear-gradient(to top,#ff6937 3px,#ff6937 3px,#fff 3px, #fff 100%);
  }

  .NAV-04 .CF-header-nav ul li:nth-child(4) a {
    color: #ff6937;
    background-image: linear-gradient(to top,#ff6937 3px,#ff6937 3px,#fff 3px, #fff 100%);
  }

  .NAV-05 .CF-header-nav ul li:nth-child(5) a {
    color: #ff6937;
    background-image: linear-gradient(to top,#ff6937 3px,#ff6937 3px,#fff 3px, #fff 100%);
  }
  */



  .CF-header-nav ul {
    display: flex;
    flex-flow: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    max-width: var(--contents-width);
    margin: 0 auto;
  }

  .CF-header-nav li {
    position: relative;
    border-bottom: none;
    flex-grow: 1;
  }

  .CF-header-nav li::before {
    content: "";
    position: absolute;
    background: #ccc;
    width: 1px;
    height: 20px;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    z-index: 1;
  }

  .CF-header-nav li:first-child:after {
    content: "";
    position: absolute;
    background: #ccc;
    width: 1px;
    height: 20px;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
  }

  .CF-header-nav a {
    font-size: 11px;
    line-height: 21px;
    background: #ffffff;
    padding: 15px 0;
    text-align: center;
  }

  .CF-header-nav a:hover {
    opacity: 0.7;
  }


  .CF-header-link {
    position: absolute;
    top: 19px;
    right: 0;
    left: auto;
    margin-bottom: 0;
    width: fit-content;
  }

  .CF-header-link ul {
    display: flex;
    flex-flow: nowrap;
    justify-content: flex-end;
    align-items: stretch;
  }

  .CF-header-link li {
    border-bottom: none;
    border-right: #fff solid 2px;
    max-width: 149px;
    height: 50px;
  }

  .CF-header-link li:last-child {
    border-right: none;
  }

  .CF-header-link li:first-child {
    flex-flow: column;
  }

  .CF-header-link a {
    font-size: 11px;
    line-height: 1.2;
    background: url(/nm/_assets/images/svg/arrow01_white.svg) left 15px center no-repeat #ff9700;
    background-size: 14px 14px;
    padding: 0px 14px 0px 36px;
    width: fit-content;
    border-radius: 5px;
    display: flex;
    align-items: center;
  }

  .CF-header-link li.-has-new-line a {
    padding: 0px 11px 0px 36px;
  }

  .CF-header-link li.-color-green a {
    color: #000000;
    background: url(/nm/_assets/images/svg/arrow01_black.svg) left 15px center no-repeat #cceeee;
    background-size: 14px 14px;
  }

  .CF-header-link a:hover {
    opacity: 0.7;
  }

  .CF-header-link a span {
    padding-top: 4px;
  }

  .CF-header-link li.-btn-login a span {
    text-align: center;
  }

  .CF-header-banner-btn {
    background: transparent;
    padding: 0;
    margin: 0;
    width: 312px;
    position: absolute;
    top: 100px;
    right: 0;
  }

  .CF-header-banner-btn a {
    padding: 11px 0px;
    background: url(/nm/_assets/images/svg/arrow01_black.svg) left 20px center no-repeat #ffe927;
    background-size: 12px;
    font-size: 13px;
    font-weight: bold;
    margin: 0px 0px;
    line-height: 1.2;
    height: 40px;
  }

  .CF-header-banner-btn a:hover {
    opacity: 0.7;
  }

  .CF-header-shadow {
    display: none;
  }

  .CF-header-title {
    margin-top: 0;
    padding-left: 5px;
    text-align: left;
    height: 60px;
    position: fixed;
    top: 90px;
    left: 0;
    z-index: 6;
    font-size: 10px;
    line-height: 1.67;
  }

  .CF-header-title-text_non-new-line {
    display: inline-block;
  }

  .CF-header-title-text:first-child {
    margin-right: 10px;
  }
}

@media screen and (min-width:870px) {
  .CF-header-nav a {
    font-size: 15px;
  }
}

@media screen and (min-width:940px) {
  .CF-header-logo-inner {
    width: 273px;
    height: 45px;
    margin:20px auto;
  }

  .CF-header-logo-inner_certify {
    width: 139px;
    height: 28px;
    margin-left:17px;
    padding-bottom: 30px;
  }

  .CF-header-banner-btn {
    width: 400px;
  }

  .CF-header-banner-btn a {
    font-size: 18px;
    background: url(/nm/_assets/images/svg/arrow01_black.svg) left 16px center no-repeat #ffe927;
    background-size: 16px;
    padding: 9px 25px;
  }

  .CF-header-banner-btn a:hover {
    opacity: 0.7;
  }

  .CF-header-title {
    font-size: 12px;
  }
}

@media screen and (min-width:985px) {
  .CF-header-link a {
    font-size: 13px;
  }
}

@media screen and (min-width:1020px) {
  .CF-header-link {
    right: calc((100% - var(--contents-width)) / 2);
  }
  .CF-header-banner-btn {
    right: calc((100% - var(--contents-width)) / 2);
  }
  .CF-header-title {
    left: calc((100% - var(--contents-width)) / 2);
  }
}

/*
//////////////////////////////////////////////

フッターCSS

/////////////////////////////////////////////
*/



/* 
背景
*/
.l-foot-bg {
  display: none;
}

@media screen and (min-width:769px) {
  .l-foot-bg { background: url("/nm/_assets/images/common/bg_dot.png"); padding: 60px 15px 30px; display: block;}
}
/* /背景 */


/*
サイトマップ
*/
@media screen and (min-width:769px) {
  .c-foot-sitemap { max-width: var(--contents-width); margin: 0 auto 0 auto; display: flex; flex-flow: wrap; justify-content: flex-start; align-items: flex-start;}
  .c-foot-sitemap__column { width: 25%; }
  .c-foot-sitemap__column:nth-child(1) { width: 20%; }
  .c-foot-sitemap__column:nth-child(2) { width: 20%; }
  .c-foot-sitemap__column:nth-child(3) { width: 30%; }
  .c-foot-sitemap__column:nth-child(4) { width: 30%; }
  .c-foot-sitemap__column div { margin: 0 0 15px 0; }
  .c-foot-sitemap__column a { text-decoration: none; color: #333; }
  .c-foot-sitemap__column a:hover { text-decoration: underline; }
  .c-foot-sitemap__column p a { font-size: var(--fs-component-12); font-weight: bold; background: url("/nm/_assets/images/common/icon_arrow_btn.png") 0 47% no-repeat; padding: 4px 0 4px 20px; }
  .c-foot-sitemap__column p.u-icon1 a:before, .c-foot-sitemap__column p.u-icon2 a:before, .c-foot-sitemap__column p.u-icon3 a:before, .c-foot-sitemap__column p.u-icon4 a:before, .c-foot-sitemap__column p.u-icon5 a:before, .c-foot-sitemap__column p.u-icon6 a:before, .c-foot-sitemap__column p.u-icon7 a:before { content: "■"; margin: 0 3px 0 0; }
  .c-foot-sitemap__column p.u-icon1 a:before { color: #396; }
  .c-foot-sitemap__column p.u-icon2 a:before { color: #09C; }
  .c-foot-sitemap__column p.u-icon3 a:before { color: #6CC; }
  .c-foot-sitemap__column p.u-icon4 a:before { color: #F9BB00; }
  .c-foot-sitemap__column p.u-icon5 a:before { color: #F96; }
  .c-foot-sitemap__column p.u-icon6 a:before { color: #C93; }
  .c-foot-sitemap__column p.u-icon7 a:before { color: #999; }
  .c-foot-sitemap__column ul { margin: 6px 0 0 0; padding: 0;}
  .c-foot-sitemap__column li { list-style: none;}
  .c-foot-sitemap__column li a { font-size: var(--fs-component-10); display: inline-block; margin: 0 0 0 20px; }
}
/* /サイトマップ */


/*
プライバシーポリシー
*/
@media screen and (min-width:769px) {
  .c-foot-privacy { max-width: var(--contents-width); margin: 40px auto 0 auto; display: flex;flex-flow: nowrap; justify-content: flex-start; align-items: flex-start;}
  .c-foot-privacy p { width: 80px; }
  .c-foot-privacy ul { margin: 5px 0 0 10px; padding: 0;}
  .c-foot-privacy li { font-size: var(--fs-component-12); list-style: disc; margin: 0 0 0 1em; }
}
/* /プライバシーポリシー */

/*
コピーライト
*/
.c-foot-copy { padding: 17px 0 17px 0; background: url("/nm/_assets/images/common/bg_copyright.png"); }
.c-foot-copy p { text-align: center; color: #FFF; font-size: var(--fs-component-10); line-height: 100%; }

@media screen and (min-width:769px) {
  .c-foot-copy p { font-size: var(--fs-component-12);}
}

/* /コピーライト */

/*
追従メニュー(SPのみ)
*/
.CF-floating-menu-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.CF-floating-menu-sp ul {
  display: flex;
  flex-flow: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  list-style: none;
  padding-left: 0;
}

.CF-floating-menu-sp ul li {
  width: 50%;
}

.CF-floating-menu-sp ul li:first-child {
  border-right: #fff solid 1px;
}

.CF-floating-menu-sp a {
  display: block;
  font-size: 11px;
  line-height: 16px;
  padding: 12px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  background-color: #ff6937;
}

.CF-floating-menu-sp span {
  background: url(/nm/_assets/images/svg/arrow01_white.svg) left center no-repeat;
  background-size: 15px 15px;
  display: inline-block;
  padding: 0 18px;
}

.CF-footer {
  margin-bottom: 40px;
}

@media screen and (min-width:769px) {
  .CF-floating-menu-sp {
    display: none;
  }

  .CF-footer {
    margin-bottom: 0px;
  }
}


/*
セクションレイアウト
*/
.CF-section, .CF-question {
  padding: 0 15px;
  margin-bottom: 50px;
}

.CF-section-inner {
  padding: 0;
}

.CF-section-inner.-is-border {
  border-top: #000 solid 2px;
  padding-top: 30px;
}

.CF-section.-is-bg-color + .CF-section.-is-bg-color {
  margin-top: -40px;
  padding-top: 0;
}

.CF-section.-is-bg-green {
  background-color: #e3f9f9;
}

.CF-main-contents > .CF-heading-h1 + .CF-section > .CF-section-inner {
  padding-top: 0;
}

.CF-section-inner > *:first-child {
  margin-top: 0 !important;
}

.CF-section-inner > *:last-child {
  margin-bottom: 0 !important;
}

@media screen and (min-width:769px) {
  .CF-section, .CF-question {
    position: relative;
    top: 200px;
    margin-bottom: 80px;
  }

  .CF-section-inner {
    max-width: var(--contents-width);
    margin: 0 auto;
    padding: 0;
  }

  .CF-section.-is-bg-img {
    background-image: url(/nm/_assets/images/top/about_pc.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #f0ede3;
  }

  .CF-section-inner.-is-border {
    padding-top: 75px;
  }

  .CF-section.-is-bg-color + .CF-section.-is-bg-color {
    margin-top: -80px;
  }
}

/* /セクションレイアウト */
