@charset "UTF-8";

@font-face {
  font-family: "SF Text";
  font-weight: 400;
  src: url("https://sf.abarba.me/SF-UI-Text-Regular.otf");
}

@font-face {
  font-family: "SF Text";
  font-weight: 700;
  src: url("https://sf.abarba.me/SF-UI-Text-Bold.otf");
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #444;
  font-family: "SF Text", sans-serif;
  font-size: 17px;
  line-height: 2.5;
  letter-spacing: .1em;
  opacity: 0;
  transition: opacity .8s;
}

body.loaded {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  body {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

p {
  text-align: justify;
}

a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: opacity .3s;
}

a:hover {
  opacity: .5;
}

img {
  max-width: 100%;
  height: auto;
}

#enter {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/enter.jpg) center center no-repeat;
  background-size: cover;
}

#enter img {
  width: 250px;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, 0);
}

header {
  padding: 100px 0;
  text-align: center;
}

header img {
  width: 100%;
  max-width: 250px;
}

header .store {
  display: block;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
}

#main {
}

#main h1 {
  color: #000;
  text-align: center;
  font-size: 150%;
  font-weight: bold;
  letter-spacing: .3em;
  text-indent: .3em;
}

#main .image {
  display: block;
  width: 84%;
  max-width: 1200px;
  margin: 80px auto 0;
}

#main .body {
  width: 84%;
  margin: 80px auto 0;
  max-width: 800px;
}

.top .cover {
  display: block;
  width: 84%;
  max-width: 800px;
  margin: 0 auto;
}

.top .concept {
  text-align: center;
  font-size: 110%;
  line-height: 2.5;
  width: 84%;
  margin: 150px auto 0;
}

.top .index {
  display: flex;
  list-style: none;
  justify-content: space-between;
  text-align: center;
  width: 84%;
  margin: 150px auto 0;
  max-width: 1000px;
}

.top .index li {
  display: block;
  width: 23%;
}

.top .index a {
  display: block;
}

.top .index img {
  display: block;
  margin-bottom: 10px;
}

.about .history {
  display: block;
  width: 84%;
  margin: 80px auto 0;
  max-width: 800px;
  overflow: hidden;
}

.about .history dt {
  float: left;
  width: 150px;
  color: #999;
}

.about .history dd {
  width: 100%;
  padding-left: 150px;
}

.about .history dt:nth-of-type(n+2),
.about .history dd:nth-of-type(n+2) {
  margin-top: 25px;
}

.contact .box {
  text-align: center;
  display: block;
  border: 1px solid #000;
  width: 70%;
  max-width: 400px;
  margin: 40px auto 0;
  line-height: 80px;
  border-radius: 5px;
}

footer {
  padding: 200px 0;
  text-align: center;
}

footer ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  width: 84%;
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: 100px;
}

footer li a {
  padding-bottom: 10px;
}

.about footer li:nth-child(2) a,
.feature footer li:nth-child(3) a,
.data footer li:nth-child(4) a,
.contact footer li:nth-child(5) a {
  border-bottom: 1px solid #000;
}

footer .store {
  display: block;
  color: #fff;
  background: #000;
  width: 70%;
  max-width: 400px;
  margin: 0 auto;
  line-height: 60px;
  border-radius: 5px;
}




@media screen and (max-width: 767px) {
  br.smp {
    display: none;
  }

  #enter img {
    width: 180px;
    top: 50px;
  }
  
  header {
    padding: 60px 0;
  }

  header img {
    max-width: 180px;
  }

  #main .image ,
  #main .body {
    margin-top: 50px;
  }
  
  .top .concept,
  .top .index {
    margin-top: 100px;
  }
  
  .top .concept {
    font-size: 100%;
    text-align: justify;
  }
  
  .top .index {
    flex-wrap: wrap;
  }
  
  .top .index li {
    width: 45%;
  }
  
  .top .index li:nth-child(n+3) {
    margin-top: 30px;
  }

  .about .history dt,
  .about .history dd {
    float: none;
    display: block;
    width: 100%;
    padding: 0;
  }

  .about .history dd:nth-of-type(n+2) {
    margin-top: 0;
  }
  
  .contact .box {
    line-height: 50px;
  }
  
  footer {
    padding: 100px 0;
  }
  
  footer ul {
    display: block;
    margin-bottom: 50px;
  }
  
  footer li {
    display: block;
  }
  
  footer li:nth-child(n+2) {
    margin-top: 30px;
  }
  
  footer .store {
    line-height: 50px;
  }
}