.mv_section {
  position: relative;
  overflow: hidden;
}

.mv_label_text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
  background-color: #fff946;
}
@media screen and (min-width: 769px) {
  .mv_label_text {
    display: none;
  }
}

.mv_inner {
  display: grid;
  grid-template-columns: 100%;
}
@media screen and (min-width: 769px) {
  .mv_inner {
    grid-template-columns: 1fr auto 1fr;
  }
}
@media screen and (min-width: 1601px) {
  .mv_inner {
    grid-auto-rows: 560px;
  }
}
.mv_inner .mv_right {
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 769px) {
  .mv_inner .mv_right {
    grid-template-columns: 1fr;
    grid-template-rows: 50% 50%;
    place-content: center;
    order: 2;
  }
}
.mv_inner .mv_right div {
  width: 100.5%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .mv_inner .mv_left {
    order: -2;
  }
}

.mv_img {
  display: grid;
  overflow: hidden;
  width: 100%;
  height: 80px;
}
@media screen and (min-width: 769px) {
  .mv_img {
    height: 100%;
  }
}
.mv_img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}

.mv_content {
  width: 100%;
  padding: 30px;
  color: #FFF;
  text-align: center;
  background-image: url(../img/common/sec_bg.jpg);
  background-position: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .mv_content {
    max-width: 496px;
    padding: 30px 46px;
  }
}
.mv_content .title_wrap {
  position: relative;
  margin-bottom: 24px;
  width: calc(100% + 30px);
  margin-inline: -15px;
}
@media screen and (min-width: 769px) {
  .mv_content .title_wrap {
    width: calc(100% + 144px);
    margin-inline: -72px;
  }
}
.mv_content .sub_title {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 1.625rem;
  font-size: clamp(1.3125rem, 5.9090909091vw, 1.9375rem);
}
@media screen and (min-width: 769px) {
  .mv_content .sub_title {
    font-size: 2rem;
    font-size: clamp(0.8125rem, 2.5vw, 2rem);
  }
}
.mv_content .mv_text {
  margin-bottom: 16px;
  padding: 5px 0;
  border-top: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  font-weight: bold;
  font-size: 1rem;
  font-size: clamp(0.6875rem, 3.6363636364vw, 1.3125rem);
}
@media screen and (min-width: 769px) {
  .mv_content .mv_text {
    font-size: 1.25rem;
    font-size: clamp(0.8125rem, 1.5625vw, 1.25rem);
  }
}
.mv_content .mv_text > div {
  padding: 10px 0;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}

.mv_point01 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px;
  margin-bottom: 10px;
  width: 100%;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
  background: linear-gradient(to bottom, #ffa300 0%, #ffa300 40%, #F46D00 45%, #F46D00 100%);
  font-size: 1.125rem;
  font-size: clamp(0.8125rem, 4.0909090909vw, 1.4375rem);
}
@media screen and (min-width: 769px) {
  .mv_point01 {
    background: #F46D00;
    font-size: 1.5rem;
    font-size: clamp(0.8125rem, 1.875vw, 1.5rem);
  }
}
.mv_point01::before {
  display: block;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 26/19;
  background-image: url(../img/common/icon_fukidashi.svg);
  width: 26px;
}

.mv_point_list {
  display: flex;
  gap: 5px;
}
.mv_point_list > div {
  width: 100%;
  background: #FFF;
  text-align: center;
  color: #009FE8;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  line-height: 1.2;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 49%, #c7edfe 51%, #ffffff 100%);
  font-size: 0.875rem;
  font-size: clamp(0.625rem, 3.1818181818vw, 1.1875rem);
}
@media screen and (min-width: 769px) {
  .mv_point_list > div {
    font-size: 1.125rem;
    font-size: clamp(0.8125rem, 1.40625vw, 1.125rem);
    background: #FFF;
  }
}

.area_label {
  position: absolute;
  bottom: 130px;
  left: calc(100% - 8px);
  width: 12vw;
  max-width: 156px;
  display: none;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .area_label {
    display: block;
  }
}

.mv_woman,
.mv_man {
  display: none;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .mv_woman,
  .mv_man {
    display: block;
  }
}

.mv_man {
  left: 0;
  transform: translateX(-50%);
}

.mv_woman {
  right: 0;
  transform: translateX(50%);
}

.cp_section {
  padding-top: 30px;
}

.cp_box {
  border: 2px solid #F46D00;
  background-color: #FFF;
  border-radius: 24px;
  position: relative;
  z-index: 5;
  padding: 50px 16px 20px;
  margin-bottom: -180px;
  filter: drop-shadow(0px 20px 0px rgba(0, 0, 0, 0.1));
}
@media screen and (min-width: 769px) {
  .cp_box {
    padding: 50px 40px 40px;
    margin-bottom: -80px;
  }
}
.cp_box .ribbon_title {
  position: absolute;
  max-width: 83%;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -70%);
  font-size: 1.25rem;
}
@media screen and (min-width: 769px) {
  .cp_box .ribbon_title {
    max-width: 735px;
    font-size: 2rem;
    font-size: clamp(0.8125rem, 2.962962963vw, 2rem);
  }
}

.cp_copy_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.cp_copy_box::before, .cp_copy_box::after {
  display: block;
  content: "";
  width: calc(100% + 32px);
  background-color: #F46D00;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .cp_copy_box::before, .cp_copy_box::after {
    width: calc(100% + 80px);
  }
}
.cp_copy_box::before {
  height: 4px;
  top: calc(50% - 2px);
}
.cp_copy_box::after {
  height: 2px;
  top: calc(50% + 4px);
}
.cp_copy_box .copy {
  width: -moz-min-content;
  width: min-content;
  white-space: nowrap;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  padding: 0 15px;
  text-align: center;
  font-weight: bold;
  background-color: #FFF;
  font-size: 1.125rem;
}
@media screen and (min-width: 769px) {
  .cp_copy_box .copy {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.625rem;
  }
}
.cp_copy_box .copy .price_box {
  display: inline-flex;
  font-size: 1.625rem;
}
@media screen and (min-width: 769px) {
  .cp_copy_box .copy .price_box {
    font-size: 2.5rem;
  }
}
.cp_copy_box .copy .price {
  color: #F46D00;
}

.cp_price_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px 3%;
  max-width: 828px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 769px) {
  .cp_price_box {
    flex-direction: row;
  }
}
.cp_price_box .cp_price {
  text-align: center;
  border-radius: 8px;
  border: 2px solid #231815;
  width: 100%;
}
.cp_price_box .cp_price .title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  background-color: #231815;
  color: #FFF;
  font-weight: bold;
  font-size: 1.125rem;
}
.cp_price_box .cp_price .title::after {
  content: "";
  display: inline-block;
  width: 25px;
  aspect-ratio: 1;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/common/icon_coin.svg);
}
.cp_price_box .cp_price .price_box {
  padding: 20px;
  font-size: 2.5rem;
}
.cp_price_box .cp_price:last-child {
  border-color: #F46D00;
}
.cp_price_box .cp_price:last-child .title {
  background-color: #F46D00;
}
.cp_price_box .cp_price:last-child .price .yen,
.cp_price_box .cp_price:last-child .price .number {
  color: #F46D00;
}
.cp_price_box .arrow_img {
  flex-shrink: 0;
  width: 20px;
}
.cp_price_box .arrow_img::before {
  display: block;
  width: 100%;
  aspect-ratio: 20/36;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2236%22%20viewBox%3D%220%200%2020%2036%22%3E%3Cpath%20d%3D%22M16.513%2C1.652a2%2C2%2C0%2C0%2C1%2C2.973%2C0L33%2C16.662A2%2C2%2C0%2C0%2C1%2C31.509%2C20H4.491A2%2C2%2C0%2C0%2C1%2C3%2C16.662Z%22%20transform%3D%22translate%2820%29%20rotate%2890%29%22%20fill%3D%22%23f46d00%22%2F%3E%3C%2Fsvg%3E");
  transform: rotate(90deg);
}
@media screen and (min-width: 769px) {
  .cp_price_box .arrow_img::before {
    transform: rotate(0);
  }
}

.cp_cta_box {
  background-color: #fff8e1;
  padding: 30px 16px 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .cp_cta_box {
    padding: 30px;
  }
}
.cp_cta_box .btn_default {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .cp_cta_box .btn_default {
    max-width: 280px;
    min-width: 0;
    min-height: 72px;
    font-size: 1.5rem;
    font-size: clamp(0.8125rem, 1.7142857143vw, 1.5rem);
  }
}
.cp_cta_box .img {
  width: 100%;
  padding: 20px 0 0;
  display: flex;
  justify-content: center;
  z-index: -1;
  transform: translateY(20px);
}
@media screen and (min-width: 769px) {
  .cp_cta_box .img {
    justify-content: space-between;
    padding: 0 30px;
    position: absolute;
    bottom: -40px;
    left: 0;
    transform: translateY(0);
  }
}
.cp_cta_box .img .img_man {
  width: 40%;
  max-width: 176px;
}
.cp_cta_box .img .img_woman {
  width: 40%;
  max-width: 146px;
}