/*共通部分*/
img{
    width: 100%;
    vertical-align: bottom;
}
body{
    line-height: 1.7;
    color: rgb(11, 43, 37);
    transition: 0.7s;
    z-index: 5;
    background-color: #fff;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
main{
    padding: 1px;
    background-color: rgba(255,255,255,1);
    z-index: 5;
}
a,p,h1,h2,h3,h4,h5,h6{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
@media screen and (min-width: 769px){
    body{
        min-width: 1000px;
    }
}

.shift1{
    position: relative;
    left: 150px;
}
.shift2{
    position: relative;
    left: -100px;
}


/*HEADER-----------------------------------------------*/
.header-bg{
    width: 100vw;
}
.header-bg video{
    width: 100%;
}
@media (aspect-ratio: 4/3), (min-aspect-ratio: 4/3) {
    video {
      top: 50%;
      transform: translateY(-10%);
    }
}
.header-bg2{
    position: relative;
    height: 10vh;
    background-color: rgba(255,255,255,1);
}
.header-bg3{
    width: 100vw;
    height: 100vh;
}

.page-title{
    padding: 5% 10%;
    position: absolute;
    bottom: 0;
    right: 30px;
    color: rgb(255, 255, 255);
}
.page-title h1{
    font-weight: 40;
}
.page-title.-company{
    font-size: 2vw;
}
.page-title.-company h1{
    font-weight: 10;
}

/*ナビゲーション-----------------------------------------------*/
.header-bar{
    padding: 10px;
    width: 100%;
    height: 70px;
    position: fixed;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    transition: background-color 0.5s;
    background-color: rgba(11, 43, 37,0);
}
.header-bar2{
    padding: 10px;
    width: 100%;
    height: 70px;
    position: fixed;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    background-color: rgba(11, 43, 37,0.5);
}
.title{
    font-size: 30px;
    display: flex;
    height: 100%;
    opacity: 0;
    transition: opacity 1.0s;
}
.title p{
    margin-left: 5px;
    color: rgb(255, 255, 255);
}
.title2{
    font-size: 30px;
    display: flex;
    height: 100%;
}
.title2 p{
    margin-left: 5px;
    color: rgb(255, 255, 255);
}
.header-title{
    margin-left: 10px;
}
.header-title h1{
    margin-left: 10px;
    font-weight: 40;
    color: rgb(255, 255, 255);
}
.header-title img{
    height: 100%;
    width: auto;
}

/*ハンバーガーメニュー*/
.nav_toggle {
    margin: 13px;
    display: block;
    position: relative;
    width: 1.75rem;
    height: 1.5rem;
    position: absolute;
    right: 0;
}
.nav_toggle i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    transition: transform .5s, opacity .5s;
}
.nav_toggle i:nth-child(1) {
    top: 0;
}
.nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}
.nav_toggle i:nth-child(3) {
    bottom: 0;
}

.nav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
    opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
}

.nav.show{
    opacity: 1;
    visibility: visible;
}
nav a{
    color: rgb(255, 255, 255);
}

/*ドロワー*/
.menu-trigger{
    margin: 23px;
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    right: 0;
    z-index: 100;
/*transform: translateX(0);
    transition: transform .5s;*/
}
/*.menu-trigger.active {
    transform: translateX(-250px);
}*/
.menu-trigger span{
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    transition: all .5s;
}
.menu-trigger.active span{
    background-color: #fff;
}
.menu-trigger span:nth-of-type(1){
    top: 0;
}
.menu-trigger.active span:nth-of-type(1){
    transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2){
    top: 12px;
}
.menu-trigger.active span:nth-of-type(2){
    opacity: 0;
}
.menu-trigger span:nth-of-type(3){
    bottom: 0;
}
.menu-trigger.active span:nth-of-type(3){
    transform: translateY(-12px) rotate(45deg);
}

nav{
    width: 130px;
    height: 100%;
    margin-top: 70px;
    padding-top: 40px;
    background-image: linear-gradient(rgba(11, 43, 37,0.5),rgba(0, 0, 0, 0));
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translate(150px);
    transition: all .5s;
}
nav.open{
    transform: translateZ(0);
}
nav li{
    color: #fff;
    text-align: center;
    padding: 10px 0;
}



/*profile-----------------------------------------------*/
.profile{
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.profile-title{
    width: 900px;
    height: 20%;
    margin-top: 50px;
    text-align: center;
}
.profile-title h2,
.access-title h2{
    padding: 10px 30px;
    font-weight: 100;
}
.news{
    width: 900px;
    height: 70%;
    margin-bottom: 50px;
    position: relative;
}
.news p{
    padding: 10px 50px;
}
.news .more-information{
    width: 200px;
    position: absolute;
    bottom: 0;
    right: 0;
}

/*TOPIC-----------------------------------------------*/
.topic-title{
    width: 900px;
    margin: 50px auto 0;
    padding-bottom: 20px;
    font-size: 70px;
    border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
}
.topic-title h1{
    font-weight: 100;
    color: rgba(190, 190, 190, 0.2);
}
.topic-title div{
    font-size: 20px;
    position: relative;
}
.topic-title div h2{
    left: 30px;
    bottom: 80px;
    position: absolute;
    font-weight: 100;
}
@media screen and (min-width: 769px){
    .topic-box{
        margin: 100px auto;
        width: 900px;
        height: 600px;
        position: relative;
        background-color: none;
    }
    .topic-image{
        position: absolute;
        width: 80%;
        margin: 20px;
        left: -200px;
    }
    .topic-box p{
        position: absolute;
        width: 90%;
        font-size: 15px;
        line-height: 2.5;
        right: -200px;
        bottom: 0px;
        padding: 40px 80px;
        color: rgba(255,255,255,1);
        background-color: rgba(11, 43, 37,0.5);
    }
}

/*MENU-----------------------------------------------*/
.menu-title{
    width: 900px;
    margin: 200px auto 0;
    padding-bottom: 20px;
    font-size: 70px;
    border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
}
.menu-title h1{
    font-weight: 100;
    color: rgba(190, 190, 190, 0.2);
}
.menu-title div{
    font-size: 20px;
    position: relative;
}
.menu-title div h2{
    left: 30px;
    bottom: 80px;
    position: absolute;
    font-weight: 100;
}

.menu{
    width: 900px;
    margin: 100px auto 200px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.menu-box{
    width: 400px;
}
.button{
    margin: 20px 50px;
    font-size: 14px;
    position: relative;
    z-index: 10;
}
.button h2{
    font-weight: 100;
    color: rgb(11, 43, 37);
}
.button h6{
    font-weight: 100;
    color: rgb(104, 116, 113);
}
.slide{
    display: flex;
    width: 500px;
    align-items: center;
}
.slide img {
    display    : block;
    position   : absolute;
                        /* 画像のサイズを表示エリアに合せる */
    width      : inherit;
    opacity    : 0;
    animation  : slideAnime 15s ease infinite;
}
   
   /*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 3s }
.slide img:nth-of-type(3) { animation-delay: 6s }
.slide img:nth-of-type(4) { animation-delay: 9s }
.slide img:nth-of-type(5) { animation-delay: 12s }
   
   /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
    0% { opacity: 0 }
    2% { opacity: 1 }
    18% { opacity: 1 }
    20% { opacity: 0 }
    100% { opacity: 0 }
}

@media screen and (min-width: 769px){
    .menu-contents{
        width: 1000px;
        margin: 0 auto;
    }
    .content1,
    .content2,
    .content3,
    .content4,
    .content5{
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: center;
    }
    .content-image-shadow{
        width: 40%;
        margin: 70px;
        position: relative;
        left: 5;
    }
    .content-detail{
        padding: 20px;
        width: 55%;
    }
    .content-detail h2{
        margin-bottom: 5px;
        font-weight: 100;
    }
    .content-detail h4{
        margin-bottom: 20px;
        font-size: 10px;
        font-weight: 100;
        color: rgb(104, 116, 113);
    }
    .content-detail p{
        font-size: 14px;
        font-weight: 100;
    }
    .content2{
        flex-direction: row-reverse;
    }
    .content4{
        flex-direction: row-reverse;
    }
    section{
        height: 450px;
        margin: 0 auto;
    }
    .content1{
        border: 0;
    }
    .menu-contents{
        margin: 70px auto;
    }
}

/*FOOTER*/
footer{
    width: 100vw;
    color: #fff;
    background-image: url(images/office.JPG);
    background-size: cover;
    background-position: center;
}
.footer-bg{
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.8);
}
footer a{
    color: #fff
}
footer p{
    font-size: 12px;
    font-weight: 100;
}
footer h1{
    font-size: 16px;
    font-weight: 100;
}
@media screen and (min-width: 769px){
    .footer{
        margin: 0 auto;
        width: 900px;
        position: relative;
    }
    .footer-menu{
        width: 100%;
        height: 100px;
        border-bottom: solid #fff 1px;
        position: relative;
    }
    .footer-nav{
        position: absolute;
        display: flex;
        padding-top: 60px;
        right: 0;
    }
    .footer-nav li{
        margin-right: 50px;
    }
    .footer-address{
        margin-left: 50px;
    }
    .footer-address h1{
        padding-top: 50px;
    }
    .footer-address-text{
        margin-top: 20px;
    }
    .copyright{
        padding-bottom: 50px;
        margin-right: 10px;
        text-align: right;
    }
}




/*COMPANY-----------------------------------------------*/
@media screen and (min-width: 769px){
    .greeting{
        width: 900px;
        margin: 0 auto 100px;
    }
    .greeting-title{
        width: 900px;
        margin: 0 auto 100px;
        padding-bottom: 20px;
        font-size: 70px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }
    .greeting-title h1{
        text-align: left;
        font-weight: 100;
        color: rgba(190, 190, 190, 0.2);
    }
    .greeting-title div{
        font-size: 20px;
        position: relative;
    }
    .greeting-title div h2{
        left: 30px;
        bottom: 80px;
        position: absolute;
        font-weight: 100;
    }
    .greeting-box{
        position: relative;
        width: 900px;
        height: 550px;
    }
    .greeting-image{
        position: absolute;
        width: 80%;
    }
    .greeting-text{
        position: absolute;
        padding: 20px 40px;
        width: 50%;
        right: 0;
        bottom: 0;
        background-color: rgba(11, 43, 37,0.5);
    }
    .greeting-text p{
        font-size: 12px;
        color: #fff;
    }
    .greeting-text-name{
        text-align: end;
    }

    .profile-title{
        width: 900px;
        margin: 0 auto 100px;
        padding-bottom: 20px;
        font-size: 70px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }
    .profile-title h1{
        text-align: left;
        font-weight: 100;
        color: rgba(190, 190, 190, 0.2);
    }
    .profile-title div{
        font-size: 20px;
        position: relative;
    }
    .profile-title div h2{
        left: 30px;
        bottom: 80px;
        position: absolute;
        font-weight: 100;
    }
    .profile-item{
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
        padding: 10px;
        width: 900px;
        height: 80px;
        display: flex;
        flex-wrap: nowrap;
        justify-content:space-around;
    }
    .profile-item-title{
        width: 150px;
        padding-left: 50px;
        padding-top: 16px;
    }
    .profile-item-text{
        width: 500px;
        padding-top: 20px;
    }
    .profile-item-text2{
        width: 500px;
        padding-top: 5px;
    }

    .access{
        width: 900px;
        margin: 100px auto;
    }
    .access-title{
        width: 900px;
        margin: 0 auto 100px;
        padding-bottom: 20px;
        font-size: 70px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }
    .access-title h1{
        text-align: left;
        font-weight: 100;
        color: rgba(190, 190, 190, 0.2);
    }
    .access-title div{
        font-size: 20px;
        position: relative;
    }
    .access-title div h2{
        left: 30px;
        bottom: 80px;
        position: absolute;
        font-weight: 100;
    }
    .location-map{
        text-align: center;
    }
    .access-text{
        width: 900px;
        margin-bottom: 150px;
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    .access-text:before{
        border-top: 1px solid rgb(11, 43, 37);
        content: "";
        width: 3em; /* 線の長さ */
    }
    .access-text:before {
        margin-left: 100px;
        margin-right: 1em; /* 文字の右隣 */
    }
}
  

/*CONTACT*/
@media screen and (min-width: 769px){
    .contact{
        width: 900px;
        margin: 0 auto 100px;
    }
    .contact-title{
        width: 900px;
        margin: 0 auto 100px;
        padding-bottom: 20px;
        font-size: 70px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }
    .contact-title h1{
        text-align: left;
        font-weight: 100;
        color: rgba(190, 190, 190, 0.2);
    }
    .contact-title div{
        font-size: 20px;
        position: relative;
    }
    .contact-title div h2{
        left: 30px;
        bottom: 80px;
        position: absolute;
        font-weight: 100;
    }
    .contact-text{
        margin: 50px;
        font-size: 14px;
        display: flex;
        justify-content: center;
    }
    .contact-icon{
        margin: 30px 60px 30px 0;
        width: 48px;
    }
    .contact-text-box1,
    .contact-text-box2{
        width: 100px;
        display: flex;
        margin: 10px 20px;
        align-items: center;
    }
    .contact-text-box2{
        width: 100px;
    }
    .contact-text-number{
        font-size: 4px;
        margin: 2px;
        color: seagreen;
    }
    .contact-text-01,
    .contact-text-02{
        font-size: 24px;
    }
    .contact-text-01{
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }


    form{
        width: 900px;
        margin: 0 auto;
    }
    .formTable{
        width: 100%;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
        border-collapse : collapse ;
    }
    .formTable tr{
        height: 80px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }
    .formTable th{
        font-weight: 100;
        width:30%;
        padding:10px;
        text-align: center;
        vertical-align: center;
        color: #444;
    }
    .formTable td{
        width:75%;
        padding:10px;
    }
    input[type="text"],textarea,select{
        width: 80%;
        height: 35px;
        margin: 10px;
        padding-left: 15px;
        outline: none;
        background-color: rgba(190, 190, 190, 0.2);
    }
    textarea{
        height: 120px;
    }
    .form-button{
        margin: 20px;
        padding: 5px;
    }
    .form-button input{
        margin: 0 20px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }
    .confirmation{
        margin: 50px 20px;
        font-weight: 100;
        display: flex;
        align-items: center;
    }
    .confirmation:before{
        border-top: 1px solid rgb(11, 43, 37);
        content: "";
        width: 3em; /* 線の長さ */
    }
    .confirmation:before {
        margin-left: 100px;
        margin-right: 1em; /* 文字の右隣 */
    }
    .confirmation-text{
        font-size: 12px;
        margin-bottom: 50px;
    }
}

/*カーソル*/
@media screen and (min-width: 769px){
    html,body,a,.menu-trigger,.cursor-over{
        cursor: none;
    }
    #cursor{
        transform: translate(0,0);
        pointer-events: none;
        position: fixed;
        top: -6px; 
        left: -6px; 
        width: 12px; 
        height: 12px;
        background: rgba(190, 190, 190, 0.76);
        border-radius: 50%;
        z-index: 999;
        transition: width .3s, height .3s, top .3s, left .3s;
    }
    #cursor.hov_{
        top: -25px; 
        left: -25px; 
        width: 50px; 
        height: 50px; 
        background: rgba(190, 190, 190, 0.5);
    }
    
    .btn {
        display: block;
        width: 160px;
        margin: 40px auto;
        text-align: center;
        font-size: 14px;
        line-height: 1;
    }
    .btn a {
        display: block;
        color: #fff;
        text-decoration: none;
        padding: 8px;
        background-color: #007adf;
    }
}

/*スマートフォン用--------------------------------*/
@media screen and (max-width: 768px){
    .title,
    .title2{
        font-size: 20px;
        margin: 8px;
    }
    .title p,
    .title2 p{
        margin-left: 5px;
    }
    .title img,
    .title2 img{
        height: 80%;
        padding-right: 4px;
        padding-bottom: 4px;
    }
    nav{
        width: 35vw;
        transform: translate(35vw);
    }
    nav li{
        font-size: 18px;
    }
    .topic{
        margin: 0 auto;
        width: 94vw;
    }
    .topic-image{
        width: 100%;
        margin-top: 10px;
        margin-left: 20px;
    }
    .topic-box p{
        width: 100vw;
        font-size: 10px;
        line-height: 2;
        padding: 10px 18px;
        margin-left: 30px;
        color: rgba(255,255,255,1);
        background-color: rgba(11, 43, 37,0.5);
    }
    .slide{
        width: 800px;
        margin-top: 200px;
        position: absolute;
        display: flex;
        align-items: center;
        opacity: 0.15;
    } 
    .menu-contents{
        width: 94vw;
    }
    .content1,
    .content2,
    .content3,
    .content4,
    .content5{
        width: 100%;
        margin: 100px auto;
    }
    .content-image-shadow{
        width: 100vw;
    }
    .content-detail{
        padding: 50px 20px;
        width: 100vw;
        background-image: linear-gradient(rgba(255, 255, 255, 0.5),rgba(211, 231, 215, 0.7));
    }
    .content-detail h2{
        margin-bottom: 5px;
        font-weight: 100;
    }
    .content-detail h4{
        margin-bottom: 20px;
        font-size: 10px;
        font-weight: 100;
        color: rgb(104, 116, 113);
    }
    .content-detail p{
        font-size: 12px;
        font-weight: 100;
    }
    .footer{
        margin: 0 auto;
        width: 100vw;
        position: relative;
    }
    .footer-menu{
        border-bottom: solid #fff 1px;
    }
    .footer-nav{
        display: flex;
        padding-top: 60px;
        margin: 0 auto;
    }
    .footer-nav li{
        margin-left: 20px;
    }
    .footer-address{
        margin-left: 20px;
    }
    .footer-address h1{
        padding-top: 50px;
    }
    .footer-address-text{
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .footer-address-text p{
        font-size: 10px;
    }
    .copyright{
        padding-bottom: 20px;
        margin-right: 20px;
        text-align: right;
    }
    .copyright p{
        font-size: 8px;
    }

    .profile-title{
        width: 94vw;
        margin: 0 auto 50px;
        padding-bottom: 20px;
        font-size: 70px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }
    .profile-title h1{
        text-align: left;
        font-weight: 100;
        color: rgba(190, 190, 190, 0.2);
    }
    .profile-title div{
        font-size: 20px;
        position: relative;
    }
    .profile-title div h2{
        left: 30px;
        bottom: 80px;
        position: absolute;
        font-weight: 100;
    }
    .profile-item{
        margin-top: 10px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
        padding: 5px;
        width: 94vw;
    }
    .profile-item-title{
        margin: 20px 50px 0;
        font-size: 14px;
    }
    .profile-item-text{
        margin: 10px 60px;
    }
    .profile-item-text2{
        margin: 10px 60px;
    }
    .greeting{
        width: 94vw;
        margin: 0 auto 50px;
    }
    .greeting-title{
        width: 94vw;
        margin: 0 auto 100px;
        padding-bottom: 20px;
        font-size: 70px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }
    .greeting-title h1{
        text-align: left;
        font-weight: 100;
        color: rgba(190, 190, 190, 0.2);
    }
    .greeting-title div{
        font-size: 20px;
        position: relative;
    }
    .greeting-title div h2{
        left: 30px;
        bottom: 80px;
        position: absolute;
        font-weight: 100;
    }
    .greeting-box{
        width: 94vw;
    }
    .greeting-image{
        width: 90%;
        z-index: 5;
    }
    .greeting-text{
        position: relative;
        z-index: 10;
        padding: 10px 20px;
        background-color: rgba(11, 43, 37,0.5);
    }
    .greeting-text p{
        font-size: 14px;
        color: #fff;
    }
    .greeting-text-name{
        text-align: end;
    }
    .access{
        width: 94vw;
        margin: 100px auto;
    }
    .access-title{
        width: 94vw;
        margin: 0 auto 100px;
        padding-bottom: 20px;
        font-size: 70px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }
    .access-title h1{
        text-align: left;
        font-weight: 100;
        color: rgba(190, 190, 190, 0.2);
    }
    .access-title div{
        font-size: 20px;
        position: relative;
    }
    .access-title div h2{
        left: 30px;
        bottom: 80px;
        position: absolute;
        font-weight: 100;
    }
    .location-map{
        text-align: center;
        width: 100%;
        overflow: hidden;
    }
    .access-text{
        width: 94vw;
        margin-bottom: 150px;
        display: flex;
        align-items: center;
        font-size: 12px;
    }
    .access-text:before{
        border-top: 1px solid rgb(11, 43, 37);
        content: "";
        width: 2em; /* 線の長さ */
    }
    .access-text:before {
        margin-left: 5px;
        margin-right: 1em; /* 文字の右隣 */
    }


    .contact{
        width: 94vw;
        margin: 0 auto 100px;
    }
    .contact-title{
        width: 94%;
        margin: 0 auto 100px;
        padding-bottom: 20px;
        font-size: 70px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }
    .contact-title h1{
        text-align: left;
        font-weight: 100;
        color: rgba(190, 190, 190, 0.2);
    }
    .contact-title div{
        font-size: 20px;
        position: relative;
    }
    .contact-title div h2{
        left: 30px;
        bottom: 80px;
        position: absolute;
        font-weight: 100;
    }
    form{
        width: 94vw;
        margin: 0 auto;
    }
    .formTable{
        width: 100%;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
        border-collapse : collapse ;
    }
    .formTable tr{
        height: 80px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }
    .formTable th{
        font-weight: 100;
        width:30%;
        padding:10px;
        text-align: center;
        vertical-align: center;
        color: #444;
        font-size: 14px;
    }
    .formTable td{
        width:80%;
        padding:10px;
    }
    input[type="text"],textarea,select{
        width: 95%;
        height: 35px;
        margin: 10px;
        padding-left: 15px;
        outline: none;
        background-color: rgba(190, 190, 190, 0.2);
    }
    textarea{
        height: 120px;
    }
    .form-button{
        margin: 20px;
        padding: 5px;
    }
    .form-button input{
        margin: 0 20px;
        border-bottom: rgba(190, 190, 190, 0.76) solid 1px;
    }

    #cursor{
        background-color: rgba(0, 0, 0, 0);
    }
    #cursor.hov{
        background-color: rgba(0, 0, 0, 0);
    }
}
