@charset "utf-8";
/******************************************
▼ リセットCSS ▼
******************************************/
p {
  margin: 0;
}
h1,
h2,
h3 {
  margin: 0;
}
video {
  border: none;
  filter: drop-shadow(0px 0px #000000);
  outline: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  vertical-align: top;
}
a:hover {
  cursor: pointer;
}
button {
  cursor: pointer;
  border: none;
}
[v-cloak] {
  display: none;
}
/******************************************
▼ 共通スタイル ▼
******************************************/
html {
  font-size: 62.5%;
  width: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", sans-serif;
  margin: 0;
  padding: 0;
}
#wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
  width: 100%;
}
.fw-bold {
  font-weight: bold;
}
.fz-9 {
  font-size: 0.9rem;
}
.fz-16 {
  font-size: 1.6rem;
}
.fz-24 {
  font-size: 2.4rem;
}
.img-layout {
  display: block;
  vertical-align: bottom;
  width: 100%;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-56 {
  margin-top: 56px;
}
.mt-64 {
  margin-top: 64px;
}
.mt-72 {
  margin-top: 72px;
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.centered {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.jc-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.btn {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.border-top {
  border-top: 1px solid #cccccc;
  margin: 0 auto 24px;
  width: 90%;
}
.yellow-marker {
  background: linear-gradient(transparent 50%, #ffff00 0%);
}
.ta-right {
  text-align: right;
}
.ta-left {
  text-align: left;
}
.ta-center {
  text-align: center;
}
.w-90 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.lpWrapper a:hover img {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.pos-abs {
  position: absolute;
}
.pos-rltv {
  position: relative;
}
.noCopy {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/******************************************
▼ CTA ▼
******************************************/
/* 共通 */
.cta-box {
  position: relative;
}
.cta-btn {
  position: absolute;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.on-image .cta-link {
  position: absolute;
  top: 72%;
  width: 96%;
  left: 2%;
  height: auto;
}
.cta-link {
  display: block;
  height: 100%;
}
/* ファーストCTA */
.first-cta-btn {
  margin: 0 auto;
}
.cta-first {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(225, 203, 172, 1) 100%
  );
}
/*CTA-スケール変化ボタン*/
.scale-btn {
  animation: scaleButton 2s infinite ease-in-out;
}
@keyframes scaleButton {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
/*CTA-シャイニーボタン*/
.reflection {
  display: inline-block;
  position: absolute;
  bottom: 3.5%;
  width: 94%;
  left: 3%;
  overflow: hidden;
  border-radius: 62px;
}
.reflection_not_bg {
  position: relative;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 62px;
}
.reflection:before,
.reflection_not_bg:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0) 25%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 75%
  );
  -webkit-animation: reflection 2s infinite;
  animation: reflection 2s infinite;
}
@keyframes reflection {
  100% {
    left: 100%;
  }
}
/******************************************
▼ 注釈 ▼
******************************************/
.annotation {
  background-color: #f5f5f5;
  padding: 20px;
}
.annotation h2,
.annotation p,
.annotation li {
  color: #606060;
  font-size: 1.2rem;
}
.annotation h2,
.annotation p,
.annotation ul {
  margin-bottom: 1rem;
}
.info {
  background-color: #dd2626;
  padding: 10px 20px 20px;
}
.info h2,
.info p,
.info a {
  color: #ffffff;
}
.info h2 {
  font-size: 1.6rem;
}
.info p {
  font-size: 1.4rem;
}
/* --------------------------------------------------
	#footer
-------------------------------------------------- */
#footer {
  margin: min(5vh, 20px) 0;
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#footer .btn-toppage {
  position: relative;
  display: flex;
  justify-content: center;
  width: 68%;
  height: auto;
  margin: 0 auto;
  padding: 5%;
  border-radius: 10vw;
  border: #c7467e 2px solid;
  box-sizing: border-box;
  font-size: 1.2rem;
  font-weight: 700;
  color: #c7467e;
  -webkit-border-radius: 10vw;
  -moz-border-radius: 10vw;
  -ms-border-radius: 10vw;
  -o-border-radius: 10vw;
}
#footer .btn-toppage:hover {
  text-decoration: none;
}
#footer .btn-toppage::after {
  content: "";
  display: block;
  position: absolute;
  left: calc((39 / 16.6) * 1vw);
  top: 50%;
  width: calc((32 / 16.6) * 1vw); /*36px;*/
  height: calc((32 / 16.6) * 1vw); /*36px;*/
  background: url("../img/icon_arrow_left.svg") no-repeat;
  background-size: contain;
  width: 8%;
  height: 42%;
  left: 5%;
  top: 30%;
}
