@charset "UTF-8";
/* -------------------- top -------------------- */
.tp-fv {
    position: relative; /* A */
    width: 100%;
    height: 100vh;
}
.tp-fv__left {
    width: 30%;
    max-width: 70rem;
    position: absolute; /* A */
    left: 0;
    top: 0;
}
.tp-fv__right {
    max-width: 70rem;
    width: 30%;
    position: absolute; /* A */
    right: 0;
    bottom: 0;
}
.tp-fv__middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10; /* B */
    max-width: 55rem;
    width: 45%;
    /* 奥行き */
    -webkit-perspective: 1100px;
    perspective: 1100px;
}
.tp-fv__middle--img {
    padding: 15px;
    animation: 8s linear infinite rotation3; /* object回転 */
    filter: drop-shadow(0 0 30px rgba(255, 245, 0 ,0.6)); /* 発光 */
}
@keyframes rotation3{
    0% {
        transform: rotateY(0deg);
        -webkit-transform : rotateY(0deg);
      }
      100% {
        transform: rotateY(360deg);
        -webkit-transform : rotateY(360deg);
      }
}
.tp-fv__flow {
    width: 100%;
    font-family: myriad-pro, sans-serif;
    font-weight: 700;
    font-size: 15rem;
    line-height: 11rem;
    color: #FFF;
    -webkit-text-stroke: 1.5px #F2F2F2; /* 境界線文字 */
    position: absolute;
    top: 40%;
    z-index: -2;
    display: flex;
    white-space:nowrap;
    overflow: hidden;
    padding: 3% 0;
}
.tp-fv__flow--list {
    margin: 0;
    padding: 0;
    animation: flowing 90s linear infinite;
    transform:translateX(100%);
  }
.tp-fv__flow--items {
    display: inline-block;
    padding-right: 10px;
}
@keyframes flowing {
    0% { transform:translateX(0); }
    100% { transform:translateX(-100%); }
  }
@media (max-width: 900px) {
    .tp-fv {
        height: 60vh;
    }
    .tp-fv_img {
        width: 35%;
    }
    .tp-fv__right {
        width: 35%;
    }
    .tp-fv__flow {
        font-size: 10rem;
    }
    .tp-fv_flow ul {
        animation: flowing 100s linear infinite;
      }
}
@media (max-width: 500px) {
    .tp-fv__middle {
        width: 60%;
    }
}
/* -------------------- works -------------------- */
.tp-works {
    padding: 110px 0 100px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.tp-works__title {
    font-family: myriad-pro, sans-serif;
    font-weight: 600;
    font-size: 4.8rem;
    line-height: 4.8rem;
    margin-bottom: 50px;
}
.tp-works__list {
    list-style: none;
    display: flex;
    max-width: 1320px;
    margin: 0 auto;
}
.tp-works__list--items {
    width: 30%;
    justify-content: space-between;
    margin: 0 auto;
}
.tp-work__web--img {
    height: 17vw;
    max-height: 220px;
    overflow: hidden;
    box-shadow: 3px 3px 10px rgba(51, 51, 51, 0.3);
    margin-bottom: 6%;
    background-color: #ffffff;
}
.tp-works__list--name {
    font-size: 2.0rem;
}
.tp-work__web {
    margin-bottom: 7%;
    position: relative;
}
.tp-works__web-text {
    font-family: myriad-pro, sans-serif;
    font-weight: 800;
    font-size: 11rem;
    color: #f8f8f8;
    position: absolute;
    z-index: -1;
    top: 60%;
    left: 0;
    right: 0;
}
.tp-work__graphic {
    position: relative;
    margin-bottom: 5%;
}
.tp-works__graphic--wrapper {
    background-color: #F5F5F5;
    box-shadow: 3px 3px 10px rgba(51, 51, 51, 0.3);
    padding: 1rem;
    max-height: 220px;
    margin-bottom: 6%;
}
.tp-works__graphic--img {
    width: 50%;
    margin: 0 auto;
}
.tp-works__graphic-text {
    font-family: myriad-pro, sans-serif;
    font-weight: 800;
    font-size: 11rem;
    color: #f8f8f8;
    position: absolute;
    z-index: -1;
    top: 60%;
    left: 0;
    right: 0;
}
@media (max-width: 900px) {
    .tp-works {
        padding: 110px 5% 100px;
    }
    .tp-works__list {
        display: block;
    }
    .tp-works__list--items {
        width: 100%;
        margin-bottom: 5%;
    }
    .tp-work__web--img,
    .tp-works__graphic--wrapper {
        height: auto;
        max-height: none;
        margin-bottom: 3%;
    }
    .tp-works__web-text,
    .tp-works__graphic-text {
        display: none;
    }
}
/* -------------------- about -------------------- */
.tp-about {
    position: relative;
    background-color: #f2f2f2;
}
.tp-about::before{
    content:"";
    position: absolute;
    top: -50px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 100vw 0 0;
    border-color: transparent #f2f2f2  transparent  transparent;
  }
.tp-about:after {
    content: "";
    position: absolute;
    top: 100%;
    box-sizing: border-box;
    border-right: 50vw solid transparent;
    border-left: 50vw solid transparent;
    border-top: 100px solid #f2f2f2;
    left: 0;
}
  
.tp-about__wrapper {
    padding: 60px 24px 40px;
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
}
.tp-about__illust {
    width: 20%;
}
.tp-about__contain {
    width: 65%;
    text-align: left;
}
.tp-about__contain--title {
    font-size: 9rem;
    margin-bottom: 4%;
}
.tp-about_contain--description {
    font-size: 2.0rem;
    margin-bottom: 7%;
    line-height: 2;
}
/* -------------------- contact -------------------- */
.tp-contact {
    padding: 170px 24px 80px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
.tp-contact__wrapper a {
    text-decoration: none;
    font-family: myriad-pro, sans-serif;
    font-weight: 600;
    font-size: 7vw;
    line-height: 7vw;
    color: #FFF;
    -webkit-text-stroke: 1px #333;
    transition: 3s;
}
.tp-contact__wrapper:hover {
    animation: rollkAnime 3s 1;
}
@keyframes rollkAnime{
    0% {
          transform: rotateX(0deg);
          -webkit-transform: rotateX(0deg); 
        }
   100% {
          transform: rotateX(360deg);
          -webkit-transform: rotateX(360deg); 
        }
 }
 .contact a:hover {
    animation: rollkAnime2 3s 1;
}
@keyframes rollkAnime2{
    0% {
          color    : #FFF;
        }
   100% {
          color    : #333;
        }
 }
 @media (min-width: 1280px) {
    .contact {
        padding: 80px 60px;
    }
    .contact a {
        font-size: 9.6rem;
        line-height: 9.6rem;
    }
 }
