* {
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 100;
    margin: 0;
    padding: 0;
}
header {
    position: relative;
    max-width: 1512px;
    left: 0px;
    top: 0px;
    margin: 0 auto;
    padding-bottom: 30px;
}
.header-logo {
    width: 100px;
    height: 100px;
}
.sitename {
    font-family: "Crimson Text", serif;
    font-style: normal;
    letter-spacing: 0.05em;
    color: #3b3b3b;
}

.header-nav {
    font-family: "Lato", sans-serif;
    letter-spacing: 0.1em;
    color: #000;
    position: absolute;
    right: 0;
    top: 110px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-right: 30px;
    height: 20px;
    font-size: 18px;
    font-weight: 300;
}
.header-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.header-li {
    display: inline-block;
    margin-left: 20px;
    text-align: right;
}

.menu-link {
    text-decoration: none;
    color: #3b3b3b;
    position: relative;
    display: inline-block;
    transition: 0.3s;
}
.menu-link::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: "";
    width: 0;
    height: 1px;
    background-color: #3b3b3b;
    transition: 0.3s;
    transform: translateX(-50%);
}
.menu-link:hover::after {
    width: 100%;
}

@media screen and (min-width: 1000px) {
    .header-logo {
        margin-top: 30px;
        margin-left: 20px;
    }
    .sitename {
        position: absolute;
        width: 246px;
        height: 65px;
        left: 130px;
        top: 70px;
        white-space: nowrap;
        padding-left: 2px;
        font-weight: 600;
        font-size: 30px;
    }

    .sp-nav {
        display: none;
    }
}
@media screen and (min-width: 500px) and (max-width: 999px) {
    header {
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .header-logo {
        width: 100px;
        height: 100px;
    }
    .sitename {
        font-size: 24px;
        margin: 0 auto;
    }
    .header-nav {
        display: none;
    }
    .sp-nav {
        z-index: 1;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: block;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        opacity: 0;
        transform: translateY(-100%);
        transition: all 0.3s ease-in-out;
    }
    .btn-trigger {
        display: block;
        position: fixed;
        width: 50px;
        height: 44px;
        cursor: pointer;
        z-index: 3;
        right: 15px;
    }
    .btn-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #3b3b3b;
        border-radius: 4px;
    }
    .btn-trigger,
    .btn-trigger span {
        display: inline-block;
        transition: all 0.5s;
        box-sizing: border-box;
    }
    .btn-trigger span:nth-of-type(1) {
        top: 0;
    }
    .btn-trigger span:nth-of-type(2) {
        top: 20px;
    }
    .btn-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    #btn07 span:nth-of-type(1) {
        -webkit-animation: btn07-bar01 0.75s forwards;
        animation: btn07-bar01 0.75s forwards;
    }
    @-webkit-keyframes btn07-bar01 {
        0% {
            -webkit-transform: translateY(20px) rotate(45deg);
        }
        50% {
            -webkit-transform: translateY(20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes btn07-bar01 {
        0% {
            transform: translateY(20px) rotate(45deg);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    #btn07 span:nth-of-type(2) {
        transition: all 0.25s 0.25s;
        opacity: 1;
    }
    #btn07 span:nth-of-type(3) {
        -webkit-animation: btn07-bar03 0.75s forwards;
        animation: btn07-bar03 0.75s forwards;
    }
    @-webkit-keyframes btn07-bar03 {
        0% {
            -webkit-transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            -webkit-transform: translateY(-20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes btn07-bar03 {
        0% {
            transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    #btn07.active span:nth-of-type(1) {
        -webkit-animation: active-btn07-bar01 0.75s forwards;
        animation: active-btn07-bar01 0.75s forwards;
    }
    @-webkit-keyframes active-btn07-bar01 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(20px) rotate(45deg);
        }
    }
    @keyframes active-btn07-bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(20px) rotate(45deg);
        }
    }
    #btn07.active span:nth-of-type(2) {
        opacity: 0;
    }
    #btn07.active span:nth-of-type(3) {
        -webkit-animation: active-btn07-bar03 0.75s forwards;
        animation: active-btn07-bar03 0.75s forwards;
    }
    @-webkit-keyframes active-btn07-bar03 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(-20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(-20px) rotate(-45deg);
        }
    }
    @keyframes active-btn07-bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(-20px) rotate(-45deg);
        }
    }
    /*スマホメニュー*/
    .sp-nav ul {
        margin: 0 auto;
        padding: 0;
        list-style: none;
    }
    .sp-nav ul li a {
        display: block;
        padding: 2em;
        color: #3b3b3b;
        text-decoration: none;
    }
    .sp-nav ul li a:hover {
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
    }
    .toggle {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 499px) {
    header {
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .header-logo {
        width: 100px;
        height: 100px;
    }
    .sitename {
        font-size: 24px;
        margin: 0 auto;
    }
    .header-nav {
        display: none;
    }
    .sp-nav {
        z-index: 1;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: block;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        opacity: 0;
        transform: translateY(-100%);
        transition: all 0.3s ease-in-out;
    }
    .btn-trigger {
        display: block;
        position: fixed;
        width: 50px;
        height: 44px;
        cursor: pointer;
        z-index: 3;
        right: 15px;
    }
    .btn-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #b2b2b2;
        border-radius: 4px;
    }
    .btn-trigger,
    .btn-trigger span {
        display: inline-block;
        transition: all 0.5s;
        box-sizing: border-box;
    }
    .btn-trigger span:nth-of-type(1) {
        top: 0;
    }
    .btn-trigger span:nth-of-type(2) {
        top: 20px;
    }
    .btn-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    #btn07 span:nth-of-type(1) {
        -webkit-animation: btn07-bar01 0.75s forwards;
        animation: btn07-bar01 0.75s forwards;
    }
    @-webkit-keyframes btn07-bar01 {
        0% {
            -webkit-transform: translateY(20px) rotate(45deg);
        }
        50% {
            -webkit-transform: translateY(20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes btn07-bar01 {
        0% {
            transform: translateY(20px) rotate(45deg);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    #btn07 span:nth-of-type(2) {
        transition: all 0.25s 0.25s;
        opacity: 1;
    }
    #btn07 span:nth-of-type(3) {
        -webkit-animation: btn07-bar03 0.75s forwards;
        animation: btn07-bar03 0.75s forwards;
    }
    @-webkit-keyframes btn07-bar03 {
        0% {
            -webkit-transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            -webkit-transform: translateY(-20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes btn07-bar03 {
        0% {
            transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    #btn07.active span:nth-of-type(1) {
        -webkit-animation: active-btn07-bar01 0.75s forwards;
        animation: active-btn07-bar01 0.75s forwards;
    }
    @-webkit-keyframes active-btn07-bar01 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(20px) rotate(45deg);
        }
    }
    @keyframes active-btn07-bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(20px) rotate(45deg);
        }
    }
    #btn07.active span:nth-of-type(2) {
        opacity: 0;
    }
    #btn07.active span:nth-of-type(3) {
        -webkit-animation: active-btn07-bar03 0.75s forwards;
        animation: active-btn07-bar03 0.75s forwards;
    }
    @-webkit-keyframes active-btn07-bar03 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(-20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(-20px) rotate(-45deg);
        }
    }
    @keyframes active-btn07-bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(-20px) rotate(-45deg);
        }
    }
    /*スマホメニュー*/
    .sp-nav ul {
        margin: 0 auto;
        padding: 0;
        list-style: none;
    }
    .sp-nav ul li a {
        display: block;
        padding: 2em;
        color: #3b3b3b;
        text-decoration: none;
    }
    .sp-nav ul li a:hover {
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
    }
    .toggle {
        transform: translateY(0);
        opacity: 1;
    }
}

#top {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
#top img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media screen and (min-width: 1000px) {
    #top {
        margin-bottom: 200px;
    }

    .message {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 0;
        left: 30%;
        top: 30%;
        transform: translate(-50%, 50px);
        width: 500px;
        height: 500px;
        font-size: 18px;
    }
}

@media screen and (min-width: 500px) and (max-width: 999px) {
    #top {
        margin-bottom: 100px;
    }

    .message {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 0;
        left: 50%;
        top: 20%;
        transform: translate(-50%, 50px);
        font-size: 14px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 499px) {
    #top {
        margin-bottom: 100px;
    }

    .topimage-pc {
        width: 100%;
        height: auto;
        object-position: 50% 50%;
        display: block;
    }

    .message {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 0;
        left: 50%;
        top: 20%;
        transform: translate(-50%, 50px);
        font-size: 12px;
        white-space: nowrap;
    }
}

.message {
    color: #fff;
    letter-spacing: 0.05em;
    text-align: center;
    text-shadow: 0 3px 3px #3b3b3b;
}
.ttlLarge {
    text-align: center;
    margin-bottom: 50px;
    line-height: 1;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}

@media screen and (min-width: 1000px) {
    .ttlLarge {
        font-size: 40px;
    }

    .about {
        margin: 0 auto;
        margin-bottom: 200px;
        position: relative;
        /* width: 100%; */
        /* widthを100%から800pxに変更 */
        width: 800px;
        display: flex;
        /* justify-content: space-around; */
        align-items: center;
        font-size: 18px;
    }

    .bigLogo {
        width: 50%;
        /* margin-left: 300px; */
        width: 400px;
        height: 400px;
    }

    table {
        padding: 50px;
        display: flex;
    }

    th {
        margin-left: 40px;
    }

    td {
        margin-left: 40px;
    }
}

@media screen and (min-width: 500px) and (max-width: 999px) {
    .ttlLarge {
        font-size: 24px;
    }

    .about {
        text-align: center;
        margin-bottom: 100px;
    }

    .bigLogo {
        width: 100%;
        width: 300px;
        height: 300px;
    }

    table {
        padding: 0;
    }
}

@media screen and (max-width: 499px) {
    .ttlLarge {
        font-size: 24px;
    }

    .about {
        text-align: center;
        margin-bottom: 100px;
    }

    .bigLogo {
        width: 100%;
        width: 300px;
        height: 300px;
    }

    table {
        padding: 0;
    }
}

table {
    margin: auto;
    /* table-layout: fixed;を追加 */
    table-layout: fixed;
    /* width: 50%; */
    /* width: 50%から300pxに変更 */
    width: 300px;
    letter-spacing: 0.05em;
    justify-content: space-between;
}

th {
    text-align: left;
    /* width: 15%; */
    /* width: 15%から40%に変更 */
    width: 40%;
    padding: 10px;
    font-weight: 300;
    font-family: "Lato", sans-serif;
}

td {
    text-align: left;
    width: 100%;
    padding: 10px;
    font-weight: 100;
    font-family: "Lato", sans-serif;
}

@media screen and (min-width: 1000px) {
    .services {
        margin-bottom: 200px;
    }
    .services-icon {
        flex: auto;
        width: 30%;
        margin-bottom: 50px;
    }

    .txt-contents {
        font-size: 14px;
    }
}

@media screen and (min-width: 500px) and (max-width: 999px) {
    .services {
        margin-bottom: 50px;
    }

    .services-icon {
        flex: auto;
        width: 100%;
        margin-bottom: 50px;
    }

    .txt-contents {
        font-size: 12px;
    }
}

@media screen and (max-width: 499px) {
    .services {
        margin-bottom: 50px;
    }

    .services-icon {
        flex: auto;
        width: 100%;
        margin-bottom: 50px;
    }

    .txt-contents {
        font-size: 12px;
    }
}

.s-icon {
    height: 200px;
}
.services {
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}
.services-icon {
    text-align: center;
}
.txt-contents {
    text-align: center;
    letter-spacing: 0.05em;
    word-wrap: break-word;
}
.services-ttl {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin: 0 auto;
    letter-spacing: 0.05em;
}
.services-ttl-jp {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin: 0 auto;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

@media screen and (min-width: 1000px) {
    .carousel {
        margin-bottom: 200px;
    }

    .contains {
        width: 1200px;
        /* height: 600px; */
    }
}

@media screen and (min-width: 700px) and (max-width: 999px) {
    .carousel {
        margin-bottom: 100px;
    }

    .contains {
        width: 999px;
        /* height: 499px; */
    }
}

@media screen and (min-width: 500px) and (max-width: 699px) {
    .carousel {
        margin-bottom: 100px;
    }

    .contains {
        width: 699px;
        /* height: 499px; */
    }
}

@media screen and (max-width: 499px) {
    .carousel {
        margin-bottom: 100px;
    }

    .contains {
        width: 499px;
        /* height: 200px; */
    }
}

.carousel {
    display: flex;
    justify-content: center;
}

.contains {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 2 / 1;
	margin: 0 30px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を親要素に合わせて切り抜く */
}

.scroll_button {
    position: absolute;
    display: block;
    height: 30px;
    width: 30px;
    top: 50%;
    margin-top: -20px;
    border-width: 5px 5px 0 0;
    border-style: solid;
    border-color: #3b3b3b;
    cursor: pointer;
    opacity: 0.5;
    z-index: 3;
}

.scroll_button:hover {
    opacity: 1;
}

.scroll_prev {
    left: 15px;
    transform: rotate(-135deg);
}

.scroll_next {
    right: 15px;
    transform: rotate(45deg);
}

.move_controler {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 80%;
}

.button_move {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    border-radius: 100%;
    cursor: pointer;
    opacity: 0.5;
    z-index: 2;
}

.button_move:hover {
    opacity: 0.75;
}

.button_move {
    background-color: #3b3b3b;
}

/* スライドセレクト非表示のため追記 */
.slide_select {
    display: none;
}

.slide_select:nth-of-type(1):checked ~ .slide:nth-of-type(1) {
    opacity: 1;
}

.slide_select:nth-of-type(1):checked
    ~ .move_controler
    .button_move:nth-of-type(1) {
    opacity: 1;
}
.slide_select:nth-of-type(2):checked ~ .slide:nth-of-type(2) {
    opacity: 1;
}
.slide_select:nth-of-type(2):checked
    ~ .move_controler
    .button_move:nth-of-type(2) {
    opacity: 1;
}
.slide_select:nth-of-type(3):checked ~ .slide:nth-of-type(3) {
    opacity: 1;
}
.slide_select:nth-of-type(3):checked
    ~ .move_controler
    .button_move:nth-of-type(3) {
    opacity: 1;
}
.slide_select:nth-of-type(4):checked ~ .slide:nth-of-type(4) {
    opacity: 1;
}
.slide_select:nth-of-type(4):checked
    ~ .move_controler
    .button_move:nth-of-type(4) {
    opacity: 1;
}

.form {
    font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 1000px) {
    .form {
        margin-top: 80px;
        margin-left: auto;
        margin-right: auto;
        max-width: 500px; /*スマホファーストで見栄え良くするために変更*/
        margin-bottom: 100px;
    }
    .form-item {
        border: none;
        padding-top: 24px;
        padding-bottom: 24px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .form-item-label {
        width: 100%;
        max-width: 248px;
        letter-spacing: 0.05em;
        font-weight: bold;
        font-size: 16px;
    }
    .form-item-label-required {
        border: 1px solid #318c49;
        border-radius: 6px;
        margin-right: 8px;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 46px;
        display: inline-block;
        text-align: center;
        background: #fff;
        color: #318c49;
        font-size: 12px;
    }
    .form-item-input {
        border: 1px solid #ddd;
        border-radius: 5px;
        /*padding-left: 1em;
        padding-right: 1em;
        丸みを出すために変更*/
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        height: 48px;
        flex: 1;
        width: 100%;
        max-width: 700px;
        background: #fff;
        font-size: 24px;
    }
    .form-item-textarea {
        border: 1px solid #ddd;
        /*padding-left: 1em;
        padding-right: 1em;
        丸みを出すために変更*/
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        height: 400px;
        flex: 1;
        width: 100%;
        max-width: 720px;
        background: #fff;
        font-size: 18px;
    }
    .form-btn {
        border: none;
        border-radius: 10px;
        margin-top: 32px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 20px;
        padding-bottom: 20px;
        width: 280px;
        display: block;
        letter-spacing: 0.1em;
        background: #318c49;
        color: #fff;
        font-size: 16px;
    }
}

@media screen and (min-width: 500px) and (max-width: 999px) {
    .form {
        margin-top: 80px;
        margin-left: 30px;
        margin-right: 30px;
        max-width: 999px;
        margin-bottom: 50px;
    }

    .form-item {
        border: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .form-item-label {
        width: 50%;
        max-width: 248px;
        letter-spacing: 0.05em;
        font-weight: bold;
        font-size: 14px;
    }
    .form-item-label-required {
        border: 1px solid #318c49;
        border-radius: 6px;
        margin-right: 8px;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 36px;
        display: inline-block;
        text-align: center;
        background: #fff;
        color: #318c49;
        font-size: 12px;
    }
    .form-item-input {
        border: 1px solid #ddd;
        /*padding-left: 1em;
        padding-right: 1em;
        丸みを出すために変更*/
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        height: 48px;
        flex: 1;
        width: 100%;
        max-width: 999px;
        background: #fff;
        font-size: 18px;
    }
    .form-item-textarea {
        border: 1px solid #ddd;
        /*padding-left: 1em;
        padding-right: 1em;
        丸みを出すために変更*/
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        height: 400px;
        flex: 1;
        width: 100%;
        max-width: 999px;
        background: #fff;
        font-size: 18px;
    }
    .form-btn {
        border: none;
        border-radius: 10px;
        margin-top: 32px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 20px;
        padding-bottom: 20px;
        width: 280px;
        display: block;
        letter-spacing: 0.1em;
        background: #318c49;
        color: #fff;
        font-size: 16px;
    }
}

@media screen and (max-width: 499px) {
    .form {
        margin: auto 20px auto 20px;
        max-width: 499px;
        margin-bottom: 80px;
        margin-bottom: 50px;
    }
    .form-item {
        border: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .form-item-label {
        width: 50%;
        max-width: 248px;
        letter-spacing: 0.05em;
        font-weight: bold;
        font-size: 12px;
    }
    .form-item-label-required {
        border: 1px solid #318c49;
        border-radius: 6px;
        margin-right: 6px;
        padding-top: 6px;
        padding-bottom: 8px;
        width: 30px;
        display: inline-block;
        text-align: center;
        background: #fff;
        color: #318c49;
        font-size: 10px;
    }
    .form-item-input {
        border: 1px solid #ddd;
        /*padding-left: 1em;
        padding-right: 1em;
        丸みを出すために変更*/
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        height: 48px;
        flex: 1;
        width: 100%;
        max-width: 499px;
        background: #fff;
        font-size: 18px;
    }
    .form-item-textarea {
        border: 1px solid #ddd;
        border-radius: 2px;
        padding-left: 1em;
        padding-right: 1em;
        height: 400px;
        flex: 1;
        width: 100%;
        max-width: 499px;
        background: #fff;
        font-size: 18px;
    }
    .form-btn {
        border: none;
        border-radius: 10px;
        margin-top: 32px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 15px;
        padding-bottom: 15px;
        width: 200px;
        display: block;
        letter-spacing: 0.1em;
        background: #318c49;
        color: #fff;
        font-size: 12px;
    }
}

footer {
    padding-bottom: 50px;
}
.footer-nav {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-right: 30px;
    height: 20px;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #000;
}
.footer-nav {
    float: left;
    padding-left: 30px;
    padding-bottom: 50px;
}
.footer-ul {
    list-style: none;
}
.footer-li {
    padding-bottom: 10px;
}

@media screen and (min-width: 1000px) {
    .copyright {
        float: right;
        padding: 150px 0 20px 0;
        letter-spacing: 0.05em;
    }

    .instalogo {
        float: right;
        position: relative;
        margin-top: 100px;
        margin-right: 50px;
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 999px) {
    .footer-nav {
        display: none;
    }

    footer {
        text-align: center;
    }
    .instalogo {
        width: 50px;
        height: 50px;
    }
}

.fade {
    transition: all 2000ms;
    opacity: 0;
    visibility: hidden;
    transform: translate(0px, 50px);
}

.fadein {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
}
