/* CSS Document */

#contents{
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.app_pc{
    display: block;
}
    
.app_sp{
   display: none;
}

.main{
    width: 12rem;
    height: 6.44rem;
    margin: 0.1rem auto 0.8rem;
    position: relative;
    display: block;
}

.main h1 img{
    width: 3.66rem;
    position: absolute;
    top:1.18rem;
    left: 1.6rem;
    display: block;
}

.main .qr img{
    width: 4.66rem;
    position: absolute;
    top:4rem;
    left: 1.2rem;
    display: block;
}

.main .txt {
    font-size: 0.13rem;
    color: #1A1311;
    position: absolute;
    top:5.1rem;
    left: 1.2rem;
    display: block;
    font-weight: bold;
}

.main .phone img{
    width: 1.43rem;
    position: absolute;
    top:1.08rem;
    left: 6.36rem;
    z-index: 1;
    display: block;
}

.main .support img{
    width: 2.61rem;
    position: absolute;
    top:1.21rem;
    left: 8.35rem;
    z-index: 1;
    display: block;
}

.main .najirakko img{
    width: 4.6rem;
    position: absolute;
    top:1.65rem;
    left: 7.2rem;
    z-index: 2;
    display: block;
    transform-origin: center bottom;
    animation: move 3s linear infinite;
}

@keyframes move {
  0% , 100%{
      transform: rotate(1deg);
  }
  50%{
      transform: rotate(-1deg);
  }
}

.main .start img{
    width: 1.77rem;
    position: absolute;
    top:4rem;
    left: 6.34rem;
    z-index: 1;
    display: block;
}

.main::before{
    content: "";
    background-image: url("../images/main_bg_pc.svg");
    width: 12rem;
    height: 6.44rem;
    position: absolute;
    top:0;
    left: 0;
    display: block;
    background-size: cover;
}

.block01{
    background-image: url("../images/block01_bg_pc.svg");
    width: 100%;
    background-size: cover;
    padding: 0.8rem 0;
}

.block01 .block01_inner{
    width: 12rem;
    margin: 0 auto;
    border-radius: 0.4rem;
    background: #FFF;
    padding: 0.6rem;
    box-sizing: border-box;
}

.block01 .block01_inner .flex{
    display: flex;
    justify-content: space-between;
}

.block01 .block01_inner .flex .phone img {
    width: 2.34rem;
}

.block01 .block01_inner .flex .txt_area {
    width: 8.1rem;
}

.block01 .block01_inner .flex .txt_area h2 {
    font-size: 0.289rem;
    font-weight: 900;
    color: #E84570;
    border-top:solid 5px #E84570;
    border-bottom:solid 5px #E84570;
    padding: 0.19rem 0;
    margin-bottom: 0.22rem;
    box-sizing: border-box;
}

.block01 .block01_inner .flex .txt_area p{
    font-size: 0.18rem;
    color: #333333;
    font-weight: 900;
    margin-bottom: 0.14rem;
}

.block01 .block01_inner .flex .txt_area .shop{
    background: #EDF8F8;
    border-radius: 5px;
    padding: 0.3rem;
    margin-top: 0.2rem;
    box-sizing: border-box;
}

.block01 .block01_inner .flex .txt_area .shop img{
    width: 0.3rem;
    margin: 0 0.1rem 0 0;
    display: inline-block;
}

.block01 .block01_inner .flex .txt_area .shop h3{
    font-size: 0.24rem;
    color: #333333;
    font-weight: 900;
    line-height: 1;
    vertical-align: text-top;
    margin-bottom: 10px;
}

.block01 .block01_inner .flex .txt_area .shop p{
    font-size: 0.16rem;
    color: #333333;
    font-weight: 500;
}

.block01 .block01_inner .flex .txt_area .attention,
.block01 .block01_inner .flex .txt_area .shop .attention,
.block03 .qa_block .attention,
.attention_block .attention,
.block02 .tgl_area ul li .attention{
    font-size: 0.13rem;
    color: #333333;
    padding-left:1em;
	text-indent:-1em;
    margin-bottom: 0.04rem;
    font-weight: 500;
    line-height: 1.4;  
    display: block;
}

.block01 .block01_inner .qr img{
    width: 8.25rem;
    margin: 0.3rem auto 0;
    display: block;
}


.block01 .block01_inner .flex .txt_area .phone{
    display: none;
}



@media (max-width:768px) {
    
    .app_pc{
        display: none;
    }
    
    .app_sp{
        display: block;
    }
    
    .main {
        margin: 0 auto 12vw;
        width: 100vw;
        height: 159vw;
    }

    .main h1 img{
        width: 60vw;
        top: 16vw;
        left: 20vw;
    }

    .main .qr img{
        display: none;
    }

    .main .txt {
        font-size: 3.2vw;
        line-height: 1.4;
        width: 76vw;
        top: 138vw;
        left: 12vw;
    }

    .main .phone img{
        width: 21vw;
        top: 65vw;
        left: 19vw;
    }

    .main .support img{
        width: 39vw;
        top: 67vw;
        left: 47vw;
    }

    .main .najirakko img{
        width: 68vw;
        top: 74vw;
        left: 31vw;
    }

    .main .start img{
        width: 28vw;
        top: 108vw;
        left: 18vw;
    }

    .main::before{
        background-image: url("../images/main_bg_sp.svg");
        width: 100vw;
        height: 159vw;
    }
    
    .block01{
        background-image: url("../images/block01_bg_sp.svg");
        width: 100vw;
        background-size: cover;
        padding: 12vw 0vw;
    }

    .block01 .block01_inner{
        width: 90vw;
        margin: 0 auto;
        border-radius: 3vw;
        padding: 7vw;
    }

    .block01 .block01_inner .flex{
        display: block;
    }

    .block01 .block01_inner .flex .phone img {
        display: none;
    }

    .block01 .block01_inner .flex .txt_area {
        width: 100%;
    }

    .block01 .block01_inner .flex .txt_area h2 {
        font-size: 5vw;
        padding: 2vw 0;
        margin-bottom: 4vw;
        text-align: center;
    }

    .block01 .block01_inner .flex .txt_area p{
        font-size: 3.9vw;
        margin-bottom: 2vw;
    }
    
    .block01 .block01_inner .flex .txt_area .phone{
        display: block;
    }
    
    .block01 .block01_inner .flex .txt_area .phone img{
        display: block;
        width: 30vw;
        margin: 0 auto;
    }

    .block01 .block01_inner .flex .txt_area .shop{
        padding: 6vw 6vw 4vw; 
        margin-top: 5vw;
    }

    .block01 .block01_inner .flex .txt_area .shop img{
        width: 5.5vw;
        margin: 0 1vw 0 0;
    }

    .block01 .block01_inner .flex .txt_area .shop h3{
        font-size: 4.5vw;
        margin-bottom: 3vw;
    }

    .block01 .block01_inner .flex .txt_area .shop p{
        font-size: 3.5vw;
    }
    
    .block01 .block01_inner .flex .txt_area .attention,
    .block01 .block01_inner .flex .txt_area .shop .attention,
    .block03 .qa_block .attention,
    .attention_block .attention,
    .block02 .tgl_area ul li .attention{
        font-size: 2.7vw;
        margin-bottom: 1vw; 
        display: block;
    }
    
    .block01 .block01_inner .qr img{
        display: none;
    }

}



.block02{
    width: 100%;
    background:#FEF2F9;
    padding: 0.8rem 0;    
        
}

.block02 .block02_inner{
    width: 12rem;
    margin: 0 auto;
}

.block02 .block02_inner .step{
    position: relative;
}

.najirakko img{
    display: block;
    position: absolute;
    left: -0.48rem;
    top: 0;
    width: 3rem;
}

.block02 .block02_inner .step h2{
    font-size: 0.4rem;
    text-align: center;
    color: #E8426F;
    font-weight: 900;
}

.block02 .block02_inner .step h2 span{
    font-size: 0.32rem;
    font-weight: 600;
    display: block;
    margin: 0.16rem 0 0.3rem;
    line-height: 1;
}

.block02 .block02_inner .step h3{
    width: 100%;
    padding: 0.2rem 0;
    background-color: #E8426F;
    border-radius: 0.08rem 0.08rem 0 0;
    color: #FFF;
    font-size: 0.27rem;
    font-weight: bold;
    padding-left: 1.8rem;
    position: relative;
    box-sizing: border-box;
}

.block02 .block02_inner .step h3 span .app_pc{
    display: inline-block;
}

.block02 .block02_inner .step h3 .attention_icon{
    display: block;
    font-size: 0.24rem;
    color: #FFED06;
    vertical-align: text-top;
    line-height: 1;
    margin-top: 0.08rem;
}

.block02 .block02_inner .step h3.step01 .attention_icon img{
    display: inline-block;
    width: 0.23rem;
    padding-right: 0.05rem;
    position: static;
}


.block02 .block02_inner .step h3.step01{
    border-radius: 0.08rem;
    margin-bottom: 0.3rem;
}

.block02 .block02_inner .step h3.step01 img{
    width: 1.39rem;
}

.block02 .block02_inner .step .step02 h3 img{
    width: 1.53rem;
}

.block02 .block02_inner .step .step03 h3 img{
    width: 1.53rem;
}

.block02 .block02_inner .step h3.step01:after{
    content: url("../images/step_arrow.svg");
    position: absolute;
    bottom: -0.2rem;
    left: 50%;
    margin-left: -0.14rem;
    width: 0.28rem;
}

.block02 .block02_inner .step h3 img{
    position: absolute;
    display: block;
    left: -0.1rem;
    top:50%;
    margin-top: -0.3rem;
}

.block02 .block02_inner .step .step02 .step_block{
    width: 12rem;
    height: 6.52rem;
    background: url("../images/step2_bg-pc.svg");
    background-size: cover;
    margin-bottom: 0.2rem;
}

.block02 .block02_inner .step .step02 .step_block dl{
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.62rem 0;
}

.block02 .block02_inner .step .step02 .step_block dt{
    width: 1rem;
    font-size: 0.16rem;
    padding-top: 1.45rem;
}

.block02 .block02_inner .step .step02 .step_block dt img{
    width: 0.4rem;
    display: block;
    margin: 0 0.3rem 0.2rem;
}

.block02 .block02_inner .step .step02 .step_block dd{
    width: 2.5rem;
    position: relative;
}

.block02 .block02_inner .step .step02 .step_block dd:after{
    content: url("../images/step2_arrow.svg");
    width: 0.24rem;
    position: absolute;
    right: 0;
    top:50%;
    margin-top: -0.23rem;
}

.block02 .block02_inner .step .step02 .step_block dd:last-child:after{
    content: none;
}

.block02 .block02_inner .step .step02 .step_block dd:last-child{
    width: 2.16rem;
}

.block02 .block02_inner .step .step02 .step_block dd img{
    width: 2.16rem;
}

.block02 .block02_inner .step .step02 .step_block h4{
    font-size: 0.3rem;
    text-align: center;
    color: #333333;
    font-weight: bold;
    margin: 0.4rem 0 0.05rem;
}

.block02 .block02_inner .step .step02 .step_block .attention{
    font-size: 0.13rem;
    text-align: center;
    color: #333333;
    font-weight: 300;
}

.block02 .block02_inner .step .step03 .step_block{
    width: 12rem;
    height: 2.34rem;
    background: url("../images/step3_bg-pc.svg");
    background-size: cover;
}

.block02 .block02_inner .step .step03 p{
    font-size: 0.2rem;
    font-weight: 300;
    text-align: left;
    padding: 0.5rem 0.62rem 0;
}

.block02 .block02_inner .step .step03 p.attention{
    font-size: 0.13rem;
    font-weight: 300;
    text-align: left;
    padding: 0.12rem 0.62rem 0;
}

.block02 .overview h3 a{
    width: 100%;
    font-size:0.23rem;
	color:#080808;
	font-weight:bold;
    text-align: left;
	display:block;
    padding: 0.5rem;
    position: relative;
    text-decoration: none;
    box-sizing: border-box;
}

.block02 .overview h3 a:after{
    content: "";
    display: block;
    width: 44px;
    height: 44px;
    background: #EBEBEB;
    border-radius: 50%;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.block02 .overview h3 a span:after {
    content: "";
    display: block;
    width: 20px;
    height: 3px;
    background: #EB334B;
    position: absolute;
    right: 42px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.block02 .overview h3 a span:before {
    content: "";
    display: block;
    width: 3px;
    height: 20px;
    right: 50px;
    background: #EB334B;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.block02 .overview h3 a.active > span:before {
    height: 0;
}

.block02 .overview{    
    width: 12rem;
	margin:0.5rem auto 0;	
    background: #FFF;
    border-radius: 10px;
    box-sizing: border-box;
}

.block02 .tgl_area{
    display: none;
    border-top: solid 1px #EBEBEB;
    margin: 0 0.5rem;
}

.block02  .overview .tgl_area h4{    
    font-size: 0.18rem;
    color: #333333;
    font-weight: bold;
    border-radius: 5px;
    padding: 0.1rem;
    background-color: #E3E3E3;
    line-height: 1;
    display: inline-block;
    margin: 0.3rem 0 0.15rem;
}

.block02 .tgl_area ul{
    border-bottom: solid 1px #EBEBEB;
    padding: 0 0 0.2rem;
}

.block02 .tgl_area ul:last-child{
    border-bottom: none;
    padding: 0 0 0.4rem;
}

.block02 .tgl_area ul li{
    font-size: 0.16rem;
    font-weight: bold;
    color:#333333;
    padding-left:1em;
	text-indent:-1em;
    margin-bottom: 0.08rem;
}

.block02 .tgl_area ul li ul,
.block02 .tgl_area ul li ul:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
}

.block02 .tgl_area ul li ul li{
	margin-left: 0.2rem;
}

.block02 .tgl_area ul li ul{
    border-bottom: none;
}

.block02 .txt_link{
    margin-top: 0.24rem;
    font-size: 0.16rem;
}

.block02 .txt_link a{
    color: #FF0044;
    text-decoration: underline;
}

.block02 .txt_link a:hover{
    text-decoration: none;
}


@media (max-width:768px) {

    .block02{
		padding:12vw 0;
	}
    
    .block02 .block02_inner,
    .block02 .overview{    
        width:88vw;
		margin:0 auto;
    }

    .najirakko img{
        left: -7vw;
        top: 17.3vw;
        width: 22vw;
    }

    .block02 .block02_inner .step h2{
        font-size: 5.5vw;
    }

    .block02 .block02_inner .step h2 span{
        font-size: 4.5vw;
        margin: 6vw 0 5vw;
    }

    .block02 .block02_inner .step h3{
        padding: 5vw 4vw 3vw 19.5vw;
        border-radius: 1vw 1vw 0 0;
        font-size: 4.4vw;
        font-feature-settings: "palt";
    }

    .block02 .block02_inner .step h3 span .app_pc{
        display: none;
    }

    .block02 .block02_inner .step h3 .attention_icon{
        font-size: 4vw;
        margin-top: 0.08rem;
    }

    .block02 .block02_inner .step h3.step01 .attention_icon img{
        height: 3.8vw;
        padding:0 2vw;
    }


    .block02 .block02_inner .step h3.step01{
        border-radius: 2vw;
        margin-bottom: 8vw;
        height: 39vw;
    }
    
    .block02 .block02_inner .step h3.step01 img{
        width: 20vw;
    }
    
    .block02 .block02_inner .step h3.step01 .app_sp img{
        width: 59vw;
        position: absolute;
        top: 25vw;
        left: 21vw;
    }

    .block02 .block02_inner .step .step02 h3 img{
        width: 20vw;
    }

    .block02 .block02_inner .step .step03 h3 img{
        width: 20vw;
    }

    .block02 .block02_inner .step h3.step01:after{
        bottom: -5vw;
        margin-left: -2.5vw;
        width: 5vw;
}

    .block02 .block02_inner .step h3 img{
        left: -3vw;
        top:50%;
        margin-top: -4vw;
    }

    .block02 .block02_inner .step .step02 .step_block{
        width: 88vw;
        height: 416.5vw;
        background: url("../images/step2_bg-sp.svg");
        margin-bottom: 3vw;
        background-size: contain;
        margin-top: -0.5vw;
        background-repeat: no-repeat;
    }

    .block02 .block02_inner .step .step02 .step_block dl{
        display: block;
        padding: 5vw 5vw 0;
    }

    .block02 .block02_inner .step .step02 .step_block dt{
        width: 59vw;
        font-size: 3.3vw;
        padding-top: 0;
        margin: 1px auto 1vw;
        display: flex;
        align-items: center;
        font-feature-settings: "palt";
    }

    .block02 .block02_inner .step .step02 .step_block dt img{
        width: 8vw;
        display: inline-block;
        margin: 1vw ;
    }    

    .block02 .block02_inner .step .step02 .step_block dd{
        width: 56vw;
        margin: 0 auto 6vw;
        display: block;
    }

    .block02 .block02_inner .step .step02 .step_block dd:after{
        content: url(../images/step2_arrow_sp.svg);
        width: 8vw;
        height: 2vw;
        position: absolute;
        left: 50%;
        top: 116vw;
        margin-left: -4vw;
    }

    .block02 .block02_inner .step .step02 .step_block dd:last-child:after{
        content: none;
    }

    .block02 .block02_inner .step .step02 .step_block dd:last-child{
        width: 56vw;
        margin: 0 auto;
    }

    .block02 .block02_inner .step .step02 .step_block dd img{
       width: 56vw;
    }

    .block02 .block02_inner .step .step02 .step_block h4{
        font-size: 4.2vw;
        margin: 3vw 0 3vw;
    }

    .block02 .block02_inner .step .step02 .step_block .attention{
        font-size: 2.7vw;
        text-align: left;
        padding-left:1em;
    	text-indent:-1em;
        margin: 0 5vw;
    }

    .block02 .block02_inner .step .step03 .step_block{
        width: 88vw;
        height: 65.5vw;
        background: url(../images/step3_bg-sp.svg);
        background-size: contain;
        margin-bottom: 5vw;
        margin-top: -0.5vw;
        background-repeat: no-repeat;
    }

    .block02 .block02_inner .step .step03 p{
        font-size: 3.8vw;
        padding: 4vw 5vw 0;
        line-height: 1.6;
    }

    .block02 .block02_inner .step .step03 p.attention{
        font-size: 3.2vw;
        margin: 2vw 5vw 0;
        padding: 0 0 0 1em;
        text-indent: -1em;
    }

    .block02 .tgl_area{
        margin: 0 5vw;
    }
	
	.block02 .overview h3 a{
		font-size:4.5vw;
        padding: 5vw;
	}
            
    .block02 .overview h3 a:after{
        width: 10vw;
        height: 10vw;
        right: 5vw;
    }

    .block02 .overview h3 a span:before {
        width: 0.5vw;
        height: 4vw;
        right: 9.6vw;
    }

    .block02 .overview h3 a span:after {
        width: 4vw;
        height: 0.5vw;
        right: 8vw;
    }
	
	.block02  .overview .tgl_area h4{
		margin-top:5vw;
		font-size:3.6vw;
	}
	.block02  .overview .tgl_area ul li{
		font-size: 3.4vw;
        margin-bottom: 2vw;
	}

    .block02 .tgl_area ul li ul li{
    	margin-left: 3vw;
    }
    
    .block02 .txt_link{
        margin-top: 3vw;
        font-size: 3.2vw;
    }

}


.block03{
    width: 100%;
    background:#F8F8F8;
    padding: 0.3rem 0 0.8rem;
}

.block03 .qa_block,
.block03 .attention_block{
    width: 10rem;
	margin:0.5rem auto 0;	
    padding: 0.5rem;
    background: #FFF;
    border-radius: 10px;
    box-sizing: border-box;
}

.block03 .qa_block h3,
.block03 .attention_block h3{
	font-size:0.23rem;
	color:#080808;
	font-weight:bold;
    text-align: left;
}

.block03 .qa_block > ul{
	margin-top:30px;	
	border-top:solid 1px #cecece;
}

.block03 .qa_block > ul > li{
	border-bottom:solid 1px #cecece;
	padding:0px 0 0;
}

.block03 .qa_block > ul > li > h4{
	font-size:0.17rem;
	color:#333333;
	font-weight:bold;
	padding:0.38rem 0.4rem 0.35rem 0;	
	position:relative;
	cursor:pointer;
}

/*.block03 .qa_block > ul > li > h4:after{
	content:"";
	display:block;
	background:url(../images/qa_show.svg) no-repeat left top;
	background-size:100% auto;
	width:0.14rem;
	height:0.14rem;
	position:absolute;
	right:0.2rem;
	top:0.42rem;
	transition: all 0.4s;
}

.block03 .qa_block > ul > li.active h4:after{
	background:url(../images/qa_hide.svg) no-repeat left top;
	background-size:100% auto;
	width:0.14rem;
	height:0.14rem;
}*/

.block03 .qa_block > ul > li > h4:after {
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background: #EB334B;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.block03 .qa_block > ul > li > h4:before {
    content: "";
    display: block;
    width: 2px;
    height: 14px;
    right: 26px;
    background: #EB334B;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.block03 .qa_block > ul > li.active > h4:before {
    height: 0;
}

.block03 .qa_block > ul > li > .inner{
	margin-top:0px;
	padding:0 0.4rem 0.35rem 0.2rem;
	position:relative;
	line-height: 1.643;
	display:none;
}

.block03 .qa_block > ul > li > .inner p{
	font-size: 0.16rem;
	color: #333333;
}

.block03 .qa_block > ul > li > .inner > .bold{
	display:block;
	margin-top:0.1rem;	
}

.block03 .qa_block > ul > li > .inner > ul{
    margin: 0.1rem 0 0 0.2rem;
}

.block03 .qa_block > ul > li > .inner > ul > li{
	padding-left:1em;
	text-indent:-1em;
    font-size: 0.16rem;
    color: #333333;
}

.block03 .qa_block > ul > li > .inner .bold{
	font-weight:bold;	
}

.block03 .qa_block > ul > li > .inner .red{
	color:#FF0044;	
}

.attention_block dl dt{
    margin: 0.3rem 0 0.14rem;
    font-size: 0.17rem;
    color: #333333;
    font-weight: bold;
}

.attention_block dl dd ul li{
    margin: 0 0 0.1rem 0.1rem;
    font-size: 0.16rem;
    color: #333333;
    padding-left:1em;
	text-indent:-1em;
}

.block03 .date{
    width: 10rem;
    margin: 0.2rem auto 0;
    font-size: 0.17rem;
    color: #333333;
    text-align: right;
    font-weight: 100;
}

@media (max-width:768px) {
    
    .block03{
        padding: 4vw 0 12vw;
    }

    .block03 .qa_block,
    .block03 .attention_block{
		width:88vw;
		margin:6vw auto 0;
        padding: 6vw;
	}
	
    .block03 .qa_block h3,
    .block03 .attention_block h3{
	    font-size:5vw;
    }
	
	.block03 .qa_block > ul{
		margin-top:5vw;	
		border-top:solid 1px #cecece;
	}
	
	.block03 .qa_block > ul > li{
		border-bottom:solid 1px #cecece;
		padding:0;
	}
	
	.block03 .qa_block > ul > li > h4{
        font-size: 3.8vw;
    	padding:5vw 4vw 5vw 0;	
	}
    
    .block03 .qa_block > ul > li > h4:after {
        width: 4vw;
        height: 0.5vw;
        right: 0;
    }

    .block03 .qa_block > ul > li > h4:before {
        width: 0.5vw;
        height: 4vw;
        right: 2vw;
    }
	
	.block03 .qa_block > ul > li > .inner{
		padding:0 8vw 4.5vw 0;	
		position:relative;
	}
    
	.block03 .qa_block > ul > li > .inner p{
		font-size: 3.4vw;
	}
    
    .block03 .qa_block > ul > li > .inner > .bold{
    	margin-top:2vw;	
    }

    .block03 .qa_block > ul > li > .inner > ul{
        margin: 2vw 0 0 4vw;
    }

    .block03 .qa_block > ul > li > .inner > ul > li{
    	font-size: 3.4vw;
    }

    .attention_block dl dt{
        margin: 2vw 0 1.5vw;
        font-size: 3.8vw;
    }

    .attention_block dl dd ul li{
        margin: 0 0 1vw 1vw;
        font-size: 3.4vw;
    }

    .block03 .date{
        font-size: 3.8vw;
        width:88vw;
		margin:3vw auto 0;
    }

}




/*-----------------------------
  追従ボタン
------------------------------*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
}

@media (min-width:769px) {
   .floating-bottom-links {
      visibility: hidden;
      opacity: 0;
      display: none;
    }
    
   .floating-bottom-links.on {
      visibility: hidden;
      opacity: 0;
      display: none;
  }
}

@media (max-width:768px) {
  .floating-bottom-links {
      bottom: -0.2vw;
      left: 0;
      width: 100%;
      height: 18.1vw;
      background: #fff;
      box-shadow: 0px 0px 16px rgba(5, 5, 5, 0.1);
      position: fixed;
      z-index: 10;
  }

  .floating-bottom-links.on {
      visibility: visible;
      opacity: 1;
  }

  .floating-bottom-links-btn {
        width: 75vw;
        height: 12vw;
        border-radius: 9999px;
        background: #E0D000;
        display: block;
        margin: 3.5vw 0 0 3vw;
    }

 .floating-btn-txt{
     color: #E84570;
     text-align: center;
     line-height: 1;
     font-size: 4.2vw;
     font-weight: bold;
     width: 75vw;
     height: 12vw;
     background: #FFED06;
     border-radius: 9999px;
     display: inline-flex;
     justify-content: center;
     align-items: center;
     position: relative;
     text-decoration: none;  
     transform: translate3d(0, -3px, 0);
    }

 .floating-btn-txt::after{
          content: "";
          display: block;
          width: 5vw;
          height: 5vw;
          background-image: url("../images/ico-aw-r.svg");
          background-repeat: no-repeat;
          background-size: 100% auto;
          position: absolute;
          top: 50%;
          right: 3.2vw;
          margin-top: -2.5vw;
      }
}


.l-footer{
    margin-top: 0 !important;
}