@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

.pc_bg {
  background-color: #e1eefe;
}

.lp_wrapper {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

.p_re {
  position: relative;
}


/* --- 光るアニメーション（透過切り抜き対応） --- */
.btn_anime a {
  display: block;
  position: relative;
  overflow: hidden;

  /* 
   * aタグ内のimg画像（ボタン画像）をそのままマスク（型抜き）として利用する
   */
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* Chrome等の角丸チラつきバグ防止 */
}

/* 
 * ボタン画像自身をマスクとして指定 
 * ※aタグの中にあるimgの透明度を判別して切り抜きます
 */
.btn_anime a img {
  display: block;
  width: 100%;
  height: auto;
}

/* 
 * 光の筋をつくる（斜めのグラデーション）
 */
.btn_anime a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  
  /* 白い光のグラデーション */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  
  /* 光を斜めにする */
  transform: skewX(-25deg);
  
  /* アニメーション実行 */
  animation: btn_shine 4s ease-in-out infinite;
  pointer-events: none;
}
/* 光が左から右へ走り抜けるキーフレーム */
@keyframes btn_shine {
  0% {
    left: -100%;
  }
  /* ▼▼ ここを 20% から 50%〜60% くらいまで広げることで、移動に時間をかける ▼▼ */
  35% {
    left: 200%;
  }
  100% {
    left: 200%; /* 50%〜100% の間が待機時間 */
  }
}


.fv .p_re a {
  display: block;
  position: absolute;
  width: 714px;
  bottom: 135px;
  left: 30px;
}
@media screen and (max-width: 768px) {
  .fv .p_re a {
    width: calc((714/750) * 100vw);
    bottom: calc((135/750) * 100vw);
    left: calc((30/750) * 100vw);
  }
}
/* FVのボタン用（cv_btn_01.png） */
.fv .btn_anime a {
  -webkit-mask-image: url(../img/cv_btn_01.png);
  mask-image: url(../img/cv_btn_01.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.cv_btn_02.p_re a {
  display: block;
  position: absolute;
  width: 714px;
  bottom: 53px;
  left: 30px;
}
@media screen and (max-width: 768px) {
  .cv_btn_02.p_re a {
    width: calc((714/750) * 100vw);
    bottom: calc((53/750) * 100vw);
    left: calc((30/750) * 100vw);
  }
}


.ac_block {
  background-image: url(../img/cnt08_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
} 
.ac_block ul {
  width: 686px;
  margin: 0 auto;
  padding-bottom: 75px;
}
.ac_block ul li {
  margin-bottom: 35px;
}
.ac_block ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .ac_block ul {
    width: calc((686/750) * 100vw);
    padding-bottom: calc((75/750) * 100vw);
  }
  .ac_block ul li {
    margin-bottom: calc((35/750) * 100vw);
  }
}

/* 親要素をインラインブロックにして画像サイズに合わせる */
.q_btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  vertical-align: bottom;
}
.q_btn img {
  display: block;
  width: 100%;
  height: auto;
}
/* --- プラスマイナスアイコンの共通設定 --- */
.q_btn::before,
.q_btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px; 
  width: 24px;
  height: 1px;
  background-color: #FFF;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
@media screen and (max-width: 768px) {
  .q_btn::before,
  .q_btn::after {
    right: calc((20/750) * 100vw);
    width: calc((24/750) * 100vw);
  }
}
/* 
 * 初期状態（プラス）
 */
.q_btn::before {
  transform: translateY(-50%) rotate(0deg);
}
.q_btn::after {
  transform: translateY(-50%) rotate(90deg);
}
/* 
 * 開いた状態（マイナス：線が重なって1本になる）
 */
 .q_btn.is-open::before {
  transform: translateY(-50%) rotate(180deg);
}
.q_btn.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}



.cv_btn_03.p_re a {
  display: block;
  position: absolute;
  width: 654px;
  bottom: 110px;
  left: 55px;
}
@media screen and (max-width: 768px) {
  .cv_btn_03.p_re a {
    width: calc((654/750) * 100vw);
    bottom: calc((110/750) * 100vw);
    left: calc((55/750) * 100vw);
  }
}




