@charset "UTF-8";

body {
  background-image: url(../img/bg-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: contain;
  background-attachment: fixed;
  /* background-color: #d4b276; */
  /* color: #696969; */
  color: #f6f7f9;
}

.main {
  background: rgba(0, 0, 0, 0.4);
}

body a {
  color: #f6f7f9;
  text-decoration: none;
}

body a:hover {
  opacity: 0.5;
  text-decoration: solid;
}


/* pc */

@media screen and (min-width:800px) {
  .header {
    height: 80px;
    display: flex;
    position: relative;
    width: 100%;
  }

  .header h1 {
    width: 300px;
    font-size: 40px;
    text-align: center;
    height: 50px;
    margin-top: 20px;
    font-family: "Yusei Magic", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .header span {
    font-size: 20px;
  }

  .header ul {
    width: 500px;
    position: absolute;
    right: 0;
    margin: 1%;
  }

  .header ul li {
    display: inline-block;
    padding: 2%;
    width: 100px;
    text-align: center;
    font-size: 18px;
  }

  .main-visual {
    position: relative;
    height: 500px;
    width: 100%;
    background-image: url(../img/main-visual.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .main-visual__title {
    position: absolute;
    width: 500px;
    left: 5%;
    bottom: 5%;
  }

  .main-visual__title h1 {
    text-align: center;
    font-size: 80px;
    font-family: "Yusei Magic", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 20px;
    /* animation */
    opacity: 0;
    animation-name: h1-anime;
    animation-duration: 2s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
    /* animation */
  }

  @keyframes h1-anime {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .border-anime {
    position: relative;
  }

  .border-anime::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    border: solid 1.5px #f6f7f8;
    animation: anime 1s linear forwards;
    animation-delay: 2s;
  }

  @keyframes anime {
    0% {
      width: 0%;
    }

    100% {
      width: 100%;
    }
  }


  .main-visual__title h2 {
    font-size: 60px;
    text-align: right;
    padding-top: 20px;
    font-family: "Yusei Magic", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* animation */
    animation-name: h2-anime;
    animation-duration: 2s;
    animation-delay: 4s;
    animation-fill-mode: forwards;
    opacity: 0;
    /* animation */
  }

  @keyframes h2-anime {
    0% {
      opacity: 0;
      transform: translateY(0);
    }

    100% {
      opacity: 1;
      transform: translateY(10px);
    }
  }

  .main-discription h2 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: 600;
  }

  .main-discription p {
    width: 800px;
    margin: 0 auto;
    line-height: 2;
    font-size: 30px;
  }

  .main-discription span {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .top-discription ul {
    margin: 50px auto 50px;
    width: 80%;
  }

  .top-discription ul li {
    height: 300px;
    display: flex;
    background: rgba(0, 0, 0, 0.5);

  }

  .top-discription ul li:nth-child(even) {
    flex-direction: row-reverse;
  }

  .top-discription ul li p {
    width: 50%;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding-top: 100px;
  }

  .top-discription ul li img {
    height: 300px;
    width: 50%;
    align-self: auto;
    object-fit: cover;
  }

  #item h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 50px;
  }

  #item ul {
    width: 100%;
    text-align: center;
  }

  #item ul li {
    display: inline-block;
    text-align: center;
    padding: 2%;
  }

  #item ul li h2 {
    text-align: center;
    margin-top: 30px;
  }

  #item ul li img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
  }

  #item p {
    text-align: center;
  }

  .footer {
    height: 350px;
    position: relative;
  }

  .footer h1 {
    font-size: 30px;
  }

  .flex-box {
    display: flex;
  }

  .footer h1 {
    position: absolute;
    left: 8%;
    top: 10%;
  }

  .footer ul {
    position: absolute;
    top: 20%;
    right: 5%;
  }

  .copyright {
    margin: 0 auto;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 5%;
  }
}

/* pc */

/* mobile */

@media screen and (max-width:800px) {
  .header {
    height: 80px;
    display: flex;
    position: relative;
    width: 100%;
  }

  .header h1 {
    /* position: absolute; */
    top: 20%;
    font-size: 40px;
    height: 50px;
    margin: 5% auto 0 auto;
    font-family: "Yusei Magic", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .header span {
    font-size: 20px;
  }

  .header ul {
    display: none;
  }

  .main-visual {
    position: relative;
    height: 300px;
    width: 100%;
    background-image: url(../img/main-visual.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .main-visual__title {
    position: absolute;
    width: 200px;
    left: 5%;
    bottom: 5%;
  }

  .main-visual__title h1 {
    text-align: center;
    font-size: 45px;
    font-family: "Yusei Magic", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 20px;
    /* animation */
    opacity: 0;
    animation-name: h1-anime;
    animation-duration: 2s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
    /* animation */
  }

  @keyframes h1-anime {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .border-anime {
    position: relative;
  }

  .border-anime::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    border: solid 1.5px #f6f7f8;
    animation: anime 1s linear forwards;
    animation-delay: 2s;
  }

  @keyframes anime {
    0% {
      width: 0%;
    }

    100% {
      width: 100%;
    }
  }


  .main-visual__title h2 {
    font-size: 30px;
    text-align: right;
    padding-top: 5px;
    font-family: "Yusei Magic", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* animation */
    animation-name: h2-anime;
    animation-duration: 2s;
    animation-delay: 4s;
    animation-fill-mode: forwards;
    opacity: 0;
    /* animation */
  }

  @keyframes h2-anime {
    0% {
      opacity: 0;
      transform: translateY(0);
    }

    100% {
      opacity: 1;
      transform: translateY(10px);
    }
  }

  .main-discription h2 {
    text-align: center;
    font-size: 25px;
    padding: 30px;
  }

  .main-discription p {
    margin: 0 auto;
    font-size: 18px;
    line-height: 2;
    padding: 2%;
  }

  .main-discription p br {
    display: none;
  }

  .top-discription ul li {
    height: 150px;
    display: flex;
    background: rgba(0, 0, 0, 0.5);
  }

  .top-discription ul li:nth-child(even) {
    flex-direction: row-reverse;
  }

  .top-discription ul li p {
    width: 50%;
    margin-top: 20px;
    padding: 4%;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    color: #fff;
  }

  .top-discription ul li img {
    height: 150px;
    width: 50%;
    align-self: auto;
    object-fit: cover;
  }

  #item h1 {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    margin: 20px auto 20px auto;
  }

  #item ul {
    margin: 0 auto;
    text-align: center;
  }

  #item ul:last-child {
    margin-top: 20px;
  }

  #item ul li {
    display: inline-block;
    text-align: center;
    padding-left: 2%;
    padding-right: 2%;
  }

  #item ul li h2 {
    text-align: center;
  }

  #item ul li img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }

  #item p {
    text-align: center;
  }

  .sns h1 {
    text-align: center;
    margin-top: 50px;
    font-size: 20px;

  }

  .sns ul {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
  }

  .sns ul li {
    display: inline-block;
    padding: 3%;
    text-align: center;
  }

  .sns ul li img {
    width: 80px;
    border-radius: 50%;
  }

  .footer {
    width: 100%;
    height: 300px;
    position: relative;
  }

  .flex-box {
    display: flex;
  }

  .footer h1 {
    position: absolute;
    left: 8%;
    top: 10%;
  }

  .footer ul {
    position: absolute;
    top: 20%;
    right: 5%;
  }

  .copyright {
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 5%;
  }

}

/* mobile */