@charset "utf-8";

/* --------------------
headline
-------------------- */

.headline {
  color: #163954;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.layout_main > .headline:first-child {
  margin-top: 20px;
}

.sub-headline {
  border-left: 5px solid #426077;
  color: #163954;
  font-size: 18px;
  margin-bottom: 20px;
  padding-left: 13px;
}

.subsub-headline {
  color: #163954;
  font-size: 18px;
  margin-bottom: 16px;
}

@media (min-width: 600px) {
  .sub-headline {
    font-size: 20px;
  }
}

.headline + .lead {
  margin-top: -10px;
}

/* IE11 hack */
@media all and (-ms-high-contrast: none) and (min-width: 600px) {
  .sub-headline {
    padding-top: 8px;
  }
}

/* --------------------
btn
-------------------- */

.btn {
  align-items: center;
  background-color: #fff;
  border: 1px solid #6c889c;
  border-radius: 3px;
  color: #426077;
  display: flex;
  font-size: 14px;
  height: 46px;
  justify-content: center;
  margin: 40px auto 0;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.7;
  text-decoration: none;
}

.btn-wrap {
  margin: 40px auto 0;
  text-align: center;
}

.btn-wrap .btn {
  border: 1px solid #002cb1;
  color: #002cb1;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  height: auto;
  margin: 0;
  padding: 16px 48px;
  width: auto;
}

.btn-wrap .btn:hover {
  border-color: #4d6bc8;
  color: #4d6bc8;
  opacity: 1;
  text-decoration: none;
}

/* 詳しく見るボタン */

.btn.detail-btn {
  box-sizing: border-box;
  font-size: 15px;
  height: 40px;
  margin-top: 24px;
  width: 160px;
}

@media (min-width: 600px) {
  .btn.detail-btn {
    margin-top: 16px;
  }
}

/* --------------------
notes
-------------------- */

.notes-list {
  font-size: 12px;
  list-style: none;
  margin-top: 21px;
}

.notes-title {
  margin: 21px 0 10px;
}

.notes-list-item {
  padding-left: 17px;
  text-indent: -17px;
  list-style: none;
  font-size: 12px;
}

.notes-list-item::before {
  content: "※";
  display: inline;
  margin-right: 5px;
}

.notes-item_link {
  color: #568cc5;
  text-decoration: none;
}

.notes-item_link:hover {
  text-decoration: underline;
}


/* --- 米印付き順序リスト --- */

.note-num { /* 注記号 */
  vertical-align: baseline;
}

.notes-number-list {
  counter-reset: my-counter;
  font-size: 12px;
  list-style: none;
  margin-top: 12px;
}

.notes-number-list-item {
  margin: 0 0 3px;
  padding-left: 27px;
  text-indent: -27px;
}

.notes-number-list-item::before {
  content: "※"counter(my-counter);
  counter-increment: my-counter;
  margin-right: 7px;
}

/* --------------------
list
-------------------- */

.list-disc {
  list-style-type: disc;
  margin-left: 20px;
}

/* リンク集 */

.link-unit-list {
  list-style-type: none;
}

.link-unit-item {
  color: #568cc5;
  text-indent: -0.8rem;
  margin-left: 0.8rem;
}

.link-unit-item::before {
  content: "\f105";
  font-family: fontAwesome;
  margin-right: 0.5rem;
}

.link-unit-item + .link-unit-item {
  margin-top: 8px;
}

.link-unit-link {
  color: inherit;
  text-decoration: none;
}

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

/* --------------------
link
-------------------- */

.link {
  color: #568cc5;
  text-decoration: none;
}

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

/* --------------------
box
-------------------- */

.box {
  margin: 16px 0;
  padding: 20px;
}

.box-head {
  font-size: 14px;
  margin-bottom: 16px;
}

.box_gray {
  background-color: #f6f6f6;
}

/* --------------------
アンカーリンク
-------------------- */

#outsideConnection {
  margin-top: -60px;
  padding-top: 60px;
}

/* --------------------
br
-------------------- */

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

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

/* --------------------
IE11 hack
スペースの調整
-------------------- */
@media all and (-ms-high-contrast: none) {
  .btn {
    box-sizing: border-box;
    padding: 5px 0 0;
  }
}