.hero-outer {
  width: 100%;
  height: 100vh;
  max-height: 1360px;
  min-height: 700px;
  overflow: hidden;
  position: relative;
}
.hero-outer h2 {
  font-size: 48px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-outer .hero {
  height: 100%;
  width: 72%;
  position: absolute;
  right: 0;
  top: 0;
}
.hero-outer .hero::before, .hero-outer .hero::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-outer .hero::before {
  background-color: rgba(39, 125, 221, 0.1);
  z-index: 1;
}
.hero-outer .hero::after {
  z-index: 2;
}
.hero-outer .inner-narrow {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
}
.hero-outer .content {
  max-width: 700px;
  padding-right: 50px;
  -webkit-transition: all 1500ms cubic-bezier(0.04, 0.68, 0.12, 0.86);
  transition: all 1500ms cubic-bezier(0.04, 0.68, 0.12, 0.86);
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.hero-outer .content.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hero-outer a.readmore {
  margin-top: 40px;
}

.news-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 55px;
}
.news-box article {
  width: 80%;
  overflow: hidden;
  position: relative;
  margin: auto;
}
.news-box article::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #efefef;
}
.news-box a {
  padding: 30px 50px;
  text-decoration: none;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-box a:hover {
  color: #fff;
  background: #277ddd;
  background: -webkit-gradient(linear, left top, right top, color-stop(32%, #bd1c1c), to(#ff0404));
  background: linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
  background: -ms-linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
}
.news-box a:hover .new {
  color: #fff;
}
.news-box a:hover .new:before {
  background-color: #fff;
}
.news-box a .news-ttl {
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: nowrap;
    display: block;
    width: 100%;
}

.pub-time {
  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-right: 3rem;
}
.pub-time span.new {
  margin-left: 2rem;
  width: 50px;
  text-align: center;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.pub-time span.new:before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  background-color: #000000;
}

.news-box-outer {
  width: 90%;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.news-box-outer .inner-narrow {
  background-color: #fff;
  width: 90%;
  padding-top: 80px;
}
.news-box-outer .inner-narrow .sectionttl {
  text-align: center;
}
.news-box-outer .inner-narrow .news-box article {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-box-outer .inner-narrow .news-box article:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.news-box-outer .inner-narrow .news-box article:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.news-box-outer .inner-narrow .news-box article:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.news-box-outer .inner-narrow .news-box article:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.news-box-outer .inner-narrow .news-box article:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.news-box-outer .inner-narrow .news-box article.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.news-box-outer > div {
  width: 70%;
  position: relative;
  z-index: 5;
}
.news-box-outer a.readmore {
  margin: auto;
}
.news-box-outer a.readmore:hover {
  border: 1px solid #fff;
  color: #fff;
}
.news-box-outer .circular {
  width: 500px;
  min-width: 500px;
  height: 500px;
  padding: 20px;
  border-radius: 300px;
  border: 1px solid #bb602b;
  -webkit-transform: translate(20%, -20%);
          transform: translate(20%, -20%);
}
.news-box-outer .circular > div {
  height: 100%;
  background: url(../../style/img/bg-circular.png) no-repeat center;
  border-radius: 300px;
  overflow: hidden;
  padding: 50px;
}
.news-box-outer .circular .hasbg {
  height: 100%;
  border-radius: 300px;
  overflow: hidden;
}

.inkuche {
  position: relative;
  padding: 80px 0;
}
.inkuche .left-btn {
  width: 865px;
  height: 865px;
  border-radius: 500px;
  left: 0;
  top: 50%;
  background: #277ddd;
  background: -webkit-gradient(linear, left top, right top, color-stop(32%, #bd1c1c), to(#ff0404));
  background: linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
  background: -ms-linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
  position: absolute;
  z-index: -1;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  opacity: 0;
  -webkit-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
  transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}
.inkuche .right-btn {
  width: 497px;
  height: 497px;
  border-radius: 500px;
  right: 0;
  bottom: 0;
  background: #277ddd;
  background: -webkit-gradient(linear, left top, right top, color-stop(32%, #bd1c1c), to(#ff0404));
  background: linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
  background: -ms-linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
  position: absolute;
  z-index: -1;
  -webkit-transform: translate(60%);
          transform: translate(60%);
  opacity: 0;
  -webkit-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
  transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}
.inkuche.animate .left-btn {
  opacity: 1;
  -webkit-transform: translate(-60%, -50%);
          transform: translate(-60%, -50%);
}
.inkuche.animate .right-btn {
  opacity: 1;
  -webkit-transform: translate(20%);
          transform: translate(20%);
}
.inkuche hgroup {
  text-align: center;
}
.inkuche a.readmore {
  margin: 60px auto 0;
}

.inkuche-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -20px;
}
.inkuche-inner article {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  width: calc((100% - 120px) / 3);
  -webkit-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.inkuche-inner article:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.inkuche-inner article:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.inkuche-inner article:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.inkuche-inner article:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.inkuche-inner article.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.inkuche-inner a {
  display: block;
  overflow: hidden;
  position: relative;
}
.inkuche-inner a:hover .hasbg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.inkuche-inner a:hover .border-animation {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.inkuche-inner a:before {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.inkuche-inner a .border-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  -webkit-transform: translateY(-101%);
          transform: translateY(-101%);
  -webkit-transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 20px;
  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;
}
.inkuche-inner .hasbg {
  height: 0;
  padding-top: 65%;
  -webkit-transition: .3s linear;
  transition: .3s linear;
}
.inkuche-inner .info {
  width: 100%;
  margin-top: 30px;
  position: relative;
  padding-left: 30px;
}
.inkuche-inner .info:before {
  content: "";
  width: 25px;
  height: 2px;
  background-color: #fff;
  padding-right: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

section.service {
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
section.service p {
  font-size: 16px;
}
section.service .sectionttl.oneline {
  width: 20%;
  text-align: center;
  margin: 0;
}
section.service .sectionttl.oneline .service-title {
  font-weight: bold;
  line-height: 2;
  color: #000;
}
section.service .sectionttl.oneline .service-title span {
  white-space: nowrap;
}
section.service .inner-wide {
  width: 70%;
}
section.service .inner-wide article a {
  color: #000000;
}
section.service .inner-wide article a .service-img {
  overflow: hidden;
}
section.service .inner-wide article a:hover {
  text-decoration: none;
}
section.service .inner-wide article a:before {
  content: none;
}
section.service .inner-wide .info {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #c30000;
}
section.service .inner-wide .info:before {
  background-color: #c30000;
}
section.service .inner-wide .nowarp {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
section.service .readmore {
  margin: 50px auto 0;
}
section.service .readmore:hover {
  color: #fff;
  border-color: #fff;
}
section.service:before {
  content: "";
  position: absolute;
  left: 20%;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  z-index: -2;
}

.works {
  position: relative;
  margin-top: 150px;
}
.works::before {
  content: '';
  width: 90%;
  height: 100%;
  top: 0;
  right: 0;
  background: #690000;
  position: absolute;
  z-index: -1;
}
.works > div {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
    position: relative;
}
.works .works-img {
  width: 55%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: 0;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.works .works-img.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.works > div::after {
  content: '';
  width: 497px;
  height: 497px;
  border-radius: 500px;
  right: 45%;
  top: 50%;
  background: #277ddd;
  background: -webkit-gradient(linear, left top, right top, color-stop(32%, #bd1c1c), to(#ff0404));
  background: linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
  background: -ms-linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
  position: absolute;
  z-index: -1;
  -webkit-transform: translate(20%, -50%);
          transform: translate(20%, -50%);
}
.works .works-inner {
  width: 33%;
  margin: 100px 0;
  opacity: 0;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
  -webkit-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.works .works-inner .sectionttl {
  width: 20%;
  margin: 0;
  text-align: center;
  color: #fff;
}
.works .works-inner .sectionttl .ttlBar {
  background-color: #fff;
}
.works .works-inner .readmore {
  margin-top: 50px;
}
.works .works-inner.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.staff {
  margin-top: 150px;
  position: relative;
}
.staff hgroup {
  text-align: center;
}
.staff .readmore {
  margin: 70px auto;
}
.staff .left-btn {
  width: 865px;
  height: 865px;
  border-radius: 500px;
  right: 0;
  top: 50%;
  background: #277ddd;
  background: -webkit-gradient(linear, left top, right top, color-stop(32%, #bd1c1c), to(#ff0404));
  background: linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
  background: -ms-linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
  position: absolute;
  z-index: -1;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  opacity: 0;
  -webkit-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
  transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}
.staff .right-btn {
  width: 497px;
  height: 497px;
  border-radius: 500px;
  left: 0;
  bottom: 0;
  background: #277ddd;
  background: -webkit-gradient(linear, left top, right top, color-stop(32%, #bd1c1c), to(#ff0404));
  background: linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
  background: -ms-linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
  position: absolute;
  z-index: -1;
  -webkit-transform: translate(-60%);
          transform: translate(-60%);
  opacity: 0;
  -webkit-transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
  transition: all 700ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}
.staff.animate .left-btn {
  opacity: 1;
  -webkit-transform: translate(60%, -50%);
          transform: translate(60%, -50%);
}
.staff.animate .right-btn {
  opacity: 1;
  -webkit-transform: translate(-20%);
          transform: translate(-20%);
}
.staff .inner-wide .border-animation dt {
  width: 75px;
  border-radius: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  background: #277ddd;
  background: -webkit-gradient(linear, left top, right top, color-stop(32%, #bd1c1c), to(#ff0404));
  background: linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
  background: -ms-linear-gradient(left, #bd1c1c 32%, #ff0404 100%);
}

.shop-info {
  padding: 150px 0;
  position: relative;
}
.shop-info::before {
  display: block;
  width: 75%;
  height: 120%;
  bottom: 0;
  left: 0;
  z-index: -2;
  position: absolute;
  background: #fafafa;
}
.shop-info .inner-wide article {
  width: 50%;
}
.shop-info .inkuche-inner .info {
  font-weight: 900;
  font-size: 18px;
}
.shop-info .inkuche-inner .info:before {
  background-color: #000000;
}
.shop-info .inkuche-inner .sectionttl {
  width: 20%;
  margin: 0;
  margin-left: 20%;
  text-align: center;
}
.shop-info .inkuche-inner article .ttlBar {
  margin: 1rem auto;
}
.shop-info .inkuche-inner article:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.shop-info .inkuche-inner article:first-child .sectionttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.shop-info .inkuche-inner article:first-child .ttlBar {
  margin-top: 0;
}
.shop-info .inkuche-inner article:last-child .ttlBar {
  margin-bottom: 0;
}
.shop-info .inkuche-inner .border-animation {
  background: rgba(0, 0, 0, 0.35);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.shop-info .inkuche-inner .border-animation span {
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 12%;
  margin-bottom: -8px;
}
.shop-info .inkuche-inner .border-animation svg {
  width: 20%;
  width: 187px;
  height: 18px;
}
.shop-info .inkuche-inner .border-animation svg path {
  fill: #fff;
}

@media (max-width: 1600px) {
  .shop-ttl {
    padding: 0;
  }

  .news-box a {
    padding: 20px;
  }

  .news-box-outer .news-button {
    font-size: 16px;
  }
}
@media (max-width: 1470px) {
  .inkuche-inner article {
    width: calc((100% - 90px) / 3);
  }

  .works .works-inner {
    margin: 90px 0;
  }
  .works .works-inner .sectionttl {
    margin-bottom: 40px;
  }
  .works .works-inner .readmore {
    margin-top: 40px;
  }
}
@media (max-width: 1400px) {
  .shop-info {
    padding: 120px 0;
  }
}
@media (max-width: 1280px) {
  .inkuche-inner .hasbg {
    padding-top: 100%;
  }

  .inkuche-inner article {
    width: calc((100% - 60px) / 3);
  }

  .inkuche, .staff {
    overflow: hidden;
  }
}
@media (max-width: 1200px) {
  .news-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .news-box-outer::before {
    width: 70%;
    bottom: -32px;
  }
  .news-box-outer > div {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .news-box-outer .inner-narrow {
    width: 100%;
  }
  .news-box-outer .news-button {
    position: relative;
    width: 200px !important;
    margin: 30px auto 0;
  }
  .news-box-outer .news-button.bg-black {
    background: transparent;
  }
  .news-box-outer .news-button a {
    width: 100%;
    height: 36px;
    border: 1px solid #fff;
    color: #fff;
  }

  .works .works-inner {
    width: 40%;
    margin: 60px 0;
  }
}
@media (max-width: 1150px) {
  .hero-outer .hero {
    width: 100%;
  }

  .news-box-outer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .news-box-outer .circular {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media (max-width: 1000px) {
  .hero-outer .content {
    padding-right: 20px;
  }

  .inkuche {
    padding: 60px 0;
  }
  .inkuche::before {
    width: 700px;
    height: 700px;
  }
  .inkuche::after {
    width: 350px;
    height: 350px;
  }

  .hero-outer h2 {
    font-size: 36px;
  }

  .shop-info a.hide {
    display: block;
    margin: 40px auto 0;
  }

  .hero-outer .hero {
    width: 100%;
  }

  section.service p {
    font-size: 14px;
  }

  .sevice-item .service3-button-outer {
    -webkit-transform: translate(0, -90px);
            transform: translate(0, -90px);
  }
  .sevice-item.animate .service3-button-outer {
    -webkit-transform: translate(0, -60px);
            transform: translate(0, -60px);
  }

  section.service {
    padding: 60px 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.service a {
    position: relative;
  }
  section.service .columns > a {
    width: 100%;
  }
  section.service .columns > a:last-child {
    margin-top: 180px;
  }
  section.service .columns-outer {
    width: 100%;
    margin-top: 100px;
  }
  section.service::before {
    display: none;
  }
  section.service .sectionttl.oneline {
    width: 100%;
    margin-bottom: 50px;
  }
  section.service .inner-wide {
    width: 100%;
  }

  .news-box-outer .inner-narrow {
    padding-top: 50px;
  }

  .news-box {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .news-box article {
    width: 100%;
  }
  .news-box article::before {
    content: none;
  }
  .news-box a {
    padding: 10px 20px;
    border-bottom: 1px solid #efefef;
  }

  .pub-time {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-right: 1rem;
  }
  .pub-time span.new {
    margin-left: 1rem;
  }

  .news-box-outer .news-button {
    width: 180px !important;
  }

  .inkuche-inner article {
    width: calc((100% - 20px) / 3);
  }

  .sectionttl.oneline {
    margin: 0 auto 50px;
  }

  .news-box-outer .inner-narrow {
    width: 90%;
  }

  .news-box-outer .circular {
    width: 300px;
    min-width: 300px;
    height: 300px;
  }
  .news-box-outer .circular > div {
    padding: 30px;
  }

  .staff::before {
    width: 700px;
    height: 700px;
  }
  .staff::after {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 768px) {
  .inkuche-inner .info {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  .works::before,
  .shop-info::before {
    width: 100%;
  }

  .works .works-img {
    width: 45%;
    padding: 20%;
    left: 0;
  }
  .works .works-inner {
    width: 50%;
    margin: 50px 0;
  }

  .shop-info::before {
    height: 100%;
  }
}
@media (max-width: 750px) {
  .header-right .emailli a.bg-black:hover {
    background: transparent;
  }

  .inkuche .inner-wide {
    width: 100%;
  }
  .inkuche .inkuche-inner {
    margin: 0 auto;
    width: 80%;
  }
  .inkuche .inkuche-inner .info {
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
  .inkuche .readmore {
    margin: 30px auto !important;
  }

  .sectionttl.oneline {
    text-align: center;
  }

  section.service {
    width: 80%;
  }

  .works .works-inner .readmore {
    margin: 30px auto 0;
  }

  .shop-info .inner-wide {
    width: 80%;
    margin: 0 auto;
  }

  .footer-box {
    padding-top: 30px;
  }
  .footer-box .inner-wide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
  .footer-box .inner-wide .tel-footer {
    width: 100%;
  }
  .footer-box .footer-copyright {
    width: 95%;
  }

  .news-box-outer .inner-narrow {
    width: 100%;
  }

  .staff .inner-wide {
    width: 80%;
  }
}
@media (max-width: 700px) {
  .infos-outer .infos > div {
    width: 100%;
  }
  .infos-outer .infos > div:first-child {
    margin-bottom: 20px;
  }

  .news-box-outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .news-box-outer > div {
    width: 100%;
  }
  .news-box-outer .circular {
    margin-top: 50px;
  }

  .works .works-img {
    height: 0;
    top: auto;
  }
  .works .works-img::after {
    content: none;
  }
  .works .works-inner .sectionttl {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .news-box-outer .news-button.bg-black {
    margin: 30px auto 0 35%;
  }

  .inkuche .inkuche-inner,
  section.service .inner-wide,
  .works > div,
  .shop-info .inner-wide {
    width: 85%;
  }
}
@media (max-width: 500px) {
  .hero-outer h2 {
    font-size: 7vw;
  }

  .inkuche-inner article {
    width: 100%;
    margin-bottom: 50px;
  }
  .inkuche-inner article:last-child {
    margin-bottom: 0px;
  }

  .inkuche-inner .info {
    margin-top: 10px;
  }

  .service-button {
    width: 140px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }

  .works > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .works > div .works-img {
    width: 100%;
    margin-top: 50px;
    padding: 33%;
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .works > div .works-inner {
    width: 100%;
  }

  .shop-info .inkuche-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .shop-info .inkuche-inner article {
    width: 100%;
  }
  .shop-info .inkuche-inner article .sectionttl {
    width: 100%;
    margin: 0 auto;
  }
  .shop-info .inkuche-inner article:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .shop-info .inkuche-inner article:first-child .sectionttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .shop-info .inkuche-inner article:first-child .sectionttl .ttlBar {
    margin-top: 1rem;
    margin-bottom: 0;
  }

  .footer-box .inner-wide {
    width: 85%;
  }
}
@media (max-width: 420px) {
  .news-box a {
    padding: 10px;
  }

  section.service .columns > a:last-child {
    margin-top: 160px;
  }

  section.service .sevice-items {
    margin-top: 52px;
  }

  .inkuche-inner dt {
    margin-bottom: 0;
  }

  .inkuche-inner .hasbg {
    padding-top: 80%;
  }
}
@media (max-width: 400px) {
  .perspective span, .perspective span::before, .perspective span::after {
    width: 28px;
  }
}

/****20190328********/
.inkuche-inner .info {
    /* color: #c30000; */
    color:gray;
}

.inkuche-inner .info:before {
    /* background-color: #c30000; */
    background-color: gray;
}

.center {
    text-align: center;
}

.inkuche-inner article {
    margin-top: 15px;
}

.hero-outer h2 img{
  max-width: 400px;
  /*max-height: 200px;*/
}

/******20190830********/
.hero-outer .content p {
  font-size: 1.55em;
  text-shadow: 1px 0.3px 2.2px #fff;
  font-weight: 600;
}
