@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
   
}

body {
  background-color: #202020;
  color: #ffffff;
}

@font-face {
    font-family: Spectral;
    src: url(../font/Spectral/Spectral-Medium.ttf);
}

@font-face {
    font-family: Noto_Sans_JP;
    src: url(../font/Noto_Sans_JP/static/);
}

/* ヘッダー */
header .top-bar {
    position: fixed;
    width: 100%;
    height: 6vw;
    background-color: #202020;
    z-index: 100;    
  }
header .top-box {
    display: flex;
    height: 4vw;
    margin-left: 3%;
    margin-right: 3%;
    margin-top: 2%;
    animation: slideinTop 3s;    
}
  
@keyframes slideinTop {
    0% {
      transform: translateY(-50px);
    }
    100% {
      transform: translateY(0);
    }
}

header h1 img {
    width: 100%;
    height: 3vw;
}

header nav {
    width: fit-content;
    margin-left: auto; 
}

header nav ul {
    display: flex;
}

header nav ul li {
    width: fit-content;
    margin-right: 2em;
    line-height: 2;
    list-style-type: none;
}

header nav ul li:nth-of-type(5){
    margin-right: 0em;
}

header nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-family: Spectral;
    font-size: 1.2vw;
    transition: 0.5s
}

header nav ul li a:hover {
    color: #818180;
    transition: 0.5s 
}




/* トップ画像 */
.top-photo {
    background-image: url(../images/topphoto4.jpg);
    height: 30vw;
    background-size: cover;  
    filter: grayscale(85%);
    }


    /* 見出し */
    section {
      width: 65%;
      margin-top: 10%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 10%;
      /* background-color: #818180; */
    }
    
    .top-box {
      display: flex;
    }
    
    section .top-box .concept-textbox {
      width: 50%;
    }

    section .concept-textbox {
      width: 50%;
      animation: slideinbottom 2.5s;
    }
    
    @keyframes slideinbottom {
      0% {
        transform: translateY(20px);
      }
      100% {
        transform: translateY(0);
      }
    }
    
    section h2 {
      font-family: Spectral;
      font-weight: 200;
      font-size: 1.6vw;
      letter-spacing: 0.1em;
      margin-bottom: 5%;
    }
    
    section p {
      font-family: Noto_Sans_JP;
      font-weight: 100;
      font-size: 1.1vw;
      line-height: 2em;
      text-align: justify;
    }
    
    section .top-box img {
      width: 35%;  
      margin-left: auto;
    }
    
/* フォーム */
section:nth-of-type(2) {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5%;
    padding-bottom: 5%;
    font-family: Noto_Sans_JP;
    font-weight: 200;
    font-size: 1.2vw;
    line-height: 2em;
    background-color: #5c5c5c;
}    

.flexbox {
  display: flex;
}

.leftbox {
    width: 40%;
    line-height: 3;
    margin-left: 10%;
}

.rightbox {
  width: 80%;
}

.rightbox input {
    width: 80%;
    font-family: Noto_Sans_JP;
    font-weight: 200;
    font-size: 1vw;
    padding: 1.5%;
}

.messagebox {
    margin-left: 10%;
    margin-top: 5%;
}
textarea {
    display: block;
    width: 87%;
    font-family: Noto_Sans_JP;
    font-weight: 200;
    font-size: 1vw;
    height: 8em;
    margin-top: 1%;
    margin-bottom: 3%;
    padding: 1%;
}

.send {
  display: block;
  width: 20%;
  line-height: 3;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.1vw;
  font-family: Noto_Sans_JP;
  font-weight: 200;
  font-size: 1vw;
  background-color: rgb(44, 43, 43);
  color: #ffffff;
  transition: 0.5s;
}

.send:hover {
  color: #202020;
  background-color: rgb(255, 255, 255);
  transition: 0.5s;
  cursor: pointer;
}

.shoptext {
  position: absolute;
  top: 215%;
  left: 20%;
}
.shoptext img {
  width: 100%;
  height: 20vw; 
  opacity: 0.8; 
}


/* スライドライン */

.bbs{
  align-items: center;
  color: #fff;
  display: flex;
  height: 10vw;
  line-height: 2;
  overflow:hidden;
  width: 100%;
  white-space:nowrap;
  z-index: 1;
}
.bbs ul {
  animation: flowing 60s linear infinite;
  font-size: 1.5vw;
  transform:translateX(100%);
  margin: 0;
  padding: 0;
}
.bbs ul li{
  display: inline-block;
  padding-right: 3%;
  font-family: Spectral;
  letter-spacing: 0.07em;
  filter: opacity(40%);
}
@keyframes flowing {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}





/* フッター */
footer {
  padding: 6% 12.5%;
  background-color: rgb(43, 44, 44)
}

footer img {
  width: 27%;
  margin-bottom: 4%;
}

.logoline {
    display: flex;
}

.line {
    width: 65%;
    margin-left: 11%;
    margin-right: auto;
    margin-bottom: 5%;
    border-bottom: 0.5px solid #ffffff;
}


.footer-flexbox {
    display: flex;
}

footer .addressbox {
  width: 38%;
}


footer .addressbox address {
    font-weight: 200;
    font-size: 1.1vw;   
    font-style: normal;
    line-height: 2;
    font-family: Noto_Sans_JP;
    letter-spacing: 0.07em;
    color: #fff;  
}

.textbox {
    display: flex;
    width: 70%;
    margin-left: 5%;
}

.footer-middlebox {
  width: 20%;
}

.footer-rightbox {
    width: 20%;
    margin-left: 10%;
}


footer .footer-middlebox a, .footer-rightbox a {
    line-height: 2;
    font-weight: 200;
    font-size: 1.1vw; 
    text-decoration: none;  
    color: #fff;
    transition: 0.5s;
  }

  footer .footer-middlebox a:hover {
    font-weight: 400;
    transition: 0.5s;
  }
  
  footer .footer-rightbox a:hover {
    font-weight: 400;
    transition: 0.5s;
  }

footer .sns-icon {
    width: 13%;
    margin-left: 15%;
    height: fit-content;
    font-size: 1.5vw;
  }

footer .sns-icon .fa-brands {
    color: #fff;
  }

footer .sns-icon .fa-instagram {
  margin-left: 17%;
  }
  
footer .textbox p {    
    letter-spacing: 0.07em;
    font-size: 0.9vw;
    color: #fff;
}