/* common */
.l-content{
    max-width: 1110px;
    margin: auto;
}

.p-sub-sec{
    padding: 80px 0;
    background-color: #F0F4F7;
}

.p-sub-sec.bgcf{
    background-color: #fff;
}

@media only screen and (max-width: 1199px) {
    .l-content{
        padding: 0 20px;
    }
    
    .p-sub-sec{
        padding: 80px 0;
        background-color: #F0F4F7;
    }
}

@media only screen and (max-width: 767px) {
    .l-content{
        padding: 0 5.33333vw;
    }
    
    .p-sub-sec{
        padding: 13.3333vw 0 20vw;
    }
} 

.nopc{
    display: none;
}

.notab{
    display: block;
}

.nosp{
    display: block;
}

.sp{
    display: none;
}

@media only screen and (max-width: 991px) {
    .nopc{
        display: block;
    }

    .notab{
        display: none;
    }

    .sp{
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .nopc{
        display: block;
    }

    .notab{
        display: block;
    }

    .nosp{
        display: none;
    }

    .sp{
        display: block;
    }
}

/* breadcrumbs */
.l-breadcrumbs ol{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px 30px;
    margin-left: 45px;
}

.l-breadcrumbs ol li,
.l-breadcrumbs ol li a{
    color: #FFF;
    line-height: 1.5;
    -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;
}

.l-breadcrumbs ol li a:hover{
    opacity: 0.7;
}

.l-breadcrumbs ol li:first-child img{
    width: 15px;
    height: 20px;
    margin-top: -3px;
}

.l-breadcrumbs ol li:not(:last-child){
    position: relative;
}

.l-breadcrumbs ol li:not(:last-child)::before{
    position: absolute;
    content: "";
    top: 0.75rem;
    right: -15px;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: translateY(-50%) rotate(45deg);
}

@media only screen and (max-width: 767px) {
    .l-breadcrumbs ol{
        font-size: 3.2vw;
        gap: 8vw;
        margin-left: 0;
    }
    
    .l-breadcrumbs ol li:first-child img{
        width: 4vw;
        height: 5.333333vw;
        margin-top: -1vw;
    }

    .l-breadcrumbs ol li:not(:last-child)::before{
        right: -4vw;
        top: 2.5vw;
        width: 2.13333vw;
        height: 2.13333vw;
        border-top: solid 0.533333333vw #fff;
        border-right: solid 0.533333333vw #fff;
    }
}

/* mv */
.p-mv{
    padding: 10px 0 50px;
    margin-top: 4.5rem;
    height: 245px;
}
.p-mv-ttl{
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 40px auto 25px;
}

.p-mv-txt{
    color: #fff;
    font-family: 16px;
    line-height: 1.81;
    text-align: center;
}

@media only screen and (max-width: 1199px) {
    .p-mv{
        margin-top: 56px;
    }
}

@media only screen and (max-width: 1023px) {
    .p-mv{
        height: 301px;
        margin-top: 0;
        padding-top: 66px;
    }
}

@media only screen and (max-width: 991px) {
    .p-mv{
        padding-top: 66px;
        height: 340px;
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .p-mv{
        padding: 17.333333vw 0 8vw;
        margin-top: 0;
        height: 85.866666vw;
    }
    .p-mv-ttl{
        font-size: 7.4667vw;
        line-height: 1.28;
        margin: 8vw auto 5.333333vw;
        white-space: nowrap;
    }
    
    .p-mv-txt{
        font-size: 3.7333vw;
    }
}

/* ttl */
.p-ttl01{
    width: fit-content;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.458;
    text-align: center;
    padding: 5px 60px;
    margin: 0 auto 70px;
    position: relative;
}

.p-ttl01::before,
.p-ttl01::after{
    position: absolute;
    content: "";
    top: 0;
    width: 10px;
    height: 100%;
    border-top: 1px solid #2D67A3;
    border-bottom: 1px solid #2D67A3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: transparent;
}

.p-ttl01::before {
    left: 0;
    border-left: 1px solid #2D67A3;
}
.p-ttl01::after {
    left: auto;
    right: 0;
    border-right: 1px solid #2D67A3;
}

@media only screen and (max-width: 767px) {
    .p-ttl01{
        width: 100%;
        font-size: 5.33333333vw;
        padding: 2.133333vw 2.6666666vw;
        margin: 0 auto 10.666666vw;
    }
    
    .p-ttl01::before,
    .p-ttl01::after{
        width: 2.666666vw;
        border-top: 0.6vw solid #2D67A3;
        border-bottom: 0.6vw solid #2D67A3;
    }
    
    .p-ttl01::before {
        border-left: 0.6vw solid #2D67A3;
    }
    .p-ttl01::after {
        border-right: 0.6vw solid #2D67A3;
    }
}


/* btn */
a.btn_cta.btn_blue {
    font-size: 16px;
	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: 8px 35px 10px 25px;
    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;
    pointer-events: none;
}

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: 4.2666666vw;
        width: fit-content;
    }

    a.btn_cta.btn_blue span{
        padding: 2.13333vw 9.33333vw 2.66666vw 6.66666vw;
    }
    
}

/* cv */
.p-sub-bottom-cv{
    text-align: center;
    margin-top: 70px;
    font-weight: 700;
  }
  
  .p-sub-bottom-cv-txt{
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .p-sub-bottom-cv-ttl{
    color: #2D67A3;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  
  .p-sub-bottom-cv-txt::after{
    content: none;
  }
  
  @media only screen and (max-width: 767px) {
    .p-sub-bottom-cv{
        margin-top: 12.533333vw;
    }
    
    .p-sub-bottom-cv-txt{
        font-size: 4.266666vw;
        margin-bottom: 7vw;
    }
    
    .p-sub-bottom-cv-ttl{
        font-size: 5.33333vw;
        margin-bottom: 3.33333vw;
    }
  }