/* common */
.nopc{
    display: none;
}

.notab{
    display: block;
}

.nosp{
    display: block;
}

@media only screen and (max-width: 991px) {
    .nopc{
        display: block;
    }

    .notab{
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .nopc{
        display: block;
    }

    .notab{
        display: block;
    }

    .nosp{
        display: none;
    }
}

/* reduction */
#sec_reduction .p-reduction-figure {
    padding: 30px 60px 50px;
}

#sec_reduction .p-reduction-figure img {
    width: 793px;
}
@media only screen and (max-width: 767px) {
    #sec_reduction .p-reduction-figure {
        padding: 20px;
    }

    #sec_reduction .p-reduction-figure img {
        width: 97%;
    }
}

/* process */  
ul.process-wrap {
    -ms-flex-pack: justify;
    justify-content: space-between;
}
    
ul.process-wrap li {
    width: 31.25%;
}   
    
.process-box {
    background-color: #fff;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.2);
}

.process-box figure{
    margin-bottom: 0;
}
    
.process-box figure img {
    width: 100%;
}    
    
.process-box .text {
    padding: 2rem;
}    

.process-box h3 {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px dotted #2D67A3;
    color: #2D67A3;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
}

.process-box h3 span.step {
    display: block;
    font-size: 2em;
}  

.process-box h3 span.step span {
    font-size: 14px;
    font-family: Georgia, "Times New Roman", Times, "serif";
    font-style: italic;
    font-weight: 400;
} 

.process-box p{
    line-height: 1.8;
}

@media (max-width:959px) { 
ul.process-wrap li {
    width: 87%;
    margin: auto;
    margin-bottom: 2rem;   
}
    
ul.process-wrap li:last-child {
    margin-bottom: 0;
} 

.process-box .text {
    padding: 1.5rem;
}   
}

/* schedule */
#sec_schedule{
    padding-bottom: 15px;
}

.p-schedule-txt{
    font-size: 24px;
    letter-spacing: 0.04em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.p-schedule-txt img{
    width: 250px;
    padding: 0 5px 5px 0;
}

.p-schedule-txt span{
    color: #2D67A3;
}

.p-schedule-txt span span{
    font-size: 44px;
    padding-top: 5px;
}

.p-schedule-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 70px;
    margin: auto;
    position: relative;
}

.p-schedule-list li{
    width: calc(25% - 70px * 3 / 4);
    max-width: 210px;
    text-align: center;
}

.p-schedule-list-img{
    position: relative;
}

.p-schedule-list-img::before{
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 65%;
    width: 100%;
    height: 20px;
    background: #F0F4F7;
    z-index: -1;
}

.p-schedule-list li:nth-child(4) .p-schedule-list-img::before{
    width: 50%;
}
.p-schedule-list li:nth-child(5) .p-schedule-list-img::after{
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: 65%;
    width: 50%;
    height: 20px;
    background: #F0F4F7;
    z-index: -1;
}

.p-schedule-list li:nth-child(7) .p-schedule-list-img::before{
    top: 40%;
    left: 50%;
    width: 165px;
    height: 84px;
    background: url(../images/202301/bg_schedule02_pc.png) no-repeat center / contain;
}

.p-schedule-list li:nth-child(8) .p-schedule-list-img::before{
    width: 0;
}

.p-schedule-list-img img{
    width: 140px;
    display: block;
    margin: auto;
}

.p-schedule-list-ttl{
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #2D67A3;
    margin: 10px auto;
}

.p-schedule-list li p{
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

@media only screen and (max-width: 1199px) {
    .p-schedule-list{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 0;
        margin: auto;
        position: relative;
    }
    
    .p-schedule-list li{
        width: calc(25% - 30px * 3 / 4);
        text-align: center;
    }

    .p-schedule-list li:nth-child(7) .p-schedule-list-img::before{
        left: 35%;
    }
}

@media only screen and (max-width: 991px) {
    .p-schedule-list{
        flex-direction: column;
        width: fit-content;
        gap: 40px;
    }
    
    .p-schedule-list li{
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: none;
        text-align: left;
    }

    .p-schedule-list-img::before,
    .p-schedule-list li:nth-child(4) .p-schedule-list-img::before,
    .p-schedule-list li:nth-child(7) .p-schedule-list-img::before{
        top: auto;
        bottom: 0;
        transform: translate(-50%, 100%);
        left: 50%;
        width: 20px;
        height: 100px;
        background: #F0F4F7;
    }

    .p-schedule-list li:nth-child(5) .p-schedule-list-img::after,
    .p-schedule-list li:nth-child(8) .p-schedule-list-img::before{
        width: 0;
        background: none;
    }
}

@media only screen and (max-width: 767px) {
    #sec_schedule{
        padding-bottom: 15px;
    }
    
    .p-schedule-txt{
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .p-schedule-txt img{
        width: 223px;
    }
    
    .p-schedule-txt span span{
        font-size: 30px;
    }
    
    .p-schedule-list-img img{
        min-width: 100px;
        max-width: 100px;
    }
    
    .p-schedule-list-ttl{
        font-size: 16px;
    }
    
    .p-schedule-list li p{
        font-size: 12px;
        line-height: 1.8;
        letter-spacing: 0.04em;
    }
}

/* faq */
#sec_faq{
    padding-bottom: 0;
}

.p-faq-list-item{
    letter-spacing: 0.04em;
    border: 1px solid #2D67A3;
}

.p-faq-list-item dt{
    display: flex;
    gap: 30px;
    align-items: flex-start;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    padding: 22px 30px;
    background-color: #2D67A3;
}

.p-faq-list-item dt span{
    font-size: 24px;
    line-height: 1.3;
    padding-bottom: 5px;
}

.p-faq-list-item dd{
    font-size: 16px;
    padding: 20px 40px 30px;
    background-color: #fff;
}

.p-faq-list-item dd p{
    line-height: 1.8;
    padding-bottom: 30px;
}

.p-faq-list-item dd a{
    color: #2D67A3;
    font-weight: 700;
    transition: all 0.2s ease-in-out 0.125s;
    -webkit-transition: all 0.2s ease-in-out 0.125s;
    -moz-transition: all 0.2s ease-in-out 0.125s;
    -o-transition: all 0.2s ease-in-out 0.125s;
    -ms-transition: all 0.2s ease-in-out 0.125s;
}

.p-faq-list-item dd a:hover{
    opacity: 0.7;
}

.p-faq-list-item dd p a{
    display: inline;
    text-decoration: underline;
}

.p-faq-list-item dd>a{
    display: block;
    width: fit-content;
    margin-left: auto;
    padding-right: 20px;
    position: relative;
}

.p-faq-list-item dd>a::before{
    position: absolute;
    content: "";
    top: 50%;
    right:0;
    width: 10px;
    height: 10px;
    border-top: solid 2px #2D67A3;
    border-right: solid 2px #2D67A3;
    transform: translateY(-50%) rotate(45deg);
}

@media only screen and (max-width: 767px) {
    #sec_faq{
        padding-bottom: 0;
    }
    
    .p-faq-list-item dt{
        gap: 10px;
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .p-faq-list-item dt span{
        font-size: 16px;
    }
    
    .p-faq-list-item dd{
        font-size: 16px;
        padding: 20px;
    }

    .p-faq-list-item dd a{
        line-height: 1.57;
    }

    .p-faq-list-item dd>a{
        font-size: 14px;
        padding-right: 10px;
    }
}

/* btn */
a.btn_cta.btn_blue {
	border: 2px solid #2D67A3;
	color: #2D67A3;
    letter-spacing: 0;
	font-weight: 700;
    padding: 0;
	background-color: #fff;
    background-image: none;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all 0.2s ease-in-out 0.125s;
    -moz-transition: all 0.2s ease-in-out 0.125s;
    -o-transition: all 0.2s ease-in-out 0.125s;
    -ms-transition: all 0.2s ease-in-out 0.125s;
    transition: all 0.2s ease-in-out 0.125s;
}

a.btn_cta.btn_blue span{
    isolation: isolate;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 16px 60px 18px 50px;
    color: #2D67A3;
    z-index: 10;
    -webkit-transition: all 0.2s ease-in-out 0.125s;
    -moz-transition: all 0.2s ease-in-out 0.125s;
    -o-transition: all 0.2s ease-in-out 0.125s;
    -ms-transition: all 0.2s ease-in-out 0.125s;
    transition: all 0.2s ease-in-out 0.125s;
}

a.btn_cta.btn_blue::after{
    right: 20px;
}

a.btn_cta.btn_blue span::before  {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #2D67A3;
    z-index: -1;
    -webkit-transition: all 0.2s ease-in-out 0.125s;
    -moz-transition: all 0.2s ease-in-out 0.125s;
    -o-transition: all 0.2s ease-in-out 0.125s;
    -ms-transition: all 0.2s ease-in-out 0.125s;
    transition: all 0.2s ease-in-out 0.125s;
}

a.btn_cta.btn_blue span:hover{
    color: #fff;
}

a.btn_cta.btn_blue span:hover:before{
    width: 100%;
}

a.btn_cta.btn_blue:hover{
    color: #fff;
}

@media only screen and (max-width: 767px) {
    a.btn_cta.btn_blue {
        font-size: 16px;
    }
    
    a.btn_cta.btn_blue span{
        padding: 16px 25px 18px 10px;
    }
}