@charset "utf-8";
/* CSS Document */

/*--------------------- 共通処理 ---------------------*/

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body{
    font-family: 'Noto Sans JP', sans-serif;
}

html {
	font-size: 62.5%;
	font-style: normal;
    scroll-behavior: smooth;
    max-width: 1920px;
    margin: 0 auto;
}

:root {
    --gray:#C4C4C4;
    --gray2:#DBD6D3;
    --black:#515161;
    --deepPink:#E3386A;
    --lightPink:#ED7990;
    --yellow:#FFF3D8;
    --yellow2:#FFF1B9;
    --blue:#DAE7ED;
    --blue2:#1A5E89;
    --orange:#F18F3D;
    --white:#fff;
}

.color_gray{
    color: var(--gray);
}

.color_deepPink{
    color: var(--deepPink);
}

.color_lightPink{
    color: var(--lightPink);
}

.colorback_gray{
    background: var(--gray);
}

.colorback_gray2{
    background: var(--gray2);
}

.colorback_deepPink{
    background: var(--deepPink);
}

.colorback_lightPink{
    background: var(--lightPink);
}

.colorback_yellow{
    background: var(--yellow);
}

.colorback_yellow2{
    background:var(--yellow2);
}

.colorback_orange{
    background:var(--orange);
}

.colorback_white{
    background: var(--white);
}

.colorback_black{
    background:var(--black);
}

.colorback_blue{
    background:var(--blue);
}

.colorback_blue2{
    background:var(--blue2);
}



p {
	font-size: 1.6rem;
    font-weight: 400;
	line-height: 1.2em;
    color: #000;

}

.spbr{
    display: none;
}

.nobr{
    display: block;
}

.inner_960 {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 20px;
}

.inner_1350 {
    width: 100%;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 20px;
}

.fadeUpTrigger{
opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.fadeInTrigger{
opacity: 0;
}

.fadeIn{
animation-name:fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.flex{
	display: flex;
}

img{
    width: 100%;
    height: auto;
}

.position{
    position: relative;
}


.textLeft{
text-align: left;
}


.main{
    padding: 40px 0px!important;
    position: relative;
}

.main img.deco01{
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 100%;
    max-width: 173px;
    aspect-ratio: 173 / 214;

}

.main.position.colorback_gray:before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 364px;          /* これが上限 */
    aspect-ratio: 364 / 762;   /* 比率固定 */
    background: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/01_fv_bg-img_01.png) left bottom / contain no-repeat;
    }

.main::after{
    position: absolute;
    content: '';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/01_fv_bg-img_02.png);
    right:0;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    width: 305px;
    max-width: 305px;
    aspect-ratio: 305 / 615;
}

.mainText_img{
    display: none;
}

.mainText_top h3{
    color: #fff;
    width: 220px;
    text-align: center;
    margin: 0 auto;
    font-size: 1.6rem;
    padding: 10px;
    border-radius: 10px;
}

.mainText_top h4{
    text-align: center;
    font-size: 1.6rem;
    margin-top: 20px;
}

.mainText_top h4 span{
    position: relative;
    display: inline-block;
    padding: 0 16px;
}

.mainText_top h4 span::before {
    content: "";
    position: absolute;
    top: 60%;
    left: 0;
    width: 18px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%) rotate(-115deg);
    transform-origin: center;
}

.mainText_top h4 span::after {
    content: "";
    position: absolute;
    top: 60%;
    right: 0;
    width: 18px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%) rotate(115deg);
    transform-origin: center;
}

.dots {
  background-image: radial-gradient(circle at center, var(--deepPink) 10%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: .2em; /* 縦方向の位置調整 */
}




.mainText_middle{
    width: 750px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    margin-top: 20px;
}

.mainText_middle figure{
    width: 50%;
    margin: 0 auto;
    padding-bottom: 20px;
}

.mainText_middle h3{
    text-align: center;
    font-size: 3.6rem;
    padding-top: 20px;
}

.mainText_middle .list{
    padding: 20px 10px;
    justify-content: center;
    border-radius: 0px 0px 20px 20px;
}

.mainText_middle .list h4{
    font-size: 2.2rem;
    line-height: 1.4em;
}

.mainText_middle .list ul{
    flex-wrap: wrap;
    width: 380px;
    padding-left: 60px;
}

.mainText_middle .list li{
    font-size: 1.8rem;
    list-style: none;
    width: 50%;
    margin-bottom: 10px;
}

.mainText_middle .list li span{
     position: relative;
}

.mainText_middle .list li span:before{
    position: absolute;
    content: '';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/01_fv_check.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    left: -30px;
    top: 4px;
}

.Top_list{
	justify-content: space-around;
	width: 750px;
    margin: 0 auto;
    margin-top: 40px;
}

.Top_list li{
	list-style: none;
	width: 28%;
}

.Top_list .circle{
    width:210px;
    height:210px;
    background-size: contain;
    display:flex;
   align-items:center;
   justify-content:center;
   background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/01_fv_circle.png);
}

.Top_list .circle p{
    text-align:center;
    line-height:1.6em;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 0em;
}

.Top_list .circle p strong{
    color: #D4386A;
    font-size: 4.0rem;
    font-weight: 600;
}

.Top_list .circle p strong.f_size01{
    font-size: 3.0rem;
}

.Top_list .circle p span{
    font-size: 1.2rem;
    font-weight: 600;
}


.Top_list li img{
	width: 100%;
}

.contact .contact_inner{
    color: #fff;
    text-align: center;
    padding: 30px 0px;
}

.contact .contact_inner h5{
    font-size: 1.6rem;
}

.contact .contact_inner h5 span{
    position: relative;
    display: inline-block;
    padding: 0 24px;
    font-weight: bold;
}


.contact .contact_inner h5 span::before{
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%) rotate(-115deg);
  transform-origin: center;
}


.contact .contact_inner h5 span::after{
  content: "";
  position: absolute;
  top: 60%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%) rotate(115deg);
  transform-origin: center;
}

.contact .contact_inner a{
    background-color: #fff;
    padding: 10px;
    border-radius: 50px;
    font-size: 1.6rem;
    width: 300px;
    display: inline-block;
    text-decoration: none;
    color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,.42);
    margin: 14px 0px;
}

.contact .contact_inner a:hover{
    box-shadow: none;
    margin-top: 15px;
}

.contact .contact_inner p{
    color: #fff;
}

.contact .contact_inner a span{
  position: relative;
  padding-right: 28px; /* 矢印分の余白 */
  display: inline-block;
}

.contact .contact_inner a span::before{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;          /* 画像サイズ */
  height: 10px;
  background: url("https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/arrow_black.png") no-repeat center / contain;
  transform: translateY(-50%);
}

.problem{
    padding: 40px 0px!important;
    position: relative;
}

.problem::after{
    position: absolute;
    content: '';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/Polygon_white.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 135px;
    height: 35px;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.problemTop{
    text-align: center;
    margin-bottom: 60px;
}
.problemTop p{
    margin-bottom: 1em;
    text-align: center;
}

.EnTitle{
    font-size: 7rem;
    color: rgba(219, 214, 211, 0.5);
    letter-spacing: 0.3em;
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.problemTop h2{
    font-size: 2.4rem;
    line-height: 1.2em;
    margin: 40px 0px;
}

.problemBottom h4{
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.problemBottom figure img.PB_img_pc{
    display: block;
}

.problemBottom figure img.PB_img_sp{
    display: none;
}

.problemSolved{
    min-height: 40vh;
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/03_solution_bg-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 60px;
}

.problemSolved_inner{
    background-color: #fff;
    width: 640px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.problemSolved_inner h3 span{
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
}

.problemSolved_inner h3 span:before{
    position: absolute;
    content:'';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/03_solution_mark_left.png);
    background-size:contain;
    background-repeat: no-repeat;
    width: 45px;
    height: 64px;
    left: 0;
}

.problemSolved_inner h3 span:after{
    position: absolute;
    content:'';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/03_solution_mark_right.png);
    background-size:contain;
    background-repeat: no-repeat;
    width: 45px;
    height: 63px;
    right: 0;
}

.problemSolved_inner h3 img{
    width: 160px;
}

.Point--Sche{
    position: relative;
    padding: 90px 0px;
}

.Point--Sche::before{
    position: absolute;
  content: "";
  top: 10%;
  right: 0;
  width: 100%;
  max-width: 358px;
  aspect-ratio: 358 / 620;
  background: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_juice.png) right top / contain no-repeat;
}

.Point--Sche::after{
    position: absolute;
    content: '';
    bottom: 20%;
    left: 0;
    width: 100%;
    max-width: 358px;
    aspect-ratio: 358 / 540;
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_brownie.png);
    background: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_brownie.png) left bottom / contain no-repeat;
    background-repeat: no-repeat;
}


.Point_content{
    border-radius: 20px 20px 0px 0px;
    padding:20px;
}

.Point_content h4{
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.6em;
    margin-bottom: 30px;
    margin-top: 20px;
}

.Point_content h4 img{
    width: 160px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.Point_content .deco01_sp{
    display: none;
}

.point_inner{
    justify-content: space-around;
    margin-bottom: 30px;
    margin-top: 60px;
}

.point_inner li{
    width: 30%;
    list-style: none;
    border:solid var(--lightPink) 2px;
    border-radius: 10px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-style: normal;
    position: relative;
}


  .point_inner li:nth-child(1):before{
    position: absolute;
    content: "01";
    top:-40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--lightPink);
  }
  .point_inner li:nth-child(2):before{
    position: absolute;
    content: "02";
    top:-40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--lightPink);
  }
  .point_inner li:nth-child(3):before{
    position: absolute;
    content: "03";
    top:-40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--lightPink);
  }



.point_inner .deco01_sp{
    display: none;
}

.point_inner li h5{
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    padding: 10px 0px;
    border-radius: 6px 6px 0px 0px;
}

.point_inner li img{
    padding: 10px;
}

.service{
    border-radius: 10px;
    padding: 40px 30px;
}

.service>h4{
    margin-bottom: 0px;
}

.service p.kome{
    text-align: center;
    font-size: 1.2rem;
}

.service01{
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.service01 h5{
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 10px;
    position: relative;
    padding-top: 50px;
}

.service01 h5:before{
    position: absolute;
    content: '';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_service-wrapping.png);
    background-size: contain;
    width: 40px;
    height: 40px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service01 p{
    text-align: center;
    line-height: 1.2em;
}

.service01_inner{
    justify-content: space-between;
    margin-top: 30px;
}

.service01_inner li{
    width: 48%;
    border-radius: 10px;
    list-style: none;
    padding: 20px;
    background-color:#DBD6D3 ;
}

.service01_inner li h6{
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.wrapbox{
    justify-content: space-around;
    margin-bottom: 10px;
}

.wrapbox figure{
    width: 40%;
}

.service01_inner .wrapbox_p{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
}

.service01_inner figcaption{
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 10px;
}

.service01_inner figcaption.textLeft{
    text-align: left;
    font-size: 1.2rem;
}

.service01_inner li figure{
margin-top: 20px;
}

.service02{
    justify-content: space-between;
    margin-top: 20px;
    text-align: center;
}

.service02_inner{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 48%;
}

.service02 .service02_inner h5 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 10px;
    position: relative;
    padding-top: 50px;
}

.service02 .service02_inner h5:before{
    position: absolute;
    content: '';
    background-size: contain;
    width: 40px;
    height: 40px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service02 .service02_inner:nth-of-type(1) h5:before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_service-noshi.png);
}

.service02 .service02_inner:nth-of-type(2) h5:before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_service-mc.png);
}

.Sche_content{
    padding: 20px 20px 40px 20px;
}

.Sche_content p{
    text-align: center;
    line-height: 1.2em;
    margin: 30px 0px;
}

.Sche_content h4{
    font-size: 1.6rem;
    text-align: center;
}

.Sche_content h4>span{
    position: relative;
    display: inline-block;
    padding: 0 24px;
}

.Sche_content h4>span:before{
    content: "";
    position: absolute;
    top: 60%;
    left: 0;
    width: 18px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%) rotate(-115deg);
    transform-origin: center;
}

.Sche_content h4>span:after{
    content: "";
    position: absolute;
    top: 60%;
    width: 18px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%) rotate(115deg);
    transform-origin: center;
}

.Sche_content .flow{
    justify-content: space-between;
    padding: 24px 0px;
    border-radius: 10px;
    background-color: #DBD6D3;
    margin-top: 30px;
}

.Sche_content .flow li{
    list-style: none;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
    font-size: 1.6rem;
    line-height: 1.2em;
}

.Sche_content .flow li span{
    font-size: 1.0rem;
}

.Sche_content .flow li:before{
    position: absolute;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    width:50px;
    height:50px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.Sche_content .flow li:nth-child(1):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_schedule-1.png);
}
.Sche_content .flow li:nth-child(2):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_schedule-2.png);
}
.Sche_content .flow li:nth-child(3):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_schedule-3.png);
}
.Sche_content .flow li:nth-child(4):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_schedule-4.png);
}
.Sche_content .flow li:nth-child(5):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_schedule-5.png);
}

.Sche_content .flow .arrow {
  position: absolute;
  top: 50%;
    right: -18px;
    width: 90px;
  height: 2px;
  background: #fff;
  transform-origin: right center;
  transform: translateY(-50%) rotate(70deg);
}

.Sche_content .flow .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 90px;
  height: 2px;
  background: #fff;
  transform-origin: right center;
  transform: rotate(-140deg);
}

.Point--Sche_close{
    border-radius: 0px 0px 20px 20px;
    padding: 30px;
}

.Point--Sche_close h3{
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
}


.Point--Sche_close h3 img{
    width: 160px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.Lineup{
    padding:80px 0px;
    position: relative;
}

.Lineup::before{
    position: absolute;
    content: '';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_baumkuchen.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 420 / 528;
    right: 0;
    top: -200px;
}

.Lineup p.intro{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 80px;
}

.gift_boxs{
    display: flex;
    gap: 80px 0px;
    flex-wrap: wrap;
}

.gift_box{
    padding: 60px 120px;
    border-radius: 20px;
}

.gift_box h3.gift_title{
   height: auto;
    background-color: #fff;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.gift_box h3.gift_title:before{
    position: absolute;
    content: '';
     background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/arrow_white.png);
    background-repeat: no-repeat;
    width: 35px;
    height: 46px;
    left: -30px;
    top: 30px;
}

.gift_box h3.gift_title:after{
    position: absolute;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;

    left: -170px;
    top: 50%;
    transform: translateY(-50%);

}

.gift_box:nth-of-type(1) h3.gift_title{
    width: 367px;
}
.gift_box:nth-of-type(1) h3.gift_title:after{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_cataloggift_img.png);
    width: 136px;
    aspect-ratio: 136 / 150;
}
.gift_box:nth-of-type(2) h3.gift_title{
    width: 500px;
}
.gift_box:nth-of-type(2) h3.gift_title:before{
    left: inherit;
    right: -30px;
    transform: rotate(180deg);
}
.gift_box:nth-of-type(2) h3.gift_title:after{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_summer_img.png);
    right: -120px;
    left: inherit;
    top:68%;
    width: 136px;
    aspect-ratio: 136 / 150;
}
.gift_box:nth-of-type(3) h3.gift_title{
    width: 500px;
}
.gift_box:nth-of-type(3) h3.gift_title:after{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_winter_img.png);
    top: 65%;
    width: 136px;
    aspect-ratio: 136 / 150;
}

.point_inner li img.point_img_pc{
  display: block;
}

.point_inner li img.point_img_sp{
  display: none;
}




.gift_box h3.gift_title strong{
    font-size: 2.4rem;
    display: block;
}

.gift_box h4{
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.gift_box .gift_inner{
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px 20px;
    margin-top: 100px;
}

.gift_box .gift_inner li{
    width: 31%;
    list-style: none;
    background-color: #fff;
    position: relative;
}

.gift_box .gift_inner li a{
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 8%;

}

.gift_box .gift_inner li::before{
    content: '';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    width:50px;
    height: 52px;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.gift_box .gift_inner li:nth-child(1):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_icon_01.png);
}
.gift_box .gift_inner li:nth-child(2):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_icon_02.png);
}
.gift_box .gift_inner li:nth-child(3):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_icon_03.png);
}
.gift_box .gift_inner li:nth-child(4):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_icon_04.png);
}
.gift_box .gift_inner li:nth-child(5):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_icon_05.png);
}
.gift_box .gift_inner li:nth-child(6):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_icon_06.png);
}

.gift_box .gift_inner li img{
    margin-bottom: 16px;
}

.gift_box .gift_inner li .price{
    margin-top: 20px;
    text-align: right;
    font-size: 1.2rem;
}

 a.common_btn {
    padding: 10px;
    border-radius: 50px;
    font-size: 1.6rem;
    text-align: center;
    width: 300px;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .42);
    text-align: center;
    margin-top: 30px;
}

a.common_btn:hover {
    box-shadow: none;
    margin-top: 31px;
}

 a.common_btn span {
    position: relative;
    padding-right: 28px;
    display: inline-block;
}

 a.common_btn span::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/arrow_white02.png) no-repeat center / contain;
    transform: translateY(-50%);
}

.Introduction{
    padding: 120px 0px;
}

.intro_inner{
    background-color: #fff;
    padding: 60px 80px;
    border-radius: 20px;
}

.intro_inner h3{
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 10px;
}
.intro_inner>p{
    text-align: center;
}


.formal_box{
    margin-top: 40px;
    margin-bottom: 40px;
}

.introTitle{
    font-size: 2.4rem;
    background-color: #737373;
    margin-bottom: 24px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.priceSwitch__tabs{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.tab{
  border: 1px solid #bfbfbf;
  background: #fff;
  border-radius: 6px;
  padding: 12px 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-size: 1.6rem;
  color:#515161;
}

.tab span{
    font-size: 2.8rem;
}

.tab.is-active{
  background: #dfd9d6!important;
  border-color: #dfd9d6!important;
}

.items{
  display: none;              /* まず非表示 */
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: opacity 0.18s ease;
}

.items.is-active{
  display: grid;              /* 表示するのはこれだけ */
}

.items.is-fading{
  opacity: 0;
}

.item a{
  display: block;
  text-decoration: none;
  color: inherit;
}

.item img{
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

.name{
  font-size: 12px;
  line-height: 1.35;
}

.Howtouse{
    padding: 80px 0px;
}

.Howtouse_pc{
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 20px;
    display: block;
}

  .Howtouse_sp{
    display: none;
  }


  .Point--Sche .deco01_sp{
    display: none;
}@charset "utf-8";
/* CSS Document */

/*--------------------- 共通処理 ---------------------*/

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body{
    font-family: 'Noto Sans JP', sans-serif;
}

html {
	font-size: 62.5%;
	font-style: normal;
    scroll-behavior: smooth;
    max-width: 1920px;
    margin: 0 auto;
}

:root {
    --gray:#C4C4C4;
    --gray2:#DBD6D3;
    --black:#515161;
    --deepPink:#E3386A;
    --lightPink:#ED7990;
    --yellow:#FFF3D8;
    --yellow2:#FFF1B9;
    --blue:#DAE7ED;
    --blue2:#1A5E89;
    --orange:#F18F3D;
    --white:#fff;
}

.color_gray{
    color: var(--gray);
}

.color_deepPink{
    color: var(--deepPink);
}

.color_lightPink{
    color: var(--lightPink);
}

.colorback_gray{
    background: var(--gray);
}

.colorback_gray2{
    background: var(--gray2);
}

.colorback_deepPink{
    background: var(--deepPink);
}

.colorback_lightPink{
    background: var(--lightPink);
}

.colorback_yellow{
    background: var(--yellow);
}

.colorback_yellow2{
    background:var(--yellow2);
}

.colorback_orange{
    background:var(--orange);
}

.colorback_white{
    background: var(--white);
}

.colorback_black{
    background:var(--black);
}

.colorback_blue{
    background:var(--blue);
}

.colorback_blue2{
    background:var(--blue2);
}



p {
	font-size: 1.6rem;
    font-weight: 400;
	line-height: 1.2em;
    color: #000;

}

.spbr{
    display: none;
}

.nobr{
    display: block;
}

.inner_960 {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 20px;
}

.inner_1350 {
    width: 100%;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 20px;
}

.fadeUpTrigger{
opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.fadeInTrigger{
opacity: 0;
}

.fadeIn{
animation-name:fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.flex{
	display: flex;
}

img{
    width: 100%;
    height: auto;
}

.position{
    position: relative;
}


.textLeft{
text-align: left;
}


.main{
    padding: 40px 0px;
    position: relative;
}

.main img.deco01{
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 100%;
    max-width: 173px;
    aspect-ratio: 173 / 214;

}

.main.position.colorback_gray:before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 364px;          /* これが上限 */
    aspect-ratio: 364 / 762;   /* 比率固定 */
    background: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/01_fv_bg-img_01.png) left bottom / contain no-repeat;
    }

.main::after{
    position: absolute;
    content: '';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/01_fv_bg-img_02.png);
    right:0;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    width: 305px;
    max-width: 305px;
    aspect-ratio: 305 / 615;
}

.mainText_img{
    display: none;
}

.mainText_top h3{
    color: #fff;
    width: 220px;
    text-align: center;
    margin: 0 auto;
    font-size: 1.6rem;
    padding: 10px;
    border-radius: 10px;
}

.mainText_top h4{
    text-align: center;
    font-size: 1.6rem;
    margin-top: 20px;
}

.mainText_top h4 span{
    position: relative;
    display: inline-block;
    padding: 0 16px;
}

.mainText_top h4 span::before {
    content: "";
    position: absolute;
    top: 60%;
    left: 0;
    width: 18px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%) rotate(-115deg);
    transform-origin: center;
}

.mainText_top h4 span::after {
    content: "";
    position: absolute;
    top: 60%;
    right: 0;
    width: 18px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%) rotate(115deg);
    transform-origin: center;
}

.dots {
  background-image: radial-gradient(circle at center, var(--deepPink) 10%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: .2em; /* 縦方向の位置調整 */
}




.mainText_middle{
    width: 750px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    margin-top: 20px;
}

.mainText_middle figure{
    width: 50%;
    margin: 0 auto;
    padding-bottom: 20px;
}

.mainText_middle h3{
    text-align: center;
    font-size: 3.6rem;
    padding-top: 20px;
}

.mainText_middle .list{
    padding: 20px 10px;
    justify-content: center;
    border-radius: 0px 0px 20px 20px;
}

.mainText_middle .list h4{
    font-size: 2.2rem;
    line-height: 1.4em;
}

.mainText_middle .list ul{
    flex-wrap: wrap;
    width: 380px;
    padding-left: 60px;
}

.mainText_middle .list li{
    font-size: 1.8rem;
    list-style: none;
    width: 50%;
    margin-bottom: 10px;
}

.mainText_middle .list li span{
     position: relative;
}

.mainText_middle .list li span:before{
    position: absolute;
    content: '';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/01_fv_check.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    left: -30px;
    top: 4px;
}

.Top_list{
	justify-content: space-around;
	width: 750px;
    margin: 0 auto;
    margin-top: 40px;
}

.Top_list li{
	list-style: none;
	width: 28%;
}

.Top_list .circle{
    width:210px;
    height:210px;
    background-size: contain;
    display:flex;
   align-items:center;
   justify-content:center;
   background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/01_fv_circle.png);
}

.Top_list .circle p{
    text-align:center;
    line-height:1.6em;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 0em;
}

.Top_list .circle p strong{
    color: #D4386A;
    font-size: 4.0rem;
    font-weight: 600;
}

.Top_list .circle p strong.f_size01{
    font-size: 3.0rem;
}

.Top_list .circle p span{
    font-size: 1.2rem;
    font-weight: 600;
}


.Top_list li img{
	width: 100%;
}

.contact .contact_inner{
    color: #fff;
    text-align: center;
    padding: 30px 0px;
}

.contact .contact_inner h5{
    font-size: 1.6rem!important;
}

.contact .contact_inner h5 span{
  position: relative;
  display: inline-block;
  padding: 0 24px;
}


.contact .contact_inner h5 span::before{
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%) rotate(-115deg);
  transform-origin: center;
}


.contact .contact_inner h5 span::after{
  content: "";
  position: absolute;
  top: 60%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%) rotate(115deg);
  transform-origin: center;
}

.contact .contact_inner a{
    background-color: #fff;
    padding: 10px;
    border-radius: 50px;
    font-size: 1.6rem;
    width: 300px;
    display: inline-block;
    text-decoration: none;
    color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,.42);
    margin: 14px 0px;
}

.contact .contact_inner a:hover{
    box-shadow: none;
    margin-top: 15px;
}

.contact .contact_inner p{
    color: #fff;
    text-align: center;
}

.contact .contact_inner a span{
  position: relative;
  padding-right: 28px; /* 矢印分の余白 */
  display: inline-block;
}

.contact .contact_inner a span::before{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;          /* 画像サイズ */
  height: 10px;
  background: url("https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/arrow_black.png") no-repeat center / contain;
  transform: translateY(-50%);
}

.problem{
    padding: 40px 0px;
    position: relative;
}

.problem::after{
    position: absolute;
    content: '';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/Polygon_white.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 135px;
    height: 35px;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.problemTop{
    text-align: center;
    margin-bottom: 60px;
}
.problemTop p{
    margin-bottom: 1em;
}

.EnTitle{
    font-size: 7rem;
    color: rgba(219, 214, 211, 0.5);
    letter-spacing: 0.3em;
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.problemTop h2{
    font-size: 2.4rem;
    line-height: 1.2em;
    margin: 40px 0px;
}

.problemBottom h4{
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.problemBottom figure img.PB_img_pc{
    display: block;
}

.problemBottom figure img.PB_img_sp{
    display: none;
}

.problemSolved{
    min-height: 40vh;
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/03_solution_bg-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 60px;
}

.problemSolved_inner{
    background-color: #fff;
    width: 640px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.problemSolved_inner h3 span{
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
}

.problemSolved_inner h3 span:before{
    position: absolute;
    content:'';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/03_solution_mark_left.png);
    background-size:contain;
    background-repeat: no-repeat;
    width: 45px;
    height: 64px;
    left: 0;
}

.problemSolved_inner h3 span:after{
    position: absolute;
    content:'';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/03_solution_mark_right.png);
    background-size:contain;
    background-repeat: no-repeat;
    width: 45px;
    height: 63px;
    right: 0;
}

.problemSolved_inner h3 img{
    width: 160px;
}

.Point--Sche{
    position: relative;
    padding: 90px 0px;
}

.Point--Sche::before{
    position: absolute;
  content: "";
  top: 10%;
  right: 0;
  width: 100%;
  max-width: 358px;
  aspect-ratio: 358 / 620;
  background: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_juice.png) right top / contain no-repeat;
}

.Point--Sche::after{
    position: absolute;
    content: '';
    bottom: 20%;
    left: 0;
    width: 100%;
    max-width: 358px;
    aspect-ratio: 358 / 540;
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_brownie.png);
    background: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_brownie.png) left bottom / contain no-repeat;
    background-repeat: no-repeat;
}


.Point_content{
    border-radius: 20px 20px 0px 0px;
    padding:20px;
}

.Point_content h4{
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.6em;
    margin-bottom: 30px;
    margin-top: 20px;
}

.Point_content h4 img{
    width: 160px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.Point_content .deco01_sp{
    display: none;
}

.point_inner{
    justify-content: space-around;
    margin-bottom: 30px;
    margin-top: 60px;
}

.point_inner li{
    width: 30%;
    list-style: none;
    border:solid var(--lightPink) 2px;
    border-radius: 10px;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-style: normal;
    position: relative;
}


  .point_inner li:nth-child(1):before{
    position: absolute;
    content: "01";
    top:-40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--lightPink);
  }
  .point_inner li:nth-child(2):before{
    position: absolute;
    content: "02";
    top:-40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--lightPink);
  }
  .point_inner li:nth-child(3):before{
    position: absolute;
    content: "03";
    top:-40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--lightPink);
  }



.point_inner .deco01_sp{
    display: none;
}

.point_inner li h5{
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    padding: 10px 0px;
    border-radius: 6px 6px 0px 0px;
}

.point_inner li img{
    padding: 10px;
}

.service{
    border-radius: 10px;
    padding: 40px 30px;
}

.service>h4{
    margin-bottom: 0px;
}

.service p.kome{
    text-align: center;
    font-size: 1.2rem;
}

.service01{
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.service01 h5{
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 10px;
    position: relative;
    padding-top: 50px;
}

.service01 h5:before{
    position: absolute;
    content: '';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_service-wrapping.png);
    background-size: contain;
    width: 40px;
    height: 40px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service01 p{
    text-align: center;
    line-height: 1.2em;
}

.service01_inner{
    justify-content: space-between;
    margin-top: 30px;
}

.service01_inner li{
    width: 48%;
    border-radius: 10px;
    list-style: none;
    padding: 20px;
    background-color:#DBD6D3 ;
}

.service01_inner li h6{
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.wrapbox{
    justify-content: space-around;
    margin-bottom: 10px;
}

.wrapbox figure{
    width: 40%;
}

.service01_inner .wrapbox_p{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
}

.service01_inner figcaption{
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 10px;
}

.service01_inner figcaption.textLeft{
    text-align: left;
    font-size: 1.2rem;
}

.service01_inner li figure{
margin-top: 20px;
}

.service02{
    justify-content: space-between;
    margin-top: 20px;
    text-align: center;
}

.service02_inner{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 48%;
}

.service02 .service02_inner h5 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 10px;
    position: relative;
    padding-top: 50px;
}

.service02 .service02_inner h5:before{
    position: absolute;
    content: '';
    background-size: contain;
    width: 40px;
    height: 40px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service02 .service02_inner:nth-of-type(1) h5:before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_service-noshi.png);
}

.service02 .service02_inner:nth-of-type(2) h5:before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_service-mc.png);
}

.Sche_content{
    padding: 20px 20px 40px 20px;
}

.Sche_content p{
    text-align: center;
    line-height: 1.2em;
    margin: 30px 0px;
}

.Sche_content h4{
    font-size: 1.6rem;
    text-align: center;
}

.Sche_content h4>span{
    position: relative;
    display: inline-block;
    padding: 0 24px;
}

.Sche_content h4>span:before{
    content: "";
    position: absolute;
    top: 60%;
    left: 0;
    width: 18px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%) rotate(-115deg);
    transform-origin: center;
}

.Sche_content h4>span:after{
    content: "";
    position: absolute;
    top: 60%;
    width: 18px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%) rotate(115deg);
    transform-origin: center;
}

.Sche_content .flow{
    justify-content: space-between;
    padding: 24px 0px;
    border-radius: 10px;
    background-color: #DBD6D3;
    margin-top: 30px;
}

.Sche_content .flow li{
    list-style: none;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
    font-size: 1.6rem;
    line-height: 1.2em;
}

.Sche_content .flow li span{
    font-size: 1.0rem;
}

.Sche_content .flow li:before{
    position: absolute;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    width:50px;
    height:50px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.Sche_content .flow li:nth-child(1):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_schedule-1.png);
}
.Sche_content .flow li:nth-child(2):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_schedule-2.png);
}
.Sche_content .flow li:nth-child(3):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_schedule-3.png);
}
.Sche_content .flow li:nth-child(4):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_schedule-4.png);
}
.Sche_content .flow li:nth-child(5):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_schedule-5.png);
}

.Sche_content .flow .arrow {
  position: absolute;
  top: 50%;
    right: -18px;
    width: 90px;
  height: 2px;
  background: #fff;
  transform-origin: right center;
  transform: translateY(-50%) rotate(70deg);
}

.Sche_content .flow .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 90px;
  height: 2px;
  background: #fff;
  transform-origin: right center;
  transform: rotate(-140deg);
}

.Point--Sche_close{
    border-radius: 0px 0px 20px 20px;
    padding: 30px;
}

.Point--Sche_close h3{
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
}


.Point--Sche_close h3 img{
    width: 160px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.Lineup{
    padding:80px 0px;
    position: relative;
}

.Lineup::before{
    position: absolute;
    content: '';
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/04_point_baumkuchen.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 420 / 528;
    right: 0;
    top: -200px;
}

.Lineup p.intro{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 80px;
}

.gift_boxs{
    display: flex;
    gap: 80px 0px;
    flex-wrap: wrap;
}

.gift_box{
    padding: 60px 120px;
    border-radius: 20px;
}

.gift_box h3.gift_title{
   height: auto;
    background-color: #fff;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.gift_box h3.gift_title:before{
    position: absolute;
    content: '';
     background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/arrow_white.png);
    background-repeat: no-repeat;
    width: 35px;
    height: 46px;
    left: -30px;
    top: 30px;
}

.gift_box h3.gift_title:after{
    position: absolute;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;

    left: -170px;
    top: 50%;
    transform: translateY(-50%);

}

.gift_box:nth-of-type(1) h3.gift_title{
    width: 367px;
}
.gift_box:nth-of-type(1) h3.gift_title:after{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_cataloggift_img.png);
    width: 136px;
    aspect-ratio: 136 / 150;
}
.gift_box:nth-of-type(2) h3.gift_title{
    width: 500px;
}
.gift_box:nth-of-type(2) h3.gift_title:before{
    left: inherit;
    right: -30px;
    transform: rotate(180deg);
}
.gift_box:nth-of-type(2) h3.gift_title:after{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_summer_img.png);
    right: -120px;
    left: inherit;
    top:68%;
    width: 136px;
    aspect-ratio: 136 / 150;
}
.gift_box:nth-of-type(3) h3.gift_title{
    width: 500px;
}
.gift_box:nth-of-type(3) h3.gift_title:after{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_winter_img.png);
    top: 65%;
    width: 136px;
    aspect-ratio: 136 / 150;
}

.point_inner li img.point_img_pc{
  display: block;
}

.point_inner li img.point_img_sp{
  display: none;
}




.gift_box h3.gift_title strong{
    font-size: 2.4rem;
    display: block;
}

.gift_box h4{
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.gift_box .gift_inner{
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px 20px;
    margin-top: 100px;
}

.gift_box .gift_inner li{
    width: 31%;
    list-style: none;
    background-color: #fff;
    position: relative;
}

.gift_box .gift_inner li a{
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 8%;

}

.gift_box .gift_inner li::before{
    content: '';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    width:50px;
    height: 52px;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.gift_box .gift_inner li:nth-child(1):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_icon_01.png);
}
.gift_box .gift_inner li:nth-child(2):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_icon_02.png);
}
.gift_box .gift_inner li:nth-child(3):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_icon_03.png);
}
.gift_box .gift_inner li:nth-child(4):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_icon_04.png);
}
.gift_box .gift_inner li:nth-child(5):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_icon_05.png);
}
.gift_box .gift_inner li:nth-child(6):before{
    background-image: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/05_lineup_ranking_icon_06.png);
}

.gift_box .gift_inner li img{
    margin-bottom: 16px;
}

.gift_box .gift_inner li .price{
    margin-top: 20px;
    text-align: right;
    font-size: 1.2rem;
}

 a.common_btn {
    padding: 10px;
    border-radius: 50px;
    font-size: 1.6rem;
    text-align: center;
    width: 300px;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .42);
    text-align: center;
    margin-top: 30px;
}

a.common_btn:hover {
    box-shadow: none;
    margin-top: 31px;
}

 a.common_btn span {
    position: relative;
    padding-right: 28px;
    display: inline-block;
}

 a.common_btn span::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background: url(https://files.bcart.jp/dearly/uploads/LP/mutennpo/img/arrow_white02.png) no-repeat center / contain;
    transform: translateY(-50%);
}

.Introduction{
    padding: 120px 0px;
}

.intro_inner{
    background-color: #fff;
    padding: 60px 80px;
    border-radius: 20px;
}

.intro_inner h3{
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 10px;
}
.intro_inner>p{
    text-align: center;
}


.formal_box{
    margin-top: 40px;
    margin-bottom: 40px;
}

.introTitle{
    font-size: 2.4rem;
    background-color: #737373;
    margin-bottom: 24px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.priceSwitch__tabs{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.tab{
  border: 1px solid #bfbfbf;
  background: #fff;
  border-radius: 6px;
  padding: 12px 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-size: 1.6rem;
  color:#515161;
}

.tab span{
    font-size: 2.8rem;
}

.tab.is-active{
  background: #dfd9d6;
  border-color: #dfd9d6;
}

.items{
  display: none;              /* まず非表示 */
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: opacity 0.18s ease;
}

.items.is-active{
  display: grid;              /* 表示するのはこれだけ */
}

.items.is-fading{
  opacity: 0;
}

.item a{
  display: block;
  text-decoration: none;
  color: inherit;
}

.item img{
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

.name{
  font-size: 12px;
  line-height: 1.35;
}

.Howtouse{
    padding: 80px 0px;
}

.Howtouse_pc{
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 20px;
    display: block;
}

  .Howtouse_sp{
    display: none;
  }


  .Point--Sche .deco01_sp{
    display: none;
}font-size: 1.6rem !important;
    font-weight: bold !important;