@charset "UTF-8";

@font-face {
    font-family: 'craftmincho';
    src: url(/wp-content/themes/jetpress/font/craftmincho.otf);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

body {
    background-image: none;
}
.flex-box {
    display: flex;
    box-sizing: border-box;
}
.swiper-wrapper {
    transition-timing-function: linear !important;
}
.swiper-slide {
    width: 600px !important; /* スライド1枚の幅を固定する場合 */
    height: auto;
  }
.swiper-slide img {
    max-width: 100%;
    height: auto;
    display: block;
}

.main-wrap.home {
    h2 {
        font-family: 'craftmincho',sans-serif;
        font-weight: bold;
        font-size: 3em;
    }
    h3 {
        font-weight: bold;
        font-size: 1.8em;
    }
    img {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }
    .hero {
        margin: 0 auto 60px;
        position: relative;
        @media screen and (max-width:782px) {
            margin: 0 auto -44px;
        }

        .spinning-txt {
            position: absolute;
            top: 80px;
            left: 80px;
            animation: spin 20s linear infinite;

            @media screen and (max-width:1400px) {
                width: 120px;
                top: 40px;
                left: 40px;
            }

            @media screen and (max-width:782px) {
                width: 90px;
                top: 20px;
                left: 20px;
            }
        }
        .catch-copy {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            color: #fff;
            text-align: center;
            font-family: "游明朝", YuMincho, serif;
            font-weight: bold;
            white-space: nowrap;

            @media screen and (max-width:782px) {
                width: 80%;
                max-width: 500px;
            }

            .catch-copy-img{
                @media screen and (max-width:1400px) {
                    max-width: 400px;
                }

                @media screen and (max-width:782px) {
                    width: 300px;
                }
            }
            .copy {
                margin-top: 1.2em;
                font-size: 2.5em;
                letter-spacing: 12px;

                @media screen and (max-width:1400px) {
                    margin-top: .5em;
                    font-size: 2.2em;
                }
                @media screen and (max-width:782px) {
                    font-size: 1.2em;
                    letter-spacing: 6px;
                }
                
            }
            .sub-copy {
                position: relative;
                margin-top: 0.6em;
                font-size: 1.5em;
                margin: 0 auto;
                width: fit-content;
                @media screen and (max-width:782px) {
                    font-size: .85em;
                }
                &::before,&::after {
                    content:"";
                    position: absolute;
                    top: 50%;
                    width: 40px;
                    height: 2px;
                    background-color: #fff;
                    transform: translateY(-50%);

                    @media screen and (max-width:782px) {
                        width: 15px;
                        height: 1px;
                    }
                }
                &::before {
                    left: -45px;
                    @media screen and (max-width:782px) {
                        left: -18px;
                    }
                }
                &::after {
                    right: -45px;
                    @media screen and (max-width:782px) {
                        right: -18px;
                    }
                }
            }
        }
    }
    .news {
        position: relative;
        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 0;
            @media screen and (max-width:782px) {
                padding: 80px 20px 40px;
            }

            .flex-box {
                align-items: center;

                @media screen and (max-width:782px) {
                    flex-direction: column;
                    align-items: unset;
                }

                .heading {
                    flex: 1;
                    text-align: center;

                    @media screen and (max-width:782px) {
                        display: contents;
                    }

                    h2 {
                        font-family: 'craftmincho',sans-serif;
                        font-weight: bold;
                        font-size: 2.5em;  
                        margin-bottom: 1.5em;
                        position: relative;

                        @media screen and (max-width:782px) {
                            order: 1;
                            margin-bottom: 1em;
                            font-size: 2em;
                        }

                        &::after {
                            content: "";
                            border: solid 4px #000;
                            position: absolute;
                            left: 50%;
                            bottom: -20px;
                            width: 1.6em;
                            height: 0px;
                            transform: translateX(-50%);
                        }
                    }
                    a {
                        padding: 0.8em 5em;
                        background-color: #C3CB3F;
                        border-radius: 100px;
                        position: relative;
                        font-weight: bold;
                        color: #fff;

                        @media screen and (max-width:782px) {
                            margin: 1.5em auto 0;
                            order: 3;
                            width: 280px;
                        }

                        &:after {
                            content: "";
                            position: absolute;
                            right: 30px;
                            top: 50%;
                            transform: translateY(-50%);
                            background-image: url('https://koukakuen.jp/wp-content/themes/jetpress/images/right-arrow.png');
                            width: 25px;
                            height: 25px;
                            background-position: center;
                            background-size: contain;
                            background-repeat: no-repeat;
                            
                        }
                        &:hover {
                            background-color: #fff;
                            color: #C3CB3F;
                            border: solid 2px #C3CB3F;
                        }
                        &:hover::after {
                            content: "";
                            position: absolute;
                            right: 30px;
                            top: 50%;
                            transform: translateY(-50%);
                            background-image: url('https://koukakuen.jp/wp-content/themes/jetpress/images/right-arrow_g.png');
                            width: 25px;
                            height: 25px;
                            background-position: center;
                            background-size: contain;
                            background-repeat: no-repeat;
                        }
                    }
                }
                .latest-news-list {
                    flex: 1;

                    @media screen and (max-width:782px) {
                        margin-top: .5em;
                        order: 2;
                    }

                    li {
                        a {
                            position: relative;
                            display: flex;
                            gap: 1em;
                            justify-content: flex-start;
                            margin: 0.5em;
                            padding: 0.5em;
                            color: #000;
                            border-bottom: solid 2px #ddd;

                            @media screen and (max-width:782px) {
                                margin: 0;
                            }

                            &::after {
                                position: absolute;
                                content: " ";
                                display: block;
                                border-bottom: solid 2px #649E41;
                                bottom: -2px;
                                left: 0;
                                width: 20%;
                            }

                            span{
                                transition: all .3s;
                            }
                            h3 {
                                font-size: 1em;
                                font-weight: normal;
                                transition: all .3s;
                            }

                            &:hover{
                                span,h3{
                                    color: #649E41;
                                }
                            }
                        }

                    }
                    
                }
            }

        }
        .right-branch {
            position: absolute;
            right: 0;
            top: -380px;

            @media screen and (max-width:1400px) {
                width: 250px;
                top: -240px;
            }
            @media screen and (max-width:782px) {
                width: 120px;
                top: -40px;
            }
        }
    }
    .instagram {
        position: relative;

        
        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 0;
            @media screen and (max-width:782px) {
                padding: 60px 20px;
            }

            h2 {
                font-family: 'craftmincho',sans-serif;
                font-weight: bold;
                font-size: 2.5em;
                margin-bottom: 1.5em;
                text-align: center;
                position: relative;

                @media screen and (max-width:782px) {
                    font-size: 2em;
                }

                &::after {
                    content: "";
                    border: solid 4px #000;
                    position: absolute;
                    left: 50%;
                    bottom: -20px;
                    width: 1.6em;
                    height: 0px;
                    transform: translateX(-50%);
                }
            }
        }
        .left-branch {
            position: absolute;
            left: 0;
            top: -160px;
            z-index: -1;

            @media screen and (max-width:1400px) {
                width: 250px;
            }

            @media screen and (max-width:782px) {
                width: 120px;
                top: -90px;
            }
        }
    }
    .works {
        position: relative;
        background-color: #E2D7C1;
        z-index: 0;

        @media screen and (max-width:782px) {
            z-index: 0;
        }
        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 0;

            @media screen and (max-width:782px) {
                padding: 60px 20px;
            }
            
            h2 {
                font-family: 'craftmincho',sans-serif;
                font-weight: bold;
                font-size: 3em;
                margin-bottom: 1.5em;
                text-align: center;
                letter-spacing: 10px;
                color: #534741;
                position: relative;

                @media screen and (max-width:782px) {
                    font-size: 2em;
                }
                &::after {
                    content: "";
                    border: solid 4px #534741;
                    position: absolute;
                    left: 50%;
                    bottom: -20px;
                    width: 1.6em;
                    height: 0px;
                    transform: translateX(-50%);
                }
            }
            .works-container {
                display: grid;
                grid-template-columns: repeat(4,1fr);
                gap: 0;
                margin-bottom: 40px;

                @media screen and (max-width:782px) {
                    grid-template-columns: repeat(2,1fr);
                }
                
                .works-block {
                    display: block;
                    position: relative;
                    text-align: center;
                    background-size: 100%;
                    background-position: center;
                    transition: background-size 0.6s ease;
                    &.approach {
                        background-image: url("/wp-content/themes/jetpress/images/works-approach.jpg");
                    }
                    &.carport {
                        background-image: url("/wp-content/themes/jetpress/images/works-carport.jpg");
                    }
                    &.fense {
                        background-image: url("/wp-content/themes/jetpress/images/works-fense.jpg");
                    }
                    &.deck {
                        background-image: url("/wp-content/themes/jetpress/images/works-deck.jpg");
                    }
                    &.garden {
                        background-image: url("/wp-content/themes/jetpress/images/works-garden.jpg");
                    }
                    &.corp {
                        background-image: url("/wp-content/themes/jetpress/images/works-corp.jpg");
                    }
                    &.dog {
                        background-image: url("/wp-content/themes/jetpress/images/works-dog.jpg");
                    }
                    &.ba {
                        background-image: url("/wp-content/themes/jetpress/images/works-ba.jpg");
                    }
                    &:hover {
                        background-size: 120%;
                        img {
                            opacity: 0.2;
                        }
                    }
                    img {
                        display: block;
                        width: 100%;
                    }
                    span {
                        color: #fff;
                        position: absolute;
                        left: 50%;
                        top: 50%;
                        transform: translate(-50%,-50%);
                        font-size: 1.6em;
                        font-weight: bold;
                        display: block;
                        width: 100%;

                        @media screen and (max-width:782px) {
                            font-size: 1em;
                        }
                    }
                }
            }
            h3 {
                color: #736357;
                font-weight: bold;
                font-size: 1.8em;
                text-align: center;

                @media screen and (max-width:782px) {
                    margin-bottom: .5em;
                    font-size: 1.5em;
                }
            }
            .service-list {
                max-width: 1000px;
                margin: 0 auto;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1em;

                @media screen and (max-width:782px) {
                    gap: 10px;
                }

                li {
                    text-align: center;
                    display: block;
                    border: solid 1px #736357;
                    color: #736357;
                    padding: 5px 10px;
                    font-size: 1.5em;
                    font-weight: bold;
                    background: #E2D7C1;

                    @media screen and (max-width:782px) {
                        padding: 0 10px;
                        width: calc(50% - 5px);
                        font-size: 1em;
                    }
                }
                
            }
        }
        .bird-img{
            position: absolute;
            top: 20%;
            left: 100px;
            
            @media screen and (max-width:782px) {
                width: 50px;
                top: 20px;
                left: 20px;
            }
        }

        .right-branch {
            position: absolute;
            right: 0;
            top: 180px;
            z-index: -1;

            @media screen and (max-width:782px) {
                width: 120px;
                top: auto;
                bottom: -20px;
                z-index: -1;
            }
        }
    }
    .garden-reform {
        background-image: url("/wp-content/themes/jetpress/images/bg_garden-reform.jpg");

        .section-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 0;

            @media screen and (max-width:782px) {
                padding: 60px 20px;
            }

            h2{
                margin-bottom: 1.5em;
                text-align: center;
                color: #fff;
                position: relative;

                @media screen and (max-width:782px) {
                    font-size: 2em;
                }

                &::after{
                    content: '';
                    border: solid 4px #fff;
                    position: absolute;
                    left: 50%;
                    bottom: -20px;
                    width: 1.6em;
                    height: 0px;
                    transform: translateX(-50%);
                }
            }

            .flex-box {
                align-items: center;
                justify-content: center;
                .heading {
                    flex: 1;
                    text-align: center;
                    h2 {
                        font-family: 'craftmincho',sans-serif;
                        font-weight: bold;
                        font-size: 2.5em;
                        margin-bottom: 1.5em;
                        position: relative;
                        color: #fff;


                        &::after {
                            content: "";
                            border: solid 4px #fff;
                            position: absolute;
                            left: 50%;
                            bottom: -20px;
                            width: 1.6em;
                            height: 0px;
                            transform: translateX(-50%);
                        }
                    }
                    .reform-list {
                        padding: 0.8em 5em;
                        li {
                            max-width: 60%;
                            padding: 0.5em 2em;
                            background-color: #736357;
                            color: #fff;
                            border-radius: 10px;
                            margin:0 auto 1.6em;
                            font-size: 1.2em;
                            font-weight: bold;
                            text-align: left;
                            letter-spacing: 5px;
                            transition: all 0.3s ease;
                            &.active {
                                background-color: #E1E8B0;
                                color: #736357;
                            }
                            .num {
                                margin-right: 2em;
                            }
                        }
                    }
                    a {
                        padding: 0.8em 5em;
                        background-color: #EED552;
                        border-radius: 100px;
                        position: relative;
                        font-weight: bold;
                        color: #736357;
                        &:after {
                            content: "";
                            position: absolute;
                            right: 30px;
                            top: 50%;
                            transform: translateY(-50%);
                            background-image: url('https://koukakuen.jp/wp-content/themes/jetpress/images/right-arrow.png');
                            width: 25px;
                            height: 25px;
                            background-position: center;
                            background-size: contain;
                            background-repeat: no-repeat;
                            
                        }
                    }
                }
                .reform-cards {
                    display: grid;
                    grid-template-columns: repeat(4,1fr);
                    gap: 20px;

                    @media screen and (max-width:782px) {
                        grid-template-columns: 1fr;
                    }

                    .card{
                        color:#534741;
                        background: #DAE1A2;
                        border: 3px solid #fff;
                        border-radius: 10px;

                        .card-inner{
                            h3{
                                margin-bottom: .5em;
                                padding: 25px 20px;
                                text-align: center;
                                font-size: 2em;
                                font-family: 'craftmincho', sans-serif;
                                background-image: url('/wp-content/themes/jetpress/images/title-background.png');
                                background-size: 125%;
                                background-position: center bottom;

                                @media screen and (max-width:782px) {
                                    padding: 15px 20px;
                                }
                            }
                            .copy{
                                padding: 0 20px;
                            }

                            .before-after{
                                padding: 20px 20px 30px;
                            }
                        }
                    }
                }
                .reform-cardsssss {
                    flex: 1;
                    position: relative;
                    overflow: hidden;
                    .card {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        &:first-child {
                            position: relative;
                        }
                        .card-inner {
                            position: relative;
                            background-color: #E1E8B0;
                            border: solid 4px #fff;
                            border-radius: 30px;
                            max-width: 600px;
                            margin: 0 auto;
                            position: relative;
                            background-color: #E1E8B0;
                            border: solid 4px #fff;
                            border-radius: 30px;
                            max-width: 600px;
                            margin: 0 auto;
                            padding: 5vh 7vw;padding: 5vh 7vw;
                            h3 {
                                font-family: 'craftmincho',sans-serif;
                                color: #736357;
                                padding: 8px;
                                font-size: 2.5em;
                                letter-spacing: 5px;
                                display: block;
                                margin-bottom: 0.5em;
                                text-align: center;
                                background-color: #D0D3A3;
                                border-top: solid 2px #736357;
                                border-bottom: solid 2px #736357;
                            }
                            p {
                                color: #736357;
                                margin-bottom: 1em;
                            }
                            .before-after {
                                img {
                                    display: block;
                                    max-width: 100%;
                                    margin: 0 auto;
                                    &.before,&.after {
                                        aspect-ratio: 3/2;
                                    }
                                }
                            }
                        }
                        .left-line {
                            position: absolute;
                            left: 35px;
                            top: 25px;
                            bottom: 25px;
                            width: 2px;
                            background: #fff;
                        }
                        .side-text {
                            position: absolute;
                            left: 15px;
                            bottom: 25px;
                            padding: 10px 0;
                            writing-mode: vertical-rl;
                            /* transform: rotate(180deg); */
                            color: #fff;
                            font-size: 26px;
                            font-weight: bold;
                            letter-spacing: 0.08em;
                            background-color: #E1E8B0;
                            z-index: 2;
                        }
                    }
                }
            }
        }
    }
    .maintenance {
        background-color: #E2D7C1;
        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 0;

            @media screen and (max-width:782px) {
                padding: 60px 20px 10px;
            }
            
            h2 {
                font-family: 'craftmincho',sans-serif;
                font-weight: bold;
                font-size: 3em;
                margin-bottom: 1.5em;
                text-align: center;
                letter-spacing: 10px;
                color: #534741;
                position: relative;

                @media screen and (max-width:782px) {
                    font-size: 2em;
                }
                
                &::after {
                    content: "";
                    border: solid 4px #534741;
                    position: absolute;
                    left: 50%;
                    bottom: -20px;
                    width: 1.6em;
                    height: 0px;
                    transform: translateX(-50%);
                }
            }
            .flex-box {
                justify-content: space-around;
                gap: 1em;

                @media screen and (max-width:782px) {
                    flex-direction: column;
                }
                .card {
                    display: block;
                    position: relative;
                    img{
                        display: block;
                        max-width: 100%;
                        width: 100%;
                    }
                    .card-title {
                        width: 100%;
                        position: absolute;
                        bottom: 0;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background-color: rgba(0, 0, 0, 0.5);
                        h3 {
                            padding: .25em 0 .25em 8px;
                            color: #fff;
                            font-size: 1.6em;
                            letter-spacing: 10px;
                        }
                        &::before {
                            content: "";
                            display: block;
                            background-image: url('/wp-content/themes/jetpress/images/pruning.png');
                            background-size: cover;
                            width: 40px;
                            height: 40px;
                        }
                        &::after {
                            content: "";
                            display: block;
                            background-image: url('/wp-content/themes/jetpress/images/right-arrow.png');
                            background-size: cover;
                            width: 20px;
                            height: 18px;
                            position: absolute;
                            right: 22px;
                        }
                    }

                    &:nth-child(2){
                        .card-title{
                            &::before{
                                background-image: url('/wp-content/themes/jetpress/images/spray.png');
                            }
                        }
                    }
                    &:nth-child(3){
                        .card-title{
                            &::before{
                                background-image: url('/wp-content/themes/jetpress/images/mowing.png');
                            }
                        }
                    }
                }
            }
        }
    }
    .corp-information {
        background-color: #E2D7C1;
        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 0;
            @media screen and (max-width:782px) {
                padding: 60px 20px;
            }
            h2 {
                font-family: 'craftmincho',sans-serif;
                font-weight: bold;
                font-size: 3em;
                margin-bottom: 1.5em;
                text-align: center;
                letter-spacing: 10px;
                color: #534741;
                position: relative;
                @media screen and (max-width:782px) {
                    font-size: 2em;
                }
                &::after {
                    content: "";
                    border: solid 4px #534741;
                    position: absolute;
                    left: 50%;
                    bottom: -20px;
                    width: 1.6em;
                    height: 0px;
                    transform: translateX(-50%);
                }
            }
            .flex-box {
                justify-content: space-around;
                gap: 1em;

                @media screen and (max-width:782px) {
                    flex-direction: column;
                }
                .card {
                    display: block;
                    position: relative;
                    img{
                        display: block;
                        max-width: 100%;
                        width: 100%;
                    }
                }
            }
        }
    }
    .constraction-photo {
        position: relative;
        background-color: #333;
        height: 100vh;
        overflow: hidden;
        z-index: -1;
        padding: 80px 0;
        @media screen and (max-width:782px) {
            display: none;
        }
        .masonry-container {
            display: flex;
            gap: 2em;
            box-sizing: border-box;
            .masonry-column {
                flex: 1;
                display: flex;
                flex-direction: column;
                gap: 2em;
            }
        }
    }
    .shop-information {
        background-color: #E2D7C1;
        
        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 0;

            @media screen and (max-width:782px){
                padding: 40px 20px;
            }

            .grid-container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: 1fr 1fr auto;
                gap: 2em;
                @media screen and (min-width:783px){
                    grid-template-areas:
                        "area1 area2"
                        "area3 area4"
                        "area5 area5";
                }
                @media screen and (max-width:782px){
                    grid-template-columns: 1fr;
                    grid-template-rows:auto;
                    gap: 1em;
                }
                .grid-item {
                    width: 100%;
                    padding: 1em;
                    background-color: #fff;
                    &.exterior {
                        padding: 0;
                        @media screen and (min-width:783px){
                            grid-area: area1;
                        }

                        @media screen and (max-width:782px){
                            order: 2;
                        }
                        img {
                            object-fit: cover;
                            display: block;
                        }
                    }
                    &.shop {
                        @media screen and (min-width:783px){
                            grid-area: area2;
                        }
                        @media screen and (max-width:782px){
                            order: 1;
                        }
                        .item-inner {
                            border: solid 1px #617154;
                            height: 100%;
                            padding: 2em 4em;
                            text-align: center;

                            @media screen and (max-width:782px){
                                padding: 2em 1em;
                            }

                            h2{
                                color: #534741;
                                &::after{
                                    border: solid 4px #534741;
                                }
                                @media screen and (max-width:782px){
                                    margin-bottom: 1.5em;
                                    font-size: 2em;
                                }
                            }

                            p {
                                text-align: left;
                                @media screen and (max-width:782px){
                                    margin-top: .5em;
                                }
                            }
                            a {
                                display: inline-block;
                                box-sizing: border-box;
                                padding: 0.8em 5em;
                                background-color: #617154;
                                border: solid 2px #617154;
                                border-radius: 100px;
                                position: relative;
                                font-weight: bold;
                                color: #fff;
                                margin-top: 1em;
                                @media screen and (max-width:782px){
                                    padding: 0.8em 1em;
                                    width: 250px;
                                }

                                &:after {
                                    content: "";
                                    position: absolute;
                                    right: 30px;
                                    top: 50%;
                                    transform: translateY(-50%);
                                    background-image: url('https://koukakuen.jp/wp-content/themes/jetpress/images/right-arrow.png');
                                    width: 25px;
                                    height: 25px;
                                    background-position: center;
                                    background-size: contain;
                                    background-repeat: no-repeat;
                                    
                                }
                                &:hover {
                                    background-color: #fff;
                                    color: #617154;
                                    border: solid 2px #617154;
                                }
                                &:hover::after {
                                    content: "";
                                    position: absolute;
                                    right: 30px;
                                    top: 50%;
                                    transform: translateY(-50%);
                                    background-image: url('https://koukakuen.jp/wp-content/themes/jetpress/images/right-arrow_dg.png');
                                    width: 25px;
                                    height: 25px;
                                    background-position: center;
                                    background-size: contain;
                                    background-repeat: no-repeat;
                                }
                            }
                        }
                        h3::before {
                            content: "";
                            /* width: 38px;
                            height: 38px; */
                            background-image: url('https://koukakuen.jp/wp-content/themes/jetpress/images/ic-shop.png');
                            background-repeat: no-repeat;
                            margin-bottom: 1rem;
                            @media screen and (max-width:782px){
                                margin-bottom: 0;
                            }
                        }
                    }
                    &.map {
                        display: flex;
                        flex-direction: column;
                        @media screen and (min-width:783px){
                            grid-area: area3;
                        }
                        @media screen and (max-width:782px){
                            order: 3;
                        }
                        h3::before {
                            content: "";
                            /* width: 38px;
                            height: 38px; */
                            background-image: url('https://koukakuen.jp/wp-content/themes/jetpress/images/ic-map.png');
                        }
                        
                        iframe{
                            @media screen and (max-width:782px){
                                margin-top: .5em;
                                aspect-ratio: 4/3;
                            }
                        }
                    }
                    &.calendar {
                        @media screen and (min-width:783px){
                            grid-area: area4;
                        }
                        @media screen and (max-width:782px){
                            order: 4;
                        }
                        h3::before {
                            content: "";
                            /* width: 38px;
                            height: 38px; */
                            background-image: url('https://koukakuen.jp/wp-content/themes/jetpress/images/ic-calender.png');
                        }
                    }
                    &.contact {
                        padding: 0;
                        background-color: unset;
                        @media screen and (min-width:783px){
                            grid-area: area5;
                        }
                        @media screen and (max-width:782px){
                            order: 5;
                        }
                    }
                    h2 {
                        text-align: center;
                        margin-bottom: .5em;
                        position: relative;
                        &::after {
                            content: "";
                            border: solid 4px #000;
                            position: absolute;
                            left: 50%;
                            bottom: -20px;
                            width: 1.6em;
                            height: 0px;
                            transform: translateX(-50%);
                        }
                    }
                    h3 {
                        text-align: center;
                        color: #617154;
                        font-size: 1.6em;
                        display: flex;
                        gap: 5px;
                        justify-content: center;
                        align-items: center;

                        @media screen and (max-width:782px) {
                            font-size: 1.2em;
                        }
                        &::before {
                            content: "";
                            display: block;
                            background-size: contain;
                            width: 40px;
                            height: 40px;

                            @media screen and (max-width:782px) {
                                width: 30px;
                                height: 30px;
                            }
                        }
                    }
                }
            }
        }
    }
    .constraction-slider {
        padding: 20px 0;
        background-color: #333;
    }
    .niwa-ch {
        text-align: center;
        padding: 80px 0;

        @media screen and (max-width:782px) {
            padding: 40px 20px;
        }
        img {
            display: inline-block;
            
            &.niwa-ch-img{
                margin-bottom: 40px;
                width: 320px;
                
                @media screen and (max-width:782px) {
                    margin-bottom: 10px;
                    max-width: 200px;
                }
            }
        }
        p {
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 20px;
            @media screen and (max-width:782px) {
                font-size: 1em;
            }
        }
    }
}