@charset "UTF-8";

/* CSS Document */

/**********
base
**********/

/*初期設定CSS*/
.l_main {
  color: #000;
  font: 400 16px "Helvetica Neue", "Noto Sans JP", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, メイリオ, Meiryo, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

/* リセット */
.l_main img {
  width: 100%;
  max-width: 100%;
}
#base {
  width: 1200px;
}
div#cont {
  margin: 0;
}
div#cont div#c3_lrr {
  overflow: visible;
}
div#cont div#c3_lrr {
  width: 970px;
}
.l_section__item.m_heading {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  #base {
    width: 100%;
  }
  div#cont div#c3_lrr {
    width: 100%;
  }
}

.l_section__item {
  padding-top: 80px;
}

/* btnラッパー */
.m_btnWrap {
}

.m_btnWrap__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a11f24;
  font-weight: 700;
  font-size: 26px;
}

.m_btnWrap__lead::before,.m_btnWrap__lead::after {
  content: "";
  display: block;
  width: 2px;
  height: 1em;
  background: #a11f24
}

.m_btnWrap__lead::before {
  margin-right: 15px;
  transform: rotate(-20deg)
}

.m_btnWrap__lead::after {
  margin-left: 15px;
  transform: rotate(20deg)
}

.m_btnWrap__lead+.m_btnWrap__body {
  margin-top: 30px
}

.m_btnWrap__body {
  display: flex;
  justify-content: center
}
.m_btnWrap__msg{
  font-weight: bold;
  font-size: 18px;
}
.m_btnWrap__msg  + .m_btnWrap__msg{
  margin-top: 20px;
}
.m_btnWrap__listItem{
  position: relative;
  padding-left: 1em;
}
.m_btnWrap__listItem::before{
  content: "・";
  position: absolute;
  left: 0;
}
.m_btnWrap__listItem + .m_btnWrap__listItem{
  margin-top: 5px;
}
.m_btnWrap__btn{}
.m_btnWrap__body + .m_btnWrap__btn{
  margin-top: 40px;
}
.m_btnWrap__footer{
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;  
}
.m_btnWrap__note{
  position: relative;
  padding-left: 1em;
  font-size: 18px;
}
.m_btnWrap__note::before{
  content: "※";
  position: absolute;
  left: 0;
}
.m_btnWrap__link{
  text-decoration: underline;
}


/* ボタン */
.m_btn {
    display: flex;
    align-items: stretch
}

.m_btn::before {
    content: "";
    width: 0;
    display: block
}

.m_btn__target {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    transition: .3s opacity
}

.m_btn__target:hover {
    opacity: .7
}

.m_btn--cta {
  justify-content: center;
}

.m_btn--cta::before {
    height: 72px
}

.m_btn--cta .m_btn__target {
    width: 100%;
    max-width: 520px;
    border-radius: 9px;
    background: #a11f24;
    color: #fff;
    font-size: 24px;
    font-weight: 700
}


/* Navi */
.l_nav__list {
  display: flex;
  justify-content: space-between;
  margin-inline: 15px;
}
.m_heading__nav_target {
  position: relative;
  display: block;
  padding: 10px;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.m_heading__nav_target::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
  background-color: #c24846;
  opacity: 0;
  transition: opacity 0.2s;
}
.m_heading__nav_target:hover::after {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .l_nav__list {
    flex-direction: column;
  }
  .m_heading__nav_target {
    font-size: 14px;
    border-bottom: 1px solid #c24846;
  }
  .m_heading__nav_target::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    display: block;
    width: 6px;
    height: 6px;
    margin: auto 0;
    border-right: 2px solid #c24846;
    border-top: 2px solid #c24846;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .m_heading__nav_target::after {
    display: none;
  }
}

/* Title */
.m_manualVideo__ttl {
  position: relative;
  margin-bottom: 20px;
  padding: 5px 15px 5px 60px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background-color: #c24846;
  border-radius: calc(1px / 0);
}
.m_manualVideo__ttl::before {
  content: "";
  position: absolute;
  display: block;
  width: auto;
  height: 46px;
  aspect-ratio: 1 / 1;
  left: 3px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  background-image: url(/resource/img/dougahyakkaten/manual_video/ico_manual.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 34px 35px;
  border-radius: calc(1px / 0);
}
.m_manualVideo__ttl > span {
  font-size: 20px;
}
.m_manualVideo__subTtl {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .m_manualVideo__ttl {
    padding: 10px 15px 10px 60px;
    font-size: 20px;
  }
  .m_manualVideo__ttl > span {
    display: block;
    font-size: 14px;
  }
  .m_manualVideo__subTtl {
    font-size: 18px;
  }
}

/* About */
.m_manualVideo__about_image {
  border: 1px solid #c24846;
  border-radius: 15px;
  box-shadow: 5px 7px 0 #c24846;
  overflow: hidden;
}
.m_manualVideo__about_imageHead {
  display: flex;
}
.m_manualVideo__about_imageHead_label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 30px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
  background-color: #c24846;
  border-end-end-radius: 15px;
}
.m_manualVideo__about_imageHead_ttl {
  width: 100%;
  margin: 30px 30px 0;
  padding-bottom: 30px;
  color: #c24846;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  background-image: repeating-linear-gradient(90deg, #e3e3e3, #e3e3e3 8px, transparent 8px, transparent 16px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 3px;
}
.m_manualVideo__about_imageCont {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 30px;
}
.m_manualVideo__about_imageCont_itm {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.m_manualVideo__about_imageCont_img {
  width: 100%;
  max-width: 170px;
}
.m_manualVideo__about_imageCont_comment {
  position: relative;
  padding: 12px 25px 12px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.67;
  border-radius: 10px;
}

.m_manualVideo__about_imageCont_itm--before {
  flex-direction: row-reverse;
}
.m_manualVideo__about_imageCont_itm--before .m_manualVideo__about_imageCont_comment {
  background-color: #f3f3f3;
}
.m_manualVideo__about_imageCont_itm--before .m_manualVideo__about_imageCont_comment::after {
  content: "";
  position: absolute;
  display: block;
  width: 19px;
  height: 22px;
  top: 0;
  bottom: 0;
  right: -16px;
  margin: auto;
  background-color: #f3f3f3;
  -webkit-clip-path: polygon(100% 50%, 0 100%, 0 0);
  clip-path: polygon(100% 50%, 0 100%, 0 0);
}
.m_manualVideo__about_imageCont_itm--before .m_manualVideo__about_imageCont_comment + .m_manualVideo__about_imageCont_comment {
  margin-top: 15px;
}

.m_manualVideo__about_imageCont_itm--after::before {
  content: "";
  position: absolute;
  display: block;
  width: 33px;
  height: 23px;
  left: -35px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(/resource/img/dougahyakkaten/manual_video/ico_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.m_manualVideo__about_imageCont_itm--after .m_manualVideo__about_imageCont_comment {
  background-color: #fff;
  border: 1px solid #c24846;
}
.m_manualVideo__about_imageCont_itm--after .m_manualVideo__about_imageCont_comment::before,
.m_manualVideo__about_imageCont_itm--after .m_manualVideo__about_imageCont_comment::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  width: 12px;
  height: 15px;
  margin: auto;
  -webkit-clip-path: polygon(100% 100%, 0 50%, 100% 0);
  clip-path: polygon(100% 100%, 0 50%, 100% 0);
}
.m_manualVideo__about_imageCont_itm--after .m_manualVideo__about_imageCont_comment::before {
  left: -12px;
  background-color: #c24846;
}
.m_manualVideo__about_imageCont_itm--after .m_manualVideo__about_imageCont_comment::after {
  left: -10px;
  background-color: #fff;
}
.m_manualVideo__about_imageCont_itm--after .m_manualVideo__about_imageCont_comment + .m_manualVideo__about_imageCont_comment {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .m_manualVideo__about_imageHead {
    flex-direction: column;
  }
  .m_manualVideo__about_imageHead_label {
    padding: 10px;
    font-size: 18px;
    justify-content: center;
    text-align: center;
    border-radius: 0;
  }
  .m_manualVideo__about_imageHead_ttl {
    margin: 10px 0 0;
    padding-bottom: 0;
    font-size: 12px;
    text-align: center;
    background: none;
  }
  .m_manualVideo__about_imageCont {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 75px;
  }
  .m_manualVideo__about_imageCont_itm {
    justify-content: center;
  }
  .m_manualVideo__about_imageCont_itm--after {
    flex-direction: row-reverse;
  }
  .m_manualVideo__about_imageCont_itm--after::before {
    left: 0;
    right: 0;
    top: -55px;
    bottom: auto;
    rotate: 90deg;
  }
  .m_manualVideo__about_imageCont_img {
    max-width: 90px;
  }
  .m_manualVideo__about_imageCont_comment {
    padding: 12px 10px;
    font-size: 12px;
  }
  .m_manualVideo__about_imageCont_itm--after .m_manualVideo__about_imageCont_comment + .m_manualVideo__about_imageCont_comment {
    margin-top: 25px;
  }
  .m_manualVideo__about_imageCont_itm--after .m_manualVideo__about_imageCont_comment::before,
  .m_manualVideo__about_imageCont_itm--after .m_manualVideo__about_imageCont_comment::after {
    left: auto;
    width: 19px;
    height: 22px;
    -webkit-clip-path: polygon(100% 50%, 0 100%, 0 0);
    clip-path: polygon(100% 50%, 0 100%, 0 0);
  }
  .m_manualVideo__about_imageCont_itm--after .m_manualVideo__about_imageCont_comment::before {
    right: -19px;
  }
  .m_manualVideo__about_imageCont_itm--after .m_manualVideo__about_imageCont_comment::after {
    right: -17px;
  }
}

/* Point */
.m_manualVideo_pointItem {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid #c24846;
  border-radius: 15px;
  box-shadow: 5px 8px 0 #c24846;
  overflow: hidden;
}
.m_manualVideo_pointItem + .m_manualVideo_pointItem {
  margin-top: 25px;
}
.m_manualVideo_pointItem_num {
  display: block;
  color: #c24846;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}
.m_manualVideo_pointItem_num--txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  padding-left: 3px;
  color: #fff;
  font-size: 67px;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  background-color: #c24846;
  border-radius: calc(1px / 0);
  aspect-ratio: 1 / 1;
}
.m_manualVideo_pointItem_ttl {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.045em;
}
.m_manualVideo_pointItem_txt {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.045em;
}
@media screen and (max-width: 768px) {
  .m_manualVideo_pointItem_num {
    font-size: 14px;
  }
  .m_manualVideo_pointItem_num--txt {
    width: 60px;
    font-size: 40px;
  }
  .m_manualVideo_pointItem_ttl {
    font-size: 20px;
  }
  .m_manualVideo_pointItem_txt {
    font-size: 16px;
  }
}

/* Flow */
.m_manualVideo__flow {
  padding: 20px 30px 30px;
  background-color: #f2f2f2;
  border-radius: 10px;
}
.m_manualVideo__flowTtl {
  color: #c24846;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.m_manualVideo__flowStep {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.m_manualVideo__flowStep::before {
  content: "";
  position: absolute;
  display: block;
  width: 99%;
  height: 2px;
  inset: 15px 0 0;
  margin: auto;
  background-color: #c24846;
}
.m_manualVideo__flowStep_itm {
  cursor: pointer;
}
.m_manualVideo__flowStep_itmNum {
  position: relative;
  display: block;
  color: #c24846;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
.m_manualVideo__flowStep_itmNum::after {
  content: "";
  display: block;
  width: 80px;
  aspect-ratio: 1 / 1;
  margin: 5px auto;
  background-color: #fff;
  border-radius: calc(1px / 0);
  box-shadow: 0 3px 6px rgb(0 0 0 / 0.16);
  transition: background-color 0.2s;
}
.m_manualVideo__flowStep_itmNum::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80px;
  aspect-ratio: 1 / 1;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left top;
  mask-position: left top;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  background-color: #c24846;
  transition: background-color 0.2s;
}
.m_manualVideo__flowStep_itm:nth-child(1) .m_manualVideo__flowStep_itmNum::before {
  -webkit-mask-image: url(../../img/dougahyakkaten/manual_video/icon_flow01_off.svg);
  mask-image: url(../../img/dougahyakkaten/manual_video/icon_flow01_off.svg);
}
.m_manualVideo__flowStep_itm:nth-child(2) .m_manualVideo__flowStep_itmNum::before {
  -webkit-mask-image: url(../../img/dougahyakkaten/manual_video/icon_flow02_off.svg);
  mask-image: url(../../img/dougahyakkaten/manual_video/icon_flow02_off.svg);
}
.m_manualVideo__flowStep_itm:nth-child(3) .m_manualVideo__flowStep_itmNum::before {
  -webkit-mask-image: url(../../img/dougahyakkaten/manual_video/icon_flow03_off.svg);
  mask-image: url(../../img/dougahyakkaten/manual_video/icon_flow03_off.svg);
}
.m_manualVideo__flowStep_itm:nth-child(4) .m_manualVideo__flowStep_itmNum::before {
  -webkit-mask-image: url(../../img/dougahyakkaten/manual_video/icon_flow04_off.svg);
  mask-image: url(../../img/dougahyakkaten/manual_video/icon_flow04_off.svg);
}
.m_manualVideo__flowStep_itmTtl {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
}
.m_manualVideo__flowStep_itm.js_current .m_manualVideo__flowStep_itmNum::before,
.m_manualVideo__flowStep_itmNum:hover::before {
  background-color: #fff;
}
.m_manualVideo__flowStep_itm.js_current .m_manualVideo__flowStep_itmNum::after,
.m_manualVideo__flowStep_itmNum:hover::after {
  background-color: #c24846;
}

.m_manualVideo__flowSlider_wrap {
  position: relative;
  overflow: hidden;
}
.m_manualVideo__flowSlider_wrapper {
  overflow: visible !important;
}
.m_manualVideo__flowSlider.swiper-wrapper {
  align-items: end;
  /* transform: translate3d(0, 0, 0) !important; */
  transition: all 0.5s !important;
}
.m_manualVideo__flowSlider_itm.swiper-slide {
  /* margin-right: 30px; */
  transition: all 0.5s;
}
.m_manualVideo__flowSlider_itm_img {
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: width 0.5s;
}

.m_manualVideo__flowSlider_cont {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.m_manualVideo__flowSlider_contItm {
  width: 100%;
  height: 100%;
  transition: all 0.5s !important;
}
.m_manualVideo__flowSlider_contWrap.swiper {
  overflow: visible;
  z-index: 10;
}
.m_manualVideo__flowSlider_contTtl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.045em;
  background-color: #c24846;
  border-end-end-radius: 15px;
}
.m_manualVideo__flowSlider_contTxt {
  padding: 10px 20px 40px;
}

.m_manualVideo__flowSlider_arrow {
  position: absolute;
  width: 40px;
  height: auto;
  right: 90px;
  bottom: 0;
  border: none;
  aspect-ratio: 1 / 1;
  background-color: #c24846;
  background-image: url(/resource/img/dougahyakkaten/manual_video/ico_slider_arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: calc(1px / 0);
  box-shadow: 0 3px 6px rgb(0 0 0 / 0.16);
  translate: 0 50%;
  cursor: pointer;
  z-index: 5;
}
.m_manualVideo__flowSlider_arrow--next {
  rotate: 180deg;
  right: 20px;
}
.m_manualVideo__flowSlider_arrow.swiper-button-disabled {
  background-color: rgb(194 72 70 / 0.6);
}

.m_manualVideo__flowNote {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-align: right;
}

@media screen and (min-width: 769px) {
  .m_manualVideo__flowSlider {
    min-height: 295px;
  }
  .m_manualVideo__flowSlider_inr {
    padding-right: 800px !important;
    overflow: visible !important;
  }
  .m_manualVideo__flowSlider_itm_img {
    width: 110px;
  }
  .m_manualVideo__flowSlider_itm.swiper-slide.swiper-slide-active {
    margin-right: 400px !important;
  }
  .swiper-slide-active .m_manualVideo__flowSlider_itm_img {
    width: 480px;
  }

  .m_manualVideo__flowSlider_contWrap.swiper {
    position: absolute;
    width: 385px;
    height: 165px;
    top: 0;
    right: 0;
    margin-left: auto;
  }
}

@media screen and (max-width: 768px) {
  .m_manualVideo__flow {
    padding: 20px;
  }
  .m_manualVideo__flowTtl {
    font-size: 20px;
  }
  .m_manualVideo__flowStep::before {
    inset: 15px 0 0;
  }
  .m_manualVideo__flowStep_itmNum {
    font-size: 0;
  }
  .m_manualVideo__flowStep_itmNum::after {
    width: 60px;
  }
  .m_manualVideo__flowStep_itmNum::before {
    width: 60px;
  }
  .m_manualVideo__flowStep_itmTtl {
    display: none;
  }

  .m_manualVideo__flowSlider_inr {
    display: flex;
    flex-direction: column-reverse;
  }
  .m_manualVideo__flowSlider_wrapper {
    width: 100%;
  }
  .m_manualVideo__flowSlider_itm_img {
    line-height: 0;
    border-radius: 10px;
    overflow: hidden;
    transition: width 0.5s;
  }

  .m_manualVideo__flowSlider_cont {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
  }
  .m_manualVideo__flowSlider_contItm {
    width: 100%;
    height: 100%;
    transition: all 0.5s !important;
  }
  .m_manualVideo__flowSlider_contWrap.swiper {
    width: 95%;
    margin-top: -40px;
  }
  .m_manualVideo__flowSlider_contTtl {
    padding: 8px 20px;
    font-size: 12px;
  }
  .m_manualVideo__flowSlider_contTxt {
    padding: 10px 20px 15px;
    font-size: 14px;
  }

  .m_manualVideo__flowSlider_arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -25vw;
    bottom: auto;
  }
  .m_manualVideo__flowSlider_arrow--prev {
    left: -2.5%;
    right: auto;
  }
  .m_manualVideo__flowSlider_arrow--next {
    right: -2.5%;
  }

  .m_manualVideo__flowNote {
    font-size: 12px;
  }
}

/* Price */
.m_manualVideo__priceWrap {
  width: 100%;
  overflow-x: auto;
}
.m_manualVideo__priceTable {
  width: 100%;
  min-width: 500px;
  border: 1px solid #707070;
}
.m_manualVideo__priceTable tr {
  border-top: 1px solid #707070;
}
.m_manualVideo__priceTable tr * + * {
  border-left: 1px solid #707070;
}
.m_manualVideo__priceTable th,
.m_manualVideo__priceTable td {
  padding: 10px;
}
.m_manualVideo__priceTable th {
  font-size: 18px;
  letter-spacing: 0.06em;
}
.m_manualVideo__priceTable td {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.m_manualVideo__priceTable thead {
  background-color: #f5f5f5;
}
.m_manualVideo__priceTable tbody th {
  width: 1em;
  font-size: 20px;
  text-align: center;
}

.m_manualVideo__priceSubTtl {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.m_manualVideo__priceCase {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.m_manualVideo__priceCase_itm {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border: 1px dashed #c24846;
  border-radius: 10px;
}
.m_manualVideo__priceCase_ttl {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1;
  background-color: #c24846;
  border-radius: calc(1px / 0);
  aspect-ratio: 1 / 1;
}
.m_manualVideo__priceCase_cont {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.m_manualVideo__priceCase_num {
  color: #c24846;
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .m_manualVideo__priceTable th {
    font-size: 14px;
  }
  .m_manualVideo__priceTable td {
    font-size: 14px;
  }
  .m_manualVideo__priceTable tbody th {
    font-size: 18px;
  }

  .m_manualVideo__priceCase {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .m_manualVideo__priceCase_itm {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 10px;
    border: 1px dashed #c24846;
    border-radius: 10px;
  }
  .m_manualVideo__priceCase_ttl {
    width: 60px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1;
    background-color: #c24846;
    border-radius: calc(1px / 0);
    aspect-ratio: 1 / 1;
  }
  .m_manualVideo__priceSubTtl {
    font-size: 16px;
  }
  .m_manualVideo__priceCase_cont {
    font-size: 14px;
  }
}

/* Case */
.m_manualVideo__caseTtl {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.m_manualVideo__caseItm {
  padding: 20px;
  background-color: #EAE8DF;
  border-radius: 10px;
  overflow: hidden;
}

.m_manualVideo__caseItm + .m_manualVideo__caseItm {
  margin-top: 30px;
}

.m_manualVideo__caseItm_ttl {
  color: #c24846;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.m_manualVideo__caseItm_img {
  margin-top: 20px;
  display: block;
  line-height: 0;
  text-align: center;
}

.m_manualVideo__caseItm_img img {
  width: auto;
  height: auto;
}

@media screen and (max-width: 768px) {
  .m_manualVideo__caseItm {
    padding: 15px;
  }

  .m_manualVideo__caseItm + .m_manualVideo__caseItm {
    margin-top: 20px;
  }

  .m_manualVideo__caseItm_ttl {
    font-size: 16px;
  }
}

/* QAへのリンク */
.m_qaLink{
  text-align: center;
}
.m_qaLink__ttl{
  position: relative;
  display: inline-block;
  padding: 0 2em;
  font-weight: bold;
  font-size: 20px;
}
.m_qaLink__ttl::before,
.m_qaLink__ttl::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 1.4em;
  height: 2px;
  margin: auto 0;
  border-radius: 100px;
  background: #333;
}
.m_qaLink__ttl::before{
  left: 0;
  transform: rotate(45deg);
}
.m_qaLink__ttl::after{
  right: 0;
  transform: rotate(-45deg);
}
.m_qaLink__ttl + .m_qaLink__bn{
  margin-top: 12px;
}
.m_qaLink__target{
  display: inline-block;
  line-height: 0;
  transition: .3s opacity;
}
.m_qaLink__target:hover{
  opacity: .7;
}
.m_qaLink__target img{
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px){
  .m_qaLink__ttl{
    font-size: 18px;
  }
}
@media screen and (max-width: 599px){
  .m_qaLink__ttl{
    font-size: 16px;
  }
}



/* 回遊ボタンのラッパー */
.m_migrationWrap{
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin: -12px;
}
.m_migrationWrap__item{
  display: flex;
  max-width: 360px;
  width: 33.333%;
  margin: 0 auto;
  padding: 12px;
}
.m_migrationWrap__inner{
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px){
  .m_migrationWrap{
    display: block;
  }
  .m_migrationWrap__item{
    width: 100%;
  }
}
/* 回遊ボタン */
.m_migrationBtn{
  display: flex;
  align-items: stretch;
}
.m_migrationBtn::before{
  content: "";
  display: block;
  height: 96px;
}
.m_migrationBtn__target{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 3px solid #e5002d;
  border-radius: 4px;
  box-shadow: 3px 3px 6px rgba(48, 48, 48, .3);
  color: #333;
  font-weight: bold;
  font-size: 18px;
  transition: .3s opacity;
}
.m_migrationBtn__target:hover{
  opacity: .7;
}
.m_migrationBtn__inner{}
.m_migrationBtn__catch{
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  padding: 0 12px;
  background: #fff;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

/* ----------
utility
---------- */
.u_hide{
  display: none;
}
@media screen and (max-width: 599px){
  .u_resSmInline{
    display: inline;
  }
}