@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;400;800&display=swap');

.mod_headerbar.fixed {
    z-index: 5;
}

/* ---------------------------------------------------------
common
----------------------------------------------------------*/
:root {
    --gray: #475258;
    --blue: #95c5d4;
    --blue2: #628d9d;
    --blue3: #6dadb8;
    --green: #68a087;
    --bg: #fafaf8;
    --bg-Lgray2: #dce0e4;
    --bg-gray: #8a8c8e;
    --en: Manrope, sans-serif;
}

.kowasazuatarashiku * {
    box-sizing: border-box;
}

.kowasazuatarashiku section {
    width: 100%;
    margin: 0 auto;
}

.kowasazuatarashiku .inner {
    padding: min(5em, 12vw) 1.5em;
    max-width: 1200px;
    margin: 0 auto;

}

.kowasazuatarashiku .inner980 {
    padding: min(5em, 12vw) 1.5em;
    max-width: 980px;
    margin: 0 auto;

}

.sp {
    display: none;
}

.pc {
    display: block;
}

@media screen and (max-width:767px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
}

.iblock {
    display: inline-block;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.bold {
    font-weight: bold;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.kowasazuatarashiku .en {
    font-family: Manrope, sans-serif;
}

.kowasazuatarashiku .strong {
    font-weight: bold;
}

.kowasazuatarashiku .fw600 {
    font-weight: 600;
}

.kowasazuatarashiku .mtop-1 {
    margin-top: 1em;
}

.kowasazuatarashiku .mtop-2 {
    margin-top: 2em;
}

.kowasazuatarashiku .mtop-3 {
    margin-top: 3em;
}

.kowasazuatarashiku .mtop-4 {
    margin-top: 4em;
}

.kowasazuatarashiku .mtop-5 {
    margin-top: 5em;
}

.kowasazuatarashiku .mtop-6 {
    margin-top: 6em;
}

.kowasazuatarashiku .mbtm-1 {
    margin-bottom: 1em;
}

.kowasazuatarashiku .mbtm-2 {
    margin-bottom: 2em;
}

.kowasazuatarashiku .mbtm-3 {
    margin-bottom: 3em;
}

.kowasazuatarashiku .mbtm-4 {
    margin-bottom: 4em;
}

.kowasazuatarashiku .mbtm-5 {
    margin-bottom: 5em;
}

.kowasazuatarashiku .mbtm-6 {
    margin-bottom: 6em;
}

.kowasazuatarashiku .bg {
    background: #f2f5f2;
}

.kowasazuatarashiku .bgwhite {
    background-color: #fff;
}

.kowasazuatarashiku .black {
    color: #000;
}

.kowasazuatarashiku a.text-link {
    color: #222;
    text-decoration: underline;
}

.kowasazuatarashiku p {
    line-height: 1.8;
}

/* lazy */
.kowasazuatarashiku .lazy,
.kowasazuatarashiku .ilazy {
    opacity: 0;
    transition: opacity .25s .25s ease;
}

.kowasazuatarashiku .lazy.lazyloaded,
.kowasazuatarashiku .ilazy.lazyloaded {
    opacity: 1;
}

.kowasazuatarashiku figure {
    display: block;
    margin: 0;
    padding: 0;
}

.kowasazuatarashiku img {
    vertical-align: bottom;
    width: 100%;
    height: auto;
}


/* ---------------------------------------------------------
contents
----------------------------------------------------------*/

/* contents common ==============================*/
.kowasazuatarashiku .center-wrp {
    text-align: center;
    display: block;
    width: 100%;
}

.kowasazuatarashiku .title {
    font-size: min(2.4em, 5.8vw);
    font-weight: bold;
    color: var(--gray);
    line-height: 1.5em;
    text-align: center;
}

.kowasazuatarashiku .title.title-en {
    display: block;
    width: fit-content;
    color: var(--gray);
    background-color: rgba(71, 82, 88, .2);
    padding: .25em 1em;
    font-size: min(1.6em, 4vw);
    font-weight: bold;
    line-height: 1.5em;
    text-align: center;
    font-family: var(--en);
    border: 3px solid;
    margin: 1em auto;
}

.kowasazuatarashiku .dash-title {
    font-size: min(2em, 5.2vw);
    font-weight: bold;
    line-height: 1.5em;
    text-align: center;
    position: relative;
    width: fit-content;
    padding: 0 2em;
    margin: 0 auto;
}

.kowasazuatarashiku .dash-title::before,
.kowasazuatarashiku .dash-title::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 0;
    border-bottom: 1px solid;
    position: absolute;
    top: 50%;
}

.kowasazuatarashiku .dash-title::before {
    left: 0;
}

.kowasazuatarashiku .dash-title::after {
    right: 0;
}

.kowasazuatarashiku .sml {
    font-size: .9em;
}

.kowasazuatarashiku .note {
    list-style: none;
    display: block;
    width: fit-content;
    margin-inline: auto;
}

.kowasazuatarashiku .note li {
    display: inline-block;
    font-size: min(.85em, 3.5vw);
    line-height: 1.5;
    list-style: none;
    padding-left: 1.5em;
    position: relative;
}

.kowasazuatarashiku .note li::before {
    content: '※';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.kowasazuatarashiku .graybg {
    background-color: #f3f3f3;
}

.kowasazuatarashiku .gray2 {
    color: var(--gray);
}


/* button */
.kowasazuatarashiku .btn-wrp {
    width: 100%;
    margin: 2em auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    text-align: center !important;
}

.kowasazuatarashiku .btn {
    display: block;
    width: fit-content;
    min-width: 6em;
    padding: .75em 3.5em;
    margin: 0;
    text-align: center;
    font-size: min(1.4em, 3.5vw);
    color: #222;
    text-decoration: none;
    border-radius: 3em;
    border: 2px solid;
    font-weight: bold;
    line-height: 1.5;
    position: relative;
    background-color: rgba(255, 255, 255, .5);
    transition: all .3s;
}

.kowasazuatarashiku .btn .sml {
    display: block;
    font-size: .7em;
    margin-bottom: .5em;
}

.kowasazuatarashiku .btn:hover {
    background-color: rgba(255, 255, 255, 1);
}

.kowasazuatarashiku .arrow-right {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    width: 1.5em;
}

.kowasazuatarashiku .arrow-right::before,
.kowasazuatarashiku .arrow-right::after {
    content: '';
    display: block;
    height: 0;
    border-bottom: 1px solid;
    position: absolute;
    top: 50%;
    right: 0;
}

.kowasazuatarashiku .arrow-right::before {
    width: 100%;
}

.kowasazuatarashiku .arrow-right::after {
    width: .75em;
    transform: rotate(20deg);
    transform-origin: bottom right;
}


/* hero img ==============================*/
.kowasazuatarashiku-main {
    width: 100%;
    max-width: 1200px;
    /* aspect-ratio: 2/1; */
    margin: 0 auto;
    position: relative;
    z-index: 0;
    /* overflow: hidden; */
}

@media screen and (max-width:640px) {
    .kowasazuatarashiku-main {
        aspect-ratio: unset;
    }
}

.kowasazuatarashiku-main .mainimg {
    position: relative;
}

@media screen and (max-width:640px) {
    .kowasazuatarashiku-main .mainimg {
        height: 80vw;
    }
}

.kowasazuatarashiku-main .mainimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kowasazuatarashiku-main .maintitle-wrp {
    width: 100%;
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s .3s ease;
    pointer-events: none;
    z-index: 3;
}

@media screen and (max-width:767px) {
    .kowasazuatarashiku-main .maintitle-wrp {
        top: 48%;
    }
}

.kowasazuatarashiku-main .maintitle-wrp .maintitle {
    width: min(540px, 68%);
    margin: 0 auto;
}

/* mov */
.kowasazuatarashiku-main .mov-wrp {
    width: 100%;
    padding: 0 2em;
    display: block;
    position: absolute;
    left: 50%;
    bottom: -6em;
    transform: translateX(-50%);
}

.kowasazuatarashiku-main .mov-wrp .mov-lead {
    display: block;
    width: fit-content;
    padding: 0 1em;
    margin: 0 auto .75em;
    color: #222;
    font-weight: bold;
    font-size: min(1.5em, 4.4vw);
    position: relative;
    text-align: center;
}

.kowasazuatarashiku .mov-wrp .mov-lead::before,
.kowasazuatarashiku .mov-wrp .mov-lead::after {
    content: '';
    width: 0;
    height: 1.5em;
    position: absolute;
    right: 102%;
    bottom: 0;
    border-left: solid 2px;
    rotate: -35deg;
}

.kowasazuatarashiku .mov-wrp .mov-lead::after {
    left: 100%;
    right: unset;
    rotate: 35deg;
}

@media screen and (max-width:767px) {
    .kowasazuatarashiku-main .mov-wrp .mov-lead {
        order: 2;
        padding-top: .5em;
    }
}

/* .kowasazuatarashiku-main .mov-wrp .mov-lead::after {
    content: '';
    position: absolute;
    width: 1.5em;
    border-bottom: solid 3px var(--blue);
    position: absolute;
    right: 0;
    bottom: -3px;
    rotate: 45deg;
    transform-origin: right bottom;
}

@media screen and (max-width:767px) {
    .kowasazuatarashiku-main .mov-wrp .mov-lead::after {
        width: 1em;
        left: calc(100% + 2px);
        right: unset;
        top: 0;
        bottom: unset;
        rotate: 45deg;
        transform-origin: left top;
    }
} */

.kowasazuatarashiku-main .mov-wrp .mov-thumb {
    display: block;
    width: min(370px, 50%);
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 1px 1px 4px rgb(60 60 60 /.4);
    position: relative;
    cursor: pointer;
}

@media screen and (max-width:767px) {
    .kowasazuatarashiku-main .mov-wrp .mov-thumb {
        width: 84%;
    }
}

.kowasazuatarashiku-main .mov-wrp .mov-thumb::before,
.kowasazuatarashiku-main .mov-wrp .mov-thumb::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
}

.kowasazuatarashiku-main .mov-wrp .mov-thumb::before {
    width: 5em;
    height: 5em;
    border-radius: 100%;
    border: solid 2px #fff;
    background-color: rgb(100 100 100 / .4);
    box-shadow: 1px 1px 4px rgb(60 60 60 /.5);
}

.kowasazuatarashiku-main .mov-wrp .mov-thumb::after {
    width: 1.6em;
    height: 2em;
    translate: -40% -50%;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.kowasazuatarashiku .mov {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.kowasazuatarashiku .mov iframe {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    overflow: auto;
}


/* about ==============================*/
.kowasazuatarashiku .about-wrp {
    margin-top: 10em;
    background-color: var(--blue);
}

.kowasazuatarashiku .about-wrp .inner {
    max-width: 980px;
}

.kowasazuatarashiku .about-wrp .title {
    width: max-content;
    margin: 0 auto;
    color: #fff;
    font-size: min(2.3em, 5.2vw);
    position: relative;
}

.kowasazuatarashiku .about-wrp .title::before,
.kowasazuatarashiku .about-wrp .title::after {
    content: '';
    width: 0;
    height: 3em;
    position: absolute;
    right: 102%;
    bottom: 0;
    border-left: solid 2px;
    rotate: -30deg;
}

.kowasazuatarashiku .about-wrp .title::after {
    left: 100%;
    right: unset;
    rotate: 30deg;
}

/* ba-wrp */
.kowasazuatarashiku .about-wrp .ba-wrp {
    margin: min(3em, 6vw) auto 0;
    overflow: hidden;
    border-radius: 1rem;
    border: solid 3px #fff;
    position: relative;
}

.kowasazuatarashiku .about-wrp .ba-wrp .note {
    width: max-content;
    padding: .5em 1em;
    background-color: #222;
    color: #fff;
    font-weight: bold;
    font-size: min(1em, 3.6vw);
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -7em;
    border-radius: .5rem;
    z-index: 4;
}

.kowasazuatarashiku .about-wrp .ba-wrp .note::before {
    content: '';
    display: block;
    width: 1.4em;
    height: 1.4em;
    background-color: #222;
    position: absolute;
    left: 50%;
    top: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 1px, 50% 100%, 0 1px);
    translate: -50%;
}

.kowasazuatarashiku .about-wrp .features-list {
    width: min(980px, 100%);
    margin: 6em auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5em 1em;
}

.kowasazuatarashiku .about-wrp .features-list li {
    width: 31%;
    flex-grow: 1;
    text-align: center;
}

@media screen and (max-width:640px) {
    .kowasazuatarashiku .about-wrp .features-list li {
        width: 45%;
    }
}

@media screen and (max-width:500px) {
    .kowasazuatarashiku .about-wrp .features-list li {
        width: 100%;
    }
}

.kowasazuatarashiku .about-wrp .features-list .circle {
    width: 11em;
    height: 11em;
    margin: 0 auto 1.5em;
    border-radius: 100%;
    background-color: #fff;
    font-size: min(1.3em, 4vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    box-shadow: 1px 1px 4px rgb(60 60 60 /.4);
    position: relative;
}

@media screen and (max-width:640px) {
    .kowasazuatarashiku .about-wrp .features-list .circle {
        width: 11em;
        height: 11em;
    }
}

.kowasazuatarashiku .about-wrp .features-list .circle .num {
    position: absolute;
    left: 50%;
    bottom: 100%;
    translate: -50% .5em;
    color: var(--gray);
    font-weight: bold;
    font-size: 2em;
    font-family: Manrope, sans-serif;
}

.kowasazuatarashiku .about-wrp .features-list .circle .num::before {
    content: 'POINT';
    display: block;
    margin: 0 auto .25em;
    font-size: .4em;
}

.kowasazuatarashiku .about-wrp .features-list .icon {
    width: min(64px, 28%);
    margin: 0 auto .5em;
}

.kowasazuatarashiku .about-wrp .features-list .copy {
    text-align: center;
    font-weight: bold;
    color: var(--blue2);
    line-height: 1.4;
}

.kowasazuatarashiku .about-wrp .features-list .copy .em {
    display: block;
    font-size: 1.3em;
    letter-spacing: .05em;
}

.kowasazuatarashiku .about-wrp .features-list p:not(.copy) {
    font-weight: bold;
    font-size: min(1.15em, 4vw);
    color: var(--gray);
}

@media screen and (max-width:767px) {}


/* plan ==============================*/
.kowasazuatarashiku .plan-wrp {
    padding-top: 5em;
    position: relative;
}

.plan.washitsu,
[data-plan="washitsu"] {
    --plan-color: var(--blue3);
}

.plan.storage,
[data-plan="storage"] {
    --plan-color: var(--green);
}

.plan.washitsu {
    background-color: #e6f2f4;
}

.plan.storage {
    background-color: #dbeee6;
}

.kowasazuatarashiku .plan-wrp .dash-title {
    margin-bottom: 2em;
}

/* tab contens */
.kowasazuatarashiku .plan-wrp .plan-tab-contents-wrp {
    position: relative;
    padding-top: 58px;
}

.kowasazuatarashiku .plan-wrp .plan-tab-wrp {
    width: 100%;
    max-width: 1200px;
    background-color: #fff;
}

.intersection.unactive .plan-tab-wrp {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}

.intersection .plan-tab-wrp {
    position: fixed;
    top: 112px;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;
}

@media screen and (max-width:767px) {
    .intersection .plan-tab-wrp {
        top: 78px;
    }
}

.kowasazuatarashiku .plan-wrp .plan-tab-wrp::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.kowasazuatarashiku .plan-tab-wrp.washitsu::after {
    background-color: var(--blue3);
}

.kowasazuatarashiku .plan-tab-wrp.storage::after {
    background-color: var(--green);
}

.kowasazuatarashiku .plan-wrp .plan-tab {
    width: min(1200px, 100%);
    margin: 0 auto;
    position: relative;
    gap: min(1em, 3vw);
}

.intersection.unactive .plan-tab-wrp .plan-tab {
    transform: scale(1);
    transform-origin: bottom center;
    transition: all .3s;
}

.intersection .plan-tab-wrp .plan-tab {
    transform: scale(.8);
    transition: all .3s;
}

.intersection.unactive .plan-tab-wrp .plan-tab .tab {
    transform: translateY(0);
}

.kowasazuatarashiku .plan-wrp .plan-tab .tab {
    width: 40%;
    max-width: 400px;
    padding: 1em .5em .7em;
    text-align: center;
    border-radius: 5px 5px 0 0;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    color: var(--plan-color);
    border: 2px solid;
    border-bottom: none;
    opacity: .7;
    transition: all .3s;
    transform: translateY(2px);
}


.kowasazuatarashiku .plan-wrp .plan-tab .tab:hover,
.kowasazuatarashiku .plan-wrp .plan-tab .tab.on {
    color: white;
    background-color: var(--plan-color);
    opacity: 1;
}

@media screen and (max-width:767px) {
    .kowasazuatarashiku .plan-wrp .plan-tab .tab {
        width: 45%;
        padding: .75em .5em .5em;
    }
}



.kowasazuatarashiku .plan-wrp .plan-icon {
    width: min(80px, 25%);
    margin: -1em auto 1em;
}

.kowasazuatarashiku .plan-wrp .plan-tab p {
    font-size: min(1.3em, 3.8vw);
    font-weight: bold;
    width: fit-content;
    display: flex;
    align-items: center;
}

/* plan */
.kowasazuatarashiku .plan-wrp .plan {
    /* padding-top: 2em; */
    text-align: center;
    display: none;
    max-width: 1200px;
    margin: 0 auto 5em;
    border-radius: 0 0 10px 10px;
    background-color: #f9f9f9;
}

@media screen and (max-width:767px) {
    .kowasazuatarashiku .plan-wrp .plan {
        margin: 0 auto;
    }
}

.kowasazuatarashiku .plan-wrp .plan.on {
    display: block;
}

.kowasazuatarashiku .plan-wrp .plan .plan-title {
    width: max-content;
    margin: 0 auto 1em;
    padding: 0 .5em .25em;
    font-size: min(1.8em, 5.2vw);
    font-weight: bold;
    color: var(--plan-color);
    line-height: 1.6;
    border-bottom: solid 2px;
}

.kowasazuatarashiku .plan-wrp .plan .plan-box~.plan-box {
    margin-top: min(100px, 15vw);
}

.kowasazuatarashiku .plan-wrp .plan .plan-title+p {
    font-size: min(1.3em, 4vw);
    /*     font-weight: bold; */
}

.kowasazuatarashiku .plan-wrp .plan .plan-fig {
    margin: 2em auto 3em;
}

.kowasazuatarashiku .plan-wrp .plan .ba-wrp {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

@media screen and (max-width:767px) {
    .kowasazuatarashiku .plan-wrp .plan .ba-wrp {
        width: min(600px, 90%);
        margin: 0 auto;
        justify-content: center;
        gap: 2em 1em;
    }
}

.kowasazuatarashiku .plan-wrp .plan .ba-wrp .before {
    width: 35%;
    position: relative;
}

@media screen and (max-width:767px) {
    .kowasazuatarashiku .plan-wrp .plan .ba-wrp .before {
        width: 100%;
    }

    .kowasazuatarashiku .plan-wrp .plan .ba-wrp .before img {
        width: 50%;
    }
}

.kowasazuatarashiku .plan-wrp .plan .ba-wrp .after {
    width: 35%;
    position: relative;
}

@media screen and (max-width:767px) {
    .kowasazuatarashiku .plan-wrp .plan .ba-wrp .after {
        width: 100%;
    }

    .kowasazuatarashiku .plan-wrp .plan .ba-wrp .after img {
        width: 85%;
        margin: 0 auto;
    }
}

.kowasazuatarashiku .plan-wrp .plan .ba-wrp .before .hd,
.kowasazuatarashiku .plan-wrp .plan .ba-wrp .after .hd {
    width: 8em;
    text-align: center;
    margin: 0 auto 1em;
    padding: .5em;
    font-size: min(1.2em, 3vw);
    font-weight: bold;
    color: var(--plan-color);
    background-color: #fff;
    border: solid 1px var(--plan-color);
    border-radius: 5px;
    letter-spacing: .05em;
}

@media screen and (max-width:767px) {

    .kowasazuatarashiku .plan-wrp .plan .ba-wrp .before .hd,
    .kowasazuatarashiku .plan-wrp .plan .ba-wrp .after .hd {
        width: 6em;
        height: 6em;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0;
        padding: 0;
        border: solid 2px var(--plan-color);
        border-radius: 100%;
        letter-spacing: 0em;
        position: absolute;
        top: -1em;
        left: -2em;
    }
}

.kowasazuatarashiku .plan-wrp .plan .ba-wrp .after .hd {
    color: #fff;
    background-color: var(--plan-color);
}

.kowasazuatarashiku .plan-wrp .plan .ba-wrp .arrow {
    width: 20%;
    padding: 0 1em 1.5em;
    border-bottom: solid 10px var(--plan-color);
    position: relative;
}

@media screen and (max-width:767px) {
    .kowasazuatarashiku .plan-wrp .plan .ba-wrp .arrow {
        width: 60%;
        margin: 1em auto;
        /* padding: 0 .5em 3.5em; */
        border: unset;
        /* translate: 0 3em; */
    }
}

.kowasazuatarashiku .plan-wrp .plan .ba-wrp .arrow .logo {
    width: 80%;
    margin: 0 auto;
}


.kowasazuatarashiku .plan-wrp .plan .ba-wrp .arrow::after {
    content: '';
    display: block;
    width: 1.6em;
    height: 2em;
    background-color: var(--plan-color);
    position: absolute;
    right: -.55em;
    bottom: calc(-1em - 5px);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media screen and (max-width:767px) {
    .kowasazuatarashiku .plan-wrp .plan .ba-wrp .arrow::after {
        width: 2em;
        height: 1.6em;
        left: 50%;
        right: unset;
        bottom: calc(-1em - 5px);
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        transform: translateX(-50%);
    }
}

.kowasazuatarashiku .plan-wrp .plan .btn {
    display: block;
    width: 15em;
    margin: 2em auto 0;
    padding: .75em 2em;
    border: unset;
    border-radius: 3em;
    background-color: var(--plan-color);
    color: #fff;
    font-size: min(1.4em, 3.8vw);
    position: relative;
    transition: all .3s;
}

.kowasazuatarashiku .plan-wrp .plan .btn:hover {
    background-color: #222;
}

.kowasazuatarashiku .plan-wrp .plan .btn .icon {
    width: 1.4em;
    position: absolute;
    right: 1.5em;
    top: 50%;
    translate: 0 -50%;
}

.kowasazuatarashiku .plan-btn-back {
    font-size: min(1em, 3.5vw);
    margin-bottom: 3em;
    position: relative;
    transition: all .3s;
}

.kowasazuatarashiku .plan-btn-back:hover {
    background-color: #222;
    color: #fff;
}

.kowasazuatarashiku .plan-btn-back::after {
    content: '';
    width: .5em;
    height: .5em;
    border-top: 2px solid;
    border-left: 2px solid;
    transform: translateY(-40%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 1.5em;

}

/* recommend ==============================*/
.kowasazuatarashiku .recommend-wrp {
    background-color: var(--bg);
}

.kowasazuatarashiku .recommend-wrp .recommend-logo {
    display: block;
    width: min(300px, 50%);
    margin: 0 auto 3em;
}

/* application */
.kowasazuatarashiku .recommend-wrp .application-wrp {
    width: min(980px, 100%);
    margin: 3em auto 5em;
    display: flex;
    align-items: center;
    border: solid 2px var(--blue);
    border-radius: .5rem;
    background-color: #fff;
    overflow: hidden;
}

@media screen and (max-width:640px) {
    .kowasazuatarashiku .recommend-wrp .application-wrp {
        display: block;
    }
}

.kowasazuatarashiku .recommend-wrp .application-wrp .application {
    /* flex-grow: 1; */
    padding: 0 1em 0 2em;
}

@media screen and (max-width:640px) {
    .kowasazuatarashiku .recommend-wrp .application-wrp .application {
        width: 100%;
        padding: 1em 1.5em .5em;
    }
}

.kowasazuatarashiku .recommend-wrp .application-wrp .hd {
    margin-bottom: .5em;
    font-weight: bold;
    font-size: min(1em, 3.5vw);
    line-height: 1.5;
    color: var(--gray);
}

@media screen and (max-width:640px) {
    .kowasazuatarashiku .recommend-wrp .application-wrp .hd {
        text-align: center;
    }
}

.kowasazuatarashiku .recommend-wrp .application-wrp p:not(.hd) {
    font-size: min(1em, 3vw);
    text-align: justify;
}

.kowasazuatarashiku .recommend-wrp .application-wrp .solution {
    flex-shrink: 0;
    width: min(17em, 50%);
    padding: 2em 1em 2em 3em;
    background-color: var(--blue);
    color: #fff;
    font-size: min(1.25em, 4vw);
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    position: relative;
}

@media screen and (max-width:640px) {
    .kowasazuatarashiku .recommend-wrp .application-wrp .solution {
        width: 100%;
        padding: 3em 1em 1em;
    }
}

.kowasazuatarashiku .recommend-wrp .application-wrp .solution::after {
    content: '';
    display: block;
    width: 1.6em;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media screen and (max-width:640px) {
    .kowasazuatarashiku .recommend-wrp .application-wrp .solution::after {
        width: 100%;
        height: 1.8em;
        top: -1px;
        clip-path: polygon(0 0, 100% 0, 100% 1px, 50% 100%, 0 1px);
    }
}

/* item-list */
.kowasazuatarashiku .recommend-wrp .item-list {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4em 3.5%;
}

@media screen and (max-width:767px) {
    .kowasazuatarashiku .recommend-wrp .item-list {
        gap: 2em 4%;
    }
}

.kowasazuatarashiku .recommend-wrp .item-list li {
    width: 31%;
    padding: 2em 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 4px rgb(100 100 100 /.3);
    border-radius: 5px;
}

@media screen and (max-width:640px) {
    .kowasazuatarashiku .recommend-wrp .item-list li {
        width: 48%;
    }
}

@media screen and (max-width:500px) {
    .kowasazuatarashiku .recommend-wrp .item-list li {
        width: 100%;
    }
}

.kowasazuatarashiku .recommend-wrp .item-list .copy {
    line-height: 1.5;
    font-size: min(1.3em, 4.2vw);
    font-weight: bold;
    color: var(--gray);
    /*     color: var(--blue3); */
}

.kowasazuatarashiku .recommend-wrp .item-list .thumb {
    width: min(320px, 100%);
    margin: 1.5em auto 1em;
    cursor: pointer;
}

.kowasazuatarashiku .recommend-wrp .item-list p {
    margin-bottom: 1.5em;
    line-height: 1.6;
    font-size: min(1.05em, 3.8vw);
    font-weight: bold;
    color: var(--gray);
}

.kowasazuatarashiku .recommend-wrp .item-list .btn {
    display: block;
    width: 14em;
    margin: auto auto 0;
    padding: .75em 2em;
    border-radius: 3em;
    border: solid 2px;
    font-size: min(1em, 4vw);
    position: relative;
}

.kowasazuatarashiku .recommend-wrp .item-list .btn:hover {
    background-color: #222;
    color: #fff;
}

/* pro support banner */
.kowasazuatarashiku .pro-support-banner-wrp .pro-support-banner-inner {
    width: 80%;
    max-width: 720px;
    padding-top: 3em;
    margin: 0 auto;
    text-align: center;
}

.kowasazuatarashiku .pro-support-banner-wrp .title {
    display: block;
    width: fit-content;
    padding: 0 1em;
    margin: 0 auto .75em;
    color: #222;
    font-weight: bold;
    font-size: min(1.6em, 4.6vw);
    position: relative;
    text-align: center;
}

.kowasazuatarashiku .pro-support-banner-wrp .title::before,
.kowasazuatarashiku .pro-support-banner-wrp .title::after {
    content: '';
    width: 0;
    height: 1.5em;
    position: absolute;
    right: 102%;
    bottom: 0;
    border-left: solid 2px;
    rotate: -35deg;
}

.kowasazuatarashiku .pro-support-banner-wrp .title::after {
    left: 100%;
    right: unset;
    rotate: 35deg;
}

.kowasazuatarashiku .pro-support-banner-wrp .lead {
    display: block;
    width: fit-content;
    padding: 0 1em;
    margin: 0 auto 1em;
    color: #222;
    font-weight: bold;
    font-size: min(1.1em, 3.5vw);
    position: relative;
    text-align: center;
}

.kowasazuatarashiku .pro-support-banner-wrp a {
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
}