@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
html *,
::before,
::after {
  box-sizing: border-box;
}
*{
min-width: 0;
min-height: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 15px;
  animation: bodyfadeIn 2s ease 0s 1 normal;
  -webkit-animation: bodyfadeIn 2s ease 0s 1 normal;
  /* font-feature-settings: "palt"; */
  overflow-x: hidden;
  color: #333333;
}
body.active {
  overflow-y: hidden;
}
.futura {
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.notojp {
  font-family: 'Noto Sans JP', sans-serif;
}
.roboto {
  font-family: 'Roboto', sans-serif;
}
.ropa_sans {
  font-family: 'Ropa Sans', sans-serif;
}
p {
  font-size: 15px;
  line-height: 1.5;
}
strong {
  font-weight: bold;
}
a {
  color: #333333;
  text-decoration:none;
}

.trans {
  transition: all 0.5s;
}

.trans:hover {
  opacity: 0.5;
  transition: all 0.5s;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wrap {
  max-width: 1280px;
  width: 95%;
  margin: auto;
}
.w_920 {
  max-width: 920px;
  margin: auto;
  width: 95%;
} 
.spv {
  display: none;
}
.tsv {
  display: none;
}
.sp_only {
  display: none;
}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}
.overlay.active {
  width: 100%;
  height: 100%;
  opacity: 1;
}
@keyframes bodyfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes bodyfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 1px) and (max-width: 960px) {
  .trans:hover {
    opacity: 1;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .wrap {
    width: 90%;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  .pcv {
    display: none;
  }
  .spv {
    display: block;
  }
  p {
    font-size: 14px;
  }
  a {
    font-size: 14px;
  }
  .wrap.sp_w96 {
    width: 96%;
  }
}
