@charset "UTF-8";




/*--------------------
hero
---------------------*/
.hero {
    display: flex;
    margin: 20px 0 100px;
}

.hero-img {
    width: 50%;
}

.hero-img img {
    width: 100%;
}

.section-title {
    width: 50%;
    text-align: center;
    margin: auto 0;
}

.section-title span {
    background: linear-gradient(180deg, #f2b7d6, #9ad7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
    .hero {
        display: block;
        position: relative;
    }

    .hero-img {
        width: 100%;
        height: 30vh;
    }

    .hero-img::after {
        content: "";
        display: inline-block;
        position: absolute;
        width: 100%;
        height: 100%;
        background: #000000;
        top: 0;
        left: 0;
        opacity: 0.6;
    }

    .hero-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .section-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
    }

}


/*---------------------
services btn
---------------------*/
.s-img {
    width: 80px;
}

.s-img img {
    width: 100%;
    object-fit: cover;
}

.s-a {
    width: 60px;
    height: 60px;
}

.s-a img {
    width: 100%;
    object-fit: cover;
    border: 1px solid #222;
    border-radius: 8px;
}

.s-a:hover {
    background: #e6d8e2;
    transition: 0.3s ease;
    border-radius: 20px;
}

.services-link {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 100%;
    width: 1400px;
    margin: 0 auto;
}

.sl-item {
    width: 50%;
}

.sl-item a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-text {
    margin: 50px;
}

.s-h {
    display: flex;
    align-items: center;
}

.s-z {
    display: flex;
    align-items: center;
}

.s-s {
    display: flex;
    align-items: center;
}

.s-g {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .s-img {
        display: none;
    }

    .s-a img {
        border: none;
    }

    .s-text {
        margin: 0;
    }

    .sl-item a {
        border-bottom: 1px dashed;
        padding-left: 20px;
    }

    .sl-item:first-child a {
        border-top: 1px dashed;
    }
}

/*-------------------
web title
----------------------*/

.web-title img {
    width: 80px;
    margin: 0 0 10px;
}

.web-title {
    text-align: center;
    margin: 100px 0;
}

.web-text {
    display: flex;
    justify-content: space-around;
    margin: 0 auto 100px auto;
    max-width: 1400px;
}

.web-text>div {
    width: 30%;
    max-width: 350px;
    background: #ffe4f2;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.w-left::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    border-style: solid;
    border-width: 19px 0 0 35px;
    border-color: #ffe4f2 transparent transparent;
    translate: -50% 100%;
    transform: skew(2deg);
    transform-origin: top;
}

.web-text>div.w-center {
    background-color: #dbe6ee;
}

.w-center::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    border-style: solid;
    border-width: 19px 17.5px 0 17.5px;
    border-color: #dbe6ee transparent transparent;
    translate: -50% 100%;
    transform: skew(2deg);
    transform-origin: top;
}

.w-right::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    border-style: solid;
    border-width: 19px 35px 0 0;
    border-color: #ffe4f2 transparent transparent;
    translate: -50% 100%;
    transform: skew(2deg);
    transform-origin: top;
}

.web-text2 {
    text-align: center;
    margin-bottom: 100px;
    padding: 0 20px;
}

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

/*------------------
web zero
---------------------*/
.web-wrapper {
    max-width: 60%;
    width: 100%;
    margin: 0 auto;
}

.web-wrapper summary {
    background: #ffe4f2;
}

.web-wrapper .service-item-flex h2,
.web-wrapper .service-item-flex p {
    color: #f1b7d6;
}

.services-item {
    padding: 15px;
}

summary {
    align-items: center;
}

.services-item:not([open]) {
    margin-bottom: 7px;
}

.services-item summary {
    display: flex;
    gap: 20px;
    position: relative;
    padding: 1em 2em;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    /* width: 1400px; */
    /* margin: 0 auto; */
    max-width: 100%;
}

summary h2 {
    font-size: 60px;
    margin: 0 20px 0 0;
}

summary p {
    font-size: 1rem;
    border: 1px solid;
    width: auto;
    margin: 0 2px 0;
    padding: 0 20px;
    border-radius: 50px;
    text-align: center;
    white-space: nowrap;
}



.srevices-item summary::-webkit-details-marker {
    display: none;
}

.services-item summary::after {
    transform: translateY(-20%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #222;
    border-right: 3px solid #222;
    content: "";
    transition: transform .3s;
    position: absolute;
    right: 100px;
    top: 50%;
}

.services-item[open] summary::after {
    transform: rotate(225deg);
}

.service-item-container {
    /* width: 1400px; */
    margin: 0 auto;
    max-width: 100%;
    padding: 20px;
}

/*-------------------
web one
-------------------*/

.one-content {
    max-width: 100%;
    width: 768px;
    padding: 60px 0 0;
    margin: 0 auto;
}

.value {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.value h4 {
    border-right: 1px dashed #222;
    margin-right: 50px;
    width: 93px;
}

.one-about {
    display: flex;
    width: 100%;
}

.about-text {
    border-right: 1px dashed #222;
    width: 90px;
    height: 41px;
}

.about-text.value2 {
    width: 245px;
}

.about-content {
    margin-left: 50px;
}

.web-wrapper .about-content p {
    margin-bottom: 10px;
    border-radius: 3px;
    background: #ffe4f2;
    padding: 10px;
}


/*----------------------
web two
-----------------------*/

.service-item-flex h2 {
    font-size: 60px;
    margin: 0 20px 0 0;
}

.service-item-inner {
    text-align: center;
}

.service-item-flex p {
    font-size: 1rem;
    border: 1px solid;
    width: auto;
    margin: 0 2px 0;
    padding: 0 20px;
    border-radius: 50px;
    text-align: center;
    white-space: nowrap;
}

.service-item-flex {
    width: 1400px;
    margin: 0 auto;
    max-width: 100%;
    padding: 50px;
    display: flex;
    align-items: center;
}

.service-item-flex h3 {
    margin-right: 10px;
}

.two-content {
    width: 252px;
    margin: 0 auto;
    padding: 60px 0 0;
}



/*-----------------
web three
--------------------*/

.three-content1 {
    max-width: 100%;
    padding: 60px 0;
    margin: 0 auto;
    text-align: center;
}

.three-content1-inner {
    text-align: left;
    display: inline-block;
}

.three-about1 {
    display: flex;
}

.about-text1 {
    border-right: 1px dashed #222;
    width: 90px;
    height: 41px;
}



.about-content {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}



/*--------------------
hosyu title
---------------------*/
.hosyu-title img {
    width: 80px;
    margin: 0 0 10px;
}

.hosyu-title {
    text-align: center;
    padding: 50px 20px;
}


.hosyu-title h2 {
    margin: 0 0 50px;
}

/*--------------------
hosyu start
----------------------*/
.protect-wrapper {
    max-width: 60%;
    width: 100%;
    margin: 0 auto;
}

.protect-wrapper summary {
    background: #e1cded;
}

.protect-wrapper .protect-item-flex h2 {
    color: #dfbaf5;
}

.protect-item {
    padding: 15px;
}

.protect-item:not([open]) {
    margin-bottom: 7px;
}

.protect-item summary {
    display: flex;
    gap: 20px;
    position: relative;
    padding: 1em 2em;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    /* width: 1400px; */
    margin: 0 auto;
    max-width: 100%;
}

summary h2 {
    font-size: 60px;
    margin: 0 20px 0 0;
}

.protect-item summary::-webkit-details-marker {
    display: none;
}

.protect-item summary::after {
    transform: translateY(-20%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #222;
    border-right: 3px solid #222;
    content: "";
    transition: transform .3s;
    position: absolute;
    right: 100px;
    top: 50%;
}

.protect-item[open] summary::after {
    transform: rotate(225deg);
}

.protect-item-container {
    /* width: 1400px; */
    margin: 0 auto;
    max-width: 100%;
    padding: 20px;
}

.s-content {
    max-width: 100%;
    width: 946px;
    padding: 60px 0 0;
    margin: 0 auto;
}


.s-value {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.s-value h4 {
    border-right: 1px dashed;
    width: 94px;
    margin-right: 30px;
}

marg {
    border-right: 1px dashed #222;
    margin-right: 50px;
    width: 133px;
}

.plan {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.plan h4 {
    border-right: 1px dashed #222;
    margin-right: 50px;
    width: 320px;
}


/*-------------------
standard
---------------------*/
.protect-item-flex h2 {
    font-size: 60px;
    margin: 0 20px 0 0;
}

.protect-item-inner {
    text-align: center;
}

.protect-item-flex {
    width: 1400px;
    margin: 0 auto;
    max-width: 100%;
    padding: 50px;
    display: flex;
    align-items: center;
}

.protect-item-flex h3 {
    margin-right: 10px;
}

/*-------------------
zimu-title
----------------------*/
.zimu-title img {
    width: 80px;
    margin: 0 0 10px;
}

.zimu-title {
    text-align: center;
    padding: 50px 20px;
}


@media (max-width: 767px) {
    .zimu-title {
        margin-bottom: 50px;
    }
}


.zimu-title h2 {
    margin: 0 0 50px;
}

/*-------------------
zimu-zero
--------------------*/
.office-wrapper {
    max-width: 60%;
    width: 100%;
    margin: 0 auto;
}

.office-wrapper summary {
    background: #cedce6;
}

.office-wrapper .service-item-flex h2,
.office-wrapper .service-item-flex p {
    color: #cedce6;
}

.office-item {
    padding: 15px;
}

.office-item:not([open]) {
    margin-bottom: 7px;
}

.office-item summary {
    display: flex;
    gap: 20px;
    position: relative;
    padding: 1em 2em;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    /* width: 1400px; */
    margin: 0 auto;
    max-width: 100%;
}

.office-item summary::-webkit-details-marker {
    display: none;
}

.office-item summary::after {
    transform: translateY(-20%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #222;
    border-right: 3px solid #222;
    content: "";
    transition: transform .3s;
    position: absolute;
    right: 100px;
    top: 50%;
}

.office-item[open] summary::after {
    transform: rotate(225deg);
}

.office-item-container {
    /* width: 1400px; */
    margin: 0 auto;
    max-width: 100%;
    padding: 50px;
}

.o-content {
    max-width: 100%;
    width: 460px;
    padding: 60px 0 0;
    margin: 0 auto;
}

.o-value {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.o-value h4 {
    border-right: 1px dashed #222;
    margin-right: 50px;
    width: 195px;
}

.office-wrapper .about-content p {
    margin-bottom: 10px;
    border-radius: 3px;
    background: #cedce6;
    padding: 5px;
}

/*--------------------
zimu two
---------------------*/

.office-content {
    max-width: 100%;
    width: 768px;
    padding: 60px 0 0;
    margin: 0 auto;
}

.office-text {
    border-right: 1px dashed #222;
    width: 182px;
    height: 41px;
}

/*------------------
no
---------------------*/
.no h4 {
    font-size: 1.2rem;
}

.no p {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 10px;
}

.no {
    padding: 50px 0;
    width: 60%;
    margin: 0 auto;
}

/*---------------------
set title
----------------------*/
.set-title img {
    width: 80px;
    margin: 0 0 10px;
}

.set-title {
    text-align: center;
    padding: 50px 20px;
}

@media (max-width: 767px) {
    .set-title {

        margin-bottom: 50px;
    }
}


.set-title h2 {
    margin: 0 0 50px;
}

/*------------------
set one
-------------------*/
.set-wrapper {
    max-width: 60%;
    width: 100%;
    margin: 0 auto;
}

.set-wrapper summary {
    background: linear-gradient(200deg, #ffd7e6, #d8ecff);
}

.set-wrapper .service-item-flex h2,
.set-wrapper .service-item-flex p {
    color: #cedce6;
}

.set-item {
    padding: 15px;
}

.set-item:not([open]) {
    margin-bottom: 7px;
}

.set-item summary {
    display: flex;
    gap: 20px;
    position: relative;
    padding: 1em 2em;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    /* width: 1400px; */
    margin: 0 auto;
    max-width: 100%;
}

.set-item summary::-webkit-details-marker {
    display: none;
}

.set-item summary::after {
    transform: translateY(-20%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #222;
    border-right: 3px solid #222;
    content: "";
    transition: transform .3s;
    position: absolute;
    right: 100px;
    top: 50%;
}

.set-item[open] summary::after {
    transform: rotate(225deg);
}

.set-item-container {
    /* width: 1400px; */
    margin: 0 auto;
    max-width: 100%;
    padding: 50px;
}

.set-content {
    max-width: 100%;
    width: 645px;
    padding: 60px 0 0;
    margin: 0 auto;
}

.set-about {
    display: flex;
    width: 100%;
}


.set-about-content {
    text-align: center;
    /* flex-wrap: wrap; */
    /* gap: 10px; */
}

.set-about-content p {
    margin-bottom: 10px;
}

.set-about-content span {
    background: linear-gradient(200deg, #ffd7e6, #d8ecff);
    padding: 10px;
    border-radius: 3px;
    /* margin-bottom: 20px; */
}

.set-text {
    border-right: 1px dashed #222;
    width: 90px;
    height: 41px;
    margin-right: 50px;
}


/*------------------
yes
---------------------*/

.yes p {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 10px;
}

.yes {
    padding: 50px 0;
    width: 60%;
    margin: 0 auto;
}

/*---------------------
approach
-----------------------*/
#approach h3 {
    font-weight: 100;
}

.approach-title img {
    width: 80px;
}

.approach-title {
    text-align: center;
    margin: 100px 0;
}

/*======== approach-content ==========================*/
.approach-content {
    width: 1228px;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 20px;
}

.approach-inner {
    display: flex;
    align-items: center;
}

.approach-inner+.approach-inner {
    margin-top: 70px;
}

.a-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #111;
    border-image: linear-gradient(to right, #f2b7d6 0%, #9ad7ff 100%) 2;
    flex-shrink: 1;
}

.a-number h3 {
    font-size: 50px;
}

.a-title h4 {
    font-size: 1.5rem;
    width: 380px;
    padding: 0 30px;
}

.a-title {
    flex-shrink: 1;
    width: 380px;
}

.a-text {
    border-left: 1px dashed;
    padding-left: 30px;
    flex-shrink: 2;
    width: calc(100% - 470px);
}


@media (max-width: 767px) {
    .a-number {
        width: 70px;
        height: 70px;
    }

    .a-number h3 {
        font-size: 40px;
    }

    .a-title h4 {
        font-size: 1.3rem;
    }

    .a-text {
        padding-left: 0;
    }
}



/*========================
==========================*/
@media (max-width: 1399px) {
    .web-wrapper {
        max-width: 70%;
    }

    .protect-wrapper {
        max-width: 70%;
    }

    .office-wrapper {
        max-width: 70%;
    }

    .set-wrapper {
        max-width: 70%;
    }
}

/*------------------
    approach
    -------------------*/
@media (max-width: 1199px) {
    .flex2-four {
        flex-direction: column;
    }

    .sl-item {
        width: 100%;
    }

    .s-text {
        width: 320px;
    }

    .services-link {
        flex-direction: column;
        align-items: center;
    }

    .lite,
    .standard,
    .lp,
    .lp-standard,
    .ec,
    .full {
        width: 100%;
    }

    .service-item__flex+.service-item__flex:not(.lp-standard),
    .protect-item__flex+.protect-item__flex {
        margin-top: 60px;
    }

    .service-item__flex.lp-standard,
    .protect-item__flex.standard {
        margin-top: 80px;
    }
}

/*************************/
@media (max-width: 1024px) {
    .approach-inner {
        flex-direction: column;
        justify-content: center;
    }

    .a-title,
    .a-text {
        width: auto;
    }

    .a-number,
    .a-title {
        text-align: center;
    }

    .a-title {
        margin: 20px 0;
    }

    .a-text {
        border-top: 1px dashed #b3b3b3;
        border-left: 0;
        padding-top: 20px;
    }
}

@media (max-width: 1100px) {

    .office-item summary p {
        margin-top: 10px
    }

    .web-wrapper {
        max-width: 80%;
    }

    .protect-wrapper {
        max-width: 80%;
    }

    .office-wrapper {
        max-width: 80%;
    }

    .set-wrapper {
        max-width: 80%;
    }

    summary h2 {
        margin: 0;
    }

    .none {
        display: none;
    }

    .protect-item summary {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }

    .office-item summary {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }

    .set-item summary {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }

    .value {
        flex-direction: column;
    }

    .value h4 {
        border-right: none;
        text-align: center;
        margin-right: 0;
        width: 100%;
        margin-bottom: 10px;
    }

    .value p {
        border-top: 1px dashed;
        padding-top: 10px;
    }

    .service-item-flex {
        flex-direction: column;
    }

    .service-item-flex {
        width: 100%;
        text-align: center;
        padding: 30px 0;
    }

    .service-item-flex h2 {
        margin: 0;
    }

    .service-item-flex h3 {
        margin: 0;
    }

    .service-item-flex p {
        margin-top: 10px;
    }

    .one-content {
        width: 100%;
        text-align: center;
    }

    .one-about {
        flex-direction: column;
    }

    .about-text {
        border-right: none;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .about-content {
        border-top: 1px dashed;
        padding-top: 20px;
        margin-left: 0;
        justify-content: center;
    }

    .three-about1 {
        flex-direction: column;
        text-align: center;
    }

    .about-text1 {
        border-right: none;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .services-item summary {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }

    .value {
        flex-direction: column;
    }

    /*---------------------
    protect
    --------------------*/

    .protect-item-flex {
        flex-direction: column;
    }

    .protect-item-flex {
        width: 100%;
        text-align: center;
        padding: 30px 0;
    }

    .protect-item-flex h2 {
        margin: 0;
    }

    .protect-item-flex h3 {
        margin: 0;
    }

    .protect-item-flex p {
        margin-top: 10px;
    }

    .two-content {
        width: 100%;
        text-align: center;
    }

    .two-content {
        padding-top: 20px;
        margin-left: 0;
    }

    .s-value {
        flex-direction: column;
    }

    .s-value h4 {
        border-right: none;
        width: 100%;
        margin-right: 0;
        text-align: center;
        margin-bottom: 10px;
    }

    .s-value p {
        border-top: 1px dashed;
        padding-top: 10px;
    }

    .plan {
        flex-direction: column;
    }

    .plan h4 {
        border-right: none;
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .plan p {
        border-top: 1px dashed;
        padding-top: 10px;
    }

    .o-value {
        flex-direction: column;
    }

    .o-value h4 {
        border-right: none;
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .o-value p {
        border-top: 1px dashed;
        padding-top: 10px;
    }

    .office-text {
        border-right: none;
        width: 100%;
        height: auto;
        text-align: center;
        margin-bottom: 10px;
    }

    .set-about {
        flex-direction: column;
    }

    .set-text {
        border-right: none;
        width: 100%;
        height: auto;
        margin-right: 0;
        text-align: center;
        margin-bottom: 10px;
    }

    .set-about-content {
        border-top: 1px dashed;
        padding-top: 20px;
    }

    .no {
        width: 80%;
    }

    .yes {
        width: 80%;
    }

}

@media (max-width: 767px) {
    .web-wrapper {
        max-width: 90%;
    }

    .protect-wrapper {
        max-width: 90%;
    }

    .office-wrapper {
        max-width: 90%;
    }

    .set-wrapper {
        max-width: 90%;
    }

    .no {
        width: 90%;
    }

    .yes {
        width: 90%;
    }

    .web-text {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .web-text>div {
        width: 100%;
        max-width: calc(100% - 100px);
        aspect-ratio: auto;
        border-radius: 8px;
        margin: 20px auto;
        padding: 30px 20px;
    }

    .w-left::after {
        left: 20%;
    }

    .w-right::after {
        left: 80%;
    }

    .services-item summary {
        display: block;
        padding-bottom: 50px;
    }

    .services-item summary::after {
        bottom: 15px;
        top: auto;
        right: 30px;
    }

    .services-item summary p {
        display: inline-block;
    }

    .protect-item summary {
        display: block;
        padding-bottom: 50px;
    }

    .protect-item summary::after {
        bottom: 15px;
        top: auto;
        right: 30px;
    }

    .office-item summary {
        display: block;
        padding-bottom: 50px;
    }

    .office-item summary p {
        display: inline-block;
    }

    .office-item summary::after {
        bottom: 15px;
        top: auto;
        right: 30px;
    }

    .set-item summary {
        display: block;
        padding-bottom: 50px;
    }

    .set-item summary p {
        display: inline-block;
    }

    .set-item summary::after {
        bottom: 15px;
        top: auto;
        right: 30px;
    }

    .set-about-content span {
        background: none;
    }

    .office-wrapper .about-content {
        display: block;
        text-align: left;
        /* width: 200px; */
        margin: 0 auto;
    }

    .office-wrapper .about-content p {
        background: none;
    }

    .about-content p::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-left: 6px solid;
        border-bottom: 6px solid transparent;
        border-top: 6px solid transparent;
        margin-right: 8px;
    }

    .web-wrapper .about-content {
        display: block;
        text-align: left;
        /* width: 358px; */
        margin: 0 auto;
        max-width: 100%;
    }

    .web-wrapper .about-content p {
        background: none;
    }
}