@charset "UTF-8";
/*レスポンシブ*/
/*レイアウト*/
/*限定br指定*/
/*スマホだけbr*/
/*タブレットだけbr*/
/*パソコンだけbr*/
/*背景画像*/
/*文字サイズ*/
/*三角作る*/
/*マージン下レスポンシブ一括*/
/*パディング下レスポンシブ一括*/
/*アニメーション*/
/*カラーセット*/
/*グラデーション*/
/*書体*/
/*エフェクト・ぼかし*/
/*エフェクト・スクリーン*/
/*背景に色を付ける*/
/*wrapper*/
/*wrapper*/
/*wrapper*/
header + h1 {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: visible;
}

@media screen and (max-width: 896px) {
  header + h1 {
    overflow: hidden;
  }
}

@media screen and (max-width: 896px) and (min-width: 481px) {
  header + h1 {
    height: 400px;
  }
}

@media screen and (max-width: 480px) {
  header + h1 {
    height: 220px;
  }
}

header + h1 img:first-child {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 896px) and (min-width: 481px) {
  header + h1 img:first-child {
    top: -100px;
  }
}

@media screen and (max-width: 480px) {
  header + h1 img:first-child {
    top: -200px;
  }
}

header + h1 img:last-child {
  position: absolute;
  top: 140px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 896px) and (min-width: 481px) {
  header + h1 img:last-child {
    top: 95px;
    width: 25vw;
  }
}

@media screen and (max-width: 480px) {
  header + h1 img:last-child {
    top: 67px;
    width: 24vw;
  }
}

article {
  width: 700px;
  margin: 0 auto 400px auto;
  position: relative;
  z-index: 500;
}

article #breadcrumbs {
  position: absolute;
  right: 0;
  top: -80px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 480px) {
  article #breadcrumbs {
    display: none;
  }
}

article #breadcrumbs li {
  float: left;
  display: block;
  margin-right: 40px;
  position: relative;
}

article #breadcrumbs li a {
  text-decoration: none;
  position: relative;
  color: #000000;
}

article #breadcrumbs li:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background: #999999;
  right: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

article #breadcrumbs li:last-child {
  margin-right: 0;
}

article #breadcrumbs li:last-child a {
  color: #3b3269;
}

article #breadcrumbs li:last-child a:before {
  content: "";
  width: 100%;
  background: #3b3269;
  height: 2px;
  display: block;
  position: absolute;
  bottom: -7px;
  left: 0;
}

article #breadcrumbs li:last-child:before {
  display: none;
}
