/*Theme Name:portfolio*/

@charset "UTF-8";
* {
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, cursive, Times New Roman;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ===== all =====*/
body {
  background: #e8f8f8;
}

body.is-active {
  overflow: hidden;
}

.section {
  overflow: hidden;
  padding: 10% 0;
}

.section__title {
  font-size: 40px;
  font-family: 游明朝体;
  font-weight: bold;
  margin: 40px 0;
  padding: 70px 0;
  color: #0a178a;
}

.section__inner {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  .section__inner {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .section__inner {
    max-width: 480px;
    margin: 0 auto;
  }
  .section__title {
    font-size: 30px;
    text-align: center;
    margin: 20px 0;
    padding: 40px 0;
  }
}

/* ===== /all =====*/
/*===== wipe-in ======*/
.js-wipe {
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: 3s ease-out;
  -webkit-transition: 3s ease-out;
  -moz-transition: 3s ease-out;
  -ms-transition: 3s ease-out;
  -o-transition: 3s ease-out;
}

.js-wipe.is-active {
  font-size: 100px;
  color: #16a8d4;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .js-wipe.is-active {
    font-size: 70px;
  }
}

@media screen and (max-width: 480px) {
  .js-wipe.is-active {
    font-size: 24px;
  }
}

/*===== /wipe-in ======*/
/*===== slide-in ======*/
.js-slide-left {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

.js-slide-right {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}

.js-slide-top {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.js-slide-bottom {
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}

.js-slide {
  opacity: 0;
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}

.js-slide.is-active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.service__content-item.js-slide.is-active {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

/*===== /slide-in ======*/
/*===== btt =====*/
.btt {
  width: 70px;
  height: 70px;
  background-color: #46ac95;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  bottom: -200px;
  right: 20px;
  z-index: 100;
  opacity: 0.3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.btt:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btt::before {
  content: "";
  width: 25px;
  height: 25px;
  border-top: 5px solid #000;
  border-right: 5px solid #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 25px;
  left: 22px;
}

.btt.is-active {
  bottom: 20px;
}

/*===== btt =====*/
/* ===== header ===== */
.header {
  background: rgba(4, 108, 177, 0.253);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 60px;
  height: 100px;
  width: 100%;
  color: #fff;
  font-size: 20px;
}

.header.is-active {
  position: fixed;
  top: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(4, 108, 177, 0.253);
  -webkit-box-shadow: 0 0 20px #a0ccff;
          box-shadow: 0 0 20px #a0ccff;
  color: #fff;
  z-index: 1;
}

.header__logo {
  position: absolute;
  top: 5%;
  left: 30px;
}

.header__logo:hover {
  opacity: 0.5;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.header__logo-img {
  width: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.header__nav {
  position: absolute;
  right: 30px;
}

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

.header__nav-item {
  padding: 0 30px;
}

.header__nav-link {
  font-family: 游明朝体;
}

.header__nav-item :hover {
  opacity: 0.5;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

/* ===== hamburger ===== */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1;
}

.hamburger__bar {
  display: block;
  width: 30px;
  height: 1px;
  background-color: white;
  position: absolute;
  left: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hamburger:hover .hamburger__bar:nth-child(2) {
  left: 15px;
}

.hamburger__bar:nth-child(1) {
  top: 15px;
}

.hamburger__bar:nth-child(2) {
  top: 25px;
}

.hamburger__bar:nth-child(3) {
  top: 35px;
}

.hamburger.is-active .hamburger__bar:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-active .hamburger__bar:nth-child(2) {
  left: 30px;
  opacity: 0;
}

.hamburger.is-active .hamburger__bar:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 900px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    z-index: 998;
    background-color: #a0ccff;
    display: none;
    z-index: 1;
  }
  .header__nav-list {
    display: block;
    text-align: center;
    line-height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .hamburger {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .header__logo-img {
    margin-top: 15px;
    width: 60px;
  }
}

/*mv*/
.mv {
  background: url(img/970138_l.jpg) center/cover;
  height: 100vh;
  width: 100%;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: -1;
}

.mv__copy {
  font-size: 30px;
  font-family: cursive;
  margin: auto;
  color: #fff;
  text-align: center;
  letter-spacing: 1.2rem;
  line-height: 10rem;
}

@media screen and (max-width: 900px) {
  .mv {
    height: 70vh;
  }
  .mv__copy {
    padding-top: 100px;
    line-height: 6rem;
  }
}

@media screen and (max-width: 480px) {
  .mv__copy {
    padding-top: 100px;
    line-height: 3rem;
  }
  .mv {
    height: 50vh;
  }
}

/*about*/
.about__title {
  position: relative;
}

.about__title::before {
  content: "ABOUT";
  left: -20%;
  position: absolute;
  font-size: 150px;
  font-style: oblique;
  font-family: Times New "Times New Roman", Times, serif;
  opacity: 0.2;
  color: #ffb937;
  top: 5%;
}

.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0;
}

.about__item {
  width: 200px;
  height: 200px;
  position: relative;
}

.about__img {
  width: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-box-shadow: 6px 6px #8d8de4;
          box-shadow: 6px 6px #8d8de4;
}

.about__content {
  width: 80%;
  padding-left: 30px;
}

.about__name {
  font-size: 22px;
}

.about__text {
  line-height: 2rem;
  padding-top: 20px;
}

.about__botton-wrap {
  text-align: right;
}

.about__botton {
  background: #52baff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.about__botton:hover {
  opacity: 0.5;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.twitter-color {
  color: #fff;
}

.about__message {
  position: relative;
  width: 80%;
  margin: 50px auto;
  -webkit-box-shadow: 0 0 5px #3a87b4;
          box-shadow: 0 0 5px #3a87b4;
  background: #fff;
  padding: 20px 30px;
}

.about__message::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  background: #abffbd;
  z-index: -1;
  bottom: 20px;
  right: -180px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0.5;
}

.about__message::after {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  background: #abe0ff;
  z-index: -1;
  right: -150px;
  bottom: -50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 0.5;
}

.ribbon {
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 0;
  margin: 0 0 0 -50px;
  width: calc(100% + 20px);
  background: #aaff9f;
  -webkit-box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.2);
}

.ribbon::after {
  position: absolute;
  content: "";
  z-index: 999;
  top: 0;
  right: 0;
  width: 0px;
  height: 0px;
  border-width: 30px 20px 25px 60px;
  border-color: transparent #ffffff transparent transparent;
  border-style: solid;
}

.ribbon::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px #6081b7;
}

.about__message-title {
  font-size: 30px;
  margin: 5px 40px;
  color: #1091c4;
  font-weight: bold;
}

.about__message-text {
  margin-top: 20px;
  line-height: 2rem;
}

.meassage__span01 {
  color: #0c65eb;
}

.messgage__span02 {
  color: #0cad0c;
}

@media screen and (max-width: 900px) {
  .about__title::before {
    font-size: 100px;
    left: -10%;
    top: 20%;
  }
}

@media screen and (max-width: 480px) {
  .about__title::before {
    font-size: 80px;
  }
  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__item {
    text-align: center;
  }
  .about__img {
    width: 100%;
  }
  .twitter-botton-wrap {
    margin-top: 30px;
    text-align: center;
  }
}

/*service*/
.service__title {
  text-align: right;
  position: relative;
}

.service__title::before {
  content: "SERVICE";
  right: -20%;
  position: absolute;
  font-size: 150px;
  font-style: oblique;
  font-family: Times New "Times New Roman", Times, serif;
  opacity: 0.2;
  color: #ffb937;
  top: 5%;
}

.service__wrapper {
  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;
}

@-webkit-keyframes rotate-y {
  0% {
    transform: rotateY(0deg) rotateX(0deg);
    -webkit-transform: rotateY(0deg) rotateX(0deg);
    -moz-transform: rotateY(0deg) rotateX(0deg);
    -ms-transform: rotateY(0deg) rotateX(0deg);
    -o-transform: rotateY(0deg) rotateX(0deg);
  }
  100% {
    transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
  }
}

@keyframes rotate-y {
  0% {
    transform: rotateY(0deg) rotateX(0deg);
    -webkit-transform: rotateY(0deg) rotateX(0deg);
    -moz-transform: rotateY(0deg) rotateX(0deg);
    -ms-transform: rotateY(0deg) rotateX(0deg);
    -o-transform: rotateY(0deg) rotateX(0deg);
  }
  100% {
    transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
  }
}

.js-rotate {
  animation: rotate-y 2s;
  -webkit-animation: rotate-y 2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.service__content:nth-child(even) {
  margin-top: 40%;
}

.service__content-item {
  height: 340px;
  width: 340px;
  position: relative;
}

.service__content-item:after {
  content: "";
  background: white;
  display: block;
  height: 340px;
  width: 340px;
  top: -35px;
  left: 0;
  z-index: -1;
  -webkit-box-shadow: 0 0 10px #3a87b4;
          box-shadow: 0 0 10px #3a87b4;
  position: absolute;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.service__genre {
  text-align: center;
  font-size: 25px;
  line-height: 3rem;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  font-weight: bold;
}

.code-color {
  color: #6fbb19;
}

.design-color {
  color: #f0526c;
}

.wp-color {
  color: #358df1;
}

.consalt-color {
  color: #ffa600;
}

.service__content-text {
  margin-left: 30%;
}

.service__text {
  text-align: center;
  white-space: nowrap;
  line-height: 3rem;
}

.html {
  color: #ff6600;
  font-weight: bold;
}

.css {
  color: #3f59ee;
  font-weight: bold;
}

.javascript {
  color: #009118;
  font-weight: bold;
}

.adobe-xd {
  color: #f896a6;
  font-weight: bold;
}

.wordpress {
  color: #7b98fa;
  font-weight: bold;
}

.consalt {
  color: orange;
  font-weight: bold;
}

@media screen and (max-width: 900px) {
  .service__title::before {
    font-size: 80px;
    right: -10%;
    top: 20%;
  }
}

@media screen and (max-width: 480px) {
  .service__title {
    text-align: center;
  }
  .service__title::before {
    font-size: 90px;
    right: 0;
  }
  .service__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service__content:nth-child(even) {
    margin-top: 30%;
  }
  .service__content:nth-child(odd) {
    margin-top: 30%;
  }
  .service__content-item {
    height: 40px;
    width: 40px;
    position: relative;
    margin-bottom: 200px;
    text-align: center;
  }
  .service__content-item:after {
    content: "";
    background: white;
    display: block;
    height: 230px;
    width: 230px;
    top: -35px;
    left: -100px;
    z-index: -1;
    -webkit-box-shadow: 0 0 10px #3a87b4;
            box-shadow: 0 0 10px #3a87b4;
    position: absolute;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
  .service__genre {
    font-size: 16px;
    top: -30px;
    left: -35px;
    display: inline-block;
    position: absolute;
    width: 100px;
    line-height: 1.5rem;
    padding-bottom: 5px;
    white-space: nowrap;
    text-align: center;
  }
  .service__text {
    position: absolute;
    top: 60px;
    left: -50px;
    text-align: left;
    font-size: 10px;
    line-height: 2rem;
  }
}

/*works*/
.works__title {
  position: relative;
}

.works__title::before {
  content: "WORKS";
  left: -20%;
  position: absolute;
  font-size: 150px;
  font-style: oblique;
  font-family: Times New "Times New Roman", Times, serif;
  opacity: 0.2;
  color: #ffb937;
  top: 5%;
}

/*carousel*/
.carousel-wrap {
  position: relative;
  height: 400px;
}

.carousel__list {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 0;
  width: 100%;
}

.carousel__list-item {
  margin: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 5px;
          box-shadow: 0 0 5px;
}

.carousel__article {
  width: 230px;
  text-align: center;
}

.carousel__img {
  padding: 5px;
}

.carousel__content {
  padding: 15px 10px 20px;
}

.site-title {
  font-size: 20px;
  font-weight: bold;
}

.carousel__content-text {
  margin-top: 20px;
  padding-bottom: 20px;
  font-size: 22px;
}

.botton-next {
  position: absolute;
  right: -15%;
  top: 38%;
}

.botton-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.botton-prev {
  left: -15%;
  position: absolute;
  top: 38%;
}

.botton-prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.carousel-botton {
  position: absolute;
  -webkit-box-shadow: 0 0 10px #3a87b4;
          box-shadow: 0 0 10px #3a87b4;
  background: #fff;
  cursor: pointer;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.carousel-botton:before {
  content: "";
  width: 30px;
  height: 30px;
  border-top: 5px solid #3a87b4;
  border-right: 5px solid #3a87b4;
  position: absolute;
  top: 30px;
  left: 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.carousel-botton:hover {
  background: rgba(213, 242, 247, 0.205);
}

@media screen and (max-width: 900px) {
  .works__title::before {
    font-size: 80px;
    left: -10%;
    top: 20%;
  }
  .carousel__article {
    width: 190px;
  }
  .carousel-botton {
    width: 70px;
    height: 70px;
  }
  .carousel-botton::before {
    width: 20px;
    height: 20px;
    top: 25px;
    left: 30px;
  }
  .botton-next {
    top: -20%;
    right: 10px;
  }
  .botton-prev {
    top: -20%;
    left: 65%;
  }
}

@media screen and (max-width: 480px) {
  .works__title {
    margin-bottom: 100px;
  }
  .carousel__article {
    width: 230px;
    margin: 0 auto;
  }
  .carousel__img {
    padding: 5px;
  }
  .carousel-botton {
    width: 70px;
    height: 70px;
  }
  .carousel-botton::before {
    width: 22px;
    height: 22px;
    top: 20px;
    left: 22px;
  }
  .botton-prev {
    left: 10px;
  }
}

/*contact*/
.contact__title {
  position: relative;
  text-align: right;
}

.contact__title::before {
  content: "CONTACT";
  right: -20%;
  position: absolute;
  font-size: 150px;
  font-style: oblique;
  font-family: Times New "Times New Roman", Times, serif;
  opacity: 0.2;
  color: #ffb937;
  top: 5%;
}

.contact__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 50px 10px;
}

.contact__tr {
  border: 1px solid #000;
  padding: 30px;
}

.contact__th {
  vertical-align: middle;
}

.contact__input,
.contact__textarea {
  border: 1px solid #000;
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: #fff;
}

.submit__botton {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  color: #fff;
  background: #71c9df;
  padding: 20px 0;
  margin: 50px auto;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.submit__botton:hover {
  opacity: 0.5;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

@media screen and (max-width: 900px) {
  .contact__title::before {
    font-size: 80px;
    right: -10%;
    top: 20%;
  }
}

@media screen and (max-width: 480px) {
  .contact__title {
    text-align: center;
  }
  .contact__title::before {
    font-size: 70px;
    right: 10px;
  }
  .contact__th {
    margin: 20px 0;
  }
  .contact__th,
  .contact__td {
    width: 100%;
    display: block;
  }
}

/*footer*/
.footer__text {
  text-align: center;
  padding: 50px 0;
}
/*# sourceMappingURL=style.css.map */