@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  font-family: Merino;
  font-weight: bold;
}

body {
  padding-top: 70px;
}

a {
  text-decoration: none;
  color: inherit;
}

h2, h3 {
  color: #504f4f;
}

img {
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn:hover {
  -webkit-animation: small 0.3s forwards;
          animation: small 0.3s forwards;
}

@-webkit-keyframes small {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@keyframes small {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

.header {
  position: fixed;
  top: 0;
  z-index: 10;
  opacity: 0.9;
  width: 100%;
  height: 70px;
  background: #fff;
}

.header header {
  height: 100%;
  width: calc(100% - 30px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header header .header_left img {
  margin-top: 5px;
}

.header header .header_right ul a {
  display: inline-block;
  color: white;
  padding: 7px 10px;
  margin: 15px 15px;
  border-radius: 5px;
}

.header header .header_right ul .header_child {
  position: absolute;
  top: 65px;
  right: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  visibility: hidden;
  color: black;
  background-color: #92d050;
  border-radius: 5px;
  text-align: center;
}

.header header .header_right ul .header_child a {
  margin: 2px;
  width: 100%;
}

.header header .header_right ul li:hover ul {
  -webkit-animation: list 0.3s forwards;
          animation: list 0.3s forwards;
}

@-webkit-keyframes list {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
    visibility: visible;
  }
}

@keyframes list {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
    visibility: visible;
  }
}

.header header .header_right ul .header_right_home {
  background-color: #00b0f0;
}

.header header .header_right ul .header_right_work {
  background-color: #92d050;
}

.header header .header_right ul .header_right_company {
  background-color: #ea6b14;
}

.header header .header_right ul .fa-chevron-down {
  padding-left: 5px;
}

.header header .header_right .header_hum {
  display: none;
}

@media only screen and (max-width: 730px) {
  .header header .header_right .header_hum {
    display: block;
  }
}

.header header .header_right .header_hum .header_hum_list {
  z-index: 100;
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  padding: 0 10px 0;
  background: #999;
}

.header header .header_right .header_hum .header_hum_list ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header header .header_right .header_hum .header_hum_list ul li {
  border-bottom: 1px solid #d6d6d6;
}

.header header .header_right .header_hum .header_hum_list a {
  width: 100%;
  margin: 10px 15px;
}

.header header .header_right .header_hum .header_hum_icon {
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 10px;
}

.header header .header_right .header_hum .header_hum_icon i {
  font-size: 30px;
}

.header header .header_right .header_hum .ac-parent {
  cursor: pointer;
}

.header header .header_right .header_hum .ac-parent:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 80px;
  right: 30px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: .3s;
  transition: .3s;
}

.header header .header_right .header_hum .ac-parent.open:after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.header header .header_right .header_hum .ac-child {
  display: none;
  padding-left: 30px;
}

.header_pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 730px) {
  .header_pc {
    display: none;
  }
}

.main_cover {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: .3s;
  transition: .3s;
}

.main_cover.on {
  height: 100%;
  visibility: visible;
  background: rgba(0, 0, 0, 0.2);
  z-index: 8;
}

.top_bg {
  height: 300px;
  background: url(../img/main_img.jpg) no-repeat center/cover;
  text-align: center;
  -webkit-animation-name: top_bg;
          animation-name: top_bg;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes top_bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes top_bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.top_bg .top {
  position: relative;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  color: white;
  text-shadow: 2px 2px 10px #888 , -2px  2px 10px #888 , 2px -2px 10px #888 , -2px -2px 10px #888;
}

.top_bg .top h2 {
  font-size: 30px;
  padding-top: 80px;
  opacity: 0;
  -webkit-animation-name: top_copy;
          animation-name: top_copy;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  color: white;
}

@-webkit-keyframes top_copy {
  0% {
    opacity: 0;
    -webkit-transform: translateY(18px);
            transform: translateY(18px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    opacity: 0;
  }
}

@keyframes top_copy {
  0% {
    opacity: 0;
    -webkit-transform: translateY(18px);
            transform: translateY(18px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    opacity: 0;
  }
}

.top_bg .top h1 {
  font-size: 36px;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 80px;
  text-align: center;
  -webkit-animation-name: top_company;
          animation-name: top_company;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes top_company {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes top_company {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.service {
  padding-top: 80px;
  text-align: center;
}

.service .service_contents {
  max-width: 850px;
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto;
}

@media only screen and (max-width: 730px) {
  .service .service_contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service .service_contents .service_content {
  width: 30%;
  height: 120px;
  text-align: center;
  border-radius: 10px;
}

@media only screen and (max-width: 730px) {
  .service .service_contents .service_content {
    margin: 0 auto;
    width: 70%;
    margin-bottom: 40px;
  }
}

.service .service_contents .service_content h3 {
  color: white;
}

.service .service_contents .service_content a {
  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%;
  height: 100%;
}

.service_web {
  background-color: #00b0f0;
}

.service_local {
  background-color: #92d050;
}

.service_esports {
  background-color: #ffc000;
}

.news {
  text-align: center;
  padding-top: 50px;
  width: 850px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
}

.news .news_outline {
  position: relative;
  border: 2px solid #868edd;
  border-radius: 10px;
}

.news .news_outline .news_contents {
  padding: 20px;
}

.news .news_outline .news_contents .news1, .news .news_outline .news_contents .news2, .news .news_outline .news_contents .news3 {
  margin: 20px 10px;
  border-bottom: 1px solid #868edd;
}

.news .news_outline .news_contents .news1 a, .news .news_outline .news_contents .news2 a, .news .news_outline .news_contents .news3 a {
  color: #504f4f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news .news_outline .news_contents .news1 a:hover, .news .news_outline .news_contents .news2 a:hover, .news .news_outline .news_contents .news3 a:hover {
  opacity: 0.6;
}

.news .news_outline .news_contents .news1 a .news_message, .news .news_outline .news_contents .news2 a .news_message, .news .news_outline .news_contents .news3 a .news_message {
  padding-left: 20px;
}

.news .news_more {
  color: #504f4f;
  position: absolute;
  right: 10px;
  bottom: 5px;
}

.news .news_more i {
  padding-left: 5px;
}

.news .news_more:hover {
  opacity: 0.7;
}

.footer_main {
  margin-top: 50px;
  height: 250px;
  background: #b1b1b1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 30px;
  font-size: 0.9em;
  color: white;
}

@media only screen and (max-width: 730px) {
  .footer_main {
    display: block;
    text-align: center;
    height: auto;
    margin: 50px auto 0;
  }
}

.footer_main .footer_left {
  padding-top: 40px;
}

.footer_main .footer_left a {
  display: inline-block;
  width: 110px;
  height: 40px;
}

@media only screen and (max-width: 730px) {
  .footer_main .footer_left a {
    width: 200px;
    margin: 0 auto;
  }
}

.footer_main .footer_left img {
  width: 200px;
  margin-bottom: 10px;
}

.footer_main .footer_left img:hover {
  opacity: 0.7;
}

.footer_main .footer_left .sns {
  padding-top: 10px;
}

.footer_main .footer_left .sns i {
  font-size: 20px;
  padding-right: 10px;
}

.footer_main .footer_left .sns a {
  display: inline;
}

.footer_main .footer_left .sns a:hover {
  opacity: 0.7;
}

.footer_main .footer_center, .footer_main .footer_right {
  padding-top: 30px;
}

.footer_main .footer_center li, .footer_main .footer_right li {
  padding: 10px 0;
}

.footer_main .footer_center li ul, .footer_main .footer_right li ul {
  padding-top: 10px;
  padding-left: 10px;
}

.footer_main .footer_center li a:hover, .footer_main .footer_right li a:hover {
  opacity: 0.7;
}

.footer_copy {
  font-size: 10px;
  color: #656e77;
  text-align: center;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#page-top a {
  text-decoration: none;
  width: 40px;
  text-align: center;
  display: block;
}

#page-top a:hover {
  opacity: 0.7;
}

#page-top a i {
  background-color: white;
  border-radius: 20px;
  font-size: 40px;
  color: #69c0f3;
}

.service_top {
  margin: 50px auto;
  width: 400px;
  height: 120px;
  text-align: center;
  border-radius: 10px;
  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-animation-name: service_top;
          animation-name: service_top;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@-webkit-keyframes service_top {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes service_top {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.service_top h1 {
  color: white;
}

.service_describe {
  margin-top: 50px;
}

.service_describe .service_describe_inner {
  padding: 50px 0;
  width: 900px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
}

.service_describe .service_describe_inner h2 {
  opacity: 0;
  display: inline-block;
  border-bottom: 4px solid #b1b1b1;
  -webkit-animation-name: service_describe_h2;
          animation-name: service_describe_h2;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes service_describe_h2 {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes service_describe_h2 {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.service_describe .service_describe_inner p {
  opacity: 0;
  color: #504f4f;
  line-height: 2em;
  padding-top: 20px;
  padding-left: 5%;
  -webkit-animation-name: service_describe_p;
          animation-name: service_describe_p;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes service_describe_p {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes service_describe_p {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.service_web_describe {
  background-color: #cbebe6;
}

.service_local_describe {
  background-color: #cbebd8;
}

.ad_image {
  padding-top: 50px;
  width: 900px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
}

.ad_image img {
  width: 90%;
  padding-top: 20px;
  margin: 0 auto;
}

.company, .privacy {
  color: #504f4f;
  margin: 0 50px;
}

.company h1, .privacy h1 {
  margin: 80px 50px;
  text-align: center;
}

.company h2, .privacy h2 {
  font-size: 1em;
  margin: 20px 0;
}

.privacy p, .privacy li {
  font-size: small;
}

/*コンタクトフォーム*/
/* input 要素 */
#name, #email, #subject, #email_check, #tel {
  max-width: 400px;
}

#body {
  max-width: 640px;
}

/* エラー表示 */
p.error, span.error {
  color: red;
}

/* フォーム要素（Bootstrap4 のスタイルを上書き） */
.form-control {
  border-radius: 0px;
  background-color: #fdfdfd;
  font-size: 14px;
}

.form-control:focus {
  border-color: #aadbe8;
  outline: 0;
  -webkit-box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.4);
  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.4);
  background-color: #fff;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  font-size: 13px;
}

/* Firefox 18- */
:-moz-placeholder {
  font-size: 13px;
}

/* Firefox 19+ */
::-moz-placeholder {
  font-size: 13px;
}

/* IE 10+ */
:-ms-input-placeholder {
  font-size: 13px;
}

::-webkit-input-placeholder {
  font-size: 13px;
}

::-ms-input-placeholder {
  font-size: 13px;
}

::placeholder {
  font-size: 13px;
}

textarea.form-control {
  height: 200px;
}

/* 確認ページの表 */
.confirm_table {
  margin: 30px 0;
}

.confirm_table table caption {
  caption-side: top;
}

.confirm {
  float: left;
  margin-right: 20px;
}
/*# sourceMappingURL=style.css.map */