@charset "UTF-8";

/* ======================
common
======================= */

:root {
    --black: #2D2D2D;
    --orange: #F5AF0F;
    --green: #2AB9B1;
    --pink: #EA719E;
    --white: #FFFDF8;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 
        "Noto Sans JP", 
        "Lilita One",        
        sans-serif;
    font-style: normal;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 40px 0;
}

.topic {
    font-family: "Lilita One";
    font-size: 4.8rem;
    line-height: 1;
    -webkit-text-stroke: 1px var(--black);
    color: white; 
    text-transform: uppercase;
    width: fit-content;
    margin: 0 auto;
}

.wrapper {
    width: 91%;
    margin: 0 auto;
}

.instagram {
    width: 29px;
    z-index: 20;
}

.content {
    background-color: var(--white);
    border-radius: 30px;
    padding: 40px 4.6%;
}

/* ======================
header
======================= */
.pc__center {
    background-image: url(../images/background-yellow.webp);
    background-size: 74px;
    background-repeat: repeat;
}

.header {
    position: fixed;
    padding: 5px 0;
    background-color: var(--white);
    width: 100%;
    height: 80px;
    z-index: 100;
    top: 0;
    left: 0;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header__logo {
    width: 70px;
    z-index: 3;
}

.onlineShop__btn {
    display: block;
    width: 130px; 
    height: 37px;
    background-image: url("../images/onlineShop-btn.svg");
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
}

.onlineShop__btn::after {
    content: "";
    width: 130px; 
    height: 37px;
    position: absolute;
    background-image: url("../images/onlineShop-btn-pink.svg");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s;
}

.onlineShop__btn:hover::after {
  opacity: 1;
}

.nav.active {
    transform: translateX(0);
}

/* nav初期表示 */
.nav {
    background-image: url(../images/background-yellow.webp);
    background-size: 74px;
    width: 100%;
    height: 100vh;
    padding: 5px 5.3%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    transform: translateX(-100%);
    transition: 0.4s;
    z-index: 2;
}

/* ハンバーガーメニュー */
.header__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 24px;
    top: 0;
    right: 0;
    z-index: 2;
    margin-left: 16px;
}

.btn__menu,
.btn__menu::before, 
.btn__menu::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--black);
    position: absolute;
}

.btn__menu::before {
    top: 9px;
}

.btn__menu::after {
    bottom: 9px;
}

/* クローズ */
.btn__menu,
.btn__menu::before, 
.btn__menu::after {
    transition: 0.3s;
}

/* active時 */
.header__btn.active .btn__menu {
    background-color: transparent;
}

.header__btn.active .btn__menu::before {
    top: 0;
    transform: rotate(45deg);
}

.header__btn.active .btn__menu::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.nav.active {
    transform: translateX(0);
}

.nav__list {
    padding: 50px 16.8%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav__item {
    font-family: "Lilita One";
    font-size: 2.4rem;
    line-height: 1;
    -webkit-text-stroke: 1px var(--black);
    color: white; 
    text-align: center;
    text-transform: uppercase;
    margin-top: 42px;
}

.nav__item:hover {
    color: var(--pink);

}

.slider,
.section--about:last-of-type,
.section--order:last-of-type,
.section--gallery:last-of-type,
.section--faq:last-of-type {
    margin-top: 80px;
}

.slider {
    visibility: hidden;
    overflow: hidden;
}

.slider.slick-initialized {
    visibility: visible;
}

/* ======================
about
======================= */

.section--about {
    padding: 30px 0;
}

.about {
    border: solid 5px var(--pink);
}

.about__topic {
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.1em;
    text-align: center;
    position: relative;
}

.duck {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 24px;
}

.yurayura {
    width: 165px;
    transform-origin: center bottom;
    animation: yurayura 1.5s linear infinite;
}

@keyframes yurayura {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

.about__txt {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 126px;
}

/* こだわり */

.feature {
    overflow-x: hidden;
}

.feature__topic {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    margin-top: 42px;
}

.feature__white {
    font-family: "Lilita One";
    font-size: 2.4rem;
    -webkit-text-stroke: 1px var(--black);
    color: white; 
    text-align: center;
    margin: 0 4px;
}

.feature__img img {
    border-radius: 50%;
    border: solid 5px var(--white);
    margin-top: 24px;
    position: relative;
}

.feature__img {
    position: relative;
    width: 81%;
    margin: 0 auto;
}

.feature__img::before {
    content: '';
    display: block;
    margin: 0 calc(50% - 50vw) 0;
    width: 100vw;
    height: 100%;
    background-image: url(../images/feature-rainbow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.feature__list {
    text-align: center;
    margin-top: 22px;
}

.feature__item {
    margin: 15px 0 0 35px;
}

.feature__title {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0 auto;
    position: relative;
}

.feature__title::before {
    content: '';
    display: block;
    width: 25px;
    height: 18px;
    background-image: url(../images/feature-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: -35px;
    bottom: 0px;
}

.feature__btn {
    font-family: "Lilita One";
    font-size: 2rem;
    -webkit-text-stroke: 1px var(--black);
    color: var(--orange); 
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    width: 175px;
    background-color: var(--white);
    border-radius: 30px;
    padding: 11px 50px 11px 40px;
    position: relative;
    margin: 34px auto 0;
    border: solid 3px var(--pink);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    transition: 0.4s;
    margin-bottom: 10px;
}

.feature__btn::before {
    display: block;
    content: '';
    width: 13px;
    height: 16px;
    background-image:  url(../images/feature-btn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    transition: 0.4s;
}

.feature__btn:hover {
    color: var(--white);
    background-color: var(--pink);
    border: solid 3px var(--white);
}

.feature__btn::after {
    content: '';
    width: 13px;
    height: 16px;
    background-image:  url(../images/btn-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature__btn:hover::after {
    opacity: 1;
}

/* ======================
order
======================= */
.section--order {
    background-color: #2AB9B1;
    position: relative;
}

.section--order::before {
    content: '';
    width: 12px;
    height: 100%;
    background-image: url(../images/dot-left.svg);
    background-size: contain;
    background-repeat: repeat-y;
    background-position: cover;
    position: absolute;
    top: 0px;
    left: 2px;
}

.section--order::after {
    content: '';
    width: 12px;
    height: 100%;
    background-image: url(../images/dot-right.svg);
    background-size: contain;
    background-repeat: repeat-y;
    background-position: contain;
    position: absolute;
    top: 0px;
    right: 2px;
}

.topic__order {
    position: relative;
    z-index: 0;
}

.topic__order::before {
    content: '';
    width: 100px;
    height: 69px;
    background-image: url(../images/order-flag.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -35px;
    left: -90px;
}

.topic__order::after {
    content: '';
    width: 80px;
    height: 80px;
    background-image: url(../images/order-cookie.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -13px;
    right: -60px;
    z-index: -1;
}

.order__title::before {
    content: '';
    width: 20px;
    height: 15px;
    background-image: url(../images/order-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 5px;
    left: -28px;
}

.order__title {
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
    margin-left: 29px;
}

.order__topic::after {
  content: '';
  display: block;
  width: 124px;
  height: 3px;
  background: var(--orange);
  position: absolute;
  left: -28px;
}

.content__order {
    border: solid 5px var(--orange);
    margin-top: 30px;
    font-size: 1.4rem;
    line-height: 1.8;
}

.order__item {
    margin-top: 55px;
}

.order__txt--full {
    position: relative;
}

.order__txt--full::before {
    content: '';
    width: 174px;
    height: 98px;
    background-image: url(../images/order-dog.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -90px;
    right: -20px;
    z-index: 10;
}

.order__txt--full,
.order__txt--semi {
    margin-top: 10px;

}

.order__title {
    z-index: 20;
}

.order__title:last-of-type {
    margin-top: 32px;
}

.order__txt--semi {
    position: relative;
    z-index: 20;
}

.order__txt--semi::before {
    content: '';
    width: 125px;
    height: 125px;
    background-image: url(../images/order-bouquet.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    transform: rotate(-11deg);
    bottom: -5px;
    right: -25px;
    z-index: -10;
}

.contact__form,
.onlineShop,
.faq__link {
    color: #3771C8;
    font-weight: 500;
    border-bottom: 1px solid #3771C8;
}

.order__btn {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.1em;
    background-color: var(--green); 
    display: block;
    width: 250px;
    border-radius: 30px;
    padding: 10px 55px 10px 45px;
    text-align: center;
    position: relative;
    margin: 34px auto 0;
    border: solid 3px var(--orange);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    transition: 0.4s;
}

.order__btn::before {
    display: block;
    content: '';
    width: 13px;
    height: 16px;
    background-image:  url(../images/order-btn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    transition: 0.4s;
}

.order__btn:hover {
    background-color: var(--orange);
    border: solid 3px var(--green);
}

.order__btn::after {
    content: '';
    width: 13px;
    height: 16px;
    background-image:  url(../images/order-btn-hover.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.order__btn:hover::after {
    opacity: 1;
}

/* ======================
gallery
======================= */
.section--gallery {
    background-color: #F99DBF;
    background-image: url(../images/background-gallery.webp);
    background-size: 98px;
    background-repeat: repeat;
}

.content__gallery {
    border: solid 5px var(--green);
    margin-top: 30px;
    position: relative;
}

.content__gallery::before {
    content: '';
    width: 72px;
    height: 76px;
    background-image: url(../images/gallery-smail.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    transform: rotate(-11deg);
    top: -54px;
    left: 0;
}

.gallery__txt {
    font-size: 1.4rem;
    line-height: 1.8;
}

.gallery__img--top {
    margin-top: 10px;
}

.gallery__btn {
    font-family: "Lilita One";
    font-size: 2rem;
    -webkit-text-stroke: 1px var(--black);
    color: var(--white); 
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    width: 175px;
    background-color: #F99DBF;
    border-radius: 30px;
    padding: 11px 50px 11px 40px;
    text-align: center;
    position: relative;
    margin: 0 auto;
    border: solid 3px var(--green);
    margin-top: 10px;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    transition: 0.4s;
}

.gallery__btn::before {
    display: block;
    content: '';
    width: 13px;
    height: 16px;
    background-image:  url(../images/btn-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    transition: 0.4s;
}

.gallery__btn:hover {
    color: var(--white);
    background-color: var(--green);
    border: solid 3px #F99DBF;
}

/* ======================
contact
======================= */

.topic__contact {
    position: relative;
    z-index: 0;
}

.topic__contact::before {
    content: '';
    width: 66px;
    height: 53px;
    background-image: url(../images/contact-letter.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -10px;
    left: -53px;
    z-index: -1;
    transform: rotate(12deg);
}

.content__contact {
    position: relative;
}

.content__contact::before {
    content: '';
    width: 90px;
    height: 72px;
    background-image: url(../images/contact-butterfly.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -44px;
    right: 5px;
    transform: rotate(-16deg);
}

.content__contact::after {
    content: '';
    width: 120px;
    height: 105px;
    background-image: url(../images/contact-bag.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 50px;
    right: 29px;
    z-index: 10;
}

.content__contact {
    background-color: var(--white);
    border-radius: 30px;
    border: solid 5px var(--pink);
    padding: 40px 4.6% 50px;
    margin-top: 30px;
    font-size: 1.4rem;
    line-height: 2;
}

.contact__instagram {
    margin-top: 24px;
}

.instagram__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    gap: 16px;
    margin: 28px 0 0 10%;
}

.instagram__txt {
    font-size: 1.6rem;
    line-height: 1;
    z-index: 20;
}

.pc__left,
.pc__right {
    display: none;
}

/* ======================
footer
======================= */
.footer {
    background-color: var(--white);
    background-image: url(../images/footer.webp);
    background-size: 400px;
    background-position: bottom 150px right 0px;
    background-repeat: no-repeat;
    padding: 40px 0 0;
}

.footer__logo {
    width: 80px;
    margin: 0 auto;
}

.footerNav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copy {
    background-color: var(--white);
    font-size: 1.2rem;
    line-height: 1;
    padding: 15px 0;
    text-align: center;
    margin-top: 40px;
}

@media screen and (min-width: 499px){

    .wrapper,
    .feature__img {
        max-width: 420px;
    }

    .feature__txtBox {
        max-width: 380px;
    }

    .section--order::before {
    left: 5%;
    }

    .section--order::after {
        right: 5%;
    }


}

@media screen and (min-width: 1000px) {

    .pc__left,
    .pc__right {
        display: block;
    }

    .header {
        display: none;
    }

    .main {
        display: flex;
    }

    .pc__left {
        background-image: url(../images/pc-left.webp);
        background-size: cover;
        flex: 1;
        width: 50%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
    }

    .pc__center {
        margin: 40px 0;
        background-color: var(--white);
        width: 420px;
        overflow-y: scroll;
        z-index: 100;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        border: solid 5px #FAC533;
        border-radius: 30px;
        -ms-overflow-style: none;
        /* overflow-style: none; */
        scrollbar-width: none;
    }

    .pc__center:-webkit-scrollbar {
        display: none;
    }

    .pc__right {
        background-image: url(../images/pc-right.webp);
        background-size: cover;
        flex: 1;
        width: 50%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
    }

    .menu__pc {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        right: 40%;
        text-align: center;
    }

    .logo__pc {
        width: 280px;
    }

    .logo__pc:hover {
        filter: drop-shadow(0px 0px 10px rgba(234, 113, 158, 0.9));
    }

    .onlineShop__btn--pc {
        display: block;
        width: 239px; 
        height: 68px;
        background-image: url("../images/onlineShop-btn.svg");
        background-size: contain;
        background-repeat: no-repeat;
        filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
        margin: 30px auto 0;
    }

    .onlineShop__btn--pc::after {
        content: "";
        width: 239px; 
        height: 68px;
        position: absolute;
        background-image: url("../images/onlineShop-btn-pink.svg");
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0;
        inset: 0;
        transition: opacity 0.3s;
    }

    .onlineShop__btn--pc:hover::after {
    opacity: 1;
    }

    .nav__pc {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        left: 45%;
    }

    .nav__item--pc {
        font-size: 2.8rem;
    }

    .nav__list--pc {
        background-image: url(../images/background-yellow.webp);
        background-size: 74px;
        background-repeat: repeat;
        padding: 40px 50px;
        border-radius: 30px;
    }

    .nav__item--pc {
        margin-top: 32px;
    }

    .nav__item--pc:first-of-type {
        margin-top: 0;
    }

    .logo__pc,
    .onlineShop__btn--pc,
    .nav__pc {
        filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.25));
    }

    .slider,
    .section--about:last-of-type,
    .section--order:last-of-type,
    .section--gallery:last-of-type,
    .section--faq:last-of-type {
        margin-top: 0;
    }

    .section--order::before {
    left: 3px;
    }

    .section--order::after {
        right: 3px;
    }
}

/* ======================
about
======================= */
.about__content {
    margin: 30px auto 50px;
    width: 90%;
}

.topic__about {
    position: relative;
}

.topic__about::before {
    content: '';
    width: 80px;
    height: 75px;
    background-image: url(../images/about-cornet.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -13px;
    left: -90px;
    transform: rotate(-10deg);
}

.topic__about::after {
    content: '';
    width: 50px;
    height: 49px;
    background-image: url(../images/about-duck2.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0px;
    right: -70px;
}

.about__item {
    font-size: 1.4rem;
    line-height: 1.8;
}

.about__item:last-of-type {
    margin-top: 18px;
}

.feature__img-2,
.feature__img-3 {
    margin-top: 8px;
}

.feature__txt {
    font-size: 1.4rem;
    line-height: 1.8;
}

.feature__txtBox {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 15px auto 0;
  width: 82%;
}

.feature__img-1::before {
    background-image: url(../images/rainbow-1.png);
}

.feature__img-2::before {
    background-image: url(../images/rainbow-2.png);
}

/* ======================
order
======================= */

.order__heading {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8;
    margin-left: 16px;
}

.heading__underline {
    border-bottom: 3px solid var(--orange);
}    

.order__img {
    margin-top: 32px;
}

.order__txtBox {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order__flow {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 50px;
    text-align: center;
}

.flow__title {
    font-size: 1.4rem;
}

.contact__btn {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--white);
    background-color: var(--green); 
    text-align: center;
    display: block;
    width: 280px;
    border-radius: 30px;
    padding: 10px 10px 10px 0;
    position: relative;
    transition: 0.4s;
    border: solid 3px var(--orange);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    margin: 30px auto 0;
}

.contact__btn::before {
    display: block;
    content: '';
    width: 13px;
    height: 16px;
    background-image:  url(../images/order-btn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.contact__btn:hover {
    background-color: var(--orange);
    border: solid 3px var(--green);
}

.contact__btn::after {
    content: '';
    width: 13px;
    height: 16px;
    background-image:  url(../images/order-btn-hover.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact__btn:hover::after {
    opacity: 1;
}

.flow__numbers--1 {
    width: 23px;
    transform: rotate(-6deg);
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
}

.flow__numbers--2 {
    width: 40px;
    transform: rotate(4deg);
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
}

.flow__numbers--3 {
    width: 37px;
    transform: rotate(-9deg);
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
}

.flow__numbers--4 {
    width: 46px;
    transform: rotate(6deg);
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
}

.flow__topic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.flow__item {
    padding: 15px 7%;
    border-radius: 20px;
    margin: 20px auto 0;
    width: 95%;
}

.flow__txt {
    margin-top: 15px;
}

.flow__item:nth-child(1) {
    border: solid 5px #FFAA6D;
}

.flow__item:nth-child(2) {
    border: solid 5px #84D9C4;
}

.flow__item:nth-child(3) {
    border: solid 5px #FF9DA3;
}

.flow__item:nth-child(4) {
    border: solid 5px #CA7EDF;
}

/* ======================
gallery
======================= */

.gallery__txtBox {
    font-size: 1.4rem;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 40px auto 0;
}

/* ======================
Q&A
======================= */
.topic__faq {
    position: relative;
}

.topic__faq::before {
    content: "";
    width: 70px;
    height: 78px;
    background-image: url(../images/faq-gingerman.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -13px;
    left: -102px;
    transform: rotate(-38deg);
}

.topic__faq::after {
    content: '';
    width: 78px;
    height: 78px;
    background-image: url(../images/faq-question.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -13px;
    right: -102px;
    transform: rotate(4deg);
}

.section--faq {
    background-image: url(../images/background-yellow.webp);
    background-size: 74px;
    background-repeat: repeat;
}

.content__faq {
    margin-top: 30px;
}

.faq__title {
    position: relative;
    font-size: 2rem;
    line-height: 2;
    margin: 40px 0 0 16px;
    position: relative;
    padding-left: 8px;
}

.faq__title--pink::after {
    content: '';
    width: 100%;
    height: 5px;
    background-color: var(--pink);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 0px;
    left: -8px;
}

.faq__title--green::after {
    content: '';
    width: 100%;
    height: 5px;
    background-color: var(--green);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 0px;
    left: -8px;
}

.faq__item {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 30px 4.6% 30px 4.8%;
    margin-top: 30px;
}

.faq__item--pink {
    border: solid 5px var(--pink);
}

.faq__item--green {
    border: solid 5px var(--green);
}

.faq__question,
.faq__answer {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    position: relative;
}

.faq__question {
    padding: 0 40px;
    cursor: pointer;
}

.faq__question.open {
    display: block;
}

.faq__answer {
    margin-top: 20px;
    padding-left: 40px;
    display: none;
}

.faq__question--pink::before {
    content: '';
    background-image: url(../images/faq-q-pink.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0%;
    left: 0px;
}

.faq__question--pink::after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(../images/faq-arrow-pink.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0px;
    right: 0px;
    transition: transform 0.3s;
}

.faq__question.active::after {
    transform: rotate(180deg);
}

.faq__answer--pink::before {
    content: "";
    background-image: url(../images/faq-a-pink.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0%;
    left: 0px;
}
.faq__question--green::before {
    content: '';
    background-image: url(../images/faq-q-green.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0%;
    left: 0px;
}

.faq__question--green::after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(../images/faq-arrow-green.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0px;
    right: 0px;
    transition: transform 0.3s;
}

.faq__answer--green::before {
    content: "";
    background-image: url(../images/faq-a-green.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0%;
    left: 0px;
}

/* ======================
fadeIn
======================= */
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}