@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
.noto {
  font-family: "Noto Sans JP", sans-serif;
}

#container {
  position: relative;
  z-index: 2;
}

#container .inner {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  #container .inner {
    width: 100%;
  }
}

@-webkit-keyframes rotate360 {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate360 {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#top-bg {
  position: fixed;
  width: 150%;
  height: 150%;
  left: -25%;
  top: -25%;
  background: url(../../images/bg.png) center center/1000px no-repeat;
  -webkit-animation: rotate360 100s linear infinite;
  animation: rotate360 100s linear infinite;
}

.blink {
  -webkit-animation: blinkAnimation 3s infinite;
  animation: blinkAnimation 3s infinite;
}

@-webkit-keyframes blinkAnimation {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes blinkAnimation {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

header {
  width: 100%;
  height: 100px;
  background: #fff;
  position: relative;
  z-index: 15;
}

header .header {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
}

header .header .header-wrapper {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

header .header .header-wrapper h1 {
  padding: 8px 0 0 10px;
}

header .header .header-wrapper h1 a {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .header .header-wrapper h1 a img {
  width: 280px;
}

header .header .header-wrapper h1 a span {
  display: inline-block;
  background: #003e81;
  color: #fff;
  font-size: 13px;
  padding: 0.4em 2em 0.6em;
  letter-spacing: 0.3em;
  line-height: 1em;
}

header .header .header-wrapper #gnav {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

header .header .header-wrapper #gnav ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

header .header .header-wrapper #gnav ul > li {
  height: 50px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .header .header-wrapper #gnav ul > li > a {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  width: 180px;
  text-align: center;
  display: block;
  line-height: 1em;
  padding: 0.2em 0 0.4em;
  border-right: solid 1px #4dafe7;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

header .header .header-wrapper #gnav ul > li > a:hover {
  background: #4dafe7;
  color: #fff;
}

header .header .header-wrapper #gnav ul > li:last-child a {
  border-right: 0;
}

header .header .header-wrapper #gnav ul > li .child {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  width: 100vw;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  height: 0;
  overflow: hidden;
  background: #fff;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}

header .header .header-wrapper #gnav ul > li .child h3 img {
  height: 18px;
}

header .header .header-wrapper #gnav ul > li .child ol {
  list-style: none;
}

header .header .header-wrapper #gnav ul > li#nav-about .child h3 {
  margin-right: 30px;
}

header .header .header-wrapper #gnav ul > li#nav-about .child h3 img {
  height: 20px;
}

header .header .header-wrapper #gnav ul > li#nav-about .child ol {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
  width: 60em;
}

header .header .header-wrapper #gnav ul > li#nav-about .child ol li {
  font-size: inherit;
  width: 20em;
  margin: 0.5em 0;
}

header .header .header-wrapper #gnav ul > li#nav-about .child ol li a {
  display: inline-block;
  background: url(../images/arrow-yellow.svg) left center no-repeat;
  padding-left: 1.5em;
  font-size: inherit;
  color: #003e81;
  font-weight: bold;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

header .header .header-wrapper #gnav ul > li#nav-about .child ol li a:hover {
  background-position: left 0.5em center;
}

header .header .header-wrapper #gnav ul > li#nav-works .child h3 {
  margin-right: 30px;
}

header .header .header-wrapper #gnav ul > li#nav-works .child .division {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 40px;
}

header .header .header-wrapper #gnav ul > li#nav-works .child .division a {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

header .header .header-wrapper #gnav ul > li#nav-works .child .division a:hover {
  opacity: 0.7;
}

header .header .header-wrapper #gnav ul > li#nav-works .child .division a img {
  width: 160px;
}

header .header .header-wrapper #gnav ul > li#nav-works .child #nav-person {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .header .header-wrapper #gnav ul > li#nav-works .child #nav-person ol {
  font-size: 14px;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  width: 51em;
}

header .header .header-wrapper #gnav ul > li#nav-works .child #nav-person ol li {
  width: 17em;
  margin: 0.5em 0;
}

header .header .header-wrapper #gnav ul > li#nav-works .child #nav-person ol li a {
  color: #000;
}

header .header .header-wrapper #gnav ul > li#nav-works .child #nav-person ol li a img {
  width: 1.2em;
  vertical-align: middle;
  margin-bottom: 0.1em;
  margin-right: 0.5em;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

header .header .header-wrapper #gnav ul > li#nav-works .child #nav-person ol li a:hover img {
  -webkit-transform: translateX(0.5em);
  -ms-transform: translateX(0.5em);
  transform: translateX(0.5em);
}

header .header .header-wrapper #gnav ul > li#nav-crosstalk .child h3 {
  margin-right: 40px;
}

header .header .header-wrapper #gnav ul > li#nav-crosstalk .child ol {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .header .header-wrapper #gnav ul > li#nav-crosstalk .child ol li {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

header .header .header-wrapper #gnav ul > li#nav-crosstalk .child ol li figure {
  margin-right: 10px;
}

header .header .header-wrapper #gnav ul > li#nav-crosstalk .child ol li figure img {
  width: 50px;
}

header .header .header-wrapper #gnav ul > li#nav-crosstalk .child ol li span {
  font-size: 12px;
  line-height: 1.4em;
}

header .header .header-wrapper #gnav ul > li#nav-crosstalk .child ol li span strong {
  font-size: 20px;
}

header .header .header-wrapper #gnav ul > li#nav-crosstalk .child ol li span strong.yellow {
  color: #eda13c;
}

header .header .header-wrapper #gnav ul > li#nav-crosstalk .child ol li span strong.blue {
  color: #0074ac;
}

header .header .header-wrapper #gnav ul > li#nav-crosstalk .child ol li span strong.red {
  color: #e1383e;
}

header .header .header-wrapper #gnav ul > li#nav-crosstalk .child ol li span strong.green {
  color: #60ab46;
}

header .header .header-wrapper #gnav ul > li#nav-environment h3 {
  margin-right: 40px;
}

header .header .header-wrapper #gnav ul > li#nav-environment ol {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

header .header .header-wrapper #gnav ul > li#nav-environment ol li {
  margin-right: 20px;
}

header .header .header-wrapper #gnav ul > li#nav-environment ol li a {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

header .header .header-wrapper #gnav ul > li#nav-environment ol li a:hover {
  opacity: 0.7;
}

header .header .header-wrapper #gnav ul > li#nav-environment ol li a > img {
  width: 160px;
  margin-right: 20px;
}

header .header .header-wrapper #gnav ul > li#nav-environment ol li:nth-child(1) a {
  color: #4a4b9d;
}

header .header .header-wrapper #gnav ul > li#nav-environment ol li:nth-child(2) a {
  color: #f8b500;
}

header .header .header-wrapper #gnav ul > li#nav-recruit h3 {
  margin-right: 40px;
}

header .header .header-wrapper #gnav ul > li#nav-recruit ol {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .header .header-wrapper #gnav ul > li#nav-recruit ol li {
  margin-right: 20px;
}

header .header .header-wrapper #gnav ul > li#nav-recruit ol li a {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #000;
}

header .header .header-wrapper #gnav ul > li#nav-recruit ol li a img {
  width: 1.2em;
  margin-right: 10px;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

header .header .header-wrapper #gnav ul > li#nav-recruit ol li a img.nav-recruit-message {
  width: 6em;
}

header .header .header-wrapper #gnav ul > li#nav-recruit ol li a:hover img:first-child {
  -webkit-transform: translateX(0.5em);
  -ms-transform: translateX(0.5em);
  transform: translateX(0.5em);
}

header .header .header-wrapper #gnav ul > li:hover .child {
  height: 130px;
}

header .header .extend {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-right: 100px;
}

header .header .extend a {
  display: block;
  width: 100px;
  height: 100px;
}

header .header .extend a img {
  width: 100%;
}

header .header .extend a.header-entry {
  background: #4dafe7;
}

header .header .extend a.header-entry:hover {
  opacity: 0.5;
}

header .header .extend a.header-info {
  background: #60ab46;
}

header .header .extend a.header-info:hover {
  opacity: 0.5;
}

header .header .extend a.hbg {
  background: #003e81;
  cursor: pointer;
  z-index: 15;
  position: fixed;
  right: 0;
  top: 0;
}

header .header .extend a.hbg span {
  width: 40%;
  left: 30%;
}

header .header .extend a.hbg span:nth-child(1) {
  top: 35%;
}

header .header .extend a.hbg span:nth-child(3) {
  top: 65%;
}

@media screen and (max-width: 768px) {
  header {
    height: 16vw;
  }
  header .header .header-wrapper h1 {
    padding: 1vw 0 0 3vw;
  }
  header .header .header-wrapper h1 a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  header .header .header-wrapper h1 a img {
    width: 50vw;
  }
  header .header .header-wrapper h1 a span {
    font-size: 2.8vw;
  }
  header .header .header-wrapper #gnav {
    display: none;
  }
  header .header .extend {
    padding-right: 16vw;
  }
  header .header .extend a {
    width: 16vw;
    height: 16vw;
  }
}

footer {
  max-width: 1200px;
  margin: auto;
  padding-top: 60px;
  padding-bottom: 30px;
}

footer #footer-sitetop {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

footer #footer-sitetop:before, footer #footer-sitetop:after {
  content: "";
  background: #003e81;
  display: block;
  height: 1px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer #footer-sitetop a {
  display: block;
  background: #003e81;
  color: #fff;
  padding: 0.5em 1em;
}

footer #footer-sitetop a:hover {
  background: #000;
}

footer .sitemap .sitemap-inner {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

footer .sitemap .sitemap-inner > ul {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

footer .sitemap .sitemap-inner ul li {
  margin-right: 30px;
}

footer .sitemap .sitemap-inner ul li a {
  white-space: nowrap;
}

footer .sitemap .sitemap-inner ul:nth-child(2) li:nth-child(2) {
  margin-right: 0;
}

footer .sitemap .sitemap-inner ul:nth-child(2) li.empty {
  display: none;
}

footer .footer-logo {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

footer .pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

footer .pagetop img {
  width: 60px;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

@media screen and (max-width: 768px) {
  footer {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  footer #footer-sitetop {
    display: none;
  }
  footer .sitemap {
    display: none;
  }
  footer .footer-logo {
    display: block;
  }
  footer .footer-logo h1, footer .footer-logo h2 {
    text-align: center;
  }
  footer .footer-logo h1 img, footer .footer-logo h2 img {
    width: 60%;
    margin-bottom: 5vw;
  }
  footer .pagetop {
    right: 2vw;
    bottom: 2vw;
  }
  footer .pagetop img {
    width: 12vw;
  }
}

.copyright {
  background: #003e81;
  color: #fff;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2em 0;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .copyright {
    font-size: 3vw;
  }
}

nav.sitemap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 100px);
  z-index: 12;
  background: #fff;
  padding-top: 100px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

nav.sitemap.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav.sitemap #nav-sitemap {
  width: 860px;
}

nav.sitemap #nav-sitemap h2 {
  text-align: left;
  margin-bottom: 30px;
}

nav.sitemap #nav-sitemap .sitetop {
  border-bottom: solid 2px #003e81;
  margin-bottom: 20px;
}

nav.sitemap #nav-sitemap .sitetop a {
  color: #003e81;
  font-size: 16px;
  display: inline-block;
  padding-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
  nav.sitemap #nav-sitemap {
    width: 90%;
  }
  nav.sitemap #nav-sitemap h2 {
    margin-bottom: 5vw;
  }
  nav.sitemap #nav-sitemap h2 img {
    width: 60%;
  }
  nav.sitemap #nav-sitemap .sitetop {
    margin-bottom: 5vw;
  }
  nav.sitemap #nav-sitemap .sitetop a {
    font-size: 4vw;
  }
}

.sitemap ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 30px;
}

.sitemap ul:last-child {
  margin-bottom: 0;
}

.sitemap ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sitemap ul > li .parent {
  font-size: 16px;
  margin-bottom: 1em;
  font-size: inherit;
  color: #003e81;
  display: inline-block;
  white-space: nowrap;
  cursor: default;
}

.sitemap ul > li .parent a {
  color: #003e81;
  font-weight: bold;
}

.sitemap ul > li > ul {
  display: block;
}

.sitemap ul > li > ul li {
  font-size: 14px;
  margin-bottom: 0em;
  width: 100%;
}

.sitemap ul > li > ul li.top {
  display: none;
}

.sitemap ul > li > ul li a {
  font-size: inherit;
  color: #231815;
  margin-bottom: 0.5em;
  display: inline-block;
  padding-left: 1.1em;
  line-height: 1.4em;
  background: url(../images/sitemap-point.svg) left top 0.5em/0.5em no-repeat;
}

@media screen and (max-width: 768px) {
  .sitemap {
    overflow-y: auto;
  }
  .sitemap ul {
    display: block;
    margin-bottom: 0;
  }
  .sitemap ul > li {
    margin-bottom: 3vw;
    border-bottom: solid 1px #ccc;
  }
  .sitemap ul > li a {
    font-size: 3.5vw;
    display: block;
  }
  .sitemap ul > li .parent {
    width: 100%;
  }
  .sitemap ul > li .parent a {
    position: relative;
    width: 100%;
  }
  .sitemap ul > li .parent a:after, .sitemap ul > li .parent a:before {
    content: "";
    width: 1em;
    height: 1px;
    background: #888;
    position: absolute;
    right: 1em;
    top: 50%;
    display: block;
  }
  .sitemap ul > li .parent a:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .sitemap ul > li .parent a.active:after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  .sitemap ul > li.empty {
    display: none;
  }
  .sitemap ul > li > ul {
    display: none;
  }
  .sitemap ul > li > ul.active {
    display: block;
  }
  .sitemap ul > li > ul > li {
    border-bottom: 0;
  }
  .sitemap ul > li > ul > li.top {
    display: block;
  }
  .sitemap ul > li > ul > li a {
    font-size: 3.5vw;
    display: block;
  }
}

@-webkit-keyframes scaleLoop {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.5;
  }
}

@keyframes scaleLoop {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.5;
  }
}

#top #kv {
  background: #000;
}

#top #kv #kv-inner {
  max-width: 1400px;
  margin: auto;
  position: relative;
}

#top #kv #kv-inner figure {
  position: relative;
  mix-blend-mode: lighten;
  opacity: 0;
  -webkit-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#top #kv #kv-inner figure.loop {
  -webkit-animation: scaleLoop 4s infinite ease-in-out;
  animation: scaleLoop 4s infinite ease-in-out;
}

#top #kv #kv-inner h2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#top #kv #kv-inner h2 img {
  width: 23%;
  margin-bottom: 10px;
  opacity: 0;
  -webkit-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#top #kv #kv-inner h2 svg {
  height: auto;
  opacity: 0;
  width: 90%;
  -webkit-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#top #kv #kv-inner h2 svg path {
  -webkit-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#top #kv #kv-inner .kv-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#top #kv #kv-inner .kv-bg img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#top #kv #kv-inner .kv-bg img.active {
  opacity: 1;
}

#top #kv.scene1 #kv-inner h2 svg {
  opacity: 1;
  width: 80%;
}

#top #kv.scene1 #kv-inner h2 svg path {
  fill: #fff;
}

#top #kv.scene2 #kv-inner h2 svg {
  opacity: 1;
  width: 80%;
}

#top #kv.scene3 #kv-inner figure {
  opacity: 1;
}

#top #kv.scene3 #kv-inner h2 svg {
  opacity: 1;
  width: 23%;
}

#top #kv.scene4 #kv-inner figure {
  opacity: 1;
}

#top #kv.scene4 #kv-inner h2 img {
  opacity: 1;
}

#top #kv.scene4 #kv-inner h2 svg {
  opacity: 1;
  width: 23%;
}

@media screen and (max-width: 768px) {
  #top #kv {
    overflow: hidden;
  }
  #top #kv #kv-inner {
    width: 190vw;
    margin-left: -45vw;
  }
}

#top #kv-image img {
  width: 100%;
}

#top #news {
  background: #d3e6f6;
}

#top #news .news-wrapper {
  max-width: 1200px;
  margin: auto;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#top #news .news-wrapper .news {
  width: 80%;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#top #news .news-wrapper .news h3 {
  width: 20%;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#top #news .news-wrapper .news h3 img {
  height: 14px;
}

#top #news .news-wrapper .news .list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px 0;
}

#top #news .news-wrapper .news .list table tr th, #top #news .news-wrapper .news .list table tr td {
  font-size: 14px;
  padding: 0.4em 0;
  font-weight: normal;
}

#top #news .news-wrapper .news .list table tr th {
  padding-right: 1em;
  text-align: left;
}

#top #news .news-wrapper .message {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#top #news .news-wrapper .message a {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  background: url(../../images/message-bg.svg) center center/cover no-repeat;
}

#top #news .news-wrapper .message a img {
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#top #news .news-wrapper .message a:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  #top #news .news-wrapper {
    display: block;
  }
  #top #news .news-wrapper .news {
    width: 100%;
    display: block;
  }
  #top #news .news-wrapper .news h3 {
    width: 100%;
    padding: 5vw 0 0;
  }
  #top #news .news-wrapper .news h3 img {
    height: 4vw;
  }
  #top #news .news-wrapper .news .list {
    padding: 5vw 3vw;
  }
  #top #news .news-wrapper .news .list table th, #top #news .news-wrapper .news .list table td {
    font-size: 3.5vw;
    line-height: 1.6em;
  }
  #top #news .news-wrapper .message a {
    height: 30vw;
  }
}

#top section h3 {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  height: 250px;
}

#top section h3:after, #top section h3:before {
  content: "";
  display: block;
  height: 1px;
  background: #b5b5b5;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#top section h3 div {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 30px;
  padding-left: 1em;
  padding-right: 1em;
  height: 100%;
}

#top section h3 div:after, #top section h3 div:before {
  content: "";
  display: block;
  width: 1px;
  background: #b5b5b5;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#top section h3 div span {
  color: #003e81;
  display: block;
  font-size: inherit;
  padding: 1em 0;
}

#top section .list ul {
  max-width: 1200px;
  margin: auto;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#top section .list ul li {
  width: 50%;
  background: #fff;
}

#top section .list ul li.w100 {
  width: 100%;
}

#top section .list ul li > a, #top section .list ul li > div {
  position: relative;
  display: block;
  font-size: 16px;
}

#top section .list ul li > a:after, #top section .list ul li > div:after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url(../../images/arrow.svg) center center/contain no-repeat;
  display: block;
  position: absolute;
  left: 2em;
  top: calc(50% - 1em);
}

#top section .list ul li > a:before, #top section .list ul li > div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #003e81;
  mix-blend-mode: multiply;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#top section .list ul li > a span, #top section .list ul li > div span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: inherit;
  color: #fff;
}

#top section .list ul li > a figure, #top section .list ul li > div figure {
  overflow: hidden;
}

#top section .list ul li > a figure img, #top section .list ul li > div figure img {
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#top section .list ul li > a:active span, #top section .list ul li > div:active span {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#top section .list ul li > a.navy-white:hover:before, #top section .list ul li > div.navy-white:hover:before {
  opacity: 0;
}

#top section .list ul li > a.navy-white:hover span, #top section .list ul li > div.navy-white:hover span {
  color: #000;
}

#top section .list ul li > a.navy-white:hover figure, #top section .list ul li > div.navy-white:hover figure {
  opacity: 0.8;
}

#top section .list ul li > a.normal-black:before, #top section .list ul li > div.normal-black:before {
  opacity: 0;
  background: #000;
}

#top section .list ul li > a.normal-black:hover:before, #top section .list ul li > div.normal-black:hover:before {
  opacity: 0.4;
}

#top section .list ul li > a.normal-navy:before, #top section .list ul li > div.normal-navy:before {
  opacity: 0;
}

#top section .list ul li > a.normal-navy span, #top section .list ul li > div.normal-navy span {
  color: #003e81;
}

#top section .list ul li > a.normal-navy:hover:before, #top section .list ul li > div.normal-navy:hover:before {
  opacity: 1;
}

#top section .list ul li > a.normal-navy:hover span, #top section .list ul li > div.normal-navy:hover span {
  color: #fff;
}

#top section .list ul li > a.normal-white:before, #top section .list ul li > div.normal-white:before {
  opacity: 0;
}

#top section .list ul li > a.normal-white:hover span, #top section .list ul li > div.normal-white:hover span {
  color: #000;
}

#top section .list ul li > a.normal-white:hover figure img, #top section .list ul li > div.normal-white:hover figure img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.3;
}

#top section .list ul li > a.top-person, #top section .list ul li > div.top-person {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#top section .list ul li > a.top-person:before, #top section .list ul li > div.top-person:before {
  display: none;
}

#top section .list ul li > a.top-person > span, #top section .list ul li > div.top-person > span {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}

#top section .list ul li > a.top-person > a, #top section .list ul li > div.top-person > a {
  width: 33.3%;
  position: relative;
}

#top section .list ul li > a.top-person > a figure img, #top section .list ul li > div.top-person > a figure img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

#top section .list ul li > a.top-person > a > span, #top section .list ul li > div.top-person > a > span {
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  position: absolute;
  left: 0;
  top: initial;
  bottom: 0;
  height: auto;
  font-size: 12px;
  padding: 0.5em 0;
  background: #000;
}

#top section .list ul li > a.top-person > a:hover figure img, #top section .list ul li > div.top-person > a:hover figure img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

#top section .list ul li > a.top-person > a:hover > span, #top section .list ul li > div.top-person > a:hover > span {
  opacity: 1;
}

#top section .list ul li > a.top-person > a:nth-child(1) > span, #top section .list ul li > div.top-person > a:nth-child(1) > span {
  background: #0069a6;
}

#top section .list ul li > a.top-person > a:nth-child(2) > span, #top section .list ul li > div.top-person > a:nth-child(2) > span {
  background: #444788;
}

#top section .list ul li > a.top-person > a:nth-child(3) > span, #top section .list ul li > div.top-person > a:nth-child(3) > span {
  background: #008fb0;
}

#top section .list ul li > a.top-person > a:nth-child(4) > span, #top section .list ul li > div.top-person > a:nth-child(4) > span {
  background: #009368;
}

#top section .list ul li > a.top-person > a:nth-child(5) > span, #top section .list ul li > div.top-person > a:nth-child(5) > span {
  background: #e6a600;
}

#top section .list ul li > a.top-person > a:nth-child(6) > span, #top section .list ul li > div.top-person > a:nth-child(6) > span {
  background: #da4733;
}

#top section .list ul li > a.top-person:hover:after, #top section .list ul li > div.top-person:hover:after {
  display: none;
}

#top section .list ul li > a.top-person:hover > span, #top section .list ul li > div.top-person:hover > span {
  display: none;
}

#top section .list ul li > a.top-crosstalk:before, #top section .list ul li > div.top-crosstalk:before {
  background: #00afec;
}

#top section .list ul li > a.top-crosstalk:hover:before, #top section .list ul li > div.top-crosstalk:hover:before {
  opacity: 0;
}

#top section .list ul li > a.top-crosstalk .top-crosstalk-index, #top section .list ul li > div.top-crosstalk .top-crosstalk-index {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/crosstalk-fukiashi.svg) center center/contain no-repeat;
}

#top section .list ul li > a.top-crosstalk .top-crosstalk-index a, #top section .list ul li > div.top-crosstalk .top-crosstalk-index a {
  display: block;
  font-size: 15px;
  color: #003e81;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20.6%;
  height: 12.2%;
  font-weight: bold;
  position: absolute;
}

#top section .list ul li > a.top-crosstalk .top-crosstalk-index a:active, #top section .list ul li > div.top-crosstalk .top-crosstalk-index a:active {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#top section .list ul li > a.top-crosstalk .top-crosstalk-index a:nth-child(1), #top section .list ul li > div.top-crosstalk .top-crosstalk-index a:nth-child(1) {
  left: 3.6%;
  top: 62.7%;
}

#top section .list ul li > a.top-crosstalk .top-crosstalk-index a:nth-child(2), #top section .list ul li > div.top-crosstalk .top-crosstalk-index a:nth-child(2) {
  left: 25.6%;
  top: 80.5%;
}

#top section .list ul li > a.top-crosstalk .top-crosstalk-index a:nth-child(3), #top section .list ul li > div.top-crosstalk .top-crosstalk-index a:nth-child(3) {
  left: 75.5%;
  top: 72.4%;
}

#top section .list ul li > a.top-crosstalk .top-crosstalk-index a:nth-child(4), #top section .list ul li > div.top-crosstalk .top-crosstalk-index a:nth-child(4) {
  left: 37.4%;
  top: 11.1%;
}

@media screen and (max-width: 768px) {
  #top section h3 {
    height: 40vw;
  }
  #top section h3 div {
    font-size: 4.5vw;
  }
  #top section .list ul {
    display: block;
  }
  #top section .list ul li {
    width: 100%;
  }
  #top section .list ul li a, #top section .list ul li div {
    font-size: 3.5vw;
  }
  #top section .list ul li a.top-person, #top section .list ul li div.top-person {
    padding-top: 3em;
    font-size: 4vw;
  }
  #top section .list ul li a.top-person:after, #top section .list ul li div.top-person:after {
    display: none;
  }
  #top section .list ul li a.top-person > span, #top section .list ul li div.top-person > span {
    display: block;
    padding-top: 1em;
    display: block;
    text-align: center;
    color: #003e81;
    text-shadow: 0 0 0;
  }
  #top section .list ul li a.top-person a figure img, #top section .list ul li div.top-person a figure img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
  #top section .list ul li a.top-person a span, #top section .list ul li div.top-person a span {
    opacity: 1;
    font-size: 3vw;
    padding: 0.2em 0.5em;
    height: 3em;
  }
  #top section .list ul li a.top-crosstalk:after, #top section .list ul li div.top-crosstalk:after {
    display: none;
  }
  #top section .list ul li a.top-crosstalk:before, #top section .list ul li div.top-crosstalk:before {
    display: none;
  }
  #top section .list ul li a.top-crosstalk .top-crosstalk-index, #top section .list ul li div.top-crosstalk .top-crosstalk-index {
    background: none;
    position: static;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #top section .list ul li a.top-crosstalk .top-crosstalk-index a, #top section .list ul li div.top-crosstalk .top-crosstalk-index a {
    padding: 1em 0;
    background: #003e81;
    color: #fff;
    position: static;
    width: calc(50% - 2px);
    border: solid 1px #fff;
  }
}

#top #bottom-images {
  padding-top: 120px;
  max-width: 1200px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  #top #bottom-images {
    padding-top: 10vw;
  }
}

#about #kv {
  background: url(../../about/images/kv-bg.png) center center/100% 100% no-repeat;
  padding-bottom: 60px;
}

#about #kv h2 {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 320px;
}

#about #kv h2 img {
  -webkit-animation: scaleLoop 4s infinite ease-in-out;
  animation: scaleLoop 4s infinite ease-in-out;
}

#about #kv h2 span {
  font-size: 25px;
  color: #003e81;
  display: block;
  padding-top: 0.5em;
}

#about #kv .slogan {
  text-align: center;
  margin-bottom: 40px;
}

#about #kv .kv h3 {
  text-align: center;
  color: #003e81;
  font-size: 26px;
  margin-bottom: 0.5em;
}

#about #kv .kv p {
  font-size: 14px;
  text-align: center;
  color: #003e81;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #about #kv {
    padding-bottom: 10vw;
  }
  #about #kv h2 {
    height: auto;
    padding: 15vw 0;
  }
  #about #kv h2 img {
    width: 100%;
  }
  #about #kv h2 span {
    font-size: 5vw;
    padding-top: 1em;
  }
  #about #kv .slogan {
    margin-bottom: 10vw;
  }
  #about #kv .slogan img {
    width: 90%;
  }
  #about #kv .kv h3 {
    font-size: 4vw;
    margin-bottom: 1em;
  }
  #about #kv .kv p {
    font-size: 3.3vw;
    width: 90%;
    margin: auto;
  }
}

#about .border img {
  vertical-align: top;
  width: 100%;
  height: 10px;
}

@media screen and (max-width: 768px) {
  #about .border img {
    height: 2vw;
  }
}

#about section {
  padding: 60px 0 0;
}

#about section .lead h3 {
  text-align: center;
  font-size: 26px;
  color: #000;
  margin-bottom: 0.7em;
}

#about section .lead p {
  text-align: center;
  color: #003e81;
  font-size: 14px;
}

#about section .lead:after {
  content: "";
  width: 1px;
  height: 40px;
  display: block;
  background: #b5b5b5;
  margin: auto;
  margin-top: 10px;
}

#about section article {
  background: #eef4f7;
  margin-bottom: 60px;
  padding-bottom: 60px;
}

#about section article:last-of-type {
  margin-bottom: 0;
}

#about section article h4 {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

#about section article h4 span {
  display: block;
  background: #003e81;
  color: #fff;
  font-size: 20px;
  padding: 0.2em 1em 0.4em;
  margin-top: -0.6em;
}

@media screen and (max-width: 768px) {
  #about section {
    padding: 10vw 0 0;
  }
  #about section .lead {
    width: 96%;
    margin: auto;
  }
  #about section .lead h3 {
    font-size: 4vw;
  }
  #about section .lead p {
    font-size: 3.5vw;
  }
  #about section .lead:after {
    height: 10vw;
  }
  #about section article {
    margin-bottom: 10vw;
    padding-bottom: 10vw;
  }
  #about section article h4 {
    margin-bottom: 5vw;
  }
  #about section article h4 span {
    font-size: 4vw;
  }
}

#about #concept article .concept ul {
  width: 1000px;
  margin: auto;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#about #concept article .concept ul li {
  width: calc(50% - 1px);
  padding: 30px 0;
}

#about #concept article .concept ul li h5 {
  padding-left: 20px;
}

#about #concept article .concept ul li h5 img {
  height: 45px;
}

#about #concept article .concept ul li p {
  font-size: 26px;
  font-weight: bold;
  color: #003e81;
  line-height: 1.4em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 1em;
}

#about #concept article .concept ul li figure {
  text-align: center;
}

#about #concept article .concept ul li figure img {
  width: 60%;
}

#about #concept article .concept ul li:nth-child(1) {
  border-right: solid 1px #003e81;
}

#about #concept article .concept ul li:nth-child(3) {
  border-top: solid 1px #003e81;
  border-bottom: solid 1px #003e81;
  width: 100%;
}

#about #concept article .logo figure {
  text-align: center;
  margin-bottom: 30px;
}

#about #concept article .logo figure img {
  width: 860px;
}

#about #concept article .logo h4 {
  font-size: 24px;
  color: #0068b7;
}

#about #concept article .logo p {
  font-size: 14px;
  text-align: center;
  color: #003e81;
}

@media screen and (max-width: 768px) {
  #about #concept article .concept ul {
    width: 90%;
    display: block;
  }
  #about #concept article .concept ul li {
    width: 100%;
    padding: 10vw 0;
    border-right: 0 !important;
    border-bottom: solid 1px #003e81;
  }
  #about #concept article .concept ul li h5 {
    padding-left: 0;
    margin-bottom: 2vw;
  }
  #about #concept article .concept ul li h5 img {
    height: 10vw;
  }
  #about #concept article .concept ul li p {
    font-size: 4vw;
  }
  #about #concept article .concept ul li figure {
    padding-top: 5vw;
  }
  #about #concept article .concept ul li figure img {
    width: 100%;
  }
  #about #concept article .logo {
    width: 90%;
    margin: auto;
  }
  #about #concept article .logo h4 {
    font-size: 4vw;
  }
  #about #concept article .logo p {
    font-size: 3.5vw;
  }
}

#about #feature .feature {
  max-width: 800px;
  margin: auto;
  position: relative;
}

#about #feature .feature ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
}

#about #feature .feature ul li {
  width: 21%;
  opacity: 0;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#about #feature .feature ul li img {
  width: 100%;
  vertical-align: top;
}

#about #feature .feature ul li .detail {
  display: none;
  position: absolute;
  left: 110%;
  top: -150px;
  width: 300px;
  height: 400px;
  background: #fff;
  padding: 20px;
  border: solid 1px #003e81;
  border-top: solid 10px #003e81;
  z-index: 1;
}

#about #feature .feature ul li .detail h5 {
  text-align: center;
  color: #003e81;
  font-size: 14px;
}

#about #feature .feature ul li .detail h5:after {
  content: "";
  display: block;
  width: 1px;
  background: #003e81;
  height: 1em;
  margin: auto;
  margin: 0.3em auto;
}

#about #feature .feature ul li .detail p {
  font-size: 13px;
  line-height: 1.3em;
  margin-bottom: 0.5em;
}

#about #feature .feature ul li:nth-child(3) .detail, #about #feature .feature ul li:nth-child(4) .detail, #about #feature .feature ul li:nth-child(7) .detail, #about #feature .feature ul li:nth-child(8) .detail {
  left: initial;
  right: 110%;
}

#about #feature .feature ul li:nth-child(1) {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

#about #feature .feature ul li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#about #feature .feature ul li:nth-child(3) {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

#about #feature .feature ul li:nth-child(4) {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

#about #feature .feature ul li:nth-child(5) {
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

#about #feature .feature ul li:nth-child(6) {
  -webkit-transition-delay: 1.0s;
  -o-transition-delay: 1.0s;
  transition-delay: 1.0s;
}

#about #feature .feature ul li:nth-child(7) {
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

#about #feature .feature ul li:nth-child(8) {
  -webkit-transition-delay: 1.4s;
  -o-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

#about #feature .feature ul li.active {
  z-index: 2;
}

#about #feature .feature ul li.active .detail {
  display: block;
}

#about #feature .feature ul.feature-button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

#about #feature .feature ul.feature-button li:hover {
  cursor: text;
}

#about #feature .feature ul.feature-button li img {
  opacity: 0;
  display: none;
}

#about #feature .feature ul.act3-activate li {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

#about #feature article {
  padding-bottom: 20px;
}

#about #feature article .ext {
  text-align: center;
  padding-top: 2em;
}

@media screen and (max-width: 768px) {
  #about #feature .feature {
    width: 90%;
  }
  #about #feature .feature ul {
    gap: 5vw;
    width: 80%;
    margin: auto;
  }
  #about #feature .feature ul li {
    width: calc(50% - 3vw);
  }
  #about #feature .feature ul li .detail {
    padding: 5vw 3vw;
    width: calc(100% - 6vw);
    width: 180%;
    left: -40% !important;
    right: initial !important;
  }
  #about #feature .feature ul li .detail h5 {
    font-size: 4vw;
  }
  #about #feature .feature ul li .detail p {
    font-size: 3.2vw;
  }
}

#about #challenge figure {
  max-width: 960px;
  margin: auto;
}

#about #challenge figure img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  #about #challenge figure {
    width: 90%;
  }
}

#about #data article {
  background: url(../../about/images/data-bg.png);
  padding-bottom: 0;
}

#about #data article figure {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

#about #data article figure ul.data-index li.data1 > span {
  background-image: url(../../about/images/data1.png);
}

#about #data article figure ul.data-index li.data2 > span {
  background-image: url(../../about/images/data2.png);
}

#about #data article figure ul.data-index li.data3 > span {
  background-image: url(../../about/images/data3.png);
}

#about #data article figure ul.data-index li.data4 > span {
  background-image: url(../../about/images/data4.png);
}

#about #data article figure ul.data-index li.data5 > span {
  background-image: url(../../about/images/data5.png);
}

#about #data article figure ul.data-index li.data6 > span {
  background-image: url(../../about/images/data6.png);
}

#about #data article figure ul.data-index li.data7 > span {
  background-image: url(../../about/images/data7.png);
}

#about #data article figure ul.data-index li.data8 > span {
  background-image: url(../../about/images/data8.png);
}

#about #data article figure ul.data-button {
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#about #data article figure ul li {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  opacity: 0;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: 1s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#about #data article figure ul li:hover {
  cursor: text;
}

#about #data article figure ul li > span {
  overflow: hidden;
  display: block;
  text-indent: -100%;
  position: relative;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

#about #data article figure ul li .detail {
  width: 250px;
  background: #fff;
  border: solid 3px #003e81;
  position: absolute;
  left: 100%;
  top: -60px;
  padding-bottom: 10px;
  z-index: 10;
  display: none;
}

#about #data article figure ul li .detail h5 {
  margin-bottom: 10px;
}

#about #data article figure ul li .detail p {
  font-size: 13px;
  padding: 0 1em;
  text-align: center;
  line-height: 1.4em;
  color: #003e81;
  font-weight: bold;
  height: 5em;
}

#about #data article figure ul li .detail p .data2-logo {
  width: 3em;
  vertical-align: middle;
}

#about #data article figure ul li .detail small {
  display: block;
  color: #003e81;
  font-size: 8.5px;
  text-align: center;
  padding-top: 0.2em;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#about #data article figure ul li .detail small.align-l {
  text-align-last: left;
}

#about #data article figure ul li .detail small.memo {
  text-indent: -1em;
  margin-left: 1em;
}

#about #data article figure ul li.active {
  z-index: 2;
}

#about #data article figure ul li.active .detail {
  display: block;
}

#about #data article figure ul li.data1 {
  left: 7%;
  top: 0;
  width: 18%;
  height: 53%;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

#about #data article figure ul li.data2 {
  left: 25%;
  top: 23%;
  width: 16%;
  height: 48%;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#about #data article figure ul li.data3 {
  left: 0;
  top: 53%;
  width: 21%;
  height: 35%;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

#about #data article figure ul li.data4 {
  left: 41%;
  top: 0;
  width: 19%;
  height: 43%;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

#about #data article figure ul li.data5 {
  left: 83%;
  top: 32%;
  width: 17%;
  height: 32%;
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

#about #data article figure ul li.data5 .detail {
  left: -100%;
}

#about #data article figure ul li.data6 {
  left: 58%;
  top: 39%;
  width: 22%;
  height: 52%;
  -webkit-transition-delay: 1.0s;
  -o-transition-delay: 1.0s;
  transition-delay: 1.0s;
}

#about #data article figure ul li.data6 .detail {
  left: -100%;
  top: -100px;
}

#about #data article figure ul li.data7 {
  left: 40%;
  top: 69%;
  width: 17%;
  height: 31%;
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

#about #data article figure ul li.data7 .detail {
  top: -200px;
}

#about #data article figure ul li.data8 {
  left: 65%;
  top: 0;
  width: 24%;
  height: 31%;
  -webkit-transition-delay: 1.4s;
  -o-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

#about #data article figure ul li.data8 .detail {
  left: -100%;
}

#about #data article figure ul.act3-activate li {
  opacity: 1;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#about #data .ext {
  text-align: center;
  padding-top: 1em;
}

@media screen and (max-width: 768px) {
  #about #data article figure ul li .detail {
    width: 60vw;
    left: calc(50% - 30vw);
    top: -25vw;
    padding-bottom: 3vw;
  }
  #about #data article figure ul li .detail h5 {
    margin-bottom: 5vw;
  }
  #about #data article figure ul li .detail p {
    font-size: 3.3vw;
  }
  #about #data article figure ul li .detail small {
    font-size: 2.8vw;
  }
  #about #data article figure ul li.data1 {
    left: 13%;
    top: 0;
    height: 25%;
    width: 39%;
  }
  #about #data article figure ul li.data1 .detail {
    left: 0;
  }
  #about #data article figure ul li.data2 {
    left: initial;
    right: 0;
    top: 10%;
    height: 22%;
    width: 44%;
  }
  #about #data article figure ul li.data2 .detail {
    left: initial;
    right: 0;
  }
  #about #data article figure ul li.data3 {
    left: 0;
    top: 25%;
    height: 22%;
    width: 45%;
  }
  #about #data article figure ul li.data3 .detail {
    left: 0;
  }
  #about #data article figure ul li.data4 {
    left: 0;
    top: 47%;
    height: 22%;
    width: 45%;
  }
  #about #data article figure ul li.data4 .detail {
    left: 0;
  }
  #about #data article figure ul li.data5 {
    left: 60%;
    top: 61%;
    height: 16%;
    width: 40%;
  }
  #about #data article figure ul li.data5 .detail {
    left: initial;
    right: 0;
  }
  #about #data article figure ul li.data6 {
    left: 0;
    top: initial;
    bottom: 0;
    height: 26%;
    width: 49%;
  }
  #about #data article figure ul li.data6 .detail {
    left: 0;
    top: initial;
    bottom: 0;
  }
  #about #data article figure ul li.data7 {
    left: initial;
    right: 0;
    top: initial;
    bottom: 0;
    height: 16%;
    width: 49%;
  }
  #about #data article figure ul li.data7 .detail {
    left: initial;
    right: 0;
    top: initial;
    bottom: 0;
  }
  #about #data article figure ul li.data8 {
    left: initial;
    right: 0;
    top: 41%;
    height: 14%;
    width: 53%;
  }
  #about #data article figure ul li.data8 .detail {
    left: initial;
    right: 0;
  }
}

#about #more article {
  padding: 60px 0 0;
}

#about #more article .more {
  max-width: 960px;
  margin: auto;
}

#about #more article .more ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#about #more article .more ul:first-child {
  border-bottom: solid 1px #003e81;
}

#about #more article .more ul:last-of-type {
  width: 80%;
  margin: auto;
}

#about #more article .more ul li > a, #about #more article .more ul li span {
  display: inline-block;
  background: url(../../about/images/more-arrow.png) right center/1.4em no-repeat;
  padding: 2.5em 2em 2.5em 0;
  font-size: 14px;
  color: #003e81;
}

#about #more article .more ul li span a {
  color: #003e81;
  font-size: inherit;
}

#about #more article .more p {
  text-align: right;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 1em;
}

@media screen and (max-width: 768px) {
  #about #more article {
    padding: 5vw 0;
  }
  #about #more article .more ul {
    display: block;
    width: 90% !important;
    margin: auto;
    padding-bottom: 5vw;
    padding-top: 5vw;
  }
  #about #more article .more ul li {
    white-space: nowrap;
    display: inline-block;
    margin-right: 4vw;
  }
  #about #more article .more ul li > a, #about #more article .more ul li span {
    font-size: 3.5vw;
    padding: 0.5em 2.4em 0.5em 0;
    display: inline-block;
  }
  #about #more article .more p {
    font-size: 3.2vw;
  }
}

#works #kv {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

#works #kv h2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#works #kv h2 span {
  font-size: 36px;
  color: #fff;
  font-weight: normal;
  display: block;
  margin-bottom: 1em;
}

#works #kv h2 ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#works #kv h2 ul li {
  font-size: 20px;
}

#works #kv h2 ul li a {
  color: #fff;
  font-size: inherit;
  width: 7em;
  height: 2em;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 1em;
  background-image: url(../images/arrow.png);
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: right 0.5em center;
  font-weight: normal;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: inherit;
}

#works #kv h2 ul li a:hover {
  opacity: 0.7;
}

#works #kv h2 ul li:nth-child(1) {
  background-color: #003e81;
}

#works #kv h2 ul li:nth-child(2) {
  background-color: #d80a2d;
}

@media screen and (max-width: 768px) {
  #works #kv h2 span {
    font-size: 6vw;
  }
  #works #kv h2 ul li {
    font-size: 3.5vw;
  }
}

#works section:before {
  content: "";
  width: 1px;
  height: 60px;
  background: #ccc;
  display: block;
  margin: auto;
}

#works section article {
  background: #eef4f7;
  padding-bottom: 100px;
}

#works section article h3 {
  width: 6em;
  height: 2em;
  margin: auto;
  font-size: 26px;
  letter-spacing: 0.1em;
}

#works section article h3 span {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: inherit;
  color: #fff;
  font-weight: normal;
  background: #000;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-1em);
  -ms-transform: translateY(-1em);
  transform: translateY(-1em);
}

#works section article p {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 3em;
}

#works section article .flow ul {
  max-width: 1100px;
  margin: auto;
}

#works section article .flow ul li {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 60px;
}

#works section article .flow ul li:last-child {
  margin-bottom: 0;
}

#works section article .flow ul li dl {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#works section article .flow ul li dl.top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#works section article .flow ul li dl dt {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 70px;
}

#works section article .flow ul li dl dt span {
  background: #20aee5;
  width: 80px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
}

#works section article .flow ul li dl dt span img {
  height: 32px;
}

#works section article .flow ul li dl dt div {
  background: #003e81;
  width: 9em;
  color: #fff;
  font-size: 20px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.2em;
}

#works section article .flow ul li dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.6em;
  padding-left: 2em;
}

#works section article .person {
  background: url(../../works/images/works/person-bg1.jpg) center top/cover no-repeat;
  max-width: 1200px;
  margin: auto;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-top: 280px;
}

#works section article .person ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 900px;
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 1;
  margin-bottom: -70px;
}

#works section article .person ul li {
  width: 220px;
}

#works section article .person ul li a {
  display: block;
  overflow: hidden;
}

#works section article .person ul li a img {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#works section article .person ul li a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#works section article .person ul li a p {
  background: #81c7e8;
  font-size: 30px;
  font-weight: normal;
  line-height: 1em;
  margin-bottom: 0;
  height: 70px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#works section article .person ul li a p small {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 1.2em;
}

#works section#gijutsu article h3 span {
  background: #003e81;
}

#works section#jimu article h3 span {
  background: #d80a2d;
}

#works section#jimu article .flow ul li dl dt span {
  background: #f3981c;
}

#works section#jimu article .flow ul li dl dt div {
  background: #d80a2d;
}

#works section#jimu article .person ul li a p {
  background: #f2c873;
}

#works section#jimu article .person {
  height: 340px;
  background-image: url(../../works/images/works/person-bg2.jpg);
}

@media screen and (max-width: 768px) {
  #works section:before {
    height: 15vw;
  }
  #works section article {
    padding-bottom: 10vw;
  }
  #works section article h3 {
    font-size: 4vw;
  }
  #works section article p {
    font-size: 3vw;
    padding: 0 1em;
  }
  #works section article .flow ul li {
    margin-bottom: 5vw;
  }
  #works section article .flow ul li dl {
    display: block;
  }
  #works section article .flow ul li dl dt {
    height: 15vw;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 5vw;
  }
  #works section article .flow ul li dl dt span {
    width: 15vw;
  }
  #works section article .flow ul li dl dt span img {
    height: 8vw;
  }
  #works section article .flow ul li dl dt div {
    font-size: 4vw;
  }
  #works section article .flow ul li dl dd {
    padding-left: 1em;
    padding-right: 1em;
    font-size: 3.5vw;
  }
  #works section article .person {
    padding-top: 20vw;
    padding-bottom: 5vw;
  }
  #works section article .person ul {
    width: 90%;
    margin-bottom: 0;
    display: block;
  }
  #works section article .person ul li {
    width: 100%;
    margin-bottom: 4vw;
  }
  #works section article .person ul li a {
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  #works section article .person ul li a figure {
    width: 25%;
  }
  #works section article .person ul li a p {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 5vw;
    height: auto;
  }
  #works section article .person ul li a p small {
    font-size: 3.2vw;
  }
}

#person section {
  background: #eef4f7;
  margin-bottom: 200px;
}

#person #kv {
  position: relative;
  margin-bottom: 20px;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

#person #kv figure {
  position: relative;
}

#person #kv h2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 26px;
  line-height: 1.6em;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 2em;
  font-weight: normal;
}

#person #kv h2.white {
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

#person #kv .info {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

#person #kv .info .pagetitle img {
  margin-top: -48px;
}

#person #kv .info .detail {
  width: 350px;
  padding: 40px 20px;
  background: rgba(110, 193, 237, 0.75);
  position: relative;
  margin-top: -150px;
}

#person #kv .info .detail .name {
  font-size: 38px;
  margin-bottom: 0.5em;
}

#person #kv .info .detail .bio {
  font-size: 15px;
  margin-bottom: 1em;
  line-height: 1.6em;
}

#person #kv .info .detail .text {
  font-size: 14px;
  line-height: 1.6em;
}

@media screen and (max-width: 768px) {
  #person #kv {
    margin-bottom: 10vw;
  }
  #person #kv figure {
    overflow: hidden;
  }
  #person #kv figure img {
    width: 150vw;
    max-width: initial;
  }
  #person #kv h2 {
    font-size: 3.5vw;
    padding-left: 1em;
  }
  #person #kv .info {
    display: block;
  }
  #person #kv .info .pagetitle {
    margin-bottom: 3vw;
  }
  #person #kv .info .pagetitle img {
    margin-top: -10vw;
    width: 60%;
  }
  #person #kv .info .detail {
    margin-top: 0;
    margin-left: 15vw;
    width: auto;
    padding: 5vw 5vw;
  }
  #person #kv .info .detail .name {
    font-size: 7vw;
  }
  #person #kv .info .detail .bio {
    font-size: 3.5vw;
  }
  #person #kv .info .detail .text {
    font-size: 3.2vw;
  }
}

#person article {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 80px;
}

#person article h3 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 3em;
}

#person article h3 img, #person article h3 svg {
  margin-bottom: 6px;
}

#person article p {
  width: 720px;
  margin: auto;
  margin-bottom: 4em;
  font-size: 15px;
}

#person article#oneday {
  background: url(../../works/images/person/oneday-bg.jpg) center top/cover no-repeat;
  padding: 90px 0;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#person article#oneday .oneday dl {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#person article#oneday .oneday dl dt, #person article#oneday .oneday dl dd {
  font-size: 18px;
  font-size: 18px;
}

#person article#oneday .oneday dl dt {
  width: 5em;
  position: relative;
  padding-bottom: 3em;
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-right: 2em;
}

#person article#oneday .oneday dl dt:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #6ec1ed;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

#person article#oneday .oneday dl dt:after {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  background: #6ec1ed;
  border-radius: 1em;
  position: absolute;
  right: -0.5em;
  top: 0;
}

#person article#oneday .oneday dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 2em;
  padding-bottom: 1em;
}

#person article#oneday .oneday dl:last-child dt, #person article#oneday .oneday dl:last-child dd {
  padding-bottom: 0;
}

#person article#oneday .oneday dl:last-child dt:before {
  display: none;
}

#person article#myoff figure {
  text-align: center;
}

#person article#myoff figure img {
  width: 420px;
  margin-bottom: -140px;
}

@media screen and (max-width: 768px) {
  #person article {
    margin-bottom: 10vw;
  }
  #person article h3 {
    font-size: 4vw;
  }
  #person article h3 svg {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  #person article p {
    width: 90%;
    font-size: 3.2vw;
  }
  #person article#oneday .oneday dl dt, #person article#oneday .oneday dl dd {
    font-size: 3.5vw;
  }
  #person article#oneday .oneday dl dt {
    width: 5em;
  }
  #person article#oneday .oneday dl dd {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: auto;
  }
}

#person.person1 #kv figure h2 {
  height: 60%;
}

#person.person2 section {
  background: #eef4f7;
}

#person.person2 #kv figure h2 {
  padding-left: 3em;
}

#person.person2 #kv .info .detail {
  background: rgba(119, 180, 227, 0.75);
}

#person.person2 article h3 svg path {
  fill: #444788;
}

#person.person2 article#oneday .oneday dl dt:before, #person.person2 article#oneday .oneday dl dt:after {
  background: #6ec1ed;
}

@media screen and (max-width: 768px) {
  #person.person2 #kv figure h2 {
    padding-left: 5%;
  }
  #person.person2 #kv figure img {
    margin-left: -10vw;
  }
}

#person.person3 section {
  background: #eef4f7;
}

#person.person3 #kv figure h2 {
  padding-left: 55%;
  height: 50%;
}

#person.person3 #kv .info .detail {
  background: rgba(132, 204, 201, 0.75);
}

#person.person3 article h3 svg path {
  fill: #008fb0;
}

#person.person3 article#oneday .oneday dl dt:before, #person.person3 article#oneday .oneday dl dt:after {
  background: #6eb8e1;
}

@media screen and (max-width: 768px) {
  #person.person3 #kv figure h2 {
    padding-left: 35%;
  }
  #person.person3 #kv figure img {
    margin-left: -40vw;
  }
}

#person.person4 section {
  background: #eef4f7;
}

#person.person4 #kv figure h2 {
  height: 50%;
}

#person.person4 #kv .info .detail {
  background: rgba(120, 196, 151, 0.75);
}

#person.person4 article h3 svg path {
  fill: #087884;
}

#person.person4 article#oneday .oneday dl dt:before, #person.person4 article#oneday .oneday dl dt:after {
  background: #75bc92;
}

@media screen and (max-width: 768px) {
  #person.person4 #kv figure h2 {
    height: 100%;
  }
  #person.person4 #kv figure img {
    margin-left: -5vw;
  }
}

#person.person5 section {
  background: #eef4f7;
}

#person.person5 #kv figure h2 {
  height: 70%;
}

#person.person5 #kv .info .detail {
  background: rgba(253, 210, 62, 0.75);
}

#person.person5 article h3 svg path {
  fill: #d39e1a;
}

#person.person5 article#oneday .oneday dl dt:before, #person.person5 article#oneday .oneday dl dt:after {
  background: #fdd23e;
}

@media screen and (max-width: 768px) {
  #person.person5 #kv figure h2 {
    height: 70%;
  }
  #person.person5 #kv figure img {
    margin-left: -5vw;
  }
}

#person.person6 section {
  background: #eef4f7;
}

#person.person6 #kv figure h2 {
  height: 70%;
}

#person.person6 #kv .info .detail {
  background: rgba(246, 172, 45, 0.75);
}

#person.person6 article h3 svg path {
  fill: #da4733;
}

#person.person6 article#oneday .oneday dl dt:before, #person.person6 article#oneday .oneday dl dt:after {
  background: #f3cb45;
}

@media screen and (max-width: 768px) {
  #person.person6 #kv figure h2 {
    height: 70%;
  }
  #person.person6 #kv figure img {
    margin-left: -5vw;
  }
}

#person #person-index {
  max-width: 1200px;
  margin: auto;
}

#person #person-index ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#person #person-index ul li {
  width: 33.3%;
}

#person #person-index ul li a {
  position: relative;
  display: block;
  overflow: hidden;
}

#person #person-index ul li a img {
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#person #person-index ul li a span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 16px;
  text-align: center;
  padding: 0.5em 0;
  color: #fff;
}

#person #person-index ul li a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#person #person-index ul li:nth-child(1) a span {
  background: #0069a6;
}

#person #person-index ul li:nth-child(2) a span {
  background: #444788;
}

#person #person-index ul li:nth-child(3) a span {
  background: #008fb0;
}

#person #person-index ul li:nth-child(4) a span {
  background: #009368;
}

#person #person-index ul li:nth-child(5) a span {
  background: #e6a600;
}

#person #person-index ul li:nth-child(6) a span {
  background: #da4733;
}

@media screen and (max-width: 768px) {
  #person #person-index ul li {
    width: 50%;
  }
  #person #person-index ul li a span {
    font-size: 3vw;
  }
}

#crosstalk #kv {
  margin-bottom: 60px;
}

#crosstalk #kv figure {
  max-width: 1200px;
  margin: auto;
}

#crosstalk #kv h2 {
  color: #003e81;
  font-size: 36px;
  text-align: center;
  padding: 1em;
}

#crosstalk #kv h2 small {
  font-size: 24px;
}

#crosstalk #kv p {
  font-weight: bold;
  text-align: center;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  #crosstalk #kv {
    margin-bottom: 10vw;
  }
  #crosstalk #kv h2 {
    font-size: 8vw;
  }
  #crosstalk #kv h2 small {
    font-size: 5vw;
  }
  #crosstalk #kv p {
    padding: 0 1em;
    font-size: 4vw;
  }
}

#crosstalk .prof {
  max-width: 1100px;
  margin: auto;
  margin-bottom: 60px;
  position: relative;
}

#crosstalk .prof:before {
  content: "";
  width: 90%;
  height: 1px;
  display: block;
  background: #000;
  position: absolute;
  left: 0;
  top: 100px;
}

#crosstalk .prof ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

#crosstalk .prof ul li {
  width: 17%;
}

#crosstalk .prof ul li figure {
  margin-bottom: 20px;
}

#crosstalk .prof ul li div {
  font-size: 14px;
  line-height: 1.4em;
}

#crosstalk .prof ul li div.name {
  font-size: 30px;
  padding: 0.2em 0;
}

#crosstalk .prof ul li div.name:before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background: #000;
  border-radius: 2em;
  margin-bottom: 0.2em;
  margin-right: 0.3em;
  vertical-align: middle;
}

#crosstalk .prof ul li div.name.am:before {
  background: #eda13c;
}

#crosstalk .prof ul li div.name.fk:before {
  background: #003e81;
}

#crosstalk .prof ul li div.name.lm:before {
  background: #d80a2d;
}

#crosstalk .prof ul li div.name.ht:before {
  background: #60ab46;
}

@media screen and (max-width: 768px) {
  #crosstalk .prof {
    margin-bottom: 15vw;
  }
  #crosstalk .prof:before {
    top: 10vw;
    left: 5vw;
  }
  #crosstalk .prof ul {
    width: 90%;
    margin: auto;
  }
  #crosstalk .prof ul li {
    width: 22%;
  }
  #crosstalk .prof ul li figure {
    margin-bottom: 4vw;
  }
  #crosstalk .prof ul li div {
    font-size: 2.5vw;
  }
  #crosstalk .prof ul li div.div {
    height: 5.5em;
  }
  #crosstalk .prof ul li div.name {
    font-size: 5vw;
  }
}

#crosstalk .anchor {
  height: 40px;
  display: block;
}

@media screen and (max-width: 768px) {
  #crosstalk .anchor {
    height: 10vw;
  }
}

#crosstalk section {
  background: #eef4f7;
  border-top: solid 1px #003e81;
  border-bottom: solid 1px #003e81;
  margin-bottom: 30px;
}

#crosstalk section h3 {
  text-align: center;
  font-size: 28px;
  font-weight: normal;
  margin-top: -22px;
  margin-bottom: 30px;
}

#crosstalk section h3 img {
  margin-bottom: 0.4em;
}

#crosstalk section figure {
  max-width: 1200px;
  margin: auto;
}

#crosstalk section article {
  max-width: 1100px;
  margin: auto;
  position: relative;
  padding-bottom: 30px;
}

#crosstalk section article dl {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

#crosstalk section article dl dt {
  width: 180px;
  position: relative;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#crosstalk section article dl dt figure {
  position: relative;
  z-index: 1;
  width: 70px;
}

#crosstalk section article dl dt figure img {
  margin-bottom: 10px;
}

#crosstalk section article dl dt figure img:last-child {
  margin-bottom: 0;
}

#crosstalk section article dl dt:after {
  content: "";
  background: #999;
  width: 100%;
  height: 1px;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 26px;
}

#crosstalk section article dl dd {
  font-size: 16px;
  line-height: 1.6em;
  padding-top: 23px;
  padding-left: 0.5em;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #333;
}

#crosstalk section article dl dd.center {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 50px;
}

#crosstalk section article dl.multi dt {
  position: relative;
}

#crosstalk section article dl.multi dt:before {
  content: "";
  width: 70%;
  height: 69%;
  border: solid 1px #999;
  border-left: none;
  display: block;
  position: absolute;
  left: 0;
  top: 35px;
}

#crosstalk section#crosstalk01 article .bg {
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}

#crosstalk section#crosstalk01 article .bg img {
  width: 80%;
  mix-blend-mode: darken;
}

#crosstalk section#crosstalk04 article .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
}

#crosstalk section#crosstalk04 article .bg img {
  width: 80%;
  mix-blend-mode: darken;
}

@media screen and (max-width: 768px) {
  #crosstalk section {
    margin-bottom: 10vw;
  }
  #crosstalk section h3 {
    font-size: 5.6vw;
    margin-top: -4.6vw;
    margin-bottom: 10vw;
  }
  #crosstalk section h3 img {
    width: 46vw;
  }
  #crosstalk section article {
    width: 90%;
  }
  #crosstalk section article .bg img {
    width: 50% !important;
  }
  #crosstalk section article dl {
    margin-bottom: 5vw;
  }
  #crosstalk section article dl dt {
    width: 17vw;
  }
  #crosstalk section article dl dt figure {
    width: 12vw;
  }
  #crosstalk section article dl dt:after {
    margin-bottom: 5vw;
  }
  #crosstalk section article dl dd {
    font-size: 3.5vw;
    padding-top: 0;
  }
  #crosstalk section article dl dd.center {
    padding-bottom: 5vw;
  }
  #crosstalk section article dl.multi dt:before {
    width: 87%;
    top: 5vw;
    height: 71%;
  }
  #crosstalk section#crosstalk01 article .bg {
    top: 30vw;
  }
  #crosstalk section#crosstalk04 article .bg {
    bottom: 10vw;
  }
}

#works.environment #kv h2 ul li:nth-child(1) a {
  background-color: #4a4b9d;
}

#works.environment #kv h2 ul li:nth-child(2) a {
  background-color: #f8b500;
}

#works.environment section > figure {
  text-align: center;
}

#works.environment section > figure img {
  width: 100%;
}

#works.environment section article {
  padding-bottom: 30px;
}

#works.environment section article h3 {
  width: 7em;
}

#works.environment section article .environment-wrapper {
  max-width: 1200px;
  margin: auto;
}

#works.environment section article .block {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#works.environment section article .block dl {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 78%;
  margin-bottom: 40px;
}

#works.environment section article .block dl dt {
  background: #4a4b9d;
  color: #fff;
  font-size: 16px;
  width: 20%;
  padding: 0.5em 1em;
  margin-right: 1em;
}

#works.environment section article .block dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#works.environment section article .block dl dd p {
  font-size: 16px;
  text-align: left;
  font-weight: normal;
  color: #333;
}

#works.environment section article .block dl dd figure img {
  width: 100%;
}

#works.environment section article .block dl dd ul li {
  background: url(../../environment/images/point-training.svg) left top 0.2em/0.8em no-repeat;
  font-size: 16px;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
  color: #333;
}

#works.environment section article .block dl dd ul li.single {
  padding-top: 8px;
}

#works.environment section article .block dl dd h5 {
  margin-bottom: 1em;
  font-weight: normal;
  color: #333;
}

#works.environment section article .block dl dd .datas img {
  margin-right: 10px;
  width: 150px;
}

#works.environment section article .block dl dd .parallel {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px;
}

#works.environment section article .block dl dd .parallel:last-child {
  margin-bottom: 0;
}

#works.environment section article .block dl dd .parallel ul li {
  padding-right: 2em;
}

#works.environment section article .block > figure {
  width: 20%;
}

#works.environment section article .block > figure img {
  width: 100%;
}

#works.environment section#training h3 span {
  background-color: #4a4b9d;
}

#works.environment section#welfare h3 span {
  background-color: #f8b500;
}

#works.environment section#welfare .block dl dt {
  background: #f8b500;
}

#works.environment section#welfare .block dl dd ul li {
  background-image: url(../../environment/images/point-welfare.svg);
}

@media screen and (max-width: 768px) {
  #works.environment section article {
    padding-bottom: 5vw;
  }
  #works.environment section article .block {
    display: block;
    margin-bottom: 0;
  }
  #works.environment section article .block dl {
    width: 90%;
    display: block;
  }
  #works.environment section article .block dl dt {
    width: 60%;
    font-size: 4vw;
    margin-bottom: 0.7em;
  }
  #works.environment section article .block dl dd {
    width: 100%;
  }
  #works.environment section article .block dl dd p {
    font-size: 3.5vw;
    margin-bottom: 1em;
  }
  #works.environment section article .block dl dd figure {
    margin-left: 10%;
  }
  #works.environment section article .block dl dd ul {
    padding-left: 5vw;
  }
  #works.environment section article .block dl dd ul li {
    line-height: 1.4em;
    font-size: 3.5vw;
  }
  #works.environment section article .block dl dd .parallel {
    display: block;
  }
  #works.environment section article .block dl dd .parallel ul {
    width: 100%;
  }
  #works.environment section article .block dl dd h5 {
    font-size: 4vw;
    padding-left: 1em;
  }
  #works.environment section article .block dl dd .datas {
    width: 90%;
    margin: auto;
    text-align: center;
  }
  #works.environment section article .block dl dd .datas img {
    width: 44%;
    margin-bottom: 3vw;
  }
  #works.environment section article .block > figure {
    width: 100%;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-bottom: 10vw;
  }
  #works.environment section article .block > figure img {
    width: 50%;
  }
}

#crosstalk.message {
  background: #eef4f7;
}

#crosstalk.message #kv figure {
  position: relative;
}

#crosstalk.message #kv figure h2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

@media screen and (max-width: 768px) {
  #crosstalk.message #kv figure h2 {
    font-size: 4vw;
  }
}

#crosstalk.message section {
  background: none;
  border: 0;
}

#crosstalk.message section > figure {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

#crosstalk.message section > figure .name {
  position: absolute;
  right: 15%;
  bottom: 5%;
  font-size: 16px;
  line-height: 1.6em;
}

#crosstalk.message section > figure .name span {
  font-size: 20px;
}

#crosstalk.message section > figure .name span:nth-of-type(1) {
  color: #008aa9;
}

#crosstalk.message section > figure .name span:nth-of-type(2) {
  color: #d80a2d;
}

#crosstalk.message section article {
  max-width: 1200px;
}

#crosstalk.message section article .title {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 30px;
}

#crosstalk.message section article .title:before {
  content: "";
  background: #4dafe7;
  display: block;
  width: 6em;
}

#crosstalk.message section article .title span {
  display: block;
  font-size: 16px;
  color: #fff;
  background: #003e81;
  padding: 0.5em 1em;
}

#crosstalk.message section article dl {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

#crosstalk.message section article dl dd ul li {
  background: url(../../recruit/images/message/point.svg) left top 0.2em/0.8em no-repeat;
  font-size: 16px;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
  color: #333;
  color: #003e81;
  font-weight: bold;
}

#crosstalk.message section article dl dd .dl {
  padding: 0.5em 0;
}

#crosstalk.message section article dl dd .dl h5 {
  color: #003e81;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 18px;
}

#crosstalk.message section article dl dd .dl p {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #crosstalk.message section > figure .name {
    font-size: 3.5vw;
    right: 5%;
  }
  #crosstalk.message section > figure .name span {
    font-size: 4vw;
  }
  #crosstalk.message section article .title:before {
    width: 4em;
  }
  #crosstalk.message section article .title span {
    font-size: 3.5vw;
    line-height: 1.4em;
  }
  #crosstalk.message section article dl dd ul li {
    font-size: 3.6vw;
    line-height: 1.2em;
  }
  #crosstalk.message section article dl dd .dl h5 {
    font-size: 4vw;
    margin-bottom: 0.5em;
  }
  #crosstalk.message section article dl dd .dl p {
    font-size: 3.5vw;
    line-height: 1.4em;
  }
}

#works.recruit #kv h2 span {
  color: #000;
}

#works.recruit #kv ul li:nth-child(1) a {
  background-color: #007bbb;
}

#works.recruit #kv ul li:nth-child(2) a {
  background-color: #60ab46;
}

@media screen and (max-width: 768px) {
  #works.recruit #kv h2 span {
    font-size: 4vw;
  }
}

#works.recruit section article {
  padding-bottom: 50px;
}

#works.recruit section article h3 {
  width: 7em;
}

#works.recruit section article .info {
  max-width: 960px;
  margin: auto;
}

#works.recruit section article .info dl {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px;
}

#works.recruit section article .info dl dt {
  width: 20%;
  background: #007bbb;
  color: #fff;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: solid 1em #71bce9;
  padding: 0.5em 1em 0.6em;
}

#works.recruit section article .info dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 1em;
  line-height: 1.4em;
  padding-top: 0.2em;
}

#works.recruit section#info article h3 span {
  background: #007bbb;
}

#works.recruit section#flow article h3 span {
  background: #60ab46;
}

#works.recruit section#flow article .info dl dt {
  background: #60ab46;
  border-color: #9cca54;
}

#works.recruit section#flow article .flow-list {
  padding-top: 30px;
  margin-bottom: 60px;
}

#works.recruit section#flow article .flow-list ol {
  width: 640px;
  margin: auto;
  list-style: none;
}

#works.recruit section#flow article .flow-list ol li {
  font-size: 16px;
}

#works.recruit section#flow article .flow-list ol li:after {
  content: "";
  width: 1em;
  height: 1em;
  font-size: inherit;
  display: block;
  background: url(../../recruit/images/recruit/flow.svg) center center/contain no-repeat;
  margin: 1em auto;
}

#works.recruit section#flow article .flow-list ol li:last-child:after {
  display: none;
}

#works.recruit section#flow article .flow-list ol li > div {
  background: #fff;
  padding: 20px;
  text-align: center;
}

#works.recruit section#flow article .flow-list ol li > div .qr {
  width: 180px;
}

#works.recruit section#flow article .flow-list ol li span {
  font-size: inherit;
  display: block;
  background: #9cca54;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 0.5em 0;
}

#works.recruit section#flow article .flow-list ol li span ins {
  position: absolute;
  right: 1em;
  top: 0;
  background: none;
  color: #fff;
  font-size: 14px;
  padding-top: 0.5em;
}

#works.recruit section#flow article .flow-list ol li span ins img {
  height: 2em;
  margin-top: -0.4em;
}

@media screen and (max-width: 768px) {
  #works.recruit section article {
    padding-bottom: 10vw;
  }
  #works.recruit section article .info {
    width: 100%;
  }
  #works.recruit section article .info dl {
    display: block;
  }
  #works.recruit section article .info dl dt {
    width: 70%;
    font-size: 4vw;
    margin-bottom: 3vw;
  }
  #works.recruit section article .info dl dd {
    font-size: 3.5vw;
    width: auto;
    padding-right: 1em;
  }
  #works.recruit section#flow article .flow-list ol {
    width: 90%;
  }
  #works.recruit section#flow article .flow-list ol li span {
    font-size: 4vw;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #works.recruit section#flow article .flow-list ol li span ins {
    font-size: 3.5vw;
    position: static;
  }
}
