@charset "UTF-8";

/*
  基本設定
 */

.layout_global-content p,
.layout_global-content li {
  font-size: 14px;
  line-height: 24px;
  margin: 16px 20px;
}

@media screen and (min-width: 769px) {
  .layout_global-content p,
  .layout_global-content li {
    font-size: 16px;
    margin: 16px auto;
    max-width: 940px;
  }

  .visible-only-sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .visible-only-pc {
    display: none;
  }
}

.layout_global-content p {
  margin-bottom: 24px;
}

/*
  見出し
 */

.content-title {
  border-bottom: 2px solid #3686c6;
  display: table;
  font-size: 28px;
  font-weight: normal;
  line-height: 32px;
  margin: 40px auto 48px;
  padding-bottom: 6px;
}

.headline {
  color: #3686c6;
  font-size: 24px;
  font-weight: normal;
  line-height: 32px;
  margin: 0 20px 32px;
}

.sub-headline {
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
  margin: 40px 20px 24px;
}

.sub-headline.blue {
  color: #3686c6;
}

.headline + .sub-section > .sub-headline:first-child,
.headline + .sub-headline {
  margin-top: 0;
}

.subsub-headline {
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
  margin: 40px 20px 16px;
}

@media screen and (max-width: 768px) {
  .subsub-headline {
    font-size: 18px;
  }
}

.sub-headline + .subsub-headline,
.sub-headline + .sub-section > .subsub-headline {
  margin-top: 24px;
}

@media screen and (max-width: 375px) {
  .content-title.long {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (min-width: 769px) {
  .content-title {
    font-size: 40px;
    line-height: 48px;
  }

  .headline {
    font-size: 32px;
    line-height: 40px;
    margin: 0 auto 32px;
    max-width: 940px;
  }

  .sub-headline {
    font-size: 24px;
    line-height: 32px;
    margin: 40px auto 24px;
    max-width: 940px;
  }

  .subsub-headline {
    margin: 40px auto 16px;
    max-width: 940px;
  }
}

/*
  lead
 */

@media screen and (min-width: 769px) {
  .headline + .lead {
    text-align: center;
  }
}

/*
  テキスト
 */

.txt-s {
  font-size: 14px;
}

.bold {
  font-weight: bold;
}

/*
 セクション
 */

.section {
  margin: 112px auto;
}

.sub-section {
  margin: 0 auto;
}

.sub-section::after {
  background-color: #909090;
  content: '';
  display: block;
  height: 1px;
  margin: 40px auto;
  width: calc(100% - 20px * 2);
}

.sub-section:last-of-type::after {
  display: none;
}

@media screen and (max-width: 768px) {
  .content-title + .section {
    margin-top: 0;
  }
}

@media screen and (min-width: 769px) {
  .content-title + .section {
    margin-top: 72px;
  }

  .sub-section {
    width: 940px;
  }

  .sub-section::after {
    width: 100%;
  }
}

/*
  Media Layout
  2列にします
 */

.layout_media > .media:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .layout_media {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 940px;
  }

  .layout_media > .body {
    flex-grow: 1;
  }

  .layout_media > .body > :first-child {
    margin-top: 0;
  }

  .layout_media > .body :last-child,
  .layout_media > .body li:last-child {
    margin-bottom: 0;
  }

  .layout_media > .media {
    margin: 0 0 0 20px;
  }

  .layout_media > .media img {
    width: auto;
  }
}

/*
  img
 */

.img {
  line-height: 0;
  margin: 40px 20px;
}

.img-border {
  background-color: #fff;
  border: 16px solid #f4f4f4;
  box-sizing: border-box;
  display: block;
  line-height: 0;
  margin: 40px 20px;
  vertical-align: bottom;
}

.img-border img {
  box-sizing: border-box;
  padding: 8px;
}

@media screen and (max-width: 768px) {
  .img-border img + img {
    margin-top: 16px;
  }
}

@media screen and (min-width: 769px) {
  .img {
    margin: 40px auto;
    max-width: 940px;
    text-align: center;
  }

  .img-border {
    margin: 40px auto;
    max-width: 940px;
    text-align: center;
  }

  .img-border img {
    padding: 24px;
    width: auto;
  }
}

/*
  LIST
 */

.list_angle-mark > li {
  box-sizing: border-box;
  padding-left: 16px;
  position: relative;
}

.list_angle-mark > li::before {
  border-right: 2px solid #3686c6;
  border-top: 2px solid #3686c6;
  content: '';
  height: 5px;
  left: 0;
  position: absolute;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 8px;
  width: 5px;
}

.list_angle-mark a {
  color: inherit;
}

.list_disc .list-item {
  list-style: disc outside;
  margin: 8px 0 8px 16px;
}

.list_disc .list-item:first-child {
  margin-top: 0;
}

.list_disc .list-item:last-child {
  margin-bottom: 0;
}

/*
  TABLE
 */

.table-head,
.table-data {
  line-height: 24px;
  padding: 8px 16px;
}

.table-head {
  background-color: #f4f4f4;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .table-default {
    border: 1px solid #d3d3d3;
    border-top: none;
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  .table-head,
  .table-data {
    display: block;
    font-size: 14px;
  }

  .table-head {
    border-bottom: 1px solid #d3d3d3;
    border-top: 1px solid #d3d3d3;
  }
}

@media screen and (min-width: 769px) {
  .table-default {
    border-collapse: collapse;
    width: 100%;
  }

  .table-head,
  .table-data {
    border: 1px solid #d3d3d3;
    font-size: 16px;
  }

  .table-head {
    box-sizing: border-box;
    width: 188px;
  }
}

/*
  NOTES
 */

.notes {
  font-size: 12px;
  line-height: 24px;
  margin: 16px 24px;
}

.notes {
  font-size: 12px;
  line-height: 24px;
  margin: 16px 24px;
}

.notes dd + dt {
  margin: 16px 0 0;
}

@media screen and (min-width: 769px) {
  .notes {
    margin: 0 auto;
    max-width: 940px;
  }
}

/*
  CSR Footer
 */

.layout_csr-footer {
  background-color: #f4f4f4;
  margin-bottom: calc(72px - 8.333333333333332%);
  margin-top: calc(72px + 40px);
  padding: 72px 0 calc(72px - 32px); /* bottom: 72px - liのmargin-botom */
}

.csr-footer_headline {
  border-bottom: 1px solid #3686c6;
  color: #3686c6;
  font-size: 18px;
  line-height: 24px;
  margin: 0 20px 24px;
  padding-bottom: 8px;
}

.csr-footer_headline a {
  color: inherit;
}

.csr-footer_nav-class > li {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  margin: 0 20px 32px;
}

.csr-footer_nav-link-units > li {
  margin: 16px 0;
}

.csr-footer_nav-link-units > li::before {
  left: 2px;
  top: 9px;
}

.csr-footer_nav-link-units a {
  color: inherit;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
}

@media screen and (min-width: 769px) {
  .layout_csr-footer {
    margin-bottom: 0;
    padding-bottom: calc(72px - 8px); /* 72px - liのmargin-botom */
  }

  .csr-footer_headline {
    font-size: 24px;
    line-height: 32px;
    margin: 0 auto;
    padding-bottom: 16px;
    width: 940px;
  }

  .csr-footer_nav-class {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 960px;
  }

  .csr-footer_nav-class > li {
    margin: 32px 10px 0;
    width: calc(8px * 27);
  }

  .csr-footer_nav-link-units > li {
    margin: 8px 0;
  }
}

/*
  コーポレート共通のCSSを上書きします
 */

.layout_global-sp .layout_global-footer,
.layout_global-pc .layout_global-footer {
  margin-top: 72px;
  padding-top: 0;
}

.layout_global-sp .layout_global-content {
  overflow: initial;
}

.layout_global-sp .layout_global-footer .link_sns,
.layout_global-pc .layout_global-footer .link_sns {
  margin-top: 0;
  top: 0;
}

@media screen and (min-width: 769px) {
  .layout_global-content .inner {
    margin: 0 auto;
    width: 960px;
  }

  .layout_global-pc .layout_csr-footer + .inner_footer {
    padding: 0;
  }

  .layout_csr-footer + .inner_footer .btn_pagetop:not(.is-fixed) {
    bottom: -20px;
  }
}