@charset "UTF-8";

/* 基本 */
main section {
    background-color: var(--bg-color-base);
}

/* お問い合わせ */
main section .contact_wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media screen and (max-width: 1024px) {
    main section .contact_wrapper {
        flex-direction: column;
    }
}

main section .contact_wrapper .title img {
    width: auto;
    height: 70px;
}

@media screen and (max-width: 768px) {
    main section .contact_wrapper .title img {
        margin: 0 auto;
    }
}

main section .contact_wrapper .title p {
    margin-top: 16px;
    font-size: 15px;
}

#case_study .contact_wrapper .title p {
    color: #FFFFFF;
}

main section .contact_wrapper .contact {
    flex-shrink: 0;
    display: flex;
    padding: 40px 48px;
    align-items: center;
    gap: 48px;
    background: #FFFFFF;
    border-radius: 40px;
}

@media screen and (max-width: 768px) {
    main section .contact_wrapper .contact {
        flex-direction: column;
        padding: 32px 0;
        width: 100%;
        max-width: 480px;
    }
}

main section .contact_wrapper .contact div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

main section .contact_wrapper .contact h3 {
    text-align: center;
    font-size: 16px;
}

main section .contact_wrapper .phone p {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

main section .contact_wrapper .phone p.tel {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.0;
}

main section .contact_wrapper a.phone {
    margin-left: 16px;
    color: var(--main-color-green);
    font-size: 32px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

main section .contact_wrapper .inquiry a.button {
    padding: 0 32px 0 20px;
    width: auto;
    height: 64px;
    font-size: 14px;
    border-radius: 32px;
}

main section .contact_wrapper .inquiry a.button::before {
    margin-right: 12px;
    width: 32px;
    height: 32px;
    background-image: url(../../images/shuramii/arrow_circle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}

/* トップ画像 */
main section.cover {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 180px;
    padding-bottom: 20vw;
    background-image: url(../../images/shuramii/bg_01.svg);
    background-position: center bottom -3px;
    background-repeat: no-repeat;
    background-size: contain;
}

main section.cover figure.point {
    position: absolute;
    top: 56vw;
    left: 5vw;
    width: 100%;
    max-width: 500px;
}

@media screen and (max-width: 768px) {
    main section.cover {
        padding-top: 120px;
        padding-bottom: 260px;
    }

    main section.cover figure.point {
        top: calc(120px + 110vw);
        left: calc((100% - clamp(425px, 0px + 100vw, 500px)) / 2);
    }

    main section.cover figure.point > img {
        height: clamp(106px, 30.2857px + 14.2857vw, 140px);
    }
}

@media screen and (max-width: 424px) {
    main section.cover figure.point {
        left: 0;
    }
}

/* しゅらみぃとは */
main section#about {
    background-color: var(--bg-color-beige);
    z-index: 10;
}

main section#about::before,
main section#about::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 30vw;
    height: 40vw;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}

@media screen and (max-width: 1024px) {
    main section#about::before,
    main section#about::after {
        width: 36vw;
        height: 48vw;
    }
}

@media screen and (max-width: 900px) {
    main section#about::before,
    main section#about::after {
        content: none;
    }
}

@media screen and (max-width: 768px) {
    main section#about::before,
    main section#about::after {
        content: none;
    }
}

main section#about::before {
    left: 0;
    background-image: url(../../images/shuramii/about_bg_01.png);
    background-position: left center;
}

main section#about::after {
    right: 0;
    background-image: url(../../images/shuramii/about_bg_02.png);
    background-position: right center;
}

main section#about > div{
    position: relative;
    z-index: 1;
}

main section#about figure > img {
    width: 100%;
    max-width: 654px;
}

@media screen and (max-width: 1024px) {
    main section#about figure > img.show_pc {
        display: none;
    }

    main section#about figure > img.show_sp {
        display: block;
        max-width: 500px;
    }
}

/* レンタルの流れ */
main section#rental_flow {
    padding-bottom: 20vw;
    background-color: var(--bg-color-beige);
    background-image: url(../../images/shuramii/bg_02.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}

@media screen and (max-width: 768px) {
    main section#rental_flow {
        padding-bottom: 120px;
    }
}

main section#rental_flow > div > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: var(--padding-base);
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
}

main section#rental_flow div > h2 {
    margin-bottom: 0;
    height: 45px;
}

main section#rental_flow div > h2 > img {
    width: 220px;
}

main section#rental_flow div > p {
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
}

main section#rental_flow div > p.after {
    margin: 0 auto;
    padding: 16px 40px;
    background-color: #FBF7F3;
    color: #2B8496;
    font-size: 22px;
    font-weight: bold;
    border-radius: var(--border-radius);
}

@media screen and (max-width: 768px) {
    main section#rental_flow div > p.after {
        padding: 16px 0;
        width: 100%;
        max-width: 360px;
        font-size: 16px;
    }
}

main section#rental_flow div > ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding: 32px 0;
}

@media screen and (max-width: 768px) {
    main section#rental_flow div > ul {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

main section#rental_flow div > ul > li {
    position: relative;
}

@media screen and (max-width: 768px) {
    main section#rental_flow div > ul > li {
        max-width: 360px;
    }
}

main section#rental_flow div > ul > li:after {
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
    width: 16px;
    height: 32px;
    background-image: url(../../images/shuramii/rental_flow_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: '';
}

@media screen and (max-width: 768px) {
    main section#rental_flow div > ul > li:after {
        content: none;
    }
}

main section#rental_flow div > ul > li:last-child:after {
    content: none;
}

/* こんなお悩みはありませんか？ */
main section#solution {
    position: relative;
    background-color: var(--bg-color-base);
}

main section#solution h2 {
    position: relative;
    margin-bottom: 108px;
}

@media screen and (max-width: 768px) {
    main section#solution h2 {
        margin-bottom: 50px;
    }
}

main section#solution h2 > img {
    margin: 0 auto;
    max-width: 650px;
}

@media screen and (max-width: 768px) {
    main section#solution h2 > img {
        width: 45%;
        min-width: 191px;
    }
}

main section#solution .solution-background > img:first-of-type {
    position: absolute;
    top: -40px;
    left: 0;
    width: auto;
    height: 356px;
}

@media screen and (max-width: 768px) {
    main section#solution .solution-background > img:first-of-type {
        top: -155px;
        height: 170px;
    }
}

main section#solution .solution-background > img:last-of-type {
    position: absolute;
    top: -200px;
    right: 0;
    width: auto;
    height: 335px;
}

@media screen and (max-width: 768px) {
    main section#solution .solution-background > img:last-of-type {
        top: -90px;
        height: 150px;
    }
}

main section#solution ul {
    display: grid;
    grid-template-columns: auto;
    gap: 80px;
}

main section#solution li {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: auto auto;
    gap: 48px;
}

@media screen and (max-width: 768px) {
    main section#solution li {
        grid-template-columns: 46% 54%;
        gap: 0;
    }

    main section#solution li > div {
        position: relative;
        padding-top: 76px;
    }
}

main section#solution li h3 {
    position: relative;
    margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
    main section#solution li h3 {
        position: absolute;
        top: -40px;
        left: 0;
        display: flex;
        align-items: flex-end;
    }
}

main section#solution li h3 > img {
    width: auto;
    height: 60px;
}

@media screen and (max-width: 768px) {
    main section#solution li h3 > img {
        height: clamp(28px, -12.084px + 7.563vw, 46px);
    }
}

main section#solution li h3:before {
    display: block;
    margin-bottom: 16px;
    width: 180px;
    height: 160px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 120px;
    content: '';
}

@media screen and (max-width: 768px) {
    main section#solution li h3:before {
        margin-bottom: 0;
        width: clamp(100px, -11.3445px + 21.0084vw, 150px);
        height: clamp(64px, -16.1681px + 15.1261vw, 100px);
        background-size: auto clamp(64px, -16.1681px + 15.1261vw, 100px);
    }
}

main section#solution li h3:after {
    position: absolute;
    left: 172px;
    bottom: 100px;
    content: '';
}

@media screen and (max-width: 768px) {
    main section#solution li h3:after {
        content: none;
    }
}

main section#solution li p {
    font-size: 28px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    main section#solution li p {
        font-size: clamp(15px, -13.9496px + 5.4622vw, 28px);
    }
}

main section#solution li:nth-child(3) h3 > img {
    height: 24px;
}

@media screen and (max-width: 768px) {
    main section#solution li:nth-child(3) h3 > img {
        height: clamp(28px, -12.084px + 7.563vw, 46px);
    }
}

main section#solution li:nth-child(1) h3:before {
    background-image: url(../../images/shuramii/solution_01.svg);
}

main section#solution li:nth-child(2) h3:before {
    background-image: url(../../images/shuramii/solution_02.svg);
}

main section#solution li:nth-child(3) h3:before {
    background-image: url(../../images/shuramii/solution_03.svg);
}

main section#solution li:nth-child(1) h3:after {
    left: 140px;
    width: 42px;
    height: 143px;
    background-image: url(../../images/shuramii/solution_01_text01.svg);
}

main section#solution li:nth-child(2) h3:after {
    width: 40px;
    height: 145px;
    background-image: url(../../images/shuramii/solution_02_text01.svg);
}

main section#solution li:nth-child(3) h3:after {
    bottom: 64px;
    width: 48px;
    height: 194px;
    background-image: url(../../images/shuramii/solution_03_text01.svg);
}

main section#solution li:nth-child(1) p {
    color: #03A14C;
}

main section#solution li:nth-child(2) p {
    color: #2B8496;
}

main section#solution li:nth-child(3) p {
    color: #E84D2A;
}

main section#solution figure > img {
    position: relative;
    max-width: 540px;
    z-index: 1;
}

main section#solution li figure {
    position: relative;
}

@media screen and (max-width: 768px) {
    main section#solution li figure {
        margin-top: 60px;
    }
}

main section#solution li figure::after {
    position: absolute;
    z-index: 0;
    height: 80%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: '';
}

main section#solution li:nth-child(1) figure::after {
    top: -80px;
    left: -75px;
    width: 70%;
    background-image: url(../../images/shuramii/solution_01_bg.png);
}

@media screen and (max-width: 768px) {
    main section#solution li:nth-child(1) figure::after {
        top: -30px;
        left: -37px;
        width: 70%;
    }
}

main section#solution li:nth-child(2) figure::after {
    top: -100px;
    right: -50px;
    width: 55%;
    background-image: url(../../images/shuramii/solution_02_bg.png);
}

@media screen and (max-width: 768px) {
    main section#solution li:nth-child(2) figure::after {
        top: -40px;
        right: -20px;
    }
}

main section#solution li:nth-child(3) figure::after {
    bottom: -35px;
    right: -50px;
    width: 36%;
    background-image: url(../../images/shuramii/solution_03_bg.png);
}

@media screen and (max-width: 768px) {
    main section#solution li:nth-child(3) figure::after {
        bottom: -35px;
        right: -15px;
        width: 36%;
    }
}

/* 事例 */
main section#case_study {
    padding-bottom: 25vw;
    background-color: var(--main-color-green);
    background-image: url(../../images/shuramii/bg_03.svg),
                      url(../../images/shuramii/bg_04.svg);
    background-repeat: no-repeat;
    background-position: center -1px, center bottom -1px;
    background-size: 101%;
}

main section#case_study .movie {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-top: 10%;
    padding-bottom: 10%;
}

main section#case_study .movie figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
}

@media screen and (max-width: 768px) {
    main section#case_study .movie figure {
        left: 16px;
    }
}

main section#case_study .movie div {
    display: flex;
    width: 64%;
    padding: 64px 72px;
    align-items: center;
    gap: 16px;
    border-radius: 0 40px 40px 0;
    background: #FFFFFF;
}

@media screen and (max-width: 768px) {
    main section#case_study .movie div {
        padding: clamp(20px, -24.5378px + 8.4034vw, 40px) 40px;
        border-radius: 0 20px 20px 0;
    }
}

@media screen and (max-width: 424px) {
    main section#case_study .movie div {
        padding-left: 30px;
        padding-right: 0;
    }
}

main section#case_study .movie div a {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 96px;
    min-height: 72px;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    main section#case_study .movie div a {
        padding-left: clamp(50px, -52.437px + 19.3277vw, 96px);
        font-size: clamp(11px, -0.1345px + 2.1008vw, 16px);
        min-height: fit-content;
    }
}

@media screen and (max-width: 424px) {
    main section#case_study .movie div a {
        padding-left: 46px;
    }
}

main section#case_study .movie div a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    background-image: url(../../images/shuramii/movie_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}

@media screen and (max-width: 768px) {
    main section#case_study .movie div a:before {
        width: clamp(36px, -44.1681px + 15.1261vw, 72px);
        height: clamp(36px, -44.1681px + 15.1261vw, 72px);
    }
}

main section#case_study .movie div a span {
    color: #E84D2A;
    font-size: 32px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    main section#case_study .movie div a span {
        font-size: clamp(16px, -19.6303px + 6.7227vw, 32px);
    }
}

main section#case_study .sample {
    display: flex;
    align-items: flex-end;
    gap: 56px;
    align-self: stretch;
}

@media screen and (max-width: 768px) {
    main section#case_study .sample {
        flex-direction: column;
        gap: 32px;
    }
}

main section#case_study .sample > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

@media screen and (max-width: 768px) {
    main section#case_study .sample > div {
        flex-direction: row;
        gap: 16px;
    }

    main section#case_study .sample > div:first-child {
        flex-direction: column;
        gap: 24px;
    }
}

main section#case_study .sample > div > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 24px;
    align-self: stretch;
}

main section#case_study .sample > div:first-child > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

@media screen and (max-width: 768px) {
    main section#case_study .sample > div > div {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 20px;
    }
}

main section#case_study .sample figure + div h3 {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    main section#case_study .sample figure + div h3 {
        font-size: 20px;
    }
}

main section#case_study .sample figure + div p {
    color: #FFFFFF;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    main section#case_study .sample figure + div p {
        font-size: 12px;
    }
}

main section#case_study .sample > div:first-child h3 {
    font-size: 48px;
}

@media screen and (max-width: 768px) {
    main section#case_study .sample > div:first-child h3 {
        font-size: 24px;
    }
}

main section#case_study .sample > div:first-child p {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    main section#case_study .sample > div:first-child p {
        font-size: 12px;
    }
}

main section#case_study .instagram > div {
    display: grid;
    gap: 32px;
    padding: 40px;
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
}

@media screen and (max-width: 768px) {
    main section#case_study .instagram > div {
        padding: 24px;
    }
}

main section#case_study .instagram h2 img {
    height: 36px;
}

main section#case_study .instagram p {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}

main section#case_study .instagram ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media screen and (max-width: 768px) {
    main section#case_study .instagram ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

main section#case_study .instagram ul img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

/* よくあるご質問 */
main section#faq > div > div {
    padding: 80px;
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
}

@media screen and (max-width: 768px) {
    main section#faq > div > div {
        padding: 54px 24px;
    }
}

main section#faq h2 {
    margin-bottom: 40px;
    height: 68px;
    text-align: left;
}

@media screen and (max-width: 768px) {
    main section#faq h2 {
        height: 32px;
    }
}

main section#faq h2 > img {
    width: auto;
    height: 48px;
}

@media screen and (max-width: 768px) {
    main section#faq h2 > img {
        height: 32px;
    }
}

main section#faq ul {
    list-style: none;
}

main section#faq ul h3 {
    position: relative;
    margin-bottom: 24px;
    padding-left: 32px;
    color: #757B75;
    font-size: 16px;
}

main section#faq ul h3:before {
    position: absolute;
    top: -6px;
    left: 0;
    width: 40px;
    color: #489D68;
    font-size: 24px;
    content: 'Q.';
}

main section#faq ul p {
    position: relative;
    margin-bottom: 48px;
    padding-left: 40px;
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    main section#faq ul p {
        padding-left: 32px;
        font-size: 16px;
    }
}

main section#faq ul p:before {
    position: absolute;
    top: -10px;
    left: 0;
    width: 32px;
    color: #E84D2A;
    font-size: 32px;
    content: 'A.';
}

@media screen and (max-width: 768px) {
    main section#faq ul p:before {
        font-size: 24px;
    }
}

main section#faq ul li:last-child p {
    margin-bottom: 0;
}

/* 一番下のお問い合わせ */
main section#contact {
    padding-bottom: 50px;
}
