/* stylelint-disable no-descending-specificity */
/* stylelint is buggy.. */
/* stylelint-disable custom-property-empty-line-before */
:root {
    --color-grey: #969696;
    --color-light-grey: #f3f3f3;
    --color-blue: #614466;
    --color-red: #c26f19;
    --color-gold: #a88e50;
    --color-border: #e4e4e4;
    --color-border-dark: #bfbfbf;
}
/* stylelint-disable function-whitespace-after */

/* major breakpoints */
@keyframes funyafunya {
    from {
        border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
    }

    12.5% {
        border-radius: 80% 30% 50% 50%/50%;
    }

    25% {
        border-radius: 40% 40% 50%/30% 50% 50%;
    }

    37.5% {
        border-radius: 20% 30% 56% 70%/80% 50% 70% 20%;
    }

    50% {
        border-radius: 5%;
    }

    62.5% {
        border-radius: 3%;
    }

    75% {
        border-radius: 2%;
    }

    86.5% {
        border-radius: 1%;
    }

    to {
        border-radius: 0;
    }
}

.red{color: #c26f19;}

.observer-fadein {
    opacity: 0;
    /*transition: all 1200ms cubic-bezier(0.165, 0.84, 0.44, 1);*/
    transition: all 1s ease-out;
    transform: translate3d(0, 30px, 0);
}
.observer.-active.observer-fadein {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.-delay300 {
    transition-delay: 300ms;
}
.-delay1200 {
    transition-delay: 1200ms;
}
/* stylelint-disable no-descending-specificity */


.Breadcrumb {
    background: none;
}
@media (min-width: 768px) {
  .Section__header{
    padding-bottom: 1.07em;
    margin-bottom: 1.25em;
  }
  .section_box{
    padding: 70px 0 0;
  }
}
.Intro {
    padding-top: 0 !important;
}
.Intro .Section__inner {
    padding: 6vw 4vw 0;
}
.Intro .Section__article{
    text-align: center;
}
@media (min-width: 768px) {
.Intro .Section__inner {
        max-width: 1080px;
        padding: 0 40px 0;
        margin: auto;
}
    }
.Intro__balloon {
    font-size: 4.53333vw;
    line-height: 1.58824;

    position: relative;
    padding: 0.5em;
    margin: 1.5em auto;
    color: #fff;
    text-align: center;
    background-color: #61879f;
    border-radius: 2.25em;
}
@media (min-width: 768px) {
.Intro__balloon {
        font-size: 2.2rem;

        line-height: 1.90909
}
    }
@media (min-width: 768px) {
.Intro__balloon {
        max-width: 614px;
        padding: 0.25em 1.5em;
        margin: 2em auto 2.25em;
        border-radius: 1.75em
}
    }
.Intro__balloon::after {
        position: absolute;
        top: 100%;
        left: calc(50% - 6px);
        width: 0;
        height: 0;
        content: "";
        border-color: #61879f transparent transparent transparent;
        border-style: solid;
        border-width: 8px 6px 0 6px;
    }
@media (min-width: 768px) {
.Intro__balloon::after {
            left: calc(50% - 10px);
            border-width: 12px 10px 0 10px
    }
        }


.Proposition__inner {
    max-width: 1080px;
    padding: 0 4vw;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
.Proposition__inner {
        padding: 0 0 20px;
        display: flex;
}
    }
.Proposition__questions {
    padding-bottom: 4vw;
    margin-bottom: 2vw;
}
@media (min-width: 768px) {
.Proposition__questions {
        padding-bottom: 0;
        margin-bottom: 20px
}
    }
.Proposition__questionsBaloons {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}
@media (min-width: 768px) {
.Proposition__questionsBaloons {
        justify-content: space-between;
        width: calc(100% - 70px);
        margin: 0 auto;
        flex-wrap: inherit;
}
    }
.Proposition__questionsBaloons > div {
        font-size: 4vw;
        line-height: 1.81818;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 47.5%;
        padding: 1.5em 0.6em;
        margin-bottom: 1.3em;
        text-align: center;
        background-color: #f7f7f7;
        border-radius: 1.5em;
    }
@media (max-width: 767px) {
      .Proposition__questionsBaloons > div:nth-of-type(3){
       width: 58%;
       margin: 0 auto 1.5em;
       }
}
@media (min-width: 768px) {
.Proposition__questionsBaloons > div {
        font-size: 1.6rem;
        line-height: 1.85714
    }
    }
@media (min-width: 768px) {
.Proposition__questionsBaloons > div {
            width: calc((99.99% - 70px)/3);
            margin: 0 0.5rem 2.25em;
    }
        }

.Proposition__questionsBaloons > div:first-child::after {
                border-width: 8px 6px 0 6px;
            }
@media (min-width: 768px) {
.Proposition__questionsBaloons > div:first-child::after {
                    right: 15%;
                    left: auto;
                    border-width: 12px 0 0 20px
            }
                }
.Proposition__questionsBaloons > div:nth-child(2)::after {
                border-width: 8px 0 0 12px;
            }
@media (min-width: 768px) {
.Proposition__questionsBaloons > div:nth-child(2)::after {
                    left: calc(50% - 10px);
                    border-width: 12px 10px 0 10px
            }
                }
.Proposition__questionsBaloons > div:last-child::after {
                border-width: 8px 12px 0 0;
            }
@media (min-width: 768px) {
.Proposition__questionsBaloons > div:last-child::after {
                    left: 15%;
                    border-width: 12px 20px 0 0
            }
}

.SalesInformation {
    max-width: 1280px;
    max-width: var(--max-width);
    padding-top: 6px;
    padding-right: 6px;
    padding-left: 6px;
    margin-right: auto;
    margin-left: auto;
}

.SalesInformation__list {
    display: flex;
    margin: 0 -3px
}

.SalesInformation__item {
    display: flex;
    width: 100%;
    padding: 0 3px
}

.SalesInformation__link {
    /* NOTE: blue background button */
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #c26f19;
    border: 1px solid #c26f19;
    transition-duration: 400ms;
    transition-property: color, background-color;
    position: relative;
    font-size: 2.4vw;
    line-height: 1.44444;

    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0.8em 2em;
    margin: 0 auto;
    line-height: 1.3;
}

@media (min-width: 768px) {
        .SalesInformation__link:hover {
            color: #c26f19;
            background-color: #fff;
        }
    }

.SalesInformation__link svg {
        position: absolute;
        top: 50%;
        right: 1em;
        z-index: 1;
        width: 0.4em;
        transform: rotate(0deg) translateY(-50%);
        transform-origin: top left;
    }

@media (min-width: 768px) {

.SalesInformation__link {
        font-size: 1.4rem;

        line-height: 1.85714
}
    }

@media (min-width: 768px) {

.SalesInformation__link {
        padding: 1em 2em;
        line-height: 1.71
}
    }

.SalesInformation__eyebrow {
    margin-bottom: 0.4em;
}

.SalesInformation__text {
    font-size: 3.2vw;
    line-height: 1.25;
}

@media (min-width: 768px) {

.SalesInformation__text {
        font-size: 2rem;

        line-height: 1.3;
   }
}
.Proposition__subHead {
    position: relative;
    font-size: 4.8vw;
    line-height: 1.6875;
    text-align: center;
}
@media (min-width: 768px) {
    .Proposition__subHead {
    font-size: 2.2rem;
    
    line-height: 1.18182;
}
}
.Proposition__meritsbox{
    background-color: #f7f3e9;
    padding: 2rem 0;
}
@media (min-width: 768px) {
    .Proposition__meritsbox{padding: 4rem 0;}
}
.Proposition__merits {
    padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
    .Proposition__merits {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 3em auto 0;
    max-width: 1080px;
}
}
.Proposition__meritItem {
    position: relative;
    background-color: #fff;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .Proposition__meritItem {
    width: 31.33333%
}
}
@media (max-width: 767px) {
    .Proposition__meritItem:not(:first-child) {
        margin-top: 6vw
}
}
.Proposition__meritIndex {
    font-size: 3.5vw;
    position: absolute;
    top: -0.5em;
    left: -0.3em;
    z-index: 1;
    padding: 0.8em 1.4em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #a88e50;
}
@media (min-width: 768px) {
    .Proposition__meritIndex {
    font-size: 1.3rem
}
}
@media (min-width: 768px) {
    .Proposition__meritIndex {
    top: -0.7em;
    left: -0.5em;
    padding: 0.7em 1em;
    line-height: 1.2;
}
}
.Proposition__meritIndex span:last-child {
    font-size: 6.4vw;
    display: block;
}
@media (min-width: 768px) {
    .Proposition__meritIndex span:last-child {
        font-size: 2.4rem;
}
}
.Proposition__meritText {
    padding: 8vw 2.5vw 8vw 24vw;
    font-size: 1.6rem;
}
@media (min-width: 768px) {
    .Proposition__meritText {
    padding: 2em 0 2em 4.5em;
    }
    .Proposition__meritItem:nth-of-type(3) .Proposition__meritText  {
        padding-top: 4.5rem;
    }
}
#Service{
    margin: 2rem auto 6rem;
    width: 95%;
}
.Service_inr{
    margin: 2rem 0 6rem;
}
.Service_inr h2{
    color: #fff;
    font-size: 2.3rem;
    padding: 1rem;
}
.Service_inr:nth-of-type(1) h2{ background:#ab111c;}
.Service_inr:nth-of-type(2) h2{background:#094567;}

.Service_inr > img{width: 100%;display: block;max-width: 616px;margin: 0 auto;}

.Service_inr .txt_box img{position: absolute;top: -10px;right: 0;width: 115px;}

.Service_inr h2 small{
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

#Service  .Service_inr:nth-of-type(1) h2 small{background: #f6dacb;color: #c26f19;}
#Service  .Service_inr:nth-of-type(2) h2 small{background: #d4daef;color: #094567;}
#Service  .txt_box{position: relative;}

#Service  dt{
    font-weight: bold;
    font-size: 2rem;
    margin: 28px 120px 10px 0;
    height: 86px;
    line-height: 1.5;
}
#Service .Service_inr:nth-of-type(1) dt{ color: #ab111c;}
#Service .Service_inr:nth-of-type(2) dt{color: #094567;}

#Service  dd{
    line-height: 1.8;
    font-size: 1.6rem;
    margin: 0 0 20px;
}
@media (min-width: 767px) {
    #Service{
    max-width: 1080px;
   }
   .Service_inr{
       margin: 2rem 0 10rem;
   }
    .Service_inr h2{
    padding: 1rem 3rem;
    }
    #Service .txt_box{
    margin: 0 4rem 0;
    }
    #Service dt{
    height: auto;
    font-size: 2.5rem;
    }
    #Service dd{
    margin: 0 16rem 5rem 0;
    }
    .Service_inr .txt_box img{
    width: auto;
    top: 0;
    }
}

.Service__bottomLink {
    /* NOTE: blue background button */
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #614466;
    border: 1px solid #614466;
    transition-duration: 400ms;
    transition-property: color, background-color;
    position: relative;
    font-size: 4.3vw;
    display: block;
    width: 100%;
    padding: 1.3em 2em;
    margin: 8vw auto 0;
}
@media (min-width: 768px) {
    .Service__bottomLink:hover {
        color: #614466;
    background-color: #fff;
}
}
.Service__bottomLink svg {
    position: absolute;
    top: 50%;
    right: 1em;
    z-index: 1;
    width: 0.4em;
    transform: rotate(0deg) translateY(-50%);
    transform-origin: top left;
}
@media (min-width: 768px) {
    .Service__bottomLink {
    font-size: 1.6rem;
    width: 50%;
    max-width: 360px;
    padding: 1.71em 2em;
    margin: 70px auto 0;
    line-height: 1.71;
  }
}

.SharedSection-Assessment {
    font-size: 3.46667vw;
    line-height: 1.92308;
    background-color: #f3f3f3;
    background-color: var(--color-light-grey);
    padding: 10vw 0;
}
@media (min-width: 768px) {
.SharedSection-Assessment {
        font-size: 1.6rem;
        line-height: 2.28571;
        padding: 70px 0;
}
    }

.SharedSection-Assessment__headline {
    font-size: 4.53333vw;
    line-height: 1.76471;
    margin-bottom: 1em;

}
@media (min-width: 768px) {
.SharedSection-Assessment__headline {
        font-size: 2.2rem;
        line-height: 2.13636;

}
    }
.SharedSection-Assessment__tout {
    font-size: 4.53333vw;
    line-height: 1.76471;
    color: #614466;
    color: var(--color-blue);
    text-align: center;
}
@media (min-width: 768px) {
.SharedSection-Assessment__tout {
        font-size: 2.2rem;
        line-height: 2.13636
}
    }
@media (min-width: 768px) {
.SharedSection-Assessment__tout {
        text-align: left
}
    }
.TwoupImageAndText__content{
    max-width: 1080px;
    padding-right: 4vw;
    padding-left: 4vw;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
.TwoupImageAndText__content{
        padding-right: 40px;
        padding-left: 40px
}
    }

@media (min-width: 768px) {
.TwoupImageAndText__content {
        display: flex;
        align-items: center;
        justify-content: space-between
}
    }

.TwoupImageAndText__contentImage {
    display: block;
    width: 100%;
    height: auto;

    margin-bottom: 25px;
}
@media (min-width: 768px) {
.TwoupImageAndText__contentImage {
        width: 56.52%;
        margin: 0
}
    }
@media (min-width: 768px) {
.TwoupImageAndText__contentText {
        width: 38.48%
}
    }
