@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");

/* ===================================================================================
  Reset CSS
=================================================================================== */
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6,
p, img, small, strong, b, dl, dt, dd, ol, ul, li,
form, label, legend, table, tbody, tfoot, thead, tr, th, td,
footer, header, menu, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: bottom;
  background: transparent;
}

html {
  touch-action: manipulation;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

ul li {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  color: #333;
  text-decoration: none;
  vertical-align: baseline;
}

table {
  border-spacing: 0;
}

/* ===================================================================================
  共通スタイル
=================================================================================== */
body * {
  box-sizing: border-box;
}

/* 画像サイズ統一 */
img, picture, picture img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* ラッパー */
#wrap {
  background: #000;
  max-width: 1920px; /* PC時の最大幅 */
  margin: 0 auto;
}

/* ===================================================================================
  画像上に重ねるCTA（常時表示）
=================================================================================== */
.cv01 {
  position: relative; /* CTAを重ねる基準 */
}

.cv01 .btn {
  position: absolute;
  left: 50%;
  bottom: 5%; /* 下からの距離（調整可） */
  transform: translateX(-50%);
  width: 60vw;         /* PC時の幅 */
  max-width: 734px;    /* デザイン上の最大幅 */
  z-index: 10;         /* 画像より前面 */
}

.cv01 .btn img {
  display: block;
  width: 100%;
  height: auto;
 margin: 0 auto;
 animation: fuwafuwa 1s ease 0s infinite alternate;
 transform-origin:center;
 cursor: pointer;
}

@keyframes fuwafuwa {
 from {transform: scale(0.9,0.9);}
 to {transform: scale(1,1);}
}


.footer {
  position: relative; /* CTAを重ねる基準 */
}

.footer .btn {
  position: absolute;
  left: 50%;
  bottom: 5%; /* 下からの距離（調整可） */
  transform: translateX(-50%);
  width: 60vw;         /* PC時の幅 */
  max-width: 734px;    /* デザイン上の最大幅 */
  z-index: 10;         /* 画像より前面 */
}

.footer .btn img {
   display: block;
  width: 100%;
  height: auto;
 margin: 0 auto;
 animation: fuwafuwa 1s ease 0s infinite alternate;
 transform-origin:center;
 cursor: pointer;
}

@keyframes fuwafuwa {
 from {transform: scale(0.9,0.9);}
 to {transform: scale(1,1);}
}

/* ===================================================================================
  スクロールで下に出るCTA（追従）
=================================================================================== */
.cta_btn {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 50px;
  margin: auto;
  width: 60vw;         /* PC時の幅 */
  max-width: 734px; 
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

.cta_btn.show {
  opacity: 1;
  pointer-events: auto;
}

.cta_btn img {
    display: block;
  width: 100%;
  height: auto;
}

/* ===================================================================================
  コンテンツ
=================================================================================== */
.contents {
  position: relative;
}

.time-slider {
  position: absolute;
  top: 1000px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.time-slider img {
  width: 100%;
  height: auto;
}

.footer-area {
  text-align: center;
  padding: 30px 0;
  background-color: #fdf8f5;
}

.footer-links {
  font-size: 12px;      /* 小さく調整 */
  color: #1b1b1b;
}

.footer-links a {
  color: #1b1b1b;
  text-decoration: none;
  margin: 0 5px;
}

.footer-links .divider {
  margin: 0 5px;
  color: #1b1b1b;
}


/* ===================================================================================
  レスポンシブ調整
=================================================================================== */
@media screen and (max-width: 750px) {
  .cv01 .btn {
    width: 90vw;   /* スマホはほぼ全幅 */
    bottom: 1vw;   /* 少し余白調整 */
  }

 .footer .btn {
    width: 90vw;   /* スマホはほぼ全幅 */
    bottom: 0vw;   /* 少し余白調整 */
  }

  .cta_btn {
    width: 90vw;
    bottom: 20px;
  }
}

@media screen and (min-width: 751px) {
  .cv01 .btn {
    width: 60vw;
  }

  .footer .btn {
    width: 60vw;
  }

  .cta_btn {
    width: 60vw;
  }
}

/* ===================================================================================
  追従CTAだけアニメーションを消す
=================================================================================== */
.cta_btn img {
  animation: none !important;
  transform: none !important;
}

