/* ----------- MEMO 


COLOR
Black:#111111 
Blue: #246091

FONT
Heading: font-family: 'Federo', sans-serif;
English:
Japanese: font-family: "Sawarabi Mincho";


--------------*/



/* ----------- GLOBAL ------------ */

*{
    margin: 0;
        padding: 0;
        border: 0;
        outline: 0;
        font-size: 100%;
        vertical-align: baseline;
        background: transparent;
}

html, body, h1, h2, h3, h4, h5, h6, div, img{
      padding: 0;
      border: 0;
      margin: 0;
    }

body{
    font-family: 'Quicksand', sans-serif;
    width:100%;
}

h1, h3, p{
    font-family: "Sawarabi Mincho";
    
}

p{
    font-size:16px;
    line-height:30px;
}


/* -------------- Logo ---------------*/

.logo{
    margin-left:60px;
    margin-top:0px;
}

.logo img{
    width:150px;
}

.logo img:hover{
    background:none;
}

@media screen and (max-width:680px) {
.logo{
        margin-left:10px;
    }   
}



/* --------- NAVIGATION -------------- */
.w3-top{
    overflow:hidden;
    background:none!important;
}

.w3-whitee{
    padding-top:15px;
    padding-bottom:15px;
    background-color:none;
    color:#ffffff;
}

.w3-top, .w3-bar-item{
    letter-spacing:1px;
    font-family: 'Federo', sans-serif;
} 

.w3-card, .w3-card-2 {
    box-shadow: none;
}

.w3-nav{
    float:left;
    margin-left:30px;
    margin-top:10px;
}

.w3-nav a{
    text-decoration:none;
}

.nav-item{
    padding:20px;
    font-size:14px;
}

.nav-item:hover{
    color:#246091;
}

.w3-animate-left {
    position: ablosute;
    top: 0;
}

.scrolled{
  background-color: #111111;
    opacity:.9;
  transition: 0.3s;
}

.w3-bluee{
    background-color:#111111;
    color: #ffffff;
}

.w3-buttonn{
    text-decoration: none;
}

.w3-buttonn:hover {
    color: #ffffff!important;
    background-color: none!important;
}


/* --- fade in ---- */

.first-fadein{
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

.second-fadein{
    -webkit-animation: fadein 6s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 6s; /* Firefox < 16 */
        -ms-animation: fadein 6s; /* Internet Explorer */
         -o-animation: fadein 6s; /* Opera < 12.1 */
            animation: fadein 6s;
}

.third-fadein{
    -webkit-animation: fadein 10s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 10s; /* Firefox < 16 */
        -ms-animation: fadein 10s; /* Internet Explorer */
         -o-animation: fadein 10s; /* Opera < 12.1 */
            animation: fadein 10s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* -------- Section Fade in on scroll----------- */

section {
  clear:both;
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1.5s;
}

section.visible { 
  opacity: 1;
  transform: translate(0, 0);
}



/* -------------- Contact  ------------- */
.contact{
    background:#111111;
    color:#ffffff;
    padding:150px 0 100px 0;
    overflow:hidden;
}

.contact-left{
    display:block;
    width:80%;
    float:left;
}

.contact-right{
    display:block;
    width:20%;
    float:left;
}

.contact-left h4{
    font-size:28px;
    font-family: "Sawarabi Mincho";
    display:block;
    width:60%;
    margin:20px auto;
}

.contact-left p{
    margin-left:80px;
    margin-right:30px;
    margin-bottom:30px;
    overflow:hidden;
    display:block;
    width:60%;
    margin:20px auto;
}

.email{
    padding-top:50px;
    line-height:24px;
}

.email a{
    text-decoration:none;
}

.email a:hover{
    color:#246091;
}

.contact-right img{
    width:250px;
    float:right;
}

.contact-mob{
    display:none;
}

/* ipad */
@media only screen 
and (min-device-width : 681px) 
and (max-device-width : 768px) {
.contact{
    padding:80px 0;
}
    
.contact-left{
    width:100%;
    float:left;
    position:relative;
}
    
.contact-left h4, .contact-left p{
    width:60%;
    margin:10px auto;
    }
    
.contact-mob{
    display:block;
    position:absolute;
    top:0;
    right:0;
    width:40%;
    opacity:.5;
    }
    
    .contact-right{
        display:none;
    }    
}

/* Mobile */

@media screen and (max-width:680px) {
.contact{
    padding:80px 0;
}
    
.contact-left{
    width:100%;
    float:left;
    position:relative;
}
    
.contact-left h4, .contact-left p{
    width:auto;
    margin-left:20px;
    margin-right:20px;
    }
    
.contact-mob{
    display:block;
    position:absolute;
    top:0;
    right:0;
    width:70%;
    opacity:.5;
    }
    
    .contact-right{
        display:none;
    }
}

/* ----- Contact Form ----- */

.container{
    width:60%;
    display:block;
    margin:20px auto;
    color:#ffffff;
}

label{
    display:block;
    margin-top:20px;
    margin-bottom:3px;
}

input[type=text]{
    font-family:'Josefin Sans', sans-serif;
    background:transparent;
    border:none;
    border:1px solid #ffffff;
    color: #ffffff;
    font-size:14px;
    line-height:38px;
    width:100%;
    margin-bottom:20px;
    padding:0 15px;
}

input[type=email]{
    font-family:'Josefin Sans', sans-serif;
    background:transparent;
    border:none;
    border:1px solid #ffffff;
    font-size:14px;
    line-height:38px;
    width:100%;
    margin-bottom:20px;
    padding:0 15px;
    color: #ffffff;
}

textarea{
    background:transparent;
    border:none;
    border:1px solid #ffffff;
    width:100%;
    font-family:'Josefin Sans', sans-serif;
    font-size:14px;
    line-height:34px;
    margin-bottom:15px;
    padding:0 15px;
    color: #ffffff;
}

input[type=submit]{
    display:block;
    margin:20px auto;
    font-family:'Josefin Sans', sans-serif;
    font-size:14px;
    letter-spacing:6px;
    color:#f9f7f2;
    padding:10px 60px;
    background-color:none;
    border:1px solid #ffffff;
    border-radius: 30px;

}

input[type=submit]:hover{
    color:#000000;
    background:#ffffff;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: .5; /* Firefox */
    font-size:14px;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ffffff;
    font-size:14px;
    opacity: .5;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #ffffff;
    font-size:14px;
    opacity: .5;
}

.contact-feedback h2{
    margin-left:20px;
}

@media only screen and (min-device-width:320px) and (max-device-width:600px){
   
    h2.contact{
    width:100%;
    font-size:24px;
    display: block;
    margin:30px auto 10px auto;
    letter-spacing:4px;
    animation: type 2.5s steps(60, end);
    overflow: hidden;
    white-space: nowrap;
}
    
p.contact{
    font-size:18px;
    }
    
   .container{
    width:90%;
    display:block;
    margin:20px auto;
} 
    
    
}






footer{
    clear:both;
    float:none;
    background: #111111;
    text-align:center;
    font-family: 'Federo', sans-serif;
    color:#ffffff;
    padding:30px;
    font-size:13px;
    line-height:20px;
    letter-spacing:1px;
    overflow:hidden;
}

footer a{
    text-decoration:none;
}

footer a:hover{
    color: #246091;
}

.social-links{
    width:50%;
    display:block;
    margin:30px auto;
    overflow:hidden;
}

.social-links h4{
    font-family: "Sawarabi Mincho";
    margin-bottom:30px;
}

.social-box{
    width:25%;
    float:left;
    font-family: "Sawarabi Mincho";
}

.social-box img{
    margin:10px auto;
    width:50px;
}

.copyright{
    clear:both;
}

@media screen and (max-width:680px) {
    
.social-links{
    width:100%;
    }
}






