@charset "UTF-8";

.pc-none {
    display: block;
}

@media screen and (max-width: 768px) {
    .pc-none {
        display: none;
    }
}

/*-------------------------------------------
アニメーション用のCSS
-------------------------------------------*/
.fade-in,
.fade-up,
.fade-down,
.fade-left {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 初期位置 */
.fade-up {
    transform: translateY(30px);
}

.fade-down {
    transform: translateY(-30px);
}

.fade-left {
    transform: translateX(-30px);
}

/* 表示状態 */
.fade-in.is-show {
    opacity: 1;
}

.fade-up.is-show,
.fade-down.is-show,
.fade-left.is-show {
    opacity: 1;
    transform: translate(0, 0);
}

/*-------------------------------------------------------*/
/*アンダーバー*/

.underline {
    position: relative;
    display: inline-block;
}

.underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.4s ease;
}

.underline.is-show::after {
    width: 100%;
}


/*---------------------------------------------------------*/

/*flow用*/
.flow-contents-item.js-flow {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.flow-contents-item.js-flow.is-show {
    opacity: 1;
    transform: translateX(0);
}

/*-------------------------------------------------------*/
/* マーカー（左から横に引かれる） */

.marker {
    position: relative;
    display: inline-block;
    overflow: hidden;
    /* はみ出し防止 */
}

/* マーカー本体 */
.marker::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #ffeb3b;
    /* マーカー色 */
    z-index: 0;

    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s ease;
    height: 1.5em;
}

/* 表示時 */
.marker.is-show::after {
    transform: scaleX(1);
}

/* 画像を前面に */
.marker img {
    position: relative;
    z-index: 1;
}









/*-------------------------------------------
hero-section
-------------------------------------------*/
section.hero-sec {
    margin-bottom: 160px;
}

section.hero-sec img {
    width: 100vw;
}

@media screen and (max-width: 480px) {
    section.hero-sec {
        margin-bottom: 20px;
    }
}


/*-------------------------------------------
intro
-------------------------------------------*/
section.intro {
    background-color: var(--color-main);
    padding: 90px 0;
    margin-bottom: 180px;
    border-radius: 55px;
    position: relative;
}

.fade-effect-01 {
    position: absolute;
    z-index: 0;
    top: 0;


}

.fade-effect-02 {
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 0;


}

.intro-block {
    position: relative;
    z-index: 2;
}

.intro-content {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-heading {
    display: flex;
    width: 75%;
    margin: 0 auto;
    justify-content: center;
    margin-bottom: 20px;

}

section.intro.gradation.max-width.pad-x {
    max-width: 90%;
}

.intro-contetnts-box {
    width: 90%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .intro-heading {
        width: 60%;
        margin: 0 auto;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 480px) {
    section.intro {
        padding: 40px 0;
        margin-bottom: 70px;
        border-radius: 10px;
    }

    .intro-heading {
        margin-bottom: 30px;
    }

    .intro-content {
        margin-bottom: 10px;
    }

    .fade-effect-01,
    .fade-effect-02 {
        width: 50%;
    }

}

/*-------------------------------------------
big-heading
-------------------------------------------*/
.service-heading-block {
    position: relative;

}

.service-heading-bg {
    position: absolute;
    bottom: -102px;
    left: 0;
    z-index: 1;
    width: 100vw;

}

.service-heading-bg img {
    width: 100vw;
}

.service-sub-title {
    display: flex;
    justify-content: center;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.service-main-title {
    display: flex;
    width: 75%;
    margin: 0 auto;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.big-heading {
    margin-bottom: 85px;
    display: flex;
    justify-content: center;
}

.service-sub-text {
    text-align: center;
    margin-bottom: 10px;
}




/*-------------------------------------------
service
-------------------------------------------*/
section.service {
    background-color: #e9f2ff;
    padding-top: 200px;
    padding-bottom: 50px;
}

.service-content-01 {
    padding-top: 65px;
    padding-bottom: 65px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.service-content-01:after,
.service-content-03:after,
.service-content-05:after {
    position: absolute;
    content: "";
    background-color: #fff;
    width: 100vw;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    box-shadow: 6px 9px 9px -5px rgba(5, 109, 173, 0.5);
    border-radius: 0px 30px 30px 0px;
}

.service-content-02:after,
.service-content-04:after {
    position: absolute;
    content: "";
    background-color: #fff;
    width: 100vw;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    box-shadow: 6px 9px 9px -5px rgba(5, 109, 173, 0.5);
    border-radius: 30px 0px 0px 30px;
}

.service-content-heading-block.flex {
    align-items: unset;
    gap: 25px;
    margin-bottom: 30px;

}


.service-text {
    display: block;
    margin-left: 55px;
    margin-bottom: 20px;
    font-feature-settings: "palt";

}

.service-detail-container-01 .flex {
    gap: 20px;
}

.service-content-01 {
    padding-right: 20px;
    padding-left: 20px;
}

.service-content-02,
.service-content-04 {
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
    padding: 65px 0;
    padding-left: 20px;
}

.service-content-02 .flex,
.service-content-04 .flex,
.service-content-05 .flex {
    gap: 16px;
    margin-bottom: 30px;

}

.service-content-02 .service-text {
    margin-left: 70px;
    line-height: 1.6;
}

.service-content-03 {
    padding: 65px 0px;
    padding-top: 70px;
    padding-bottom: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    padding-right: 20px;
    padding-left: 20px;
}

.service-content-03 .service-text {
    margin-left: 70px;
    margin-bottom: 44px;
}

.service-content-04 .service-text {
    margin-left: 70px;
}

.service-content-04 {
    margin-bottom: 50px;
}

.service-content-05 {
    padding-top: 65px;
    padding-bottom: 60px;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
    padding-right: 20px;
    padding-left: 20px;
}


.service-content-05 .service-text {
    margin-left: 70px;
}


.service-detail-container-01.sp {
    display: none;
}

.service.pc {
    display: block;
}

.service.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .big-heading {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 85px;
    }

    .service.pc {
        display: none;
    }

    .service.sp {
        display: block;
    }

    .service-heading-block {
        padding: 0 20px;
    }


    .service-content-01,
    .service-content-02,
    .service-content-03,
    .service-content-04,
    .service-content-05 {
        background-color: #fff;
        padding: 50px 50px;
        border-radius: 30px;
        margin-left: auto;
        margin-bottom: 50px;
        width: auto;
        margin-right: auto;
    }

    .service-content-heading-block.flex {
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .service-text {
        margin-left: auto;
        margin-bottom: 20px;
    }

    .service-content-02 .service-text,
    .service-content-03 .service-text,
    .service-content-04 .service-text,
    .service-content-05 .service-text {
        margin-left: auto;
        width: 100%;

    }

    .service01-sp,
    .service02-sp,
    .service03-sp,
    .service04-sp,
    .service05-sp {
        margin-bottom: 40px;
    }

    .service-sub-title,
    .service-main-title {
        width: 100%;
    }


}

@media screen and (max-width: 480px) {
    .big-heading {
        width: 100%;
        margin-bottom: 60px;
    }

    .service-heading-block {
        padding: 0px;
    }

    .service-sub-title {
        margin-bottom: 10px;
    }

    .service-detail-container-01 .flex {
        flex-direction: column;
    }

    .service-content-01,
    .service-content-02,
    .service-content-03,
    .service-content-04,
    .service-content-05 {
        background-color: #fff;
        border-radius: 30px;
        margin-left: auto;
        margin-bottom: 50px;
        padding: 20px 20px;
    }

    .service-content-05 .service-content-heading-block.flex {
        margin-bottom: 25px;
    }

    .service-heading-bg {
        bottom: -40px;
    }

    section.service {
        padding-top: 70px;
    }


}

/*-------------------------------------------
flow
-------------------------------------------*/

section.flow {
    background-color: #f5f5f5;
    padding: 175px 0 110px;
    position: relative;
}

.flow-bubble {
    position: absolute;
    top: -60px;
    display: flex;
    justify-content: center;
    left: 0;
    right: 0;
}

.flow-heading-block {
    display: flex;
    justify-content: center;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 95px;
}

.flow-contents-box.flex {
    justify-content: space-between;
    gap: 21px;

}

.flow-contents-item {
    position: relative;
    border-radius: 10px 10px 0 0;
}

.flow-contents-item:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 24px solid #f12b5e;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
}

.flow-contents-item:last-child::after {
    content: none;
}




@media screen and (max-width: 768px) {
    .flow-title {
        margin-bottom: 20px;
    }

}

@media screen and (max-width: 480px) {
    .flow-heading-block {
        display: flex;
        width: auto;
        margin-bottom: 60px;
    }

    .flow-contents-box.flex {
        flex-direction: column;
    }

    section.flow {
        padding: 100px 0 100px;
    }

    .flow-title {
        margin-bottom: 10px;
    }

    .flow-contents-item:after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        border-left: 24px solid transparent;
        border-right: 24px solid transparent;
        border-top: 24px solid #f12b5e;
        right: 0;
        left: 0;
        top: initial;
        transform: translateY(0%);
        bottom: -60px;
        margin: 0 auto;
    }
}


/*-------------------------------------------
case
-------------------------------------------*/
section.case {
    background-color: #01204d;
    padding: 140px 0 100px;
    position: relative;
}

section.case .max-width {
    position: relative;
    z-index: 2;
}

.case-title {
    display: flex;
    justify-content: center;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 70px;
}

.case-item {
    margin-bottom: 100px;
}

.case-item-head {
    background-color: var(--color-main);
    color: #fff;
    padding: 30px 70px 30px 50px;
    border-radius: 30px 30px 0 0;
}

.case-item-head .flex {
    justify-content: space-between;
    align-items: center;
}

.case-name {
    font-size: 7.4rem;
    font-weight: bold;
}

.case-client {
    font-size: 3.9rem;
    font-weight: bold;
}

.case-01 span,
.case-02 span {
    background-color: #0091fe;
    font-size: 3.9rem;
    border-radius: 50px;
    padding: 10px 41px;
    font-weight: bold;

}

.item-body {
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    padding: 45px;
}

.item-body-upper .flex {
    justify-content: space-between;
}

.item-body-upper-text {
    font-size: 2.6rem;
    font-weight: bold;
    width: 63%;
}


.item-body-upper-icon {
    position: relative;
}

.item-body-upper-icon img {
    margin-top: -40px;
}

.item-body-triangle {
    display: flex;
    justify-content: center;
    margin-top: -20px;
    position: relative;
}

.item-body-triangle img {
    position: absolute;
    bottom: -20px;

}

.item-body-upper {
    margin-bottom: 40px;
}

.item-body-under {
    background-color: #e9f2ff;
    border-radius: 20px;
    padding: 35px 10px 25px 10px;
}

.item-body-under-result {
    border-bottom: 3px solid #222946;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}


.item-body-under-list li {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 35px;
}

.item-body-under-list li::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #0091fe;
    display: inline-block;
    flex-shrink: 0;
}

.gradation {
    /* 色の順番を逆にし、21%を79%に変更 */
    background-image: linear-gradient(to bottom, #001389, #1b94cb 79%, #37bbbd);
}

@media screen and (max-width: 1265px) {

    .case-01 span,
    .case-02 span {
        font-size: 2.4rem;
    }

    .case-name {
        font-size: 3rem;
    }

    .case-client {
        font-size: 2.4rem;
    }

    .case-item-head .flex {
        justify-content: flex-start;
        align-items: center;
        gap: 50px;
    }

    .item-body-upper-text {
        font-size: 2.0rem;
        width: 63%;
    }

    .item-body-upper-case-detail {
        max-width: 15%;
    }

    .case-item-head {
        padding: 30px 70px 30px 50px;
    }

}

@media screen and (max-width: 768px) {
    .case-item-head .flex {
        justify-content: start;
        gap: 35px;
        flex-wrap: wrap;
    }

    .case-01 span,
    .case-02 span {
        font-size: 1.5rem;
        padding: 10px 20px;
    }

    .case-item-head {
        padding: 20px 20px;
    }


    .item-body {
        padding: 20px;
    }

    .item-body-upper-case-detail {
        max-width: 15%;
        margin-right: 15px;
    }


    .item-body-upper {
        margin-bottom: 70px;
    }

    .item-body-triangle img {
        max-width: 40%;
    }

    .item-body-under-list li::before {
        width: 10px;
        height: 10px;
    }
}


@media screen and (max-width: 480px) {
    .item-body {
        padding: 10px;
    }

    .item-body-upper .flex {
        flex-direction: column;
    }

    .case-item-head .flex {
        gap: initial;
        flex-direction: column;
    }

    .item-body-upper-case-detail {
        max-width: 30%;
        margin-right: auto;
        margin-bottom: 10px;
    }

    .item-body-upper-text {
        margin-bottom: 10px;
    }

    .item-body-upper-icon img {
        margin-top: auto;
    }

    .item-body-upper-icon {
        position: relative;
        display: flex;
        justify-content: center;
    }

    .item-body-triangle img {
        max-width: 60%;
        bottom: -20px;
    }

    .item-body-under-list li {
        margin-bottom: 15px;
        margin-left: 0px;
        gap: 5px;
        width: 95%;
    }

    .case-item {
        margin-bottom: 50px;
    }

    section.case {
        padding: 85px 0 10px;
    }


    .case-item-head {
        padding: 20px 20px 15px;
    }

    .item-body-upper-text {
        width: auto;
        margin-bottom: 15px;
    }

    .item-body-upper-case-detail img {
        padding-top: 0px;
    }

    .item-body-upper-icon img {
        width: 40%;
    }
}

/*-------------------------------------------
contactform
-------------------------------------------*/

section.contact {
    background-color: #E9F2FF;
    padding: 50px;
}

.contact-inner {
    background-color: #fff;
    border-radius: 20px;
    padding: 70px;
}

.contact-heading {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

.contact-heading p {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 100px;
    line-height: 1.5;

    /* マーカー */
    background: linear-gradient(transparent 65%, #ffde00 65%);
    display: inline;
    padding: 0 0.2em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}


.contact-form {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-label {
    width: 30%;
    flex-shrink: 0;
    font-weight: bold;
}

.form-field {
    flex: 1;
}

.input-text,
.input-textarea {
    width: 100%;
    padding: 4px;
    box-sizing: border-box;
    border: 1px solid #989898;
    border-radius: 5px;
    font-weight: bold;
}

.form-field .wpcf7-list-item {
    margin-right: 16px;
}



.form-row.form-privacy {
    margin-bottom: 50px;
}

.form-actions p {
    display: flex;
    justify-content: center;
    padding-left: 70px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-submit {
    display: inline-block;
    padding: 10px 70px;
    background-color: var(--color-main);
    color: #fff;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* 必須フィールドのラベルに横に「必須」を追加 */
.contact-form .form-row label.required::after,
.contact-confirm .form-row .form-label.required::after {
    content: "必須";
    color: #fff;
    margin-left: 9px;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: red;
    padding: 1px 5px;
    line-height: 1;
    white-space: nowrap;
}

/* ラジオ見出しの必須マーク */
.contact-form .form-row .label-text.required::after {
    content: "必須";
    color: #fff;
    margin-left: 9px;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: red;
    padding: 1px 5px;
    line-height: 1;
}

/* プライバシーのチェックボックス横並び */
.form-privacy .form-field p {
    display: flex;
    align-items: center;
    /* 垂直中央揃え */
    gap: 8px;
    /* チェックボックスとラベルの間隔 */
}

/* リンク色・下線 */
.form-privacy label a {
    color: #007BFF;
    text-decoration: underline;
}

.form-privacy p,
.form-privacy br {
    display: none;
}

.wpcf7-response-output {
    display: none !important;
}

.form-privacy .form-field {
    position: relative;
}

.form-privacy .privacy-error {
    position: absolute;
    left: 0;
    bottom: -1.5em;
    /* チェック行の下に表示 */
    font-size: 1.5rem;
    color: #d63638;
    line-height: 1.4;
}

.contact-heading .sp {
    display: none;
}


@media screen and (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    section.contact {
        padding: 50px 10px;
    }

    .contact-inner {
        padding: 70px 20px;
    }

    .form-label {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .contact-heading .sp {
        display: block;
    }

    .contact-heading p {
        margin-bottom: 50px;
        font-size: 2.0rem;
    }

    .form-row {
        gap: 5px;
        margin-bottom: 30px;
    }

    .form-privacy .form-field p {
        gap: 3px;
    }

    .form-privacy .privacy-error {
        font-size: 1.3rem;

    }

    .contact-inner {
        padding: 20px 20px;
    }
}



@media screen and (max-width: 360px) {
    .form-privacy .privacy-error {
        bottom: -40px;
    }
}