@charset "utf-8";

html {
  height: 100% ;
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  color: black;
  line-height: 1.4;
}


/* ----------------
  media
  ---------------- */
/* for SP */
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/* for PC */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1020px;
  }
}

.clearfix:after {
  content:" ";
  display:block;
  clear:both;
}


header h1 {
  font-family: 'Wire One', sans-serif;
  font-weight: normal;
  font-size: 3.8rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  header h1 {
    font-size: 5rem;
    margin: 20px 0 15px;
  }
}

.visual img {
  max-width: 100%;
}

.wrap {
  padding: 0 20px;
  margin: 50px 0;
}

.wrap h2 {
  font-family: 'Wire One', sans-serif;
  font-weight: normal;
  text-align: center;
  font-size: 3rem;
}

.wrap .photo {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.wrap .photo img {
  width: calc(100% / 2);
  height: 100%;
}

.wrap .menu li {
  margin-bottom: 30px;
}

.wrap .menu li h3 {
  width: 100%;
  padding: 10px;
  color: white;
  background-color: black;
  margin-bottom: 15px;
}

.wrap .note {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 80px;
}

.wrap .form-to {
  margin: 0 auto 150px;
}

@media screen and (min-width: 768px) {
  .wrap {
    width: 700px;
    padding: 0;
    margin: 70px auto;
  }

  .wrap h2 {
    font-size: 4rem;
    margin-bottom: 20px;
  }

  .wrap .photo img {
    width: calc(100% / 4);
  }

  .wrap .menu li {
    margin-bottom: 50px;
  }
  
  .wrap .menu li h3 {
    padding: 10px 20px;
    text-align: center;
  }

  .wrap .menu li p {
    text-align: center;
    line-height: 1.8;
  }

  .wrap .form-to {
    width: 400px;
    margin: 0 auto 250px;
  }
  
  
}


.btn,
a.btn {
  width: 100%;
  font-size: 1.8rem;
  line-height: 65px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
}

a.btn-gradient {
  font-weight: normal;

  color: #fff;
  border-radius: 100vh;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(40%, #ff034e),
    to(#562b7c)
  );
  background-image: -webkit-linear-gradient(left, #ff034e 40%, #562b7c 100%);
  background-image: linear-gradient(90deg, #ff034e 40%, #562b7c 100%);
}

a.btn-gradient:after {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100vh;
  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;

  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff034e),
    color-stop(#562b7c),
    to(#2b86c5)
  );

  background-image: -webkit-linear-gradient(left, #ff034e, #562b7c, #2b86c5);

  background-image: linear-gradient(90deg, #ff034e, #562b7c, #2b86c5);
}

a.btn-gradient span {
  position: relative;
  z-index: 1;
}

a.btn-gradient:hover {
  color: #fff;
}

a.btn-gradient:hover:after {
  opacity: 0;
}

.privacy_area {
  margin-top: 40px;
}

.privacy_area h3 {
  font-weight: bold;
}

.privacy_area p {
  font-size: 1.5rem;
}

.privacy_area strong {
  font-weight: bold;
}

.privacy_area .ppArea {
  width: 100%;
  margin: 20px auto 50px auto;
  display: block;
  height: 150px;
  overflow-y: scroll;
  border: 1px solid #CCC;
  padding: 20px 4%;
}

@media screen and (min-width: 768px) {

}

footer p {
  font-size: 1rem;
  line-height: 40px;
  text-align: center;
  color: white;
  background-color: black;
}