main
{
    margin-top: var(--head_h);
}

section
{
    position: relative;

    width: 100%;
}

.kv
{
    width: calc(100% - 80px);

    margin-inline: auto;
}
@media screen and (max-width: 600px)
{
    .kv
    {
        width: 90%;
    }
}
.kv video
{
    display: block;

    width: 101%;
    height: 101%;

    object-fit: cover;
    aspect-ratio: 1920/1080;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - .002px), 0% calc(100% - .001px));
}
@media screen and (max-width: 600px)
{
    .kv video
    {
        aspect-ratio: 1080/1920;
    }
}

.problem
{
    padding: 120px 0 100px;

    background: url(/wp-content/themes/yuzawa/index/img/problem_bg_01.webp) left 40px/min(11.7%, 176px) no-repeat, url(/wp-content/themes/yuzawa/index/img/problem_bg_02.webp) right 35%/min(13.7%, 206px) no-repeat;
}
@media screen and (max-width: 1024px)
{
    .problem
    {
        padding: 60px 0;

        background-position: left 10px, right 30%;
    }
}
@media screen and (max-width: 600px)
{
    .problem
    {
        padding: 30px 0 100px;

        background: none;
    }
}
.problem__deco
{
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;

    width: min(26%, 400px);

    translate: 0 20%;
}
@media screen and (max-width: 600px)
{
    .problem__deco
    {
        width: 45%;
    }
}
.problem__message
{
    position: relative;

    width: 90%;
    max-width: 1100px;
    margin-bottom: 110px;
    padding: 50px 45px;

    text-align: center;

    border: 2px solid var(--c_bl);
    background: var(--white);

    margin-inline: auto;
}
@media screen and (max-width: 1024px)
{
    .problem__message
    {
        margin-bottom: 60px;
        padding: 30px 2%;
    }
}
@media screen and (max-width: 600px)
{
    .problem__message
    {
        margin-bottom: 20px;

        padding-inline: 4%;
    }
}
.problem__message:before,
.problem__message:after
{
    position: absolute;
    bottom: 0;
    left: 50%;

    width: 60px;

    content: '';

    background: var(--c_bl);

    translate: -50% 100%;
    aspect-ratio: 6/5;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media screen and (max-width: 1024px)
{
    .problem__message:before,
    .problem__message:after
    {
        width: 35px;
    }
}
.problem__message:after
{
    bottom: 4px;

    background: var(--white);
}
.problem__message-ttl
{
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1875;

    margin-bottom: 35px;

    letter-spacing: .06em;

    color: #737373;
}
@media screen and (max-width: 1024px)
{
    .problem__message-ttl
    {
        font-size: 26px;

        margin-bottom: 20px;
    }
}
@media screen and (max-width: 600px)
{
    .problem__message-ttl
    {
        font-size: 20px;
    }
}
.problem__message-ttl span
{
    position: relative;
}
.problem__message-ttl span:before
{
    position: absolute;
    top: -5px;
    left: 50%;

    width: 5px;

    content: '';

    border-radius: 10px;
    background: #737373;

    translate: -50% 0;
    aspect-ratio: 1;
}
@media screen and (max-width: 1024px)
{
    .problem__message-ttl span:before
    {
        top: -3px;
    }
}
.problem__list
{
    position: relative;

    display: grid;

    --align: right;
    --scale: 1;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media screen and (max-width: 1024px)
{
    .problem__list
    {
        gap: 10px;
    }
}
@media screen and (max-width: 600px)
{
    .problem__list
    {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media screen and (max-width: 600px)
{
    .problem__item:nth-child(even)
    {
        --align: left;
        --scale: -1;
    }
}
.problem__case
{
    position: relative;

    display: flex;

    height: 160px;
    margin-bottom: 10px;

    border-radius: 5px;
    background: #e5f0f8;

    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 1024px)
{
    .problem__case
    {
        height: 130px;
    }
}
@media screen and (max-width: 600px)
{
    .problem__case
    {
        height: auto;

        padding-block: 30px;
    }
}
.problem__case:after
{
    position: absolute;
    bottom: 1px;
    left: 50%;

    width: 34px;

    content: '';

    background: #e5f0f8;

    translate: -50% 100%;
    aspect-ratio: 34/23;
    clip-path: polygon(0 0, 100% 100%, calc(100% - 5px) 0);
}
@media screen and (max-width: 1024px)
{
    .problem__case:after
    {
        width: 25px;
    }
}
@media screen and (max-width: 600px)
{
    .problem__case:after
    {
        transform: scaleX(var(--scale));
    }
}
.problem__case p
{
    font-size: 18px;
    line-height: 1.7777777778;

    letter-spacing: 0;
}
@media screen and (max-width: 1024px)
{
    .problem__case p
    {
        font-size: 14px;
    }
}
.problem__case p span.line
{
    padding-bottom: 2px;

    background: linear-gradient(0deg, #72b0e8 2px, transparent 0);
}
.problem__case p span.txtL
{
    font-size: 1.3em;
    font-weight: 600;

    color: var(--c_bl);
}
.problem__icon
{
    display: block;

    width: 100%;
    padding-right: 40px;

    text-align: var(--align);
}
@media screen and (max-width: 1024px)
{
    .problem__icon
    {
        padding-right: 10px;
    }
}
@media screen and (max-width: 600px)
{
    .problem__icon
    {
        width: 70%;

        margin-inline: auto;
    }
}
.problem__icon img
{
    width: 90px;
}
@media screen and (max-width: 1024px)
{
    .problem__icon img
    {
        width: 70px;
    }
}
.problem__solution
{
    padding-bottom: 70px;

    text-align: center;

    background: url(/wp-content/themes/yuzawa/index/img/problem_bg_03.webp) left top/min(21.6%, 325px) no-repeat, url(/wp-content/themes/yuzawa/index/img/problem_bg_04.webp) right bottom/min(26.9%, 402.5px) no-repeat;
}
@media screen and (max-width: 1024px)
{
    .problem__solution
    {
        padding-bottom: 40px;

        background-position: 0 0, right bottom;
        background-size: 17%, 22%;
    }
}
@media screen and (max-width: 600px)
{
    .problem__solution
    {
        background: url(/wp-content/themes/yuzawa/index/img/problem_bg_sp.webp) center bottom/100% no-repeat;

        padding-block: 30px 110%;
    }
}
.problem__solution-ttl
{
    font-size: 30px;
    font-weight: 500;
    line-height: 1.7333333333;

    letter-spacing: .02em;
}
@media screen and (max-width: 1024px)
{
    .problem__solution-ttl
    {
        font-size: 24px;
    }
}
@media screen and (max-width: 600px)
{
    .problem__solution-ttl
    {
        font-size: 20px;
    }
}
.problem__solution-ttl span
{
    font-size: 1.3em;

    color: var(--c_bl);
}
.problem__solution-logo
{
    margin: 40px 0 45px;
}
@media screen and (max-width: 1024px)
{
    .problem__solution-logo
    {
        margin: 25px 0 30px;
    }
}
.problem__solution-logo img
{
    width: 123px;
}
@media screen and (max-width: 1024px)
{
    .problem__solution-logo img
    {
        width: 100px;
    }
}
.problem__solution-text
{
    font-size: 22px;
    line-height: 1.6363636364;

    letter-spacing: .02em;
}
@media screen and (max-width: 1024px)
{
    .problem__solution-text
    {
        font-size: 18px;
    }
}
.problem__solution-btn
{
    display: flex;

    margin-top: 60px;

    justify-content: center;
    gap: 20px;
}
@media screen and (max-width: 1024px)
{
    .problem__solution-btn
    {
        margin-top: 30px;

        gap: 15px;
    }
}
@media screen and (max-width: 600px)
{
    .problem__solution-btn
    {
        flex-direction: column;

        align-items: center;
    }
}

.technology
{
    display: grid;

    padding: 140px 0;

    background: url(/wp-content/themes/yuzawa/index/img/technology_bg_01.webp) right 140px no-repeat, url(/wp-content/themes/yuzawa/index/img/technology_bg_02.webp) left bottom no-repeat, url(/wp-content/themes/yuzawa/common/img/common-bg.webp);

    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
}
@media screen and (max-width: 1024px)
{
    .technology
    {
        padding: 70px 0;
    }
}
@media screen and (max-width: 600px)
{
    .technology
    {
        background-position: right 0 top 0, left bottom;
        background-size: 60%, 40%;

        grid-template-columns: 1fr;
    }
}
.technology__img
{
    padding-right: 20px;
}
@media screen and (max-width: 1024px)
{
    .technology__img
    {
        padding-right: 10px;
    }
}
@media screen and (max-width: 600px)
{
    .technology__img
    {
        padding-right: 10%;
    }
}
.technology h2
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    white-space: nowrap;
}
@media screen and (max-width: 600px)
{
    .technology h2
    {
        top: 0;
        left: 14%;
    }
}
.technology__content
{
    position: relative;
}
.technology__inner
{
    position: relative;
    left: -50px;

    max-width: 680px;
    margin-top: 140px;
    padding: 80px 80px 80px 130px;

    border-radius: 5px;
    background: var(--white);
    box-shadow: 0 0 20px 0 rgba(113, 99, 62, .15);
}
@media screen and (max-width: 1024px)
{
    .technology__inner
    {
        left: -5%;

        margin-top: 170px;
        padding: 40px 5% 4% 6%;

        border-top: 17%;
    }
}
@media screen and (max-width: 600px)
{
    .technology__inner
    {
        left: 0;

        width: 90%;
        margin: -30px 0 0 auto;
        padding: 20px 8% 30px 60px;
    }
}
.technology__ttl
{
    font-size: 34px;
    font-weight: 500;
    line-height: 1.6176470588;

    letter-spacing: -.02em;

    color: var(--c_bl);
}
@media screen and (max-width: 1024px)
{
    .technology__ttl
    {
        font-size: 26px;
    }
}
@media screen and (max-width: 600px)
{
    .technology__ttl
    {
        font-size: 20px;
    }
}
.technology__text
{
    font-size: 16px;
    line-height: 1.875;

    margin: 30px 0 55px;

    letter-spacing: .04em;
}
@media screen and (max-width: 1024px)
{
    .technology__text
    {
        font-size: 14px;

        margin: 15px 0 25px;
    }
}

.history
{
    padding: 120px 0 0;
}
@media screen and (max-width: 1024px)
{
    .history
    {
        padding-top: 60px;
    }
}
@media screen and (max-width: 600px)
{
    .history
    {
        padding-top: 40px;
    }
}
.history__deco
{
    position: absolute;
    top: 0;
    right: 0;

    width: min(12%, 180px);

    translate: 0 -20%;
}
.history__inner
{
    position: relative;
    z-index: 2;

    display: grid;

    padding-bottom: 80px;

    background: url(/wp-content/themes/yuzawa/index/img/history_bg.webp) right bottom -50px/min(11.1%, 167px) no-repeat;

    grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1024px)
{
    .history__inner
    {
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 600px)
{
    .history__inner
    {
        background-size: 30%;

        grid-template-columns: 1fr;
    }
}
.history__detail
{
    padding-right: 170px;
}
@media screen and (max-width: 1024px)
{
    .history__detail
    {
        padding-right: 5%;
    }
}
@media screen and (max-width: 600px)
{
    .history__detail
    {
        padding-right: 20%;

        order: 2;
    }
}
.history__detail-wrap
{
    position: relative;
}
.history__detail-wrap .line
{
    position: absolute;
    z-index: 11;
    top: 204px;
    right: 0;

    width: 100%;
    height: 1px;

    background: rgba(65, 56, 47, .5);
}
@media screen and (max-width: 1024px)
{
    .history__detail-wrap .line
    {
        top: 174px;
    }
}
@media screen and (max-width: 600px)
{
    .history__detail-wrap .line
    {
        top: 124px;
    }
}
.history__detail dl
{
    position: relative;
    z-index: 10;

    display: grid;

    width: 100%;

    opacity: .965;
    background: url(/wp-content/themes/yuzawa/common/img/common-bg.webp);

    grid-auto-flow: column;
    grid-template-rows: auto 1fr;
    direction: rtl;
    -moz-column-gap: 85px;
         column-gap: 85px;
    grid-auto-columns: max-content;
}
@media screen and (max-width: 1024px)
{
    .history__detail dl
    {
        -moz-column-gap: 40px;
             column-gap: 40px;
    }
}
.history__detail dl dt
{
    font-size: 22px;
    font-weight: 300;
    line-height: 1;

    position: relative;
    z-index: 2;

    display: flex;

    white-space: nowrap;
    letter-spacing: 0;

    color: var(--c_bl);

    writing-mode: vertical-rl;
    text-orientation: upright;
    font-feature-settings: normal;
    padding-inline: 70px 25px;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    direction: ltr;
}
@media screen and (max-width: 1024px)
{
    .history__detail dl dt
    {
        padding-inline: 40px 25px;
    }
}
@media screen and (max-width: 600px)
{
    .history__detail dl dt
    {
        font-size: 16px;
    }
}
.history__detail dl dt:after
{
    position: absolute;
    bottom: 0;
    left: 50%;

    display: block;

    width: 12px;

    content: '';

    border-radius: 50px;
    background: var(--c_txt);

    aspect-ratio: 1;
    translate: -50% 0;
}
.history__detail dl dt.bg
{
    background: rgba(196, 196, 196, .15);
}
.history__detail dl dt.bg + dd
{
    background: rgba(196, 196, 196, .15);

    padding-block: 35px;
}
@media screen and (max-width: 1024px)
{
    .history__detail dl dt.bg + dd
    {
        padding-block: 20px;
    }
}
.history__detail dl dt span
{
    font-size: 16px;
}
@media screen and (max-width: 600px)
{
    .history__detail dl dt span
    {
        font-size: 14px;
    }
}
.history__detail dl dd
{
    font-size: 30px;
    font-weight: 300;
    line-height: 1.3333333333;

    margin: 0;
    padding: 30px 0 70px;

    text-align: left;
    letter-spacing: .04em;

    writing-mode: vertical-rl;
    text-orientation: upright;
    font-feature-settings: normal;
}
@media screen and (max-width: 1024px)
{
    .history__detail dl dd
    {
        font-size: 20px;

        padding: 20px 0 40px;
    }
}
@media screen and (max-width: 600px)
{
    .history__detail dl dd img
    {
        width: 15px;
    }
}
.history__content
{
    padding-top: 80px;
}
@media screen and (max-width: 600px)
{
    .history__content
    {
        width: 90%;
        margin: 0 auto 30px;
        padding: 0;
    }
}
.history__content-ttl
{
    font-size: 38px;
    font-weight: 500;
    line-height: 1.5;

    letter-spacing: .05em;

    color: var(--c_bl);
}
@media screen and (max-width: 1024px)
{
    .history__content-ttl
    {
        font-size: 26px;
    }
}
@media screen and (max-width: 600px)
{
    .history__content-ttl
    {
        font-size: 24px;
    }
}
.history__content-ttl span
{
    font-size: 26px;
}
@media screen and (max-width: 1024px)
{
    .history__content-ttl span
    {
        font-size: 20px;
    }
}
@media screen and (max-width: 600px)
{
    .history__content-ttl span
    {
        font-size: 16px;
    }
}
.history__content-img
{
    margin-top: 60px;
}
@media screen and (max-width: 1024px)
{
    .history__content-img
    {
        margin-top: 30px;
    }
}
.history__content-img img
{
    width: 509px;

    mix-blend-mode: multiply;
}
@media screen and (max-width: 1024px)
{
    .history__content-img img
    {
        width: 254.5px;
    }
}
.history__message
{
    padding-bottom: 150px;

    background: url(/wp-content/themes/yuzawa/index/img/mesage_bg_01.webp) right top/min(13.7%, 206px) no-repeat, url(/wp-content/themes/yuzawa/index/img/mesage_bg_02.webp) left 3% bottom 20px/min(20.7%, 311px) no-repeat;
}
@media screen and (max-width: 1024px)
{
    .history__message
    {
        padding-bottom: 30px;
    }
}
@media screen and (max-width: 600px)
{
    .history__message
    {
        padding-bottom: 70px;

        background-position: right top, left -15% bottom 0;
        background-size: min(18.7%, 206px), min(40%, 311px);
    }
}
.history__message-inner
{
    width: 90%;
    max-width: 800px;

    text-align: center;

    margin-inline: auto;
}
.history__message-text
{
    font-size: 20px;
    line-height: 1.9;

    letter-spacing: .02em;

    color: var(--white);
}
@media screen and (max-width: 1024px)
{
    .history__message-text
    {
        font-size: 16px;
    }
}
@media screen and (max-width: 600px)
{
    .history__message-text
    {
        text-align: left;
    }
}
.history__message-text + .history__message-text
{
    margin-top: 1em;
}
.history__message-btn
{
    display: flex;

    margin-top: 60px;

    justify-content: center;
    gap: 20px;
}
@media screen and (max-width: 1024px)
{
    .history__message-btn
    {
        margin-top: 30px;

        gap: 15px;
    }
}
@media screen and (max-width: 600px)
{
    .history__message-btn
    {
        flex-direction: column;

        align-items: center;
    }
}

.bg-bl
{
    position: relative;

    overflow: hidden;

    margin-top: calc(-1 * var(--wave-h));
    padding: calc(var(--wave-h) + 80px) 0 0;

    background: none;

    --width: 1500;
    --height: 159;
    --aspect-ratio: calc(var(--width) / var(--height));
    --wave-h: calc(100vw / var(--aspect-ratio));
    --overlap: 2px;
}
@media screen and (max-width: 1024px)
{
    .bg-bl
    {
        padding: calc(var(--wave-h) + 30px) 0 20px;

        --overlap: 1px;
    }
}
@media screen and (max-width: 600px)
{
    .bg-bl
    {
        padding-bottom: 0;
    }
}
@media screen and (max-width: 600px)
{
    .bg-bl
    {
        --overlap: .5px;
    }
}
.bg-bl::before
{
    position: absolute;
    z-index: 0;

    content: '';
    pointer-events: none;

    background: url(/wp-content/themes/yuzawa/common/img/bg-bl.webp) top/cover no-repeat;

    inset: 0;
    -webkit-mask-image: url(/wp-content/themes/yuzawa/common/img/wave.png), linear-gradient(#000 0 0);
            mask-image: url(/wp-content/themes/yuzawa/common/img/wave.png), linear-gradient(#000 0 0);
    -webkit-mask-repeat: no-repeat, no-repeat;
            mask-repeat: no-repeat, no-repeat;
    -webkit-mask-size: 100% auto, 100% 100%;
            mask-size: 100% auto, 100% 100%;
    -webkit-mask-position: center top, 0 calc(var(--wave-h) - var(--overlap));
            mask-position: center top, 0 calc(var(--wave-h) - var(--overlap));
    -webkit-mask-size: 100% auto, 100% calc(100% - var(--wave-h) + var(--overlap));
            mask-size: 100% auto, 100% calc(100% - var(--wave-h) + var(--overlap));
            mask-composite: add;
    -webkit-mask-composite: source-over;
}
.bg-bl > *
{
    position: relative;
    z-index: 1;
}
/*# sourceMappingURL=style.css.map */
