@charset "UTF-8";

.main-title {
    font-family: "din-condensed", sans-serif;
    font-size: 14.3rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .main-title {
        font-size: 5.6rem;
        letter-spacing: 0.2rem;
    }
}

@media screen and (max-width: 1150px) {
    .main-title {
        font-size: 10rem;
    }
}

@media screen and (max-width: 767px) {
    .main-title {
        font-size: 5.6rem;
    }
}

.main-title-blue {
    font-family: "din-condensed", sans-serif;
    font-size: 14.3rem;
    color: #00A0E9;
    letter-spacing: 0.7rem;
}

@media screen and (max-width: 767px) {
    .main-title-blue {
        font-size: 5.6rem;
        letter-spacing: 0.2rem;
    }
}

@media screen and (max-width: 1150px) {
    .main-title-blue {
        font-size: 10rem;
    }
}

@media screen and (max-width: 767px) {
    .main-title-blue {
        font-size: 5.6rem;
    }
}

.main-title-sub {
    font-size: 3.2rem;
    font-weight: 700;
    margin-top: -20px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 1150px) {
    .main-title-sub {
        font-size: 2.4rem;
        margin-top: -10px;
    }
}

@media screen and (max-width: 767px) {
    .main-title-sub {
        font-size: 1.8rem;
        margin-top: 0;
    }
}

html {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 62.5%;
}

.wrapper {
    overflow-x: hidden;
}

.inner {
    max-width: 1166px;
    margin: 0 auto;
    width: 90%;
}

.inner-member {
    max-width: 1166px;
    margin: 0 auto;
    width: 90%;
}

@media screen and (max-width: 767px) {
    .inner-member {
        width: 100%;
    }
}

.hd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 70px;
    padding: 0 30px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .hd {
        padding: 0 20px;
    }
}

.hd-left img {
    width: 220px;
}

@media screen and (max-width: 767px) {
    .hd-left img {
        width: 175px;
        margin-left: -10px;
    }
}

.hd-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.7rem;
    font-weight: 700;
}

@media screen and (max-width: 1150px) {
    .hd-right {
        display: none;
    }
}

.hd-right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.hd-right li {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hd-right li:hover {
    opacity: 0.7;
}

.hd-right li:hover {
    color: #00A0E9;
    opacity: 1;
}

.hd-bt {
    margin-left: 38px;
}

.hd-bt a {
    padding: 10px 46px;
    color: #fff;
    background-color: #00A0E9;
    border-radius: 4px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hd-bt a:hover {
    opacity: 0.7;
}

#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 66px;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #00A0E9;
    /*動き*/
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.g-nav-under {
    text-align: center;
    margin-top: 30px;
}

@media screen and (max-width: 374px) {
    .g-nav-under {
        width: 200px;
    }
}

.g-nav-btn {
    padding: 10px 40px;
    border-radius: 4px;
    background-color: #fff;
    font-size: 1.6rem;
    color: #00A0E9;
    font-weight: 700;
    text-align: center;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    display: none;
}

@media screen and (max-width: 1150px) {
    .openbtn {
        display: block;
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 11px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }
}

.openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    background-color: #00A0E9;
    width: 45%;
}

.openbtn p {
    position: absolute;
    font-weight: 700;
    color: #00A0E9;
    top: 40px;
    left: 10.5px;
}

.openbtn.active p {
    display: none;
}

.openbtn span:nth-of-type(1) {
    top: 10px;
}

.openbtn span:nth-of-type(2) {
    top: 21px;
}

.openbtn span:nth-of-type(3) {
    top: 32px;
}

.openbtn.active span:nth-of-type(1) {
    top: 13px;
    left: 13px;
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 25px;
    left: 13px;
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
}

.top {
    margin-top: 100px;
}

.top img {
    width: 100vw;
}

#message {
    padding-top: 80px;
}

@media screen and (max-width: 767px) {
    #message {
        padding-top: 30px;
    }
}

.message-box {
    color: #fff;
    background-color: #00A0E9;
    border-radius: 10px;
    padding: 41px 100px 84px 100px;
}

@media screen and (max-width: 1150px) {
    .message-box {
        text-align: center;
        padding: 30px 20px;
    }
}

.message-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 50px auto;
    text-align: center;
}

@media screen and (max-width: 1150px) {
    .message-title {
        font-size: 1.6rem;
        margin: 20px auto;
    }
}

.message-text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 3rem;
    margin-top: 10px;
}

@media screen and (max-width: 1150px) {
    .message-text {
        margin-top: 9px;
        text-align: left;
    }
}

.message-hide {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 3rem;
    margin-top: 10px;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .message-hide {
        display: none;
    }
}

.message-more {
    display: none;
}

@media screen and (max-width: 767px) {
    .message-more {
        display: block;
        font-size: 1.6rem;
        margin: 20px auto 0 auto;
        border-bottom: 1px solid;
    }
}

.message-more::after {
    content: "続きを見る";
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.message-more.on-click::after {
    content: "閉じる";
}

.br-sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .br-sp {
        display: block;
    }
}

#service {
    padding-top: 80px;
    background-image: url(../img/servicebg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 67%;
}

@media screen and (max-width: 767px) {
    #service {
        background-image: url(../img/servicebgsp.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 72%;
        padding-top: 60px;
    }
}

.service-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 60px;
    letter-spacing: 0.3rem;
}

@media screen and (max-width: 767px) {
    .service-title {
        font-size: 1.8rem;
    }
}

.service-title-2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 60px;
    letter-spacing: 0.3rem;
}

@media screen and (max-width: 767px) {
    .service-title-2 {
        margin-top: 40px;
        font-size: 1.8rem;
    }
}

.service-con:last-of-type {
    padding-bottom: 178px;
}

@media screen and (max-width: 767px) {
    .service-con:last-of-type {
        padding-bottom: 108px;
    }
}

.service-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
}

@media screen and (max-width: 767px) {
    .service-box {
        display: block;
    }
}

.service-box img {
    margin-top: 33px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.service-box img:hover {
    opacity: 0.7;
}

@media screen and (max-width: 767px) {
    .service-box img {
        margin-top: 27px;
    }
}

.service-box img:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
}

.service-block {
    width: 30.7%;
}

@media screen and (max-width: 1150px) {
    .service-block {
        width: 29%;
    }
}

@media screen and (max-width: 767px) {
    .service-block {
        width: 100%;
    }
}

#case {}

#case .case-slider.swiper {

    overflow: visible;
}

#case .case-more {
    text-align: right;
    margin-bottom: 15px;
}

#case .case-more img {
    width: 100px;
}

#case .case-list {
    padding: 15px 0;
    margin-bottom: 15px;
}

#case .case-list li {
    background: #fff;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    border-radius: 10px;
    padding: 25px 20px;
}



#case .case-list li.-icon01 {
    background: #fff url('../img/top/icon01.svg') no-repeat top 20px right 30px;
}

#case .case-list li.-icon02 {
    background: #fff url('../img/top/icon02.svg') no-repeat top 20px right 30px;
}

#case .case-list li.-icon03 {
    background: #fff url('../img/top/icon03.svg') no-repeat top 20px right 30px;
}

#case .case-list li.-icon04 {
    background: #fff url('../img/top/icon04.svg') no-repeat top 20px right 30px;
}

#case .case-list li.-icon05 {
    background: #fff url('../img/top/icon05.svg') no-repeat top 20px right 30px;
}

#case .case-list li.-icon06 {
    background: #fff url('../img/top/icon06.svg') no-repeat top 20px right 30px;
}

#case .case-list li.-icon07 {
    background: #fff url('../img/top/icon07.svg') no-repeat top 20px right 30px;
}

#case .case-list li.-icon08 {
    background: #fff url('../img/top/icon08.svg') no-repeat top 20px right 45px;
}

#case .case-list li.-icon09 {
    background: #fff url('../img/top/icon09.svg') no-repeat top 20px right 30px;
}

#case .case-list li.-icon10 {
    background: #fff url('../img/top/icon10.svg') no-repeat top 20px right 30px;
}


@media (max-width: 767px) {

    #case .case-list li.-icon01 {
        background-size: 63px 40px;
        background-position: top 20px right 10px;
    }

    #case .case-list li.-icon02 {
        background-size: 50px auto;
        background-position: top 15px right 10px;
    }

    #case .case-list li.-icon03 {
        background-size: 50px auto;
        background-position: top 30px right 20px;
    }

    #case .case-list li.-icon04 {
        background-size: 50px auto;
        background-position: top 25px right 20px;
    }

    #case .case-list li.-icon05 {
        background-size: 40px auto;
        background-position: top 25px right 20px;
    }

    #case .case-list li.-icon06 {
        background-size: 40px auto;
        background-position: top 40px right 20px;
    }

    #case .case-list li.-icon07 {
        background-size: 40px auto;
        background-position: top 40px right 20px;
    }

    #case .case-list li.-icon08 {
        background-size: 35px auto;
        background-position: top 30px right 20px;
    }

    #case .case-list li.-icon09 {
        background-size: 40px auto;
        background-position: top 30px right 20px
    }

    #case .case-list li.-icon10 {
        background-size: 50px auto;
        background-position: top 20px right 20px
    }
}

#case .case-list li h4 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

#case .case-list .swiper-item>div {
    display: flex;
    column-gap: 10px;
}

@media (max-width: 767px) {
    #case .case-list .swiper-item>div {
        display: block;
        margin: 10px 0;
    }

    #case .case-list .swiper-item>div br {
        display: none;
    }
}

#case .case-list .swiper-item>div .dx {
    border: 1px solid #00A0E9;
    border-radius: 10px;
    color: #00A0E9;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 15px;
}

#case .case-list dl>div {
    display: flex;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 5px;
}

#case .case-list dl div dt {
    background: #EAF3F8;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 0.1em;
    padding: 2px 10px;
}

#case .case-list dl div dd {
    font-size: 13px;
    letter-spacing: 0.05em;
}

#case .case-list p {
    font-size: 16px;
    line-height: 1.375;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
    #case .case-list p {
        line-height: 1.75;
    }
}

#case .case-list .swiper-slide {
    height: auto;
}

#case .case-list .swiper-slide .swiper-item {
    height: 100%;
}


#case .swiper-nav {
    display: flex;
    justify-content: center;
    column-gap: 30px;

    margin-bottom: 120px;
}

#case .swiper-button-prev,
#case .swiper-button-next {
    width: 42px;
    height: 42px;
    position: static;
    margin-top: 0;

    &::after {
        content: none;

    }
}

#case .swiper-button-next.swiper-button-disabled,
#case .swiper-button-prev.swiper-button-disabled {
    opacity: 1;

    svg {
        path.circle {

            fill: #B4B4B4;
        }
    }
}

#products {
    background-image: url(../img/productsbg.png);
    background-size: cover;
}

.products-main {
    -webkit-transform: translateY(-90px);
    transform: translateY(-90px);
}

@media screen and (max-width: 767px) {
    .products-main {
        -webkit-transform: translateY(-45px);
        transform: translateY(-45px);
    }
}

.products-info {
    margin-top: -63px;
    padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
    .products-info {
        margin-top: 6px;
        padding-bottom: 40px;
    }
}

#member {
    padding-top: 80px;
    background-image: url(../img/memberbg.png);
    background-size: cover;
    background-position: center 120px;
    background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
    #member {
        background-image: url(../img/memberbgsp.png);
        background-size: contain;
        background-position: center top;
        background-position: -150px 80px;
        padding-top: 60px;
    }
}

.member-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 110px;
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
    margin-top: 60px;
    padding-bottom: 190px;
}

@media screen and (max-width: 1150px) {
    .member-container {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (max-width: 767px) {
    .member-container {
        margin-top: 40px;
        padding-bottom: 80px;
        display: block;
    }
}

.member-viewbox {
    text-align: right;
}

.member-viewmore {
    margin-top: 10px;
    width: 100px;
}

.member-box {
    width: calc(54.25% - 100px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 1150px) {
    .member-box {
        width: calc(47% - 30px);
    }
}

@media screen and (max-width: 767px) {
    .member-box {
        width: 100%;
    }
}

.member-box:nth-child(2) {
    padding-top: 140px;
}

@media screen and (max-width: 767px) {
    .member-box:nth-child(2) {
        padding-top: 0;
    }
}

.member-box:nth-child(2n+3) {
    margin-top: -140px;
}

@media screen and (max-width: 767px) {
    .member-box:nth-child(2n+3) {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .member-box:nth-child(odd) {
        background-color: #EAF3F8;
        padding: 30px 20px;
    }
}

@media screen and (max-width: 767px) {
    .member-box:nth-child(even) {
        padding: 30px 20px;
    }
}

.member-box h4 {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 7px;
    font-weight: 700;
}

.member-box p {
    font-size: 1.6rem;
    font-weight: 400;
}

.view-hover:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

@media screen and (max-width: 767px) {
    .view-hover:hover {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

#potential {
    padding-bottom: 40px;
    background-image: url(../img/potentialbg.png);
    background-size: cover;
}

.potential-container {
    margin-top: -30px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .potential-container {
        margin-top: -20px;
    }
}

.potential-margin {
    margin-top: 100px;
}

.potential-text {
    max-width: 508px;
    margin-top: 100px;
}

@media screen and (max-width: 767px) {
    .potential-text {
        max-width: 315px;
        margin: 80px auto 0 auto;
        width: 90%;
    }
}

.potential-main {
    -webkit-transform: translateY(-77px);
    transform: translateY(-77px);
}

@media screen and (max-width: 767px) {
    .potential-main {
        -webkit-transform: translateY(-55px);
        transform: translateY(-55px);
    }
}

#contact {
    background-image: url(../img/contactbg.png);
    background-size: cover;
    background-position: center;
    padding: 80px;
}

@media screen and (max-width: 767px) {
    #contact {
        background-image: url(../img/contactbgsp.png);
        background-size: cover;
        padding: 30px 20px;
    }
}

#contact .contact-box-wrapper {
    width: calc(34.25% - 50px);
    padding: 25px 0;
    border: solid 3px #fff;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#contact .contact-box-wrapper:hover {
    opacity: 0.7;
}

@media screen and (max-width: 1150px) {
    #contact .contact-box-wrapper {
        width: calc(45% - 50px);
    }
}

@media screen and (max-width: 767px) {
    #contact .contact-box-wrapper {
        border: solid 1px #fff;
        width: calc(55% - 23px);
        padding: 8px 0;
    }
}

#contact h5 {
    font-family: "din-condensed", sans-serif;
    font-size: 6rem;
    letter-spacing: 0.125rem;
}

@media screen and (max-width: 767px) {
    #contact h5 {
        font-size: 2.8rem;
    }
}

#contact p {
    font-size: 2.4rem;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    #contact p {
        font-size: 1.2rem;
        margin-top: -5px;
    }
}

#contact img {
    margin-top: 10px;
    width: 46px;
}

@media screen and (max-width: 767px) {
    #contact img {
        margin-top: 3px;
        width: 20px;
    }
}

.contact-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 50px;
}

@media screen and (max-width: 767px) {
    .contact-box {
        gap: 23px;
    }
}

.footer {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 0 43px;
    }
}

.footer img {
    margin-top: 30px;
    width: 100px;
}

@media screen and (max-width: 767px) {
    .footer img {
        margin-top: 40px;
    }
}

.footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 500;
    gap: 54px;
    margin-top: 28px;
}

@media screen and (max-width: 767px) {
    .footer ul {
        gap: 40px 20px;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 20px 1fr;
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
}

.footer li {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer li:hover {
    opacity: 0.7;
}

.footer li:hover {
    color: #00A0E9;
    opacity: 1;
}

.footer p {
    margin-top: 50px;
    font-size: 1.2rem;
    padding-bottom: 27px;
}

@media screen and (max-width: 767px) {
    .footer p {
        margin-top: 80px;
    }
}


.common-sec-title {
    margin-top: 100px;
    background-size: auto;
    margin-bottom: 76px;
    position: relative;
}

.common-sec-title::after {
    content: '';
    display: block;
    width: calc(892/1366*100vw);
    height: 220px;

    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    border-radius: 30px 0 0 30px;
}

.services .common-sec-title::after {
    background: url('../img/services/kv.webp') no-repeat;
    background-size: cover;
}

.case .common-sec-title::after {
    background: url('../img/case/kv.webp') no-repeat;
    background-size: cover;
}

@media (max-width: 1150px) {
    .common-sec-title::after {
        height: 170px;
    }
}

@media (max-width: 767px) {
    .common-sec-title {
        margin-bottom: 40px;
    }

    .common-sec-title .inner {
        width: auto;
        padding: 0 30px;
    }

    .common-sec-title::after {
        height: 100px;
        width: calc(300/375*100vw);
    }

    .common-sec-title .main-title-sub {
        line-height: 1;
    }
}


.common-sec-title .potential-main {
    transform: translateY(0);
    position: relative;
    z-index: 2;

}



.common-sec-title .potential-main span {
    display: block;
}

.services-wrap {
    position: relative;
}

.services-l {
    position: absolute;
    left: 0;
    top: 0;
    width: calc((430 / 1366 * 100vw) + (100vw - 100%));
}


.services-l ul {
    max-width: 308px;
    background: #EAF3F8;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    margin-left: auto;
    padding: 45px 20px;
}

.services-l.-fixed {
    position: fixed;
    top: 122px;
}


.services-l ul li {
    margin-bottom: 25px;
    background: url('../img/services/icon.svg') no-repeat 0 4px;
    padding-left: 30px;

}

.services-l ul li:last-child {
    margin-bottom: 0;
}

.services-l ul li a {
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 700;
}

@media (max-width: 767px) {
    .services-l {
        position: relative;
        width: auto;
        padding: 0 30px;
        margin-bottom: 40px;
    }

    .services-l.-fixed {
        position: static;
         !important;
    }

    .services-l ul {
        background: unset;
        padding: 0;
        filter: unset;
        max-width: 100%;
    }

    .services-l ul li {
        margin-bottom: 20px;
    }

    .services-l ul li:last-child {
        display: none;
    }

    .services-l ul li a {
        font-size: 16px;
    }
}


.services-heading {
    padding-left: calc((474 / 1366 * 100vw) - (100vw - 100%));
    margin-bottom: 40px;
}

.services-inner {
    max-width: 692px;
}

.services-heading h2 {
    background: #00A0E9;
    border-radius: 10px 0 0 10px;
    color: #fff;
    font-size: 32px;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 20px 40px;
    line-height: 1;
    margin-bottom: 30px;
}

.services-heading p {
    max-width: 550px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2.25;
}


@media (max-width: 767px) {
    .services-heading {
        padding-left: 30px;
    }

    .services-heading h2 {
        font-size: 24px;
        padding: 15px;
        margin-bottom: 20px;
    }

    .services-heading p {
        margin-right: 30px;
        line-height: 1.75;
    }

    .services-inner {
        max-width: 100%;
    }
}

.services-probrem {
    background: url(../img/productsbg.png);
    background-size: cover;
    padding-left: calc(474 / 1366 * 100vw);
    padding-top: 70px;
    padding-bottom: 60px;
}

.services-probrem h2 {
    font-size: 26px;
    margin-bottom: 40px;
    width: fit-content;
    position: relative;
}

.services-probrem h2 br {
    display: none;
}

.services-probrem h2::after {
    content: '';
    display: block;
    width: 55px;
    height: 74px;
    background: url('../img/services/icon_idea.svg') no-repeat;
    background-size: contain;
    position: absolute;
    right: -60px;
    top: -20px;
}

.services-probrem h2 span {
    font-size: 32px;
    font-weight: bold;
    color: #00a0e9;
}

.services-probrem ul li {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.services-probrem ul li span {
    font-size: 20px;
    letter-spacing: 0.05em;
}

.services-probrem ul li span span {
    font-weight: 500;
    color: #00a0e9;
}

.services-probrem ul li::before {
    content: '';
    width: 40px;
    height: 40px;
    background: url('../img/services/icon_list.svg') no-repeat;
    display: block;
}

.services-probrem ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1150px) {
    .services-probrem h2 br {
        display: block;
    }
}

@media (max-width: 767px) {
    .services-probrem {
        padding: 30px;
    }

    .services-probrem h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .services-probrem h2 span {
        font-size: 24px;
    }

    .services-probrem h2::after {
        width: 32px;
        height: 43px;
        right: -32px;
        top: auto;
        bottom: 0;
    }

    .services-probrem ul li {
        margin-bottom: 10px;
        align-items: flex-start;
        column-gap: 5px;
        line-height: 1.75;
    }

    .services-probrem ul li br {
        display: none;
    }

    .services-probrem ul li span {
        font-size: 16px;
    }

    .services-probrem ul li::before {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        background-size: contain;
        margin-top: 5px;
    }
}

.services-service {
    background: url('../img/services/bg_service.svg');
    background-size: cover;
    padding-left: calc(474 / 1366 * 100vw);
    padding-top: 50px;
    padding-bottom: 20px;
    margin-bottom: 100px;
}

.services-service h2 {
    font-size: 32px;
    color: #0A3974;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    background: url('../img/services/bg_title.svg') no-repeat;
    padding-top: 40px;
}

.services-service dl div {
    margin-bottom: 30px;
}

.services-service dl div dt {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    column-gap: 10px;
}

.services-service dl div dt span {
    font-family: "din-condensed", sans-serif;
    font-weight: 400;
    color: #0A3974;
    font-size: 32px;
}

.services-service dl div dd ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: 40px;
}

.services-service dl div dd ul li {
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 7px;
    font-size: 16px;
    letter-spacing: 0.05em;
    padding: 10px 30px;
    text-align: center;
    line-height: 1;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-service dl div dd ul li span span {
    font-size: 10px;
    margin-top: 5px;
    display: block;
}

@media (max-width: 767px) {
    .services-service {
        background: url('../img/services/sp_bg_service.svg');
        background-size: cover;
        padding: 30px;
        margin-bottom: 50px;
    }

    .services-service h2 {
        font-size: 24px;
        margin-bottom: 30px;
        background: url('../img/services/bg_title.svg') no-repeat;
        background-size: 160px 43px;
        padding-top: 25px;
    }

    .services-service dl div {
        margin-bottom: 20px;
    }

    .services-service dl div dt {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .services-service dl div dt span {
        font-size: 22px;
    }

    .services-service dl div dd ul {
        margin-left: 0;
    }

    .services-service dl div dd ul li {
        padding: 10px;
    }

}

.case__inner {
    padding-left: calc((474 / 1366 * 100vw) - (100vw - 100%));

}

.case__inner section {
    max-width: 790px;
}

.case__inner h2 {
    background: #00A0E9;
    border-radius: 10px;
    color: #fff;
    font-size: 32px;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 20px 40px;
    line-height: 1;
    margin-bottom: 50px;
}

.case__inner h3 {
    margin-bottom: 30px;
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.case__inner h3 span.no {
    font-family: "din-condensed", sans-serif;
    font-weight: 400;
    color: #00A0E9;
    font-size: 52px;
    font-weight: 700;
}

.case__inner h3 span.ttl {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .case__inner h3 span.ttl {
        /*        line-height: 1.75;*/
    }
}

.case__inner table {
    border-collapse: collapse;
    margin-bottom: 30px;
}

.case__inner table tr:first-child th {
    border-top: 1px solid #0A3974;
}

.case__inner table tr:first-child td {
    border-top: 1px solid #D2D2D2;
}

.case__inner table th {
    border-bottom: 1px solid #0A3974;
    background: #EAF3F8;
    text-align: center;
    padding: 15px;
    font-size: 15px;
    color: #0A3974;
    font-weight: 500;

    br {
        display: none;
    }
}

.case__inner table td {
    border-bottom: 1px solid #D2D2D2;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 15px 15px 40px;
}

.case__inner table td span {
    color: #00A0E9;
    font-emphasize: 700px;
}

.case__inner .case__block {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px 19px;
    background: url(../img/productsbg.png);
    background-size: 2000px auto;
}

.case__inner .case__block h4 {
    background: #00A0E9;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    width: 220px;
    padding: 3px 30px;
}

.case__inner .case__block ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 16px;
}

@media (max-width: 767px) {
    .case__inner .case__block ul li {
        line-height: 1.75;
    }
}

.case__inner .case__block ul li:last-child {
    margin-bottom: 0;
}

.case__inner .case__block ul li::before {
    content: '';
    display: block;
    background-color: #00A0E9;
    position: absolute;
    left: 0;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.case__inner .case__block ul li dt {
    font-weight: 700;
}


.case__point {
    background: #EAF3F8;
    border-radius: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 50px 60px 30px;
    margin-bottom: 80px;
}

.case__point h4 {
    background: url('../img/case/bg_point.svg') no-repeat;
    padding-top: 30px;
    color: #0A3974;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.case__point ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 16px;
}

.case__point ul li:last-child {
    margin-bottom: 0;
}

.case__point ul li::before {
    content: '';
    display: block;
    background-color: #0A3974;
    position: absolute;
    left: 0;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.case__point ul li dt {
    font-weight: 700;
}

@media (max-width: 767px) {
    .case__inner {
        padding: 0 30px;

        h2 {
            font-size: 24px;
            margin-right: -35px;
            margin-bottom: 40px;
        }

        h3 {
            align-items: flex-start;

            span.no {
                font-size: 42px;
            }

            span.ttl {
                font-size: 16px;

                br {
                    display: none;
                }
            }
        }

        table {

            th,
            td {
                font-size: 13px;
                padding: 10px 5px !important;
            }

            th {
                br {
                    display: block;
                }
            }
        }

        .case__block {
            padding: 30px 5px;
        }

        .case__point {
            padding: 30px 5px;
        }

        .case__point ul li {
            line-height: 1.75;
        }
    }
}