@charset "UTF-8";
body {
  font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
  color: #666;
  min-width: 360px;
  font-size: 14px;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}
#wrap {
  width: 100%;
}

.section-head {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 40px;
  font-size: 1.3rem;
}
.section-head span {
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  .section-head {
    margin-bottom: 4vw;
  }
}

.wrap-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header {
  padding: 10px 0;
  position: fixed;
  width: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.9);
}
header .wrap-flex {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .wrap-flex .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .wrap-flex .link > p {
  margin-top: auto;
  padding-right: 20px;
  padding-top: 32px;
}
header .wrap-flex .link > p a {
  color: #666;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 2px;
  display: block;
  width: 100%;
}
header .wrap-flex .link > p a:after {
  border-bottom: solid 2px #666;
  bottom: 0;
  content: "";
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 0;
}
@media screen and (min-width: 767px) {
  header .wrap-flex .link > p a:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .wrap-flex .link > p a:hover:after {
    width: 100%;
  }
}
header .wrap-flex .link > p:last-child {
  padding-right: 0;
}

main {
  display: block;
  padding-top: 69px;
}

.width-normal {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#main-visual {
  height: 700px;
  position: relative;
}
#main-visual .bg-MV {
  height: 100%;
  background-image: url(../images/mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 40%;
  opacity: 0.3;
}
#main-visual .main-copy {
  font-size: 1.8rem;
  text-align: center;
  text-shadow: 1px 3px 3px rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}
#main-visual .main-copy span {
  font-size: 0.9rem;
}

#business {
  background-color: #fafafa;
  padding: 50px 0;
}
#business .wrap-flex {
  padding: 0 20px;
}
#business .wrap-flex .item {
  background-color: #fff;
  width: 48%;
  min-height: 300px;
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#business .wrap-flex .item.is-animated {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#business .wrap-flex .item.show-up02 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#business .wrap-flex .item.show-up03 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#business .wrap-flex .item .img img {
  width: 100%;
}
#business .wrap-flex .item .head {
  font-size: 1.1rem;
  text-align: center;
  padding-top: 20px;
}
#business .wrap-flex .item .text {
  padding: 20px 30px 30px;
  word-wrap: break-word;
  line-height: 1.7;
}

#profile {
  padding: 40px 0 20px;
}
#profile .wrap-profile {
  width: 540px;
  margin: 0 auto;
  line-height: 2.4;
}
#profile .wrap-profile .item {
  margin: 30px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#profile .wrap-profile .item.is-animated {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#profile .wrap-profile .item:last-child {
  margin-bottom: 10px;
}
#profile .wrap-profile .head-profile {
  font-weight: bold;
}
#profile .wrap-profile .info {
  font-size: 0.8rem;
  word-break: break-all;
}
#profile .wrap-profile .info a {
  text-decoration: none;
  color: #666;
}
#profile .btn-top {
  width: 50px;
  margin: 0 auto;
}
#profile .btn-top a {
  display: block;
}
#profile .btn-top a img {
  width: 100%;
}

footer {
  background-color: #444;
  padding: 20px 20px;
}
footer p {
  max-width: 1040px;
  margin: 0 auto;
  color: #fafafa;
}

@media screen and (max-width: 767px) {
  header {
    padding: 10px 5vw 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header .wrap-flex {
    padding: 0;
  }
  header .wrap-flex .logo {
    width: 88px;
  }
  header .wrap-flex .logo img {
    width: 100%;
  }
  header .wrap-flex .link > p {
    padding-top: 10px;
  }

  #main-visual {
    height: 100vw;
  }
  #main-visual .main-copy {
    font-size: 6.5vw;
    text-align: left;
    -webkit-transform: none;
            transform: none;
    left: 5vw;
  }
  #main-visual .main-copy span {
    font-size: 3vw;
  }

  #business .wrap-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 5vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #business .wrap-flex .item {
    width: 100%;
    margin-bottom: 5vw;
  }
  #business .wrap-flex .item .text {
    padding: 3vw 5vw 5vw;
  }

  #profile .wrap-profile {
    width: 100%;
    padding: 0 5vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  footer {
    padding: 3vw 5vw;
  }
  footer p {
    font-size: 2.2vw;
  }
}

/*# sourceMappingURL=style.css.map */