.fv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ===== PC ===== */
.fv-video {
  position: absolute;
  width: 407px;
  height: 728px;
  right: 48px;
  bottom: 40px;
  object-fit: cover;
}

/* 画像（マスク役） */
.fv-image {
  position: relative;
  width: 100%;
  display: block;
  z-index: 2;
  pointer-events: none;
}

.fv-case .swiper-container {
  background-color: #dcf1ef;
}

.fv-case .swiper-container .swiper {
  border: 6px double #fff;
}

@media (max-width: 768px) {
  .fv-video {
    width: 56vw;
    height: auto;
    right: 4vw;
    bottom: 6vw;
    max-width: 320px;

    /* 追加 */
    transform: scale(1.025);
    transform-origin: center center;
  }
}

#type-a .type_coment,
#type-b .type_coment,
#type-c .type_coment,
#type-d .type_coment {
	background: #fff;
	overflow: hidden;
}

.type_hash_bg {
  color: #fff;
  border-radius: 50px;
}
#type-a .type_hash_bg,
.type-a .type_hash_bg {
  background-color: #004a46;
}
#type-b .type_hash_bg,
.type-b .type_hash_bg  {
  background-color: #3b82f6;
}
#type-c .type_hash_bg,
.type-c .type_hash_bg {
  background-color: #f43f5e;
}
#type-d .type_hash_bg,
.type-d .type_hash_bg {
  background-color: #8b5cf6;
}

.type_under_dotted {
  border-top: #404040 dotted 1px;
  border-bottom: #404040 dotted 1px;
}

.type_bg {
	border-radius: 10px;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.1);
	border: #fff 2px solid;
}

.type_bg_img,
.type_coment {
  border-radius: 10px;
  border: #fff 2px solid;
}

.type_questions {
	padding: calc(var(--spacing)*5);
}

.type_q_ttl {
  display: inline-block;
  padding: calc(var(--spacing)*2);
  color: #fff;
  font-weight: bold;
  text-align: center;
  border: #fff 2px solid;
  border-radius: 5px;

  /*box-shadow: inset 0px 0px 8px 0px rgba(0, 0, 0, 0.2);*/

  /* ▼ 斜線背景 */
  /*background-image: repeating-linear-gradient(
    135deg,
    #f0f0f0,
    #f0f0f0 4px,
    #ffffff 4px,
    #ffffff 8px
  );*/

  /* 必要に応じて */
  background-size: auto;
}

#type-a .type_q_ttl {
  background-color: #006b66;
  /*background: repeating-linear-gradient(
    45deg,
    #004a46 0,
    #004a46 5px,
    #006b66 5px,
    #006b66 10px
  );*/
}
#type-b .type_q_ttl {
  background-color: #6aa3ff;
  /*background: repeating-linear-gradient(
    45deg,
    #3b82f6 0,
    #3b82f6 5px,
    #6aa3ff 5px,
    #6aa3ff 10px
  );*/
}
#type-c .type_q_ttl {
  background-color: #ff6b85;
  /*background: repeating-linear-gradient(
    45deg,
    #f43f5e 0,
    #f43f5e 5px,
    #ff6b85 5px,
    #ff6b85 10px
  );*/
}
#type-d .type_q_ttl {
  background-color: #b39afc;
  /*background: repeating-linear-gradient(
    45deg,
    #8b5cf6 0,
    #8b5cf6 5px,
    #b39afc 5px,
    #b39afc 10px
  );*/
}


.type_text_bg {
  padding: 0.15em 0.3em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

#type-a .type_text_bg {
  background-color: #e6f7f6;
}
#type-b .type_text_bg {
  background-color: #eff6ff;
}
#type-c .type_text_bg {
  background-color: #fff1f2;
}
#type-d .type_text_bg {
  background-color: #f5f3ff;
}

.type_point_frame {
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.2);
}

.menu_price {
  font-family: DIN Narrow;
  font-size: clamp(40px, 6.3vw, 64px);
}

.double-frame-title {
  background-color: #01b1a6;
  border-radius: 5px;
  color: #fff;
  /*position: relative;
  padding: 1rem 2rem 0.6rem;
  z-index: 1;
  background-color: #fff;
  border: 2px solid #01b1a6;*/
}

/* 奥側にズレた枠 */
.double-frame-title::before {
  /*content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  border: 2px solid #01b1a6;
  z-index: -1;*/
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.video-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

@keyframes loading-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

.check-icon-main {
  max-width: 5%;
}

@media screen and (max-width: 768px) {
  .type_q_ttl {
    display: block;
  }

  .type_coment_photo {
    margin: -2rem 0;
    overflow: hidden;
  }

  .check-icon-main {
    max-width: 8%;
  }

  .type_q_text {
    border: 2px dashed #999;
    border-radius: 6px;
    padding: calc(var(--spacing)*5)
  }

  #type-a .type_q_text {
    border-color: #E6F7F6;
  }
  #type-b .type_q_text {
    border-color: #EFF6FF;
  }
  #type-c .type_q_text {
    border-color: #FFF1F2;
  }
  #type-d .type_q_text {
    border-color: #F5F3FF;
  }
}

@media screen and (min-width: 769px) {
  .body-wrapper {
    width: 750px;
  }
  .video-container video {
    width: 50%;
    margin: 0 auto; /* 中央揃え */
  }
}