*, *::before, *::after {
  box-sizing: border-box;
}
html {
  min-height: 100%;
  position: relative;
}
body {
  background-color: #231815;
  color: #231815;
  font-family: "游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴシック Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  line-height: 1.7;
  font-size: 14px;
  -webkit-text-size-adjust : 100%;
}
@media screen and (-webkit-device-pixel-ratio:2) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
a {
  color: #cf0a2c;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
.main {
}
.inner {
  margin: 0 auto;
  max-width: 1140px;
}
h1, h2, h3 {
  font-family: "futura-pt", sans-serif;
}
.cf::after {
  clear: both;
  content: '';
  display: table;
}

strong, b {
  font-weight: bold;
}

/* util
--------------------------------------------------*/
.mt-80 {
  margin-top: 80px;
}

/* button
--------------------------------------------------*/
.btn {
  display: block;
  font-size: 14px;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: 0 12px 32px -12px rgba(0,0,0,.4);
  box-shadow: 0 12px 32px -12px rgba(0,0,0,.4);
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}
.btn:hover {
  -webkit-box-shadow: 0 16px 32px -12px rgba(0,0,0,.6);
  box-shadow: 0 16px 32px -12px rgba(0,0,0,.6);
}
.btn--black {
  background-color: #192227;
  color: #fff;
}
.btn--white {
  background-color: #fff;
  color: #231815;
}
.btn--red {
  background-color: #cf0a2c;
  color: #fff;
}

/* table
--------------------------------------------------*/
.bz-table {
  border: none;
  width: 100%;
}
.bz-table tr:nth-child(odd) {
  background-color: #f7f7f7;
}
.bz-table th {
  font-size: 12px;
  font-weight: bold;
  min-width: 88px;
  text-align: center;
  vertical-align: middle;
}
.bz-table td {
  border: none;
  font-size: 12px;
  overflow: hidden;
  padding: 12px 16px;
  vertical-align: middle;
  word-break: break-all;
}

/* heading
--------------------------------------------------*/
.bz-heading {
  font-size: 40px;
  font-family: "futura-pt", sans-serif;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;;
  margin-bottom: 40px;
}
.bz-heading span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin-top: 8px;
}
.bz-sub-heading {
  letter-spacing: .1em;
  line-height: 1.2;
  margin-top: 80px;
  margin-bottom: 40px;
  padding-left: 24px;
}
.bz-sub-heading:first-child {
  margin-top: 0;
}
.bz-sub-heading p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: .25em;
  position: relative;
}
.bz-sub-heading p::before {
  background: #231815;
  content: '';
  display: block;
  height: 1px;
  width: 16px;
  position: absolute;
  top: 50%; left: -24px;
}
.bz-sub-heading span {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .bz-sub-heading {
    margin-top: 40px;
  }
  .bz-sub-heading p {
    font-size: 18px;
  }
}

/* header
--------------------------------------------------*/
.header {
  background-color: rgba(255,255,255,0);
  height: 80px;

  padding-left: 16px;
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 2;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}
.header::after {
  clear: both;
  content: '';
  display: block;
}
.header.is-active {
  background-color: rgba(255,255,255,1);
}
.header__logo {
  position: absolute;
  top: 50%; left: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header__logo a {
  display: block;
}
.header__logo img {
  display: block;
}
.global-navi {
  float: right;
  height: 80px;
  line-height: 1;
  -webkit-transition: .2s;
  transition: .2s;
}
.global-navi.fixed {
  background: #fff;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 4px solid #cf0a2c;
}
.global-navi.fixed .global-navi__logo {
  width: auto;
}
.global-navi__logo {
  background: #fff;
  border-bottom: 4px solid #cf0a2c;
  height: 80px;
  line-height: 56px;
  padding: 16px;
  width: 48px;
}
.global-navi ul {
  height: 80px;
  padding: 24px 40px;
}
.global-navi li {
  float: left;
  text-align: center;
  margin-right: 32px;
}
.global-navi li:last-child {
  margin-right: 0;
}
.global-navi li a {
  display: block;
  color: #231815;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.global-navi li a:hover p,
.global-navi li a:hover span,
.header.js-scroll .global-navi li a:hover span {
  color: #cf0a2c;
}
.global-navi li a p {
  font-family: "futura-pt", sans-serif;
  font-weight: bold;
  margin-bottom: 8px;
}
.global-navi li a span {
  color: #f7f7f7;
  display: block;
  font-size: 10px;
}

/* scroll */
.header.js-scroll {
  background-color: rgba(255,255,255,.97);
  -webkit-box-shadow: 0 1px 8px rgba(0,0,0,.13);
  box-shadow: 0 1px 8px rgba(0,0,0,.13);
}
.header.js-scroll .global-navi a {
  color: #333;
}
.header.js-scroll .global-navi a span {
  color: #999;
}

@media screen and (max-width: 1012px) {
  .header {
    background: rgba(255,255,255,.95);
    height: 56px;
  }
  .header__logo img {
    width: 120px;
  }
  .global-navi {
    display: none;
  }
}

/* footer
--------------------------------------------------*/
.footer {
  background: #231815;
  color: #fff;
  padding: 24px 16px;
  //position: absolute;
  //right: 0; bottom: 0; left: 0;
}
.footer__util {
  font-size: 12px;
  margin-bottom: 24px;
  text-align: center;
}
.footer__util li {
  display: inline-block;
  margin-right: 40px;
  position: relative;
}
.footer__util li:last-child {
  margin-right: 0;
}
.footer__util li:last-child::after {
  content: none;
}
.footer__util li::after {
  background-color: #fff;
  content: '';
  display: block;
  width: 1px;
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
}
.footer__util li a {
  color: #fff;
  text-decoration: none;
}
.footer .copyright {
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 414px) {
  .footer__logo {
    margin-bottom: 16px;
    text-align: center;
  }
}

/*==================================================
# TOP
==================================================*/
.top-information {
  background: #fff;
  z-index: 1;
}
.section {
  padding: 80px 40px;
  position: relative;
  z-index: 1;
}
.section::before {
  background: #e7e7e7;
  display: block;
  height: 1px;
  width: 80px;
  position: absolute;
  top: 50%;
  right: 0;
}
.section__heading {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}
.section__heading span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 4px;
  margin-top: .5em;
}
.inview {
  opacity: 0;
  -webkit-transform: translateY(120px);
  -ms-transform: translateY(120px);
  -o-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inview.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (max-width: 414px) {
  .section {
    padding: 80px 24px;
  }
}

/* hero-image
--------------------------------------------------*/
.hero-image {
  background-size: cover;
  height: 100vh;
  overflow: hidden;
  position: relative;
  max-height: 800px;
  z-index: 1;
}
.hero-image__logo {
  display: block;
  max-width: 880px;
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hero-image__logo--pc {
  top: 80%;
}
.hero-image__logo--sp {
  display: none;
}
#hero-video {
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hero-image--sp {
  display: none;
}
@media screen and (max-width: 736px) {
  .hero-image--sp {
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
  }
  .hero-image--sp li {
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    opacity: 0;
  }
  .hero-image__logo--pc {
    display: none;
  }
  .hero-image__logo--sp {
    display: block;
  }
  #hero-video {
    display: none;
  }
}

/* News
--------------------------------------------------*/
.news-list li {
  margin-bottom: 24px;
}
.news-list__meta {
  margin-bottom: 8px;
}
.news-list__cat {
  background: #222;
  color: #fff;
  display: inline-block;
  font-size: 10px;
  margin-right: .5em;
  padding: 4px 8px;
  text-decoration: none;
  vertical-align: middle;
}
.news-list__date {
  color: #999;
  display: inline-block;
  font-size: 12px;
}
.news-list__title {
  font-size: 14px;
}
.news-list__title a {
  color: #231815;
  text-decoration: none;
}
.news-list__title a:hover {
  text-decoration: underline;
}

/* Service
--------------------------------------------------*/
.section-service {
  //background: linear-gradient(-180deg,#0087ff,#07d0ff);
  background: linear-gradient(-180deg, #FF8008, #FFC837);
  padding: 140px 40px 120px;
  color: #fff;
}
.top-service {
  max-width: 800px;
  margin: 0 auto;
}
.top-service h3 {
  font-size: 18px;
  margin-bottom: .5em;
}
.top-service__text {
  font-size: 14px;
}
.top-service__link {
  margin-top: 40px;
  text-align: center;
}
.top-service__link li {
  display: inline-block;
  padding: 8px;
  width: 40%;
}
.top-service__link li a {
  display: block;
}

/* polygon */
.section-polygon {
  background-color: #fff;
  height: 0;
  position: absolute;
  right: 0; left: 0;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.section-polygon-top {
  -webkit-clip-path: polygon(0 0,0 100%,100% 0);
  -moz-clip-path: polygon(0 0,0 100%,100% 0);
  -o-clip-path: polygon(0 0,0 100%,100% 0);
  clip-path: polygon(0 0,0 100%,100% 0);
  top: -1px;
}
.section-polygon-bottom {
  -webkit-clip-path: polygon(100% 100%,0 100%,100% 0);
  -moz-clip-path: polygon(100% 100%,0 100%,100% 0);
  -o-clip-path: polygon(100% 100%,0 100%,100% 0);
  clip-path: polygon(100% 100%,0 100%,100% 0);
  bottom: -1px;
}
.is-inview .section-polygon {
  height: 80px;
}

@media screen and (max-width: 768px) {
  .top-service__link li {
    display: block;
    margin: 0 auto;
    max-width: 400px;
    width: auto;
  }
}
@media screen and (max-width: 414px) {
  .section-service {
    padding: 140px 24px 120px;
  }
}

/* Recruitment
--------------------------------------------------*/
.section-recruit {
  background: linear-gradient(-180deg, #EB3349, #F45C43);
  padding: 140px 40px 120px;
  color: #fff;
}
.top-recruit {
  max-width: 800px;
  margin: 0 auto;
}
.top-recruit h3 {
  font-size: 18px;
  margin-bottom: .5em;
}
.top-recruit__text {
  font-size: 14px;
}
.top-recruit__link {
  max-width: 400px;
  margin: 0 auto;
}
.slider-top-recruit {
  height: 180px;
  overflow: hidden;
  margin: 80px -40px;
  position: relative;
}
.slider-top-recruit ul {
  display: inline-block;
}
.slider-top-recruit li {
  border-radius: 50%;
  float: left;
  margin-right: 24px;
  overflow: hidden;
}
.slider-top-recruit li img {
  display: block;
}

/* Blog
--------------------------------------------------*/
.blog-list {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.blog-list__content {
  line-height: 1.4;
  padding: 0 12px;
  margin-bottom: 24px;
  width: 33.333%;
}
.blog-list__content a {
  background-color: #fff;
  box-shadow: 9px 7px 37px -6px rgba(0, 0, 0, 0.27);
  color: #231815;
  display: block;
  height: 100%;
  padding: 16px;
  text-decoration: none;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}
.blog-list__content a:hover {
  box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.64);
}
.blog-list__image {
  margin: -16px -16px 16px;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
  width: auto;
}
.blog-list__image img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.blog-list__meta {
  color: #999;
  margin-bottom: 8px;
}
.blog-list__date {
  display: inline-block;
  font-size: 12px;
}
.blog-list__title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 16px;
}
.blog-list__entry {
  color: #555;
}
@media screen and (max-width: 768px) {
  .blog-list__content {
    width: 50%;
  }
}
@media screen and (max-width: 414px) {
  .blog-list__content {
    width: 100%;
  }
}

.section {
  position: relative;
}
.section .inner {
  position: relative;
  z-index: 1;
}

.blog-list--top {
  margin-bottom: 40px;
}

/* archive-navigation
--------------------------------------------------*/
.archive-navigation {
  margin-top: 24px;
  text-align: center;
}
.archive-navigation li {
  display: inline-block;
}
.archive-navigation li a,
.archive-navigation span {
  background-color: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  color: #c20f24;
  display: block;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  transition: .2s;
  width: 40px;
}
.archive-navigation li a:hover {
  background-color: #c20f24;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .27);
  color: #fff;
}
/* current_page */
.archive-navigation span {
  background-color: #c20f24;
  color: #fff;
}

.archive-navigation li a.link_next,
.archive-navigation li a.link_before {
  width: 56px;
}

/* breadcrumb
--------------------------------------------------*/
.breadcrumb {
  font-size: 12px;
  margin-bottom: 24px;
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb li::after {
  content: '>';
  display: inline-block;
  margin: 0 .25em 0 .5em;
}
.breadcrumb li:last-child::after {
  content: none;
}
.breadcrumb li a {
  text-decoration: none;
}

/* privacy
--------------------------------------------------*/
.privacy-info {
  font-size: 12px;
}
.privacy-info dt {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 16px;
}
.privacy-info dd {
  margin-bottom: 40px;
}

/* 記事一覧
--------------------------------------------------*/
.news-list--archive {
  margin-top: 40px;
}
.news-list--archive li {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.news-list--archive li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* entry post
--------------------------------------------------*/
.entry-post {
  float: left;
  width: 73%;
}
.entry-aside {
  float: left;
  margin-left: 5%;
  width: 22%;
}
.entry-post__image {
  margin-bottom: 16px;
}
.entry-post__image img {
  display: block;
  height: auto;
  width: 100%;
}
.entry-post__content {
  font-size: 15px;
  line-height: 1.8;
}
.entry-post__content p {
  margin: 1.5em 0;
}
.entry-post__content p:last-child {
  margin-bottom: 0;
}
.entry-post__content img {
  height: auto;
  max-width: 100%;
}
.entry-post__content a {
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  .entry-post {
    border-bottom: 1px solid #ddd;
    float: none;
    margin-bottom: 40px;
    padding-bottom: 40px;
    width: 100%;
  }
  .entry-aside {
    float: none;
    width: 100%;
    margin: 0;
  }
}

/* bnr (sidebar)
--------------------------------------------------*/
.bnr-area img{
  width: 100%;
}
.bnr-area a{
  display: block;
}
.bnr-area dt{
  margin-bottom: -3px;
}
.bnr-area dd{
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 16px;
}


/* widget (sidebar)
--------------------------------------------------*/
.widget {
  margin-bottom: 40px;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget-header {
  border-left: 4px solid #cf0a2c;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 16px;
  padding-left: 8px;
}
.widget-header span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
.widget-content {
  font-size: 14px;
  padding-left: .5em;
}
.widget-content a {
  color: #231815;
  text-decoration: none;
}
.widget-content > .widget-list > .widget-list-item {
  margin-bottom: .5em;
}
.widget-content > .widget-list > .widget-list-item:last-child {
  margin-bottom: 0;
}
.widget-content > .widget-list > .widget-list-item > .widget-list {
  padding-left: .5em;
}


/* page hero image
--------------------------------------------------*/
.page-content {
  padding-top: 400px;
}
.page-content__main {
  background-color: #fff;
  padding: 0 16px;
  position: relative;
}
.page-content__inner {
  background: #fff;
  -webkit-box-shadow: 0 -16px 40px -16px rgba(0,0,0,.5);
  box-shadow: 0 -16px 40px -16px rgba(0,0,0,.5);
  padding: 80px;
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
}
.page-content__inner .sub-navi {
  margin: -80px -80px 80px;
}
.page-content__header {
  max-height: 400px;
  overflow: hidden;
  background: #0f0f16;;
  height: 400px;
  position: fixed;
  top: 0; right: 0; left: 0;
}
.page-content__header::after {
  background-color: #645d4d;
  content: '';
  opacity: .56;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}
.page-content__header .bz-heading {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%; right: 0; left: 0;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 24px 0 0;
}

@media screen and (max-width: 768px) {
  .page-content {
    padding-top: 300px;
  }
  .page-content__header {
    height: 300px;
  }
  .page-content__header .bz-heading {
    font-size: 32px;
    line-height: 1;
    margin-top: 16px;
  }
  .page-content__inner {
    padding: 24px;
  }
  .page-content__inner .sub-navi {
    margin: -40px -24px 40px;
  }
}

@media screen and (max-width: 320px) {
  .page-content__header .bz-heading {
    font-size: 24px;
  }
  .page-content__header .bz-heading span {
    font-size: 13px;
  }
  .page-content__main {
    padding: 0;
  }
  .page-content__inner {
    padding: 16px;
  }
  .page-content__inner .sub-navi {
    margin: -40px -16px 40px;
  }
}

#particles-js {
  background: #0f0f16;
}

/* sub navigation
--------------------------------------------------*/
.sub-navi {
  background-color: #192227;
  margin-bottom: 80px;
}
.sub-navi ul {
  margin: 0 auto;
  max-width: 1140px;
}
.sub-navi ul::after {
  clear: both;
  content: '';
  display: table;
}
.sub-navi li {
  float: left;
  position: relative;
  text-align: center;
}
.sub-navi li.current::after {
  background-color: #cf0a2c;
  border-radius: 2px;
  content: '';
  height: 4px;
  position: absolute;
  bottom: -2px; right: 0; left: 0;
}
.sub-navi li a {
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  padding: 16px 0;
}
/* page company */
.page-company .sub-navi li {
  width: 20%;
}
/* page service */
.page-service .sub-navi li {
  width: 50%;
}

@media screen and (max-width: 640px) {
  .sub-navi li a {
    font-size: 9px;
  }
  .sub-navi li a span {
    display: none;
  }
}


/*==================================================
 # service
==================================================*/
/* オリジナルサービス
--------------------------------------------------*/
.service-list > ul {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.service-list > ul > li {
  margin-bottom: 40px;
  padding: 16px 16px 80px;
  position: relative;
  width: 50%;
}
.service-list__image {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.service-list__image img {
  display: block;
  height: auto;
  max-height: 40px;
  max-width: 100%;
}
.service-list__name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: .5em;
}
.service-list__desc {
  color: #555;
  font-size: 14px;
}
.service-list__link {
  margin: 0 -8px;
  overflow: hidden;
  position: absolute;
  right: 16px; bottom: 16px; left: 16px;
}
.service-list__link li {
  float: left;
  padding: 0 8px;
  width: 50%;
}
.service-list__link a {
  font-size: 12px;
  display: block;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
}
.service-list__link-site {
  background-color: #192227;
  color: #fff;
}
.service-list__link-contact {
  background-color: #e7e7e7;
  color: #192227;
}

@media screen and (max-width: 640px) {
  .service-list > ul > li {
    width: 100%;
  }
}

/* インターネットマーケティング
--------------------------------------------------*/
.page-service__desc {
  font-size: 14px;
  margin-bottom: 80px;
}
.page-service__desc h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: .5em;
}
.service-image {
  margin-bottom: 16px;
  width: 100%;
}
.service-image--sp {
  display: none;
}

/* buzz style */
.service-buzzstyle {
  margin-bottom: 80px;
}
.flow-buzz-style {
  display: table;
  font-size: 14px;
  width: 100%;
}
.flow-buzz-style li {
  margin-bottom: 40px;
  position: relative;
}
.flow-buzz-style li::after {
  background-image: url(../images/service/arrow_down.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: 24px;
  background-size: 24px;
  content: '';
  display: block;
  height: 24px;
  width: 180px;
  position: absolute;
  bottom: -32px; left: 0;
}
.flow-buzz-style li:last-child {
  margin-bottom: 0;
}
.flow-buzz-style li:last-child::after {
  content: none;
}
.flow-buzz-style__heading {
  background-color: #d6d6d6;
  display: table-cell;
  font-weight: bold;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  width: 180px;
}
.flow-buzz-style__desc {
  display: table-cell;
  padding: 8px;
  vertical-align: middle;
}

/* value */
.about-service-value {
  font-size: 14px;
}
.about-service-value li {
  margin-bottom: 24px;
}
.about-service-value li:last-child {
  margin-bottom: 0;
}
.about-service-value__heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}
.about-service-value__heading span {
  color: #231815;
  font-size: 24px;
  font-family: futura-pt;
  margin-right: .5em;
}

@media screen and (max-width: 414px) {
  .service-image--pc {
    display: none;
  }
  .service-image--sp {
    display: block;;
  }
  .flow-buzz-style__heading {
    display: block;
    font-size: 12px;
    width: 100%;
  }
  .flow-buzz-style__desc {
    display: block;
  }
  .flow-buzz-style li::after {
    width: 100%;
  }
}

/*==================================================
 # company
==================================================*/

/* top message
--------------------------------------------------*/
.top-message {
  border-bottom: 1px solid #e7e7e7;
  font-size: 14px;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.top-message__heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1.5em;
}
.top-message__name {
  font-weight: bold;
  margin-top: 1.5em;
  text-align: right;
}
/* spec */
.top-message-spec::after {
  clear: both;
  content: '';
  display: table;
}
.top-message-spec__image {
  float: left;
  width: 240px;
}
.top-message-spec__image img {
  display: block;
  width: 100%;
}
.top-message-spec__profile {
  padding-left: 264px;
}
.top-message-spec__name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
}
.top-message-spec__name span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
.top-message-spec__content {
  font-size: 14px;
}
.top-message-spec__link {
  margin-top: 16px;
}
.top-message-spec__link a {
  border: 1px solid #231815;
  color: #231815;
  display: inline-block;
  font-weight: bold;
  padding: 4px 40px 4px 16px;
  position: relative;
  text-decoration: none;
}
.top-message-spec__link a::after {
  background: url(../images/icon_open.png) no-repeat 0 0;
  -webkit-background-size: 24px 24px;
  background-size: 24px 24px;
  content: '';
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 50%; right: 8px;
  margin-top: -12px;
}

@media screen and (max-width: 414px) {
  .top-message-spec__image {
    float: none;
    margin: 0 auto 24px;
    width: 160px;
  }
  .top-message-spec__profile {
    padding-left: 0;
  }
}

/* officer
--------------------------------------------------*/
.officer-list .officer {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.officer-list .officer:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.officer__info {
  float: left;
  width: 240px;
  position: relative;
}
.officer__image {
  max-width: 240px;
}
.officer__image img {
  display: block;
  width: 100%;
}
.officer__name {
  background-color: rgba(255,255,255,.8);
  font-size: 16px;
  font-weight: bold;
  padding: 8px;
  text-align: center;
  position: absolute;
  right: 0; bottom: 0; left: 0;
}
.officer__title {
  font-size: 12px;
  font-weight: normal;
  margin-right: .5em;
}
.officer__history {
  padding-left: 248px;
  font-size: 14px;
}
.officer__history th {
  font-size: 12px;
  font-weight: bold;
  padding: 8px 16px;
  text-align: left;
  white-space: nowrap;
}

@media screen and (max-width: 568px) {
  .officer__info {
    float: none;
    margin: 0 auto 24px;
  }
  .officer__history {
    padding-left: 0;
  }
  .officer__image {
    width: 100%;
  }
}

/* access
--------------------------------------------------*/
.access__heading {
  font-size: 16px;
  font-weight: bold;
  margin: 2em 0 1em;
}
.access__address {
  font-size: 14px;
  margin-bottom: 24px;
}
.access__address ul {
  font-size: 12px;
  margin-top: .5em;
}
.see-gmaps {
  font-size: 14px;
  margin-top: 16px;
  text-align: right;
}

.map-canvas {
  height: 480px;
  width: 100%;
}

#map-canvas,
#map-canvas--kotobuki {
  height: 480px;
  width: 100%;
}

/* officer
--------------------------------------------------*/
.buzz-vision__content p {
  margin-bottom: 1em;
}
.buzz-vision__content p:last-child {
  margin-bottom: 0;
}
.buzz-vision__content b {
  font-size: 16px;
  font-weight: bold;
}

/*==================================================
# post
==================================================*/
.entry-post__heading {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}
.entry-post__meta {
  border-bottom: 1px solid #e7e7e7;
  color: #999;
  font-size: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  padding-bottom: 16px;
}
.entry-post__meta p {
  float: left;
}

@media screen and (max-width: 375px) {
  .entry-post__heading {
    font-size: 18px;
  }
}

/* page-content__header */
#canvas-basic {
  height: 100%;
  opacity: .4;
  width: 100%;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}

.page-post .page-content__header {
  background: #d31027;
  background: -webkit-linear-gradient(to left, #d31027 , #ea384d);
  background: linear-gradient(to left, #d31027 , #ea384d);

  background: #4CA1AF;
  background: -webkit-linear-gradient(to left, #4CA1AF , #C4E0E5);
  background: linear-gradient(to left, #4CA1AF , #C4E0E5);
}
.page-post .page-content__header::after {
  content: none;
}

.page-company .page-content__header {
  background: url(../images/company/bg_company.jpg) no-repeat center;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}

.page-service .page-content__header {
  background-image: url(../images/service/bg_service.jpg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}

.page-contact .page-content__header {
  background: #EC6F66;
  background: -webkit-linear-gradient(to left, #EC6F66 , #F3A183);
  background: linear-gradient(to left, #EC6F66 , #F3A183);
}
.page-contact .page-content__header::after {
  content: none;
}

.page-privacy .page-content__header,
.page-disclaimer .page-content__header {
  background: #FF512F;
  background: -webkit-linear-gradient(to left, #FF512F , #DD2476);
  background: linear-gradient(to left, #FF512F , #DD2476);
}
.page-privacy .page-content__header::after,
.page-disclaimer .page-content__header::after {
  content: none;
}

/* mobile navigation
--------------------------------------------------*/
.wrapper.scale-down {
  margin-bottom: 0;
  height: 100vh;
  overflow-x: hidden;
}
.wrapper {
  //height: 100vh;
  background-color: #fff;
  //margin-bottom: 128px;
  -webkit-transition: transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
}
.wrapper.scale-down {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

.mobile-navi__trigger {
  display: none;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 50%; right: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mobile-navi__trigger a {
  display: block;
  height: 24px;
  width: 24px;
  position: relative;
}
.mobile-navi__trigger a::before,
.mobile-navi__trigger a::after {
  background: #192227;
  border-radius: 2px;
  display: block;
  height: 3px;
  width: 24px;
  position: absolute;
}
.mobile-navi__trigger a::before,
.mobile-navi__trigger a::after {
  content: '';
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}
.mobile-navi__trigger a::before {
  top: 4px;
  left: 0;
}
.mobile-navi__trigger a::after {
  bottom: 4px;
  right: 0;
}
.mobile-navi__trigger a:hover::before {
  left: -4px;
}
.mobile-navi__trigger a:hover::after {
  right: -4px;
}

.mobile-navi {
  background-color: #cf0a2c;
  background-color: #fff;
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  width: 240px;
  height: 100%;
  overflow-y: auto;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0.4s;
  -moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0.4s;
  transition: transform 0.4s 0s, box-shadow 0s 0.4s;
}
.mobile-navi.is-visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-overflow-scrolling: touch;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0s;
  -moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0s;
  transition: transform 0.4s 0s, box-shadow 0s 0s;
}
.mobile-navi header {
  background-color: #cf0a2c;
  color: #fff;
  margin-bottom: 16px;
  padding: 16px;
  position: relative;
}
.mobile-navi header h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
.mobile-navi__close {
  height: 24px;
  width: 24px;
  position: absolute;
  top: 50%; right: 8px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mobile-navi__close::before,
.mobile-navi__close::after {
  background-color: #fff;
  border-radius: 2px;
  content: '';
  display: block;
  height: 3px;
  width: 24px;
  position: absolute;
  top: 50%;
}
.mobile-navi__close::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  -o-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.mobile-navi__close::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.mobile-navi ul li a {
  color: #231815;
  display: block;
  line-height: 1.2;
  padding: 16px;
  text-decoration: none;
}
.mobile-navi ul li p {
  font-family: 'futura-pt', sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.mobile-navi ul li span {
  color: #999;
  display: block;
  font-size: 12px;
}

/* overlay */
.mobile-navi__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.35);
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  transition: opacity 0.4s 0s, visibility 0s 0.4s;
}
.mobile-navi__overlay.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.4s 0s, visibility 0s 0s;
  transition: opacity 0.4s 0s, visibility 0s 0s;
  z-index: 1;
}

@media screen and (max-width: 1012px) {
  .mobile-navi__trigger {
    display: block;
  }
}

/* form select
--------------------------------------------------*/
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #333;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
select {
  padding: 8px 24px 8px 12px;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  width: 100%;
  display: block;
  height: 40px;
  font-size: 12px;
  color: #231815;
  font-weight: bold;
  cursor: pointer;
  background: none;
  position: relative;
  z-index: 15;
  vertical-align: middle;
  line-height: 24px;
  box-sizing: border-box;
  border: none;
}
.select-wrapper::before {
  background-image: url(../images/arrow_btm.svg);
  background-repeat: no-repeat;
  background-position: center center;
  content: '';
  display: block;
  height: 24px;
  pointer-events: none;
  width: 24px;
  position: absolute;
  top: 50%; right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.select-wrapper select option {
  color: #333;
}
.select-wrapper select::-ms-expand {
  display: none;
}

/* share button
--------------------------------------------------*/
.entry-post__meta .share-btn {
  float: right;
}
.share-btn li {
  display: inline-block;
  height: 20px;
}
.share-btn li span {
  vertical-align: top !important;
}
.share-btn li iframe {
  vertical-align: top;
}

/*==================================================
# contact
==================================================*/
/* heading */
.contact-content__heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}
/* form-list */
.form-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -8px;
}
.form-list li {
  padding: 8px;
  width: 33.333%;
}
.form-list li a {
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .27);
          box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .27);
  border-radius: 8px;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  min-height: 80px;
  line-height: 1.4;
  padding: 16px 16px 16px 36px;
  position: relative;
  text-decoration: none;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}
.form-list li a::before {
  background: url(../images/contact/arrow_contact.svg) no-repeat 0 0;
  content: '';
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-list li a:hover {
  -webkit-box-shadow: 0 12px 24px -8px rgba(0, 0, 0, .4);
          box-shadow: 0 12px 24px -8px rgba(0, 0, 0, .4);
}

@media screen and (max-width: 758px) {
  .form-list li {
    width: 50%;
  }
}

@media screen and (max-width: 414px) {
  .form-list li {
    width: 100%;
  }
}

/* contact notice */
.contact-notice {
  margin-bottom: 24px;
}
.contact-notice ul {
  font-size: 12px;
  list-style: disc;
  margin-top: 1.5em;
  padding-left: 1.5em;
}
.telephone-image {
  margin-bottom: 40px;
}
.telephone-image:last-child {
  margin-bottom: 0;
}
.telephone-image img {
  display: block;
  max-width: 100%;
}

/* contact form
--------------------------------------------------*/
.aform-header {
  display: none;
}

.contact-form {
  border-top: 1px solid #ddd;
  margin: 0 auto;
  max-width: 800px;
}
.contact-form .aform-content dl input,
.contact-form .aform-content dl textarea,
.contact-form .aform-content dl select {
  border: 1px solid #ddd;
  font-size: 100%;
}
.contact-form .aform-content .aform-validation,
.contact-form .aform-content .aform-input-example {
  color: #999;
}
.contact-form .aform-content .aform-twice-note {
  color: #999;
  font-size: 90%;
  margin-top: .5em;
}
.contact-form .aform-hdln {
  font-size: 100%;
  margin: .5em 0;
}
.contact-form .aform-input-example {
  color: #999;
}
.contact-form .aform-radio-ul li {
  display: inline-block;
}
.contact-form .aform-content .submit {
  background: transparent;
}
.contact-form .aform-content .submit input {
  background-color: #cf0a2c;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0 auto;
  max-width: 400px;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  -webkit-box-shadow: 0 12px 32px -12px rgba(0,0,0,.4);
  box-shadow: 0 12px 32px -12px rgba(0,0,0,.4);
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  -webkit-appearance: none;
}
.contact-form .aform-content .submit input:hover {
  -webkit-box-shadow: 0 16px 32px -12px rgba(0,0,0,.6);
  box-shadow: 0 16px 32px -12px rgba(0,0,0,.6);
}

/* confirm */
.contact-form--confirm__heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
  text-align: center;
}
#aform_confirm_msg {
  margin-top: 24px;
}
#aform_btn_back {
  background: #ddd;
  color: #333;
  display: inline-block;
  width: 30%
}
#aform_btn_submit {
  display: inline-block;
  width: 68%;
}

/* error */
.aform-error-list {
  background: #f7f7f7;
  margin: 24px 0;
  padding: 16px;
}
@media screen and (max-width: 568px) {
  .contact-form--confirm {
    width: 100%;
  }
  .contact-form .aform-content .submit input {
    font-size: 12px;
    max-width: inherit;
  }
  #aform_btn_back {
    display: block;
    margin: 0 0 16px;
    width: 100%
  }
  #aform_btn_submit {
    display: block;
    width: 100%;
  }
}

/*==================================================
# IR 電子公告
==================================================*/
.ir-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ir-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.ir-link a:hover {
  text-decoration: underline;
}

.ir-link a::before {
  background-image: url('/theme_static/images/icons/icon_pdf.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px;
  content: '';
  display: block;
  height: 32px;
  margin-right: 8px;
  width: 32px;
}

@media screen and (max-width: 568px) {
  .ir-link {
    display: block;
  }
  .ir-link span {
    font-size: 10px;
  }
}

.ir-notfound {
  background-color: #f7f7f7;
  border-radius: 4px;
  padding: 16px;
  text-align: center;
}
