@charset "UTF-8";

html {
  font-family: "Noto Sans JP", serif;
  font-size: 62.5%;
  /* font-weight: 500; */
}

body {
  /* font-size: 1.6rem; */
  line-height: 1.5;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #fff;
}
.link{
  transition: .3s;
}
.link:hover{
  opacity: .7;
}

img {
  backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
  width: 100%;
  display: block;
}

p {
  text-align: justify;
  word-break: break-all;
}

li {
  list-style: none;
}

div {
  box-sizing: border-box;
}

.br_spOnly{
  display: none;
}

#box {
  width: 100%;
  overflow-x: hidden;
}

.page-wrap{
  width: 100%;
  min-height: 100vh;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-wrap{
  width: 80%;
  padding: 50px 0;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.logo{
  width: 100%;
  max-width: 488px;
  margin: 0 auto;
}
.text1{
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 64px 0 20px;
}
.text1 span{
  font-family: "Plus Jakarta Sans", serif;
}
.text2{
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.icon_insta{
  width: 41px;
  display: block;
  margin: 25px auto 0;
}

@media screen and (max-width: 768px) {
  .br_spOnly{
    display: inline;
  }
  .content-wrap{
    padding: 30px 0;
  }
  .logo{
    width: 90%;
  }
  .text1{
    font-size: 1.7rem;
    margin: 48px 0 15px;
  }
  .text2{
    font-size: 1.4rem;
  }
  .icon_insta{
    width: 32px;
    margin-top: 18px;
  }
}
