@media screen and (max-width: 767px) {
    .headerNav__request {
        display: none;
    }
    .is-open.headerMenu {
        height: auto;
        padding: 40px 0;
    }
    .headerMenu__request .buttonRequest {
        padding: 16px;
    }
}
.main {
    margin-top: 80px;
    color: #09090b;
    line-height: 1.6;
    font-family: Noto Sans JP,sans-serif;
}
@media screen and (max-width: 767px) {
    .main {
        margin-top: 60px;
    }
}
.commonWord span {
    display: block;
    margin-bottom: 20px;
}
.sp-only {
    display: none;
}
@media screen and (max-width: 767px) {
    .sp-only {
        display: initial;
    }
}
@media screen and (max-width: 767px) {
    .pc-only {
        display: none;
    }
}
/* --------------------------------------------
    buttons
--------------------------------------------  */
.buttons {
    display: flex;
    gap: 20px;
}
@media screen and (max-width: 767px) {
    .buttons {
        flex-direction: column;
    }
}
.buttons a {
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    border-radius: 40px;
    align-items: center;
    padding: 5px 20px;
    text-align: center;
    gap: 20px;
    width: 320px;
}
.buttons a span{
    line-height: 1.4em;
}
@media screen and (max-width: 767px) {
    .buttons  a {
        max-width: 95%;
    }
}
.buttons .left {
    background-color: #ff4a11;
}
.buttons .left:hover {
    background-color: #FF6B3C;
}
.buttons .right {
    background-color: #004ea1;
}
.buttons .right:hover {
    background-color: #2E56AD;
}
.buttons .img {
    width: 70px;
}
@media screen and (max-width: 767px) {
    .buttons .img {
        width: 60px;
    }
}
.buttons small {
    font-weight: normal;
    display: block;
}
.buttons .icon {
    width: 20px;
    padding-left: 10px;
}
.buttons .right .icon {
    width: 18px;
}
.buttonRequest a:hover{
    background-color: #2E56AD;
}
/* --------------------------------------------
    mainvisual
--------------------------------------------  */
.mainvisual {
    background-image: url(../images/kv.webp);
    background-position: right;
    background-size: auto 100%;
}
.mainvisual .bg {
    background-image: url(../images/kv_2.png);
    background-size: auto 100%;
    background-position: top right 33vw;
    background-repeat: no-repeat;
    padding: 50px 0;
}
@media screen and (max-width: 1100px) {
    .mainvisual .bg {
        background-position: top right 6vw;
    }
}
@media screen and (max-width: 767px) {
    .mainvisual .bg {
        padding: 40px 0;
        background-image: url(../images/kv_2_sp.png);
        background-position: top right -40vw;
    }
}
.mainvisual p.BL {
    color: #00319b;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.mainvisual p.Ye {
    background: #bc9c48;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 25px;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .mainvisual p.BL {
        font-size: 4vw;
        margin-bottom: 15px;
    }
}
.mainvisual h1 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.6em;
}
.mainvisual h1 span{
    font-size: 35px;
    line-height: 1.5em;
}
@media screen and (max-width: 767px) {
    .mainvisual h1 {
        font-size: 5.5vw;
        margin-bottom: 15px;
    }
}
.mainvisual p.text {
    line-height: 2;
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .mainvisual p.text {
        line-height: 1.6;
        margin-bottom: 15px;
        font-size: 3.8vw;
    }
}

/* --------------------------------------------
    sponsorship
--------------------------------------------  */
.sponsorship {
    background: #fff;
    column-gap: 32px;
    display: flex;
    padding: 24px 0;
}

.sponsorship__list {
    align-items: center;
    animation: slide_alternate var(--duration, 60s) linear infinite;
    column-gap: 40px;
    display: flex;
}

.sponsorship__list img {
    width: 100px;
}

@keyframes slide_alternate {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media screen and (min-width:768px) and (max-width:1040px) {
    .sponsorship {
        column-gap: 24px;
        padding: 12px 0;
    }

    .sponsorship__list {
        column-gap: 32px;
    }

    .sponsorship__list li img {
        width: 80px;
    }
}

@media screen and (max-width: 767px) {
    .sponsorship {
        column-gap: 24px;
        padding: 12px 0;
    }

    .sponsorship__list {
        column-gap: 32px;
    }

    .sponsorship__list li img {
        width: 60px;
    }
}

/* --------------------------------------------
    worries
--------------------------------------------  */
.worries {
    background: #deecfb;
    padding: 64px 0 80px;
}
@media screen and (max-width: 767px) {
    .worries {
        padding: 40px 0;
    }
}
.worries .items {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .worries .items {
        flex-direction: column;
        margin-top: 0;
    }
}
.worries .items .item {
    flex-basis: 31%;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .worries .items .item {
        margin-top: 20px;
    }
}
.worries .items .item dl {
    background-color: #fff;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
    .worries .items .item dl {
        font-size: 0.9375rem;
        padding: 15px;
    }
}
.worries .items .item dt {
    color: #004ea1;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
    .worries .items .item dt {
        font-size: 18px;
    }
}
.worries .items .item dd img {
    padding-top: 20px;
    height: 100px;
    width: auto;
}
@media screen and (max-width: 767px) {
    .worries .items .item dd img {
        padding-top: 10px;
        height: 60px;
    }
}
.worries .items .item .down {
    width: 15%;
    margin: 20px 0;
}
@media screen and (max-width: 767px) {
    .worries .items .item.left .down ,
    .worries .items .item.center .down {
        display: none;
    }
}    
.worries .conclusion {
    background-color: #fff;
    border: solid 3px #f39800;
    border-radius: 60px;
    position: relative;
    text-align: center;
    margin: 0 auto ;
    padding: 20px;
    width: 70%;
}
@media screen and (max-width: 767px) {
    .worries .conclusion {
        width: 100%;
        box-sizing: border-box;
        border-radius: 40px;
    }
}
.worries .conclusion img {
    position: absolute;
    width: 125px;
    bottom: -15px;
    left: 30px;
}
@media screen and (max-width: 767px) {
    .worries .conclusion img {
        width: auto;
        height: 110px;
        right: 0;
        left: auto;
    }
}
.worries .conclusion .top {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
    padding-left: 80px;
}
@media screen and (max-width: 767px) {
    .worries .conclusion .top {
        font-size: 18px;
        padding-left: 0;
        line-height: 1.4;
    }
}
.worries .conclusion .bottom {
    font-weight: bold;
    font-size: 24px;
    color: #f39800;
    padding-left: 80px;
}
@media screen and (max-width: 767px) {
    .worries .conclusion .bottom {
        padding-left: 0;
        font-size: 22px;
        text-align: left;
        line-height: 1.6;
    }
}
/* --------------------------------------------
    solution
--------------------------------------------  */
.solution {
    padding: 64px 0 80px;
    background-image: url(../images/solution_bg.png);
    background-size: cover;
}
@media screen and (max-width: 767px) {
    .solution {
        padding: 40px 0;
    }
}
.solution .item {
    background-color: #fff;
    border-radius: 40px;
    display: flex;
    position: relative;
    width: 80%;
    padding: 25px 25px 25px 100px;
    justify-content: space-between;
    box-sizing: border-box;
    margin-bottom: 25px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
    .solution .item {
        flex-direction: column;
        width: 100%;
        font-size: 0.9375rem;
        padding: 10px 15px 15px;
    }
}
.solution .item.step1 {
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .solution .item.step1 {
        margin-top: 20px;
    }
}
.solution .item.step2 {
    margin-left: 10%;
}
@media screen and (max-width: 767px) {
    .solution .item.step2 {
        margin-left: 0;
    }
}
.solution .item.step3 {
    margin-left: 20%;
}
@media screen and (max-width: 767px) {
    .solution .item.step3 {
        margin-left: 0;
    }
}
.solution .item .step {
    position: absolute;
    width: 80px;
    top: 26px;
    left: -10px   
}
@media screen and (max-width: 767px) {
    .solution .item .step {
        left: -10px;
        top: 10px;
    }
}
.solution .item dt {
    color: #004ea1;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .solution .item dt {
        font-size: 18px;
        margin-bottom: 20px;
        padding-left: 60px;
    }
}
.solution .item .img {
    width: 280px;
}
@media screen and (max-width: 767px) {
    .solution .item .img {
        width: 100%;
        border-radius: 30px;
        padding-top: 15px;
    }
}
.solution .buttons {
    margin-top: 40px;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .solution .buttons {
        align-items: center;
    }
}
/* --------------------------------------------
    effect
--------------------------------------------  */
.effect {
    padding: 64px 0 80px;
}
@media screen and (max-width: 767px) {
    .effect {
        padding: 40px 0;
    }
}
.effect .commonWord span {
    display: inline;
    margin-bottom: 0;
}
.effect .item {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .effect .item {
        flex-direction: column;
        margin-top: 20px;
    }
}
.effect .text dl {
    background-image: url(../images/effect_icon.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 40px;
    margin-bottom: 30px;
    padding-left: 50px;
}
@media screen and (max-width: 767px) {
    .effect .text dl {
        font-size: 0.9375rem;
        margin-bottom: 15px;
        background-size: 30px;
        padding-left: 40px;
    }
}
.effect .text dt {
    color: #004ea1;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .effect .text dt {
        font-size: 18px;
        margin-bottom: 10px;
    }
}
.effect img {
    width: 460px;
}
@media screen and (max-width: 767px) {
    .effect img {
        width: 100%;
    }
}
/* --------------------------------------------
    case
--------------------------------------------  */
.case {
    padding: 64px 0 80px;
    background-image: url(../images/case_bg.png);
    background-size: cover;
}
@media screen and (max-width: 767px) {
    .case {
        padding: 40px 0;
    }
}
.case .item {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
}
@media screen and (max-width: 767px) {
    .case .item {
        flex-direction: column;
        margin-top: 20px;
        font-size: 0.9375rem;
        gap: 20x;
    }
}
.case .item dl {
    background-color: #fff;
    border-radius: 40px;
    padding: 30px;
    text-align: center;
    flex-basis: 42%;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
    .case .item dl {
        padding: 15px;
    }
}
.case .item dt {
    color: #004ea1;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .case .item dt {
        font-size: 18px;
        margin-bottom: 10px;
    }
}
.case .item img {
    width: 60%;
    padding-bottom: 10px;
}
.case a {
    background-color: #f39800;
    font-weight: bold;
    color: #fff;
    border-radius: 30px;
    padding: 10px;
    width: 70%;
    display: block;
    margin: 10px auto 0;
    background-image: url(../images/case_arrow.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    text-align: center;
}
.case a:hover {
    background-color: #F7BD5D;
}
.case a.link_all {
    width: 50%;
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .case a.link_all {
        width: 100%;
    box-sizing: border-box;
    }
}

/* --------------------------------------------
    cta
--------------------------------------------  */

.cta {
    display: flex;
}
@media screen and (max-width: 767px) {
    .cta {
        flex-direction: column;
        font-size: 0.9375rem;
    }
}
.cta > div {
    flex-basis: 50%;
    text-align: center;
    display: flex;
    color: #fff;
    padding: 40px 0;
}
.cta div.left {
    background-color: #ff4a11;
    padding-right: 40px;
    justify-content: right;
}
@media screen and (max-width: 767px) {
    .cta div.left {
        padding: 20px 20px 30px;
    }
}
.cta div.right {
    background-color: #00319b;
    padding-left: 40px;
    justify-content: left;
}
@media screen and (max-width: 767px) {
    .cta div.right {
        padding: 20px 20px 30px;
    }
}
.cta div.inner {
    flex-basis: 500px;
}
.cta h2 {
    line-height: 1.6;
}
.cta p {
    line-height: 1.6;
}
.cta div img {
    width: 65%;
    padding: 20px 0;
}
@media screen and (max-width: 767px) {
    .cta div img {
        padding: 10px;
    }
}
.cta div a {
    background-color: #fff;
    border-radius: 40px;
    display: block;
    width: 80%;
    font-weight: bold;
    padding: 20px;
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    margin: 20px auto 0;
}
.cta div.left a {
    color: #ff4a11;
    background-image: url(../images/DLicon_OR.png);
    background-size: 18px;
}
.cta div.left a:hover {
    background-color: #ffb7a1;
}
.cta div.right a {
    color: #00319b;
    background-image: url(../images/ARROWicon_BL.png);
}
.cta div.right a:hover {
    background-color: #D1DAED;
}


/* --------------------------------------------
    slider
--------------------------------------------  */
.swiper-slide {
    position: relative;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-prev,
.swiper-button-next {
    background-size: 40px 40px;
    height: 40px;
    margin-top: -24px;
    width: 40px;
}

.swiper-button-next {
    background-image: url(../images/cep/icon-slider-arrow.png);
}

.swiper-button-prev {
    background-image: url(../images/cep/icon-slider-arrow.png);
    transform: scale(-1, 1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: none;
}

.situation .swiper-slide::before {
    background: linear-gradient(to right, transparent, #d7ebf5 10%);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 30;
}

.situation .swiper-slide.swiper-slide-active::before {
    content: none;
}

.solutionSliderArea {
    margin-top: 40px;
    position: relative;
}

.solutionSlider {
    padding: 0 80px 60px;
}

.solution .swiper-pagination-bullet {
    background: #f1f1f1;
    opacity: 1;
}

.solution .swiper-pagination-bullet-active {
    background: #7fb8f5;
}

@media screen and (max-width: 767px) {
    .solutionSlider {
        padding: 0 20px 40px;
    }
}

