@charset "UTF-8";

html {
  font-size: 10px;
}

@media (max-width: 599px) {
  .only-pc {
    display: none;
  }
}

@media (min-width: 600px) {
  .only-sph {
    display: none;
  }

  :not(.section):target {
    margin-top: -55px;
    padding-top: 55px;
  }
}

/*
  BUTTON
 */

.button-wrap {
  margin-top: 2.4rem;
  text-align: center;
}

.button {
  background-color: #fff;
  border: 2px solid #0046e8;
  border-radius: 2px;
  box-sizing: border-box;
  color: #0046e8;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1.2rem 4.8rem;
  vertical-align: bottom;
}

.button:hover {
  background-color: #eff3fd;
}

.application-button {
  align-items: center;
  background-color: #ffc000;
  border-radius: 2px;
  color: #001a55;
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.application-button:hover {
  background-color: #ffd34d;
}

@media (min-width: 600px) {
  .button-wrap {
    margin-top: 4rem;
  }
}

/*
  LIST
 */

.list-item + .list-item {
  margin-top: 0.2em;
}

/* 注釈リスト */

.list-notes,
.list-order-notes {
  max-width: 960px;
  margin: 0 auto;
}

.list-notes .list-item,
.list-order-notes .list-item {
  font-size: 1.2rem;
  position: relative;
}

.list-notes small,
.list-order-notes small {
  font-size: inherit;
}

.list-notes .list-item {
  margin-left: 1em;
}

.list-notes .list-item::before {
  content: '※';
  left: -1em;
  position: absolute;
}

.list-order-notes .list-item {
  margin-left: 2.3em;
}

.list-order-notes {
  counter-reset: number;
}

.list-order-notes .list-item::before {
  counter-increment: number;
  content: '※' counter(number) '. ';
  left: -2.3em;
  position: absolute;
}

/* Ordered List */

.list-ordered {
  counter-reset: number;
}

.list-ordered .list-item {
  border-bottom: 1px solid #d1d9ed;
  line-height: 1.71;
  padding: 1.6rem 0 1.6rem 2rem;
  position: relative;
}

.list-ordered .list-item::before {
  counter-increment: number;
  content: counter(number) '.';
  left: 0;
  position: absolute;
}

.list-ordered .list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* DISC */

.list-disc {
  box-sizing: border-box;
  padding-left: 1.5em;
  width: 100%; /* ie11対策 */
}

.list-disc .list-item {
  list-style-type: disc;
  line-height: 1.71;
}

/* チェックマークリスト */

.list-check-mark .list-item {
  text-indent: -1.4em;
  margin-left: 1.4em;
}

.list-check-mark .list-item::before {
  color: #fc0;
  content: '\f00c'; /* checkマーク */
  font-family: FontAwesome, sans-serif;
  font-size: 1.12em;
  margin-right: 0.6rem;
}

/* Q List */

.list-q {
  text-indent: -1.2em;
  margin-left: 1.2em;
}

.list-q .list-item + .list-item {
  margin-top: 1.6rem;
}

.list-q .list-item::before {
  color: #0046e8;
  content: 'Q ';
  display: inline;
}

/*
  Headline
 */

.headline {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 2.4rem;
  text-align: center;
}

.sub-headline_border {
  border-bottom: 1px solid #d1d9ed;
  color: #384042;
  font-size: 1.6rem;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
}

@media (min-width: 600px) {
  .headline {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}

/*
  Link
 */

.link {
  color: #0046e8;
}

.link:hover {
  text-decoration: underline;
}

.outer::after {
  /* 外部リンクマーク */
  content: '\f08e';
  display: inline-block;
  font-family: FontAwesome, sans-serif;
  margin-right: 0.2rem;
}

.link-box {
  background-color: #fff;
  box-shadow: 2px 4px 8px rgba(0, 47, 155, 0.16); /* #002F9B */
}

.link-box .look-details {
  color: #0046e8;
  font-size: 1.6rem;
  font-weight: bold;
}

.link-box:hover {
  background-color: #fafbff;
  box-shadow: 2px 4px 8px rgba(0, 47, 155, 0.24); /* #002F9B */
}

.link-box:hover .look-details {
  text-decoration: underline;
}

/*
  HEADER
 */

.layout_detection-header {
  background-color: #001a55;
  z-index: 999;
}

.detection-header {
  background-color: inherit;
}

.site-name {
  font-size: 2rem;
}

.site-name-link {
  color: #f2f4fa;
}

.detection-nav-item .nav-link {
  color: #f2f4fa;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
}

/*
  Sticky Polyfill 設定
  sticky 未対応のブラウザ向けCSS
 */

.js-is-sticky {
  left: 0;
  right: 0;
  position: fixed;
  top: 0;
}

.js-is-sticky + .breadcrumbs::before,
.js-is-sticky + .layout_main::before {
  content: '';
  display: block;
  height: 55px; /* ヘッダーの高さ */
  width: 100%;
}

@supports (position: sticky) or (position: -webkit-sticky) {
  .layout_detection-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  .js-is-sticky + .breadcrumbs::before,
  .js-is-sticky + .layout_main::before {
    display: none;
  }
}

/* sticky 設定 ここまで */

@media (max-width: 599px) {
  body[aria-expanded='true'] {
    background-color: #b1b1b1;
    height: 104px; /* 共通ヘッダーの高さ */
    overflow-y: hidden;
  }

  .layout_detection-header {
    position: static;
  }

  .trigger-wrap {
    background-color: inherit;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 99;
  }

  .site-name-link {
    display: block;
    padding: 1.6rem;
  }

  .sph-accordion-trigger {
    background-color: transparent;
    border: none;
    color: #f2f4fa;
    font-size: 3rem;
    outline: none;
    width: 5rem;
  }

  .sph-accordion-body {
    background-color: #2e4474;
    position: absolute;
    transition: top 0.4s;
    width: 100%;
    z-index: 98;
  }

  .sph-accordion-body[aria-expanded='false'] {
    top: -210px;
  }

  .detection-nav-item {
    border-bottom: 1px solid #001a55;
  }

  .detection-nav-item .nav-link {
    padding: 0.8rem 1.6rem;
    position: relative;
  }

  .detection-nav-item .nav-link::after {
    /* >マーク */
    content: '\f105';
    font-family: FontAwesome, sans-serif;
    font-size: 2rem;
    position: absolute;
    right: 2rem;
    top: 0.4rem;
  }

  .header-application-button {
    box-sizing: border-box;
    height: 7rem;
    padding: 1.4rem;
    width: 100%;
  }

  .sph-accordion-close {
    background-color: #2d2d2d;
    border: none;
    color: #fff;
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    outline: none;
    padding: 0.8rem;
    width: 100%;
  }

  .sph-accordion-close::before {
    /* Xマーク */
    content: '\f00d';
    font-family: FontAwesome, sans-serif;
    margin-right: 0.5rem;
  }
}

@media (min-width: 600px) {
  .detection-header {
    align-items: stretch;
    display: flex;
    height: 5.5rem;
    justify-content: space-between;
    margin: 0 auto;
    width: 960px;
  }

  .site-name {
    height: 5.5rem;
  }

  .site-name-link {
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
  }

  .sph-accordion-body {
    align-items: center;
    display: flex;
  }

  .layout_detection-nav {
    height: 100%;
  }

  .detection-nav {
    display: flex;
    height: 100%;
  }

  .detection-nav-item .nav-link {
    align-items: center;
    display: flex;
    height: 100%;
    padding: 0 1.5rem;
  }

  .detection-nav-item .nav-link:hover {
    background-color: #2e4474;
  }

  .header-application-button {
    align-items: center;
    display: flex;
    margin-left: 2rem;
    width: 12.4rem;
    height: 3.2rem;
  }

  .sph-accordion-trigger,
  .sph-accordion-close {
    display: none;
  }
}

/*
  FOOTER
 */

.layout_detection-footer .list-notes {
  color: #061013;
  margin: 0.8rem auto 2.2rem;
}

@media (max-width: 599px) {
  .layout_detection-footer .list-notes {
    padding: 0 1.4rem;
  }
}

@media (min-width: 600px) {
  .layout_detection-footer {
    min-width: 960px;
  }
}

/*
  お申し込みコンテンツ（青・横長）
 */

.apply-block {
  background: url(../images/bg_apply.png) #002e9a no-repeat top right / cover;
  color: #e8ecf6;
  padding: 4rem 3rem;
  text-align: center;
}

.apply-block .apply-head {
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 1rem;
}

.apply-block .apply-point {
  font-size: 2.4rem;
  font-weight: bold;
}

.apply-application-button {
  height: 5.2rem;
  margin: 2.4rem auto 0;
  width: 18.4rem;
}

@media (min-width: 600px) {
  .apply-block {
    align-items: center;
    display: flex;
    height: 17.8rem;
    justify-content: center;
    padding: 0;
    min-width: 960px;
    text-align: left;
  }

  .apply-application-button {
    margin: 0 0 0 7.7rem;
  }

  .apply-application-button .application-button {
    font-size: 1.6rem;
  }
}

/*
  SECTION
 */

.section {
  padding: 5.6rem 0;
}

.section.border {
  border-bottom: 1px solid #dadbdc;
}

.section.border:last-child {
  border-bottom: none;
}

@media (min-width: 600px) {
  .section {
    min-width: 960px;
  }
}

/*
  HERO
 */

.layout_hero {
  background: url(../images/bg_content-title.png) no-repeat top center /
    cover;
  box-sizing: border-box;
  color: #fff;
  padding: 4.2rem 0;
}

.layout_hero .cb {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-head {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 1.6rem;
}

@media (min-width: 600px) {
  .layout_hero {
    box-sizing: border-box;
    height: 14.3rem;
    padding: 3.6rem 0 3.2rem;
  }

  .hero-head {
    font-size: 2.6rem;
    margin-bottom: 2.8rem;
  }

  .hero-description {
    font-size: 1.4rem;
  }
}

/*
  related-links
 */

.related-links {
  background-color: #f2f3f3;
  padding: 5.6rem 0;
}

.related-links .headline {
  font-size: 2rem;
}

.related-links .link-box {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
}

.related-links-head {
  color: #384042;
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}

.related-links-description {
  color: #061013;
  margin-bottom: 3.2rem;
}

.related-links-img {
  height: 4.2rem;
  margin-bottom: 1.6rem;
  order: -1;
  width: 4.2rem;
}

@media (max-width: 599px) {
  .related-links .column-item:first-child {
    margin-bottom: 4rem;
  }
}

@media (min-width: 600px) {
  .related-links {
    box-sizing: border-box;
    min-width: 960px;
  }

  .related-links .headline {
    font-size: 2.2rem;
  }

  .related-links .link-box {
    box-sizing: border-box;
    flex-direction: row;
    padding: 2.4rem 2.4rem 4rem;
    width: 46rem;
  }

  .related-links-img {
    height: 5.6rem;
    margin-right: 2.4rem;
    width: 5.6rem;
  }

  .related-links-description {
    margin-bottom: 2.4rem;
  }
}

/*
  よくある質問BOX
 */

.faq-unit {
  background-color: #e6edfd;
  display: flex;
  flex-direction: column;
  margin: 0 1.4rem 5.6rem;
  padding: 1.6rem;
}

.faq-unit-head {
  color: #384042;
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
}

.faq-unit-img {
  height: 4.2rem;
  margin-bottom: 1.6rem;
  order: -1;
  width: 4.2rem;
}

@media (min-width: 600px) {
  .faq-unit {
    box-sizing: border-box;
    flex-direction: row;
    margin: 0 auto 5.6rem;
    padding: 2.4rem;
    width: 960px;
  }

  .faq-unit-img {
    height: 5.6rem;
    margin: 0 2.4rem 0 0;
    width: 5.6rem;
  }
}

/*
  パンくずリスト
 */

@media (max-width: 599px) {
  .breadcrumbs {
    display: none;
  }
}

@media (min-width: 600px) {
  .breadcrumbs {
    background-color: #263c6e;
    box-sizing: border-box;
    color: #b9c6e4;
    min-width: 960px;
    padding: 1rem 0;
  }

  .breadcrumbs-list {
    display: flex;
    font-size: 1.4rem;
    margin: 0 auto;
    width: 960px;
  }

  .breadcrumbs-list-item:not(:last-child)::after {
    content: '>';
    display: inline-block;
    margin: 0 0.8rem;
  }

  .breadcrumbs-link {
    color: inherit;
  }

  .breadcrumbs-link:hover {
    text-decoration: underline;
  }
}

/*
  OTHERS
 */

.layout_main {
  color: #061013;
  font-size: 1.4rem;
}

.layout_main p {
  line-height: 1.7;
}

.lead-block {
  margin: 2.4rem auto 2rem;
  text-align: center;
}

.img-wrap {
  text-align: center;
}

.sub {
  vertical-align: middle;
}

@media (max-width: 599px) {
  .layout_main .cb {
    box-sizing: border-box;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    width: 100%;
  }

  .img-wrap .img {
    display: inline-block;
    height: auto;
    width: 100%;
  }
}

@media (min-width: 600px) {
  .column-pc {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  .lead-block {
    margin-top: 4rem;
  }
}

/* --------------------
  IE11 hack
-------------------- */
@media all and (-ms-high-contrast: none) and (min-width: 600px) {
  .detection-nav-item .nav-link {
    box-sizing: border-box;
    padding-top: 0.4rem;
  }

  .site-name-link {
    box-sizing: border-box;
    padding-top: 0.7rem;
  }
}

@media all and (-ms-high-contrast: none) {
  .application-button {
    padding-top: 0.5rem;
  }

  .button {
    padding: 1.8rem 4.8rem 1rem;
  }
}