header .logo {
  padding: 0.7em;
  background-color: transparent;
}

header .logo a {
  background-color: #fff;
}

/*--------------------------------------------------------------------*/
.pagevisual {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  background-attachment: fixed;
}

.pagevisual:after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.4;
  /*mix-blend-mode: overlay;*/
  background: rgb(0, 161, 238);
  background: -moz-linear-gradient(242deg, rgba(0, 161, 238, 0) 0%, rgb(48, 102, 129) 100%);
  background: -webkit-linear-gradient(242deg, rgba(0, 161, 238, 0) 0%, rgb(48, 102, 129) 100%);
  background: linear-gradient(242deg, rgba(0, 161, 238, 0) 0%, rgb(48, 102, 129) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00a1ee", endColorstr="#306681", GradientType=1);
}

.pagevisual .heading {
  height: 480px;
  position: relative;
  z-index: 1;
  color: #fff;
  padding-left: 3em;
}

.pagevisual .heading .en,
.pagevisual .heading .ja {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.09);
}

.pagevisual .heading .en {
  font-size: 6rem;
  font-weight: 500;
}

@media screen and (max-width: 770px) {
  .pagevisual {
    background-size: cover;
    background-size: 100% auto;
  }
  .pagevisual .heading {
    max-height: 25vh;
    padding: 3em 5vw 0 7vw;
  }
  .pagevisual .heading .pageIndex {
    margin-bottom: 0;
  }
  .pagevisual .heading .en {
    font-size: 8vw;
    font-weight: 500;
  }
}
/*--------------------------------------------------------------------*/
.breadcrumb {
  padding: 1em;
  color: #AFAFAF;
  font-weight: 700;
}

.breadcrumb .ico_arrow {
  padding-right: 1.5em;
  margin-right: 1.5em;
}

.breadcrumb .ico_arrow:before {
  border-color: #AFAFAF;
}

@media screen and (max-width: 770px) {
  .breadcrumb {
    margin-bottom: 1.5em;
    white-space: nowrap;
    overflow-x: auto;
  }
}
/*--------------------------------------------------------------------*/
.the_post {
  max-width: 100vw;
  overflow: hidden;
}

/*--------------------------------------------------------------------*/
.pageIndex {
  margin-bottom: 3em;
}

.pageIndex .en {
  font-size: 4rem;
  margin-right: 1em;
  padding-right: 1em;
  font-weight: 500;
}

.pageIndex .en:after {
  height: 50%;
  width: 1px;
  background-color: #707070;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 770px) {
  .pageIndex {
    justify-content: flex-start;
  }
  .pageIndex .en {
    font-size: 8vw;
    margin-right: 0;
    padding-right: 0;
  }
  .pageIndex .en:after {
    height: 1px;
    width: 50vw;
    right: auto;
    top: auto;
    bottom: -0.5em;
    left: -5vw;
    opacity: 0.3;
  }
  .the_post .pageIndex .en {
    margin-bottom: 1em;
  }
}
