/*   PC・SP共通部分       */

/*************************/
/*   基本レイアウト関連    */
/*************************/
/* メインセクションの横幅を100%固定にする */
.fs-body-custom .fs-l-pageMain {
    max-width: 100%;
}

/* フリーページ用の見出しを非表示に */
.fs-c-heading--page {
    display: none;
}

/* 左ナビ非表示 */
aside.fs-p-drawer.fs-l-sideArea {
    display: none;
}

.fs-l-main {
    margin: 0px auto 24px;
    padding: 0 8px 8px;
}

.marker01 {
    background: linear-gradient(transparent 70%, #ff99ab 70%);
}

/* 電話番号リンクの制御 */
a[href*="tel:"] {
    pointer-events: none;
}

@media only screen and (max-width: 1024px) {
    a[href*="tel:"] {
        pointer-events: initial;
    }
}

.line-flow a,
.faq-inner a {
    text-decoration: underline;
}

h2.consulting-h2 {
    position: relative;
    padding: 1.5rem;
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 800;
    font-style: normal;
}

h2.consulting-h2:before {
    position: absolute;
    top: 10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #631030;
}

.flow .consulting-h2:before,
.faq .consulting-h2:before {
    top: -5px;
}

h2.consulting-h2 span {
    font-size: 140%;
    padding: 0 3px 0 9px;
    font-weight: bold;
}

/* for PC */
@media screen and (min-width:768px) {
    h2.consulting-h2 {
        font-size: 3.8rem;
    }
}

/* for SP */
@media screen and (max-width:767px) {
    h2.consulting-h2 {
        font-size: 2.2rem;
    }
}

/*************************/
/*   CV共通                */
/*************************/

/* ボタン整列 */
.cv-btn-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ボタン装飾 */
.cv-btn-list a:hover {
    text-decoration: none;
}

.cv-btn-list .btn-line a {
    background-color: #00b900;
    color: #fff;
    font-weight: 500;
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 12px 0;
    border-radius: 33px;
    position: relative;
    transition: 0.3s;
}

.cv-btn-list .btn-line a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 7.5%;
    transform: translateY(-50%);
    display: block;
    background: url(https://wine1227.itembox.design/item/img/special/consulting-room/line-ico.svg) no-repeat center / contain;
}

.cv-btn-list .btn-line a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 43px;
    transform: rotate(45deg) translateY(-50%);
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #fff;
    transition: 0.3s;
}

.cv-btn-list .btn-line a:hover {
    background-color: #048704;
}

.cv-btn-list .btn-line a:hover:after {
    right: 36px;
}

.cv-btn-list .btn-form a {
    font-weight: 500;
    text-align: center;
    display: block;
    position: relative;
    transition: 0.3s;
}

.btn-tel span {
    display: block;
    text-align: right;
}

/* for PC */
@media screen and (min-width:768px) {

    /* ボタン整列 */
    .cv-btn-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 30px;
    }

    .cv-btn-list .btn-line {
        grid-area: 1 / 1 / 2 / 3;
    }

    .cv-btn-list .btn-form {
        grid-area: 2 / 1 / 3 / 2;
    }

    .cv-btn-list .btn-tel {
        grid-area: 2 / 2 / 3 / 3;
    }

    .cv-btn-list .btn-line a {
        font-size: 2.8rem;
    }

    .cv-btn-list .btn-line a:before {
        width: 48px;
        height: 46px;
    }

    .cv-btn-list .btn-line a:after {
        width: 18px;
        height: 18px;
    }

    .cv-btn-list .btn-form a {
        font-size: 1.9rem;
        width: 100%;
        padding: 18.5px 0;
        border-radius: 33px;
    }

    .cv-btn-list .btn-form a:hover {
        opacity: 0.6;
    }

    .btn-tel a {
        font-size: 3.0rem;
        line-height: 1.2;
        font-weight: bold;
        border-bottom: 1px solid;
        display: block;
        text-align: right;
        position: relative;
    }

    .btn-tel a:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
        display: block;
        width: 32px;
        height: 23px;
    }

    .btn-tel span {
        font-size: 1.5rem;
    }
}

/* for SP */
@media screen and (max-width:767px) {
    .cv-btn-list li:not(:first-child) {
        padding-bottom: 10px;
    }

    .cv-btn-list li:first-child {
        padding-bottom: 20px;
    }

    .cv-btn-list .btn-line a {
        font-size: 1.8rem;
    }

    .cv-btn-list .btn-line a:before {
        width: 32px;
        height: 28px;
    }

    .cv-btn-list .btn-line a:after {
        width: 10px;
        height: 10px;
    }

    .cv-btn-list .btn-line a:active {
        transform: scale(.95);
    }

    .cv-btn-list .btn-form a,
    .cv-btn-list .btn-tel a {
        background-color: #000;
        color: #fff;
        font-size: 1.4rem;
        line-height: 2.4;
        border-radius: 17px;
        max-width: 75%;
        margin: 0 auto;
    }

    .btn-form a:after,
    .btn-tel a:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 20px;
        transform: rotate(45deg) translateY(-50%);
        border-width: 2px 2px 0 0;
        border-style: solid;
        border-color: #fff;
        width: 6px;
        height: 6px;
    }

    .cv-btn-list .btn-tel a {
        font-weight: 500;
        text-align: center;
        display: block;
        position: relative;
        transition: 0.3s;
    }

    .btn-tel span {
        max-width: 75%;
        margin: 0 auto;
        font-size: 1.2rem;
    }

}

/*************************/
/*   first view          */
/*************************/
.firstview {
    margin: 0 calc(50% - 50vw);
    z-index: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.firstview:before {
    content: "";
    width: 100%;
    height: calc(32.5vw/ 2);
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 60%);
}

.fv-inner {
    max-width: 1216px;
    height: 100%;
    margin: 0 auto;
}

.fv-container {
    position: relative;
}

.firstview .btn-tel span {
    color: #fff;
}

/* ハンバーガーメニューなし */
@media screen and (min-width: 1200px) {}

/* ハンバーガーメニューあり */
@media screen and (max-width:1199px) {}

/* for PC */
@media screen and (min-width:768px) {
    .firstview {
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/kv-pc.jpg);
    }

    .fv-inner {
        padding-top: 246px;
        padding-bottom: 60px;
    }

    .fv-container {
        width: 540px;
        margin-left: 8%;
    }

    .firstview .cv-btn-list .btn-form a {
        background-color: #fff;
        color: #333;
    }

    .firstview .btn-tel a {
        color: #fff;
    }

    .btn-tel a:before {
        background: url(https://wine1227.itembox.design/item/img/special/consulting-room/tel-ico.svg) no-repeat center / contain;
    }
}

/* for SP */
@media screen and (max-width:767px) {
    .firstview {
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/kv-sp.jpg);
    }

    .fv-inner {
        height: 108vw;
        position: relative;
        /* padding-top: 324px; */
    }

    .fv-container {
        margin: 0 8%;
        position: absolute;
        bottom: 6px;
    }

}

/*************************/
/*   お悩み              */
/*************************/
.problem-sec {
    margin: 0 calc(50% - 50vw);
    position: relative;
    /* background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/problem-bg-pc.png?d=3); */
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    background-color:rgba(255,255,255,0.2);
    background-blend-mode:lighten;
}

.problem-inner {
    max-width: 1216px;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.problem-headline {
    max-width: 700px;
    margin: 0 auto;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.problem-list li {
    color: #fff;
    text-align: center;
    line-height: 1.2;
    position: relative;
    background-size: 99%;
    background-repeat: no-repeat;
}

.problem-list li:nth-child(1),
.problem-list li:nth-child(5) {
    background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/problem-list01.png);
}

.problem-list li:nth-child(3),
.problem-list li:nth-child(4) {
    background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/problem-list03.png);
}

.problem-list li:nth-child(2) {
    background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/problem-list02.png);
}

.problem-list li:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.problem-list li p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin: 6px 0 0;
}

.bubble-wrap {
    line-height: 1.6;
    padding: 30px 0;
}

.bubble-01 {
    text-align: center;
    background: #fff;
}

.bubble-02 {
    background: #fff;
}

/* for PC */
@media screen and (min-width:768px) {
    .problem-sec {
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/problem-bg-pc.png);
    }

    .problem-inner {
        padding: 60px 0;
    }

    .problem-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 60px 80px 60px 0;
    }

    .problem-list li {
        width: 28%;
        font-size: 1.8rem;
    }

    .problem-list li:nth-child(1),
    .problem-list li:nth-child(2),
    .problem-list li:nth-child(4) {
        margin-right: 8%;
    }


    .problem-list:before {
        position: absolute;
        content: "";
        width: 237px;
        height: 416px;
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/problem-img01.png);
        background-size: 100%;
        background-repeat: no-repeat;
        right: -38px;
        bottom: -20px;
    }

    .bubble-wrap {
        max-width: 960px;
        margin: 0 0 auto;
        font-size: 2.2rem;
    }

    .bubble-01 {
        max-width: 500px;
        padding: 20px;
        border-radius: 20px;
        margin: 0 0 40px auto;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px, 16px 16px 0px 0px rgba(0, 0, 0, 0.1);
    }

    .bubble-02 {
        padding: 20px;
        border-radius: 20px;
        margin: 0 0 0 auto;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px, 16px 16px 0px 0px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .bubble-02:before {
        position: absolute;
        content: "";
        width: 302px;
        height: 392px;
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/problem-img02.png);
        background-size: 100%;
        background-repeat: no-repeat;
        left: 40px;
        top: -392px;
    }
}

/* for SP */
@media screen and (max-width:767px) {
    .problem-sec {
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/problem-bg-sp.png);
    }

    .problem-inner {
        padding: 36px 0;
    }

    .problem-list {
        padding: 50px 20px 0px;
    }

    .problem-list li {
        max-width: 100%;
        font-size: 4vw;
    }

    .problem-list li:nth-child(1) {
        margin: 0 4% 0 40%;
    }

    .problem-list li:nth-child(2) {
        margin-right: 44%;
    }

    .problem-list li:nth-child(3),
    .problem-list li:nth-child(5) {
        margin: 16px 22%;
    }

    .problem-list li:nth-child(4) {
        margin-left: 44%;
    }

    .problem-list:before {
        content: "";
        width: 34.5vw;
        height: 60vw;
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/problem-img01.png);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        right: 20px;
        top: 60vw;
        position: absolute;
    }

    .problem-list:after {
        content: "";
        width: 46.4vw;
        height: 60vw;
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/problem-img02.png);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        left: 10px;
        bottom: calc(60vw - 30px);
        position: absolute;
    }

    .bubble-wrap {
        font-size: 1.8rem;
        overflow: hidden;
    }

    .bubble-01 {
        padding: 20px calc(13% + 20px) 20px 20px;
        border-radius: 20px 0 0 20px;
        margin: 0 -13% 40px 13%;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px, -16px 16px 0px 0px rgba(0, 0, 0, 0.1);
    }

    .bubble-02 {
        padding: 20px 20px 20px calc(13% + 20px);
        border-radius: 0 20px 20px 0;
        margin: 0 13% 0 -13%;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px, 16px 16px 0px 0px rgba(0, 0, 0, 0.1);
    }
}


/*************************/
/*   解決              */
/*************************/
.solution {
    background-color: #9f6447;
    margin: 0 calc(50% - 50vw);
    text-align: center;
    color: #fff;
}



section.solution p {
    overflow: hidden;
    position: relative;
    padding: 80px 0 90px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    font-style: normal;
}

section.solution p:before {
    content: '';
    font-family: 'shape divider from ShapeDividers.com';
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 49px;
    background-position: 50% 0%;
    background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1007.63 112.41"><path fill="%23ffffff" d="M0 0v11.51c167.94 33.54 503.8 0 503.8 100.9 0-100.9 335.9-67.36 503.83-100.9V0z"/></svg>');
}

section.solution p:after {
    content: '';
    font-family: 'shape divider from ShapeDividers.com';
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 49px;
    background-position: 50% 100%;
    background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23ffffff"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23ffffff"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23ffffff"/></svg>');

}

@media (min-width:2100px) {
    section.solution p:before {
        background-size: 100% calc(2vw + 49px);
    }
}

/* for PC */
@media screen and (min-width:768px) {
    section.solution p {
        font-size: 2.2rem;
    }

    section.solution p span {
        font-size: 4.4rem;
    }
}

/* for SP */
@media screen and (max-width:767px) {
    section.solution p {
        font-size: 3vw;
    }

    section.solution p span {
        font-size: 5.5vw;
    }
}

/*************************/
/*  CV              */
/*************************/
.cv-area01 {
    margin: 0 calc(50% - 50vw);
}

.cv-area01 .cv-btn-list {
    max-width: 540px;
    margin: 0 auto;
    padding: 60px 0px;
}

.cv-area01 .btn-tel span {
    color: #333;
}

/* for PC */
@media screen and (min-width:768px) {
    .cv-area01 {
        padding: 40px 0 60px;
    }

    .cv-area01 .cv-btn-list .btn-form a {
        background-color: #333;
        color: #fff;
    }

    .cv-area01 .btn-tel a {
        color: #333;
    }

    .cv-area01 .btn-tel a:before {
        background: url(https://wine1227.itembox.design/item/img/special/consulting-room/tel-ico-b.svg) no-repeat center / contain;
    }
}

/* for SP */
@media screen and (max-width:767px) {
    .cv-area01 {
        padding: 20px 0 30px;
    }

    .cv-area01 .cv-btn-list {
        margin: 0 8%;
    }
}

/*************************/
/*  オンラインワッシーズ特徴 */
/*************************/
.feature {
    margin: 0 calc(50% - 50vw);
    overflow: hidden;
}

.feature-inner {
    max-width: 1216px;
    margin: 0 auto;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    counter-reset: number 0;
    padding: 60px 0;
}

.feature-list dt,
.feature-list dd {
    padding: 0;
    margin: 0;
    position: relative;
}

.feature-list dd {
    padding: 30px 16px;
}

.feature-h3 {
    position: relative;
}

.feature-h3:before {
    content: "0" counter(number);
    counter-increment: number 1;
    letter-spacing: -0.25rem;
    color: #a71666;
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    font-style: normal;
    position: absolute;
    left: 0;
    border-right: 2px solid #a71666;
}

.feature-list p {
    line-height: 1.6;
    padding: 1.5rem 0;
}


/* for PC */
@media screen and (min-width:768px) {

    .feature-inner {
        padding: 80px 0 90px;
    }

    .feature-list dt,
    .feature-list dd {
        width: 50%;
    }

    .feature01-dt {
        text-align: right;
    }

    .feature-list dt img {
        width: 86%;
        line-height: 0;
    }

    .feature-list dt:nth-of-type(1) {
        order: 0;
    }

    .feature-list dd:nth-of-type(1) {
        order: 1;
    }

    .feature-list dt:nth-of-type(2) {
        order: 3;
    }

    .feature-list dd:nth-of-type(2) {
        order: 2;
    }

    .feature-list dt:nth-of-type(3) {
        order: 4;
    }

    .feature-list dd:nth-of-type(3) {
        order: 5;
    }

    .feature-list dt:nth-of-type(4) {
        order: 7;
    }

    .feature-list dd:nth-of-type(4) {
        order: 6;
    }

    .feature-list dt:before {
        content: "";
        position: absolute;
        z-index: -1;
        background-repeat: no-repeat;
        background-size: contain;
        width: 100%;
        height: 100%;
    }

    .feature-list dt:nth-of-type(1):before {
        top: 0;
        left: -50px;
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/feature01-bg.png);
    }

    .feature-list dt:nth-of-type(2):before {
        top: 0;
        right: -50px;
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/feature02-bg.png);

    }

    .feature-list dt:nth-of-type(3):before {
        top: 0;
        left: 0px;
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/feature03-bg.png);
    }

    .feature-list dt:nth-of-type(4):before {
        top: -80px;
        right: -80px;
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/feature04-bg.png);
    }


    .clip-img01 {
        clip-path: url(#clipshape01);
    }

    .clip-img02 {
        clip-path: url(#clipshape02);
    }

    #clipshape01 path {
        scale: 0.00166 0.0024;
        transform: translate(calc(50% *0.5));
    }

    #clipshape02 path {
        transform: translate(10px);
        scale: 0.002 0.00277;
    }

    .feature-h3 {
        font-size: 2.8rem;
        padding-left: 10rem;
    }

    .feature-h3:before {
        font-size: 4.6rem;
        top: calc(50% - 2.3rem);
        padding-right: 3rem;
        height: 4.6rem;
    }

    .feature-list p {
        font-size: 2.0rem;
    }
}

/* for SP */
@media screen and (max-width:767px) {
    .feature-inner {
        padding: 40px 0 10px;
    }

    .feature-list dt,
    .feature-list dd {
        width: 100%;
    }

    .feature-list dt img {
        vertical-align: bottom;
        width: 100vw;
        height: 54.6vw;
        object-fit: cover;
    }

    .feature-h3 {
        font-size: 1.9rem;
        padding-left: 7rem;
        margin: 1rem 0;
    }

    .feature-h3:before {
        top: calc(50% - 1.7rem);
        font-size: 3.4rem;
        height: 3.4rem;
        padding-right: 1.8rem;
    }

    .feature-list p {
        font-size: 1.6rem;
        padding-bottom: 2rem;
    }

    .feature-list dd:before {
        content: "";
        position: absolute;
        z-index: -1;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0.6;
    }

    .feature-list dd:nth-of-type(1):before {
        background-size: 120%;
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/feature01-bg.png);
        background-position-x: -90px;
        background-position-y: -128px;
    }

    .feature-list dd:nth-of-type(2):before {
        background-size: 140%;
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/feature02-bg.png);
        background-position-x: -76px;
        background-position-y: -125px;
    }

    .feature-list dd:nth-of-type(3):before {
        background-size: 140%;
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/feature03-bg.png);
        background-position-x: -76px;
        background-position-y: -127px;
    }

    .feature-list dd:nth-of-type(4):before {
        background-size: 140%;
        background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/feature04-bg.png);
        background-position-x: -60px;
        background-position-y: -175px;
    }

    .feature-list dt svg {
        display: none;
    }
}

/*************************/
/*  ご利用の流れ */
/*************************/
.flow {
    margin: 0 calc(50% - 50vw);
    background-color: #f5f3ef;
    padding: 80px 0 40px;
}

.flow p {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.6;
}

ul.line-flow {
    list-style: none;
    padding: 0 5px;
    /* overflow-x: scroll; */
    display: flex;
    max-width: 980px;
}

ul.line-flow li {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    margin: 20px;
    border-radius: 10px;
    position: relative;
    width: 33%;
    min-width: 260px;
    background-color: #f5f5f5;
}

ul.line-flow img {
    max-width: 200px;
    display: block;
    margin: 0 auto;
}

.line-flow h3 {
    font-weight: bold;
    font-size: 2rem;
    line-height: 155%;
    padding: 26px 0 16px 0;
    margin: 0;
    text-align: center;
}

.line-flow figcaption {
    color: #3e3e3e;
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 0 auto;
}

.line-flow li:not(:last-child):before {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    box-sizing: border-box;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid #e3d1ca;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    top: 50%;
    right: -30px;
}

.line-flow li:last-child:before {
    width: 1em;
    height: 1em;
}

.line-flow figure {
    margin: 0;
}


/* for PC */
@media screen and (min-width:768px) {

    .flow p {
        padding: 40px 10px;
    }

    ul.line-flow {
        margin: 20px auto 80px;
    }

}

/* for SP */
@media screen and (max-width:767px) {
    .flow p {
        padding: 20px 10px;
    }

    ul.line-flow {
        margin: 20px auto 50px;
        overflow-x: scroll;
    }
}

/*************************/
/*  よくあるご質問 */
/*************************/
.faq {
    margin: 0 calc(50% - 50vw);
}

.faq-inner {
    margin: 80px 0;
}

.qa {
    max-width: 1216px;
    margin: 0 auto;
    border-bottom: 2px solid #d6dde3;
}

.qa summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    /* font-weight: 600; */
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

.qa summary::before,
.qa p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa summary::before {
    color: #2587c3;
    content: "Q";
}

.qa summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa[open] summary::after {
    transform: rotate(225deg);
}

.qa p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa[open] p {
    transform: none;
    opacity: 1;
}

.qa p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

/* for PC */
@media screen and (min-width:768px) {
    .faq {
        padding: 80px 0 40px;
    }

    .qa {
        font-size: 2rem;
    }

}

/* for SP */
@media screen and (max-width:767px) {
    .faq {
        padding: 60px 0 40px;
    }

    .qa {
        font-size: 1.8rem;
    }

}

/*************************/
/*  ワッシーズについて */
/*************************/

.about {
    margin: 0 calc(50% - 50vw);
    background-image: url(https://wine1227.itembox.design/item/img/special/consulting-room/about-bg.jpg);
    background-size: cover;
}

.about-inner {
    color: #ebebeb;
    max-width: 1216px;
    margin: 0 auto;
}

.about-wrap {
    max-width: 750px;
    margin: 0 0 0 auto;
}

.about h2.aboutwassys {
    margin: 0 0 30px;
}

.about-inner p {
    line-height: 1.6;
    margin-bottom: 2.8rem;
}

.about .btn a {
    font-weight: 500;
    text-align: center;
    display: block;
    position: relative;
    transition: 0.3s;
    background-color: #d1b900;
    color: #fff;
    max-width: 400px;
    width: 100%;
    padding: 18.5px 0;
    border-radius: 33px;
    border: 1px solid #fff;
}

.about .btn a:hover {
    text-decoration: none;
    opacity: 0.6;
    letter-spacing: 0.15em;
}

/* for PC */
@media screen and (min-width: 768px) {

    .about {
        background-attachment: fixed;
    }

    .about-inner {
        padding: 80px 0 60px;
    }

    .about h2.aboutwassys {
        font-size: 3rem;
    }

    .about-inner p {
        font-size: 1.8rem;
    }

    .about .btn a {
        font-size: 1.9rem;
    }
}

/* for SP */
@media screen and (max-width:767px) {
    .about {
        background-color: rgb(0 0 0 / 60%);
        background-blend-mode: overlay;
    }

    .about-inner {
        padding: 60px 16px;
    }

    .about-inner p {
        font-size: 1.5rem;
    }

    .about h2.aboutwassys {
        font-size: 1.9rem;
    }

    .about-inner p.btn {
        padding: 0 16px;
    }

    .about .btn a {
        font-size: 1.6rem;
    }
}