/**
* FV
*/
#fv {
    background-image: url(fvback.png), linear-gradient(75deg, rgba(26, 122, 164, 1), rgba(11, 49, 143, 1));
    background-size: cover;
    height: 170px;
}

/**
* パンくずリスト
*/
#pan {
  max-width: 700px;
  padding: 16px 16px 0;
}

.breadcrumb *, .breadcrumb *:after, .breadcrumb *:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.breadcrumb a {
  text-decoration: none;
  color: #565656;
}

.breadcrumb .breadcrumbs {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: inline-block;
  position: relative;
  padding-right: calc(16px + 8px);
  margin-right: 8px;
  color: #565656;
}

.breadcrumb li::before {
  content: '›';
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  font-size: 1em;
  color: inherit;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.breadcrumb li:last-child {
  margin-right: 0;
  padding-right: 0;
  color: #0B318F;
}

.breadcrumb li:last-child::before {
  content: normal;
}

@media (min-width:732px) {
  #pan {
    padding: 16px 0 0;
    margin: 0 auto;
  }
}

/**
* 開発事例個別
*/
#example {
    margin: 50px auto 10px;
}

#example .first {
    max-width: 700px;
    margin:24px auto 64px;
}

#example h1 {
    font-size: 32px;
    color: #0B318F;
    font-weight: bolder;
    margin-bottom: 16px;
    line-height: 40px;
}

#example p {
    font-size: 18px;
    line-height: 120%;
    max-width: 700px;
    margin: 0 auto 22px;
}

#example img{
    display: block;
    margin: 24px auto 48px;
    max-width: 500px;
    border: 1px solid #0B318F;
}

#example .other {
    margin: 0 auto 40px;
    max-width: 700px;
}

#example .other h2 {
    font-size: 28px;
    color: #0B318F;
    font-weight: bolder;
    margin: 16px 0;
    line-height: 36px;
}

#example a {
    display: block; 
    font-size: 24px;
    color: white;
    font-weight: medium;
    line-height: 34px;
    background: linear-gradient(to right, #1A7AA4, #0B318F);
    padding: 16px 40px;
    text-align: center;
    align-items: center;
    border-radius: 40px;
    text-decoration: none; 
    margin: 70px auto 80px;
    max-width: 450px;
}

/**
* フッター
*/

#footer {
    background-color: #1A7AA4;
    height: 30px;
    width: 100%;
}

#footer p {
    color: white;
    margin: auto;
    text-align: center;
}