@charset "UTF-8";
*{
	margin:0;
	padding:0;
}

body {
  background-image: url(../images/body-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (min-width: 750px) {
  .body-inner {
    max-width: 750px;
    box-shadow: 0 1px 20px rgb(0 0 0 / 30%);
    background: #fff;
    margin-left: auto;
    margin-right: auto;
  }
}

img {
  width: 100%;
  display: block;
}

/* フローティングバナー */
/* ============================================ */
.float-bnr {
  height: 0;
  opacity: 0;
  transition: 1s;
  pointer-events: none;
}

.float-bnr.show {
  display: block;
  height: auto;
  opacity: 1;
  transition: 1s;
  pointer-events: painted;
  position: fixed;
  bottom: 0;
  z-index: 9997;
}

/* フローティングバナー ここまで */
/* ============================================ */

/* コンテンツの横幅 */
/* ============================================ */
.contents-inner {
  width: 100%;
  max-width: 750px;
	height:auto;
	margin:0 auto;
}

/* コンテンツの横幅 ここまで */
/* ============================================ */

.video {
  position: relative;
  width: 100%;
  background: #bcdfed;
  padding-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.video video {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.video-bg-wrap {
  position: relative; /* ← 背景の上に重ねるための親 */
  width: 100%;
}

.video-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

.video-overlay-video {
  position: absolute;  /* ←背景の上に重なる！ */
  bottom: 13%;           /* ←動画の縦位置（調整可） */
  left: 50%;
  transform: translateX(-50%);
  width: 87%;
  max-width: 800px;
  z-index: 10;
}

.video-overlay-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* footer */
/* ============================================ */
footer {
  display: block;
  padding:20px 20px;
  background: #f5e7e9;
}

ul {
  list-style: none;
}

.footer_nav {
  text-align: center;
  font-size: 13px;
}

.footer_nav li:nth-child(2) {
  border-right: none;
}
.footer_nav li {
  display: inline-block;
  margin: 0 5px 0 0;
  border-right: #2b1710 solid thin;
  font-size: 13px;
}
.footer_nav li a {
  text-decoration: none;
    padding: 0 10px 0 0;
  color: #2b1710;
}

.footer_nav li:last-child {
  border: none;
}

footer .copyright {
  color: #2b1710;
  text-align: center;
  font-size: 12px;
  padding-bottom: 10px;
}

/* footer ここまで */
/* ============================================ */
