@charset "UTF-8";
/**
 * スタイルシートのリセット
 */
html {
  overflow: auto;
  height: 100%;
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  height: 100%;
  background-color: #fff;
  color: #000;
  font-family: sans-serif;
  line-height: 1.6;
  word-wrap: break-word;
  position: relative;
  text-align: inherit;
}

@media only screen and (min-width: 751px) {
  body {
    min-width: 800px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 750px) {
  body {
    min-width: auto;
    font-size: 15px;
  }
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, figure, button {
  margin: 0;
  padding: 0;
}

button {
  border: unset;
  color: unset;
  background: unset;
  cursor: pointer;
  outline: 0;
  -webkit-box-sizing: unset;
  box-sizing: unset;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

em {
  font-style: normal;
}

ol, ul {
  margin: inherit;
  padding-left: 3.5em;
}

ol.l-nolist_style, ul.l-nolist_style {
  margin: 0;
  padding: 0;
}

ol.l-nolist_style li, ul.l-nolist_style li {
  list-style: none;
  margin: 0;
  padding: 0;
}

table, iframe {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
  font-size: 100%;
}

img, picture {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}

img[src$='.svg'], object[data$='.svg'] {
  max-width: 100%;
}

a {
  color: #000;
  outline: none;
  text-decoration: none;
  -webkit-transition: color .3s;
  transition: color .3s;
}

a:visited {
  color: #000;
  text-decoration: none;
}

a:link {
  color: #000;
  text-decoration: none;
}

a img {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

a.is-hover, a:hover {
  color: #a50000;
  text-decoration: none;
}

a.is-hover img, a:hover img {
  opacity: .8;
}

/**
 * ページ固有の宣言
 */
header, main {
  margin: auto;
}

footer {
  background-color: #004191;
  padding: 2.5em 0;
  text-align: center;
}

footer .copyright {
  display: inline-block;
  color: white;
  font-size: calc(1em - 4pt);
}

dt {
  font-weight: 700;
}

dd {
  text-align: justify;
}

.main {
  padding-bottom: 60px;
}

.l-comsctn h2 {
  width: calc(100% - 1.1em);
  color: #004191;
  position: relative;
  left: 1.1em;
  line-height: 1.2;
  font-weight: 700;
}

.l-comsctn h2::before {
  content: "●";
  color: #cb871d;
  line-height: 1;
  font-size: 1.2em;
  position: absolute;
  left: -1.1em;
}

.l-htext, .l-ntext {
  margin: .8em 0;
  font-weight: 700;
}

.l-htext {
  background-color: #004191;
  color: white;
  padding: 0.4em 1em;
  border-radius: .5em;
}

.l-ntext {
  font-weight: 500;
}

.l-note {
  font-size: .7em;
}

.is-posi_r {
  text-align: right;
}

.l-listcase_outer {
  background-color: #004191;
  border-radius: 0.8em;
}

.l-listcase_outer .l-note {
  color: white;
}

.l-listcase {
  width: 100%;
}

.l-listcase > ol {
  list-style-position: inside;
}

.l-listcase > ol li {
  margin: 1em 0;
  padding: .3em 0 .3em .8em;
  color: #004191;
  background-color: #ccd9e9;
  border-radius: .3em;
  font-size: 1.3em;
  font-weight: 700;
}

.l-lead {
  padding-top: 1em;
  color: #cb871d;
  font-weight: 700;
}

dl.l-casetype_b {
  margin: 1.5em 0;
}

dl.l-casetype_b dt {
  border-radius: 0.5em 0.5em 0 0;
  padding: 0.3em 1em 0;
  color: white;
}

dl.l-casetype_b dd {
  border-radius: 0 0 0.5em 0.5em;
  padding: 1em;
  background-color: #ccd9e9;
}

dl.l-casetype_b.is-color_g dt {
  background-color: #66cc99;
}

dl.l-casetype_b.is-color_o dt {
  background-color: #cb871d;
}

.l-is-blueText {
  color: #004191;
  font-weight: 700;
}

@media only screen and (min-width: 751px) {
  header, main {
    max-width: 800px;
  }

  .l-comsctn {
    margin-top: 7em;
  }

  .l-comsctn h2 {
    font-size: 1.8em;
  }

  .l-htext {
    font-size: 1.3em;
  }

  .l-listcase_outer {
    width: calc(100% - 2em);
    padding: 0 2em 0 0;
  }

  .l-listcase_outer .l-note {
    padding-bottom: 1em;
  }

  .l-listcase {
    display: table;
  }

  .l-listcase > ol {
    display: table-cell;
    width: 50%;
    padding-left: 2em;
  }

  .l-listcase > ol li span {
    font-size: calc(1em - 3pt);
  }

  .l-lead {
    text-align: center;
    font-size: calc(1em + 4pt);
  }

  dl.l-casetype_b dt {
    font-size: calc(1em + 2.25pt);
  }
}

@media only screen and (max-width: 750px) {
  header, main {
    max-width: calc(100% - (4% * 2));
  }

  .l-comsctn {
    padding: 1.7em 0;
  }

  .l-comsctn h2 {
    font-size: 1.5em;
  }

  .l-htext {
    font-size: 1.2em;
  }

  .l-listcase_outer {
    width: calc(100% - (1.3em * 2));
    padding: 1.3em;
  }

  .l-listcase > ol {
    padding-left: 0;
  }

  .l-listcase > ol li {
    font-size: 2em;
  }

  .l-listcase > ol li span {
    font-size: calc(1em - 1pt);
  }

  .l-lead {
    font-size: calc(1em + 1pt);
  }

  dl.l-casetype_b dt {
    font-size: calc(1em + 1pt);
  }
}

@media only screen and (max-width: 670px) {
  .l-listcase > ol li {
    font-size: 1.5em;
  }
}

@media only screen and (max-width: 505px) {
  .l-listcase_outer {
    width: calc(100% - (1em * 2));
    padding: 1em;
  }

  .l-listcase > ol li {
    font-size: inherit;
  }
}

.meta {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meta .create {
  font-size: 13px;
}

.meta .material_no {
  font-size: 13px;
}

/*# sourceMappingURL=p_front.css.map */
