@charset "UTF-8";

/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1181px) {

    .container {
        background-color: white;
        width: 100%;
        font-family: "Tilt Warp", serif;
        ;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }

    /* -----------------↓ハンバーガーメニューコピペ------------ */

    /*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn {
        position: relative;
        /*ボタン内側の基点となるためrelativeを指定*/
        background: #d23918;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn span:nth-of-type(2) {
        top: 19px;
    }

    .openbtn span:nth-of-type(3) {
        top: 25px;
    }

    .openbtn span:nth-of-type(3)::after {
        content: "Menu";
        /*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top: 5px;
        left: -2px;
        color: #fff;
        font-size: 0.6rem;
        text-transform: uppercase;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

    .openbtn.active span:nth-of-type(1) {
        top: 14px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(3)::after {
        content: "Close";
        /*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
        top: 5px;
        left: 4px;
    }

    /* ----------------↑ハンバーガーメニューコピペ--------------- */

    /*========= ↓ナビゲーションのためのCSS ===============*/

    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #d23918;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        right: -50px;
        top: -50px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }


    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        font-size: 30px;
        font-family: "Tilt Warp", serif;
        ;
    }


    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn span:nth-of-type(2) {
        top: 20px;
    }

    .openbtn span:nth-of-type(3) {
        top: 28px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    /* ------------------↑ナビコピペ5-1-20--------------- */

    .header img {
        width: 100%;
    }

    .about {
        background-color: white;
        /* ↑whiteにする */
        width: 100%;
    }

    .about1 {
        /* background-color: aliceblue; */
        width: 85%;
        padding-top: 80px;
        margin: 0 auto;
    }

    .about1 ul {
        display: flex;
        list-style: none;
        width: 100%;
        justify-content: space-around;
        font-size: 30px;
        letter-spacing: 0.12em;
    }

    .about1 ul a {
        text-decoration: none;
        display: block;
        text-align: center;
        text-decoration: none;
        margin: auto;
        padding: 1.5rem 5rem;
        font-weight: bold;
        border: 5px solid #d23918;
        background: #fff;
        color: #d23918;
        border-radius: 100vh;
        transition: 0.5s;
        box-sizing: border-box;
    }

    .about1 ul a:hover {
        color: #fff;
        background: #d23918;
    }

    /* ------------↓ページトップコピペ---------------------- */

    /*========= ページトップのためのCSS ===============*/

    /*リンクの形状*/
    #page-top a {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #d23918;
        border: 2px solid #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 20px;
        transition: all 0.3s;
    }

    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 10px;
        bottom: 10px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(100px);
    }

    /*　上に上がる動き　*/

    #page-top.UpMove {
        animation: UpAnime 0.5s forwards;
    }

    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /*　下に下がる動き　*/

    #page-top.DownMove {
        animation: DownAnime 0.5s forwards;
    }

    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 1;
            transform: translateY(100px);
        }
    }

    /* -------------↑ぺージトップのボタンコピペ8-1-2------------ */

    .about2 {
        padding-top: 3%;
        padding-left: 5%;
        margin-top: 5%;
    }

    .about2 h2 {
        color: #d23918;
        font-size: 150px;
        letter-spacing: 2px;
    }

    .about2 h4 {
        color: black;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 25px;
        padding-bottom: 3%;
    }

    .about3 {
        /* background-color: gold; */
        width: 90%;
        display: flex;
        margin: 0 auto 10% auto;
        align-items: center;
    }

    .about4 {
        /* background-color: lightcyan; */
        width: 50%;
        text-align: center;
    }

    .about4 img {
        width: 90%;
    }

    .about5 {
        /* background-color: lightskyblue; */
        width: 50%;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    .about5 p {
        color: black;
        font-size: 17px;
        font-weight: bold;
        padding: 6% 20% 7% 20%;
    }

    .btn,
    a.btn,
    button.btn {
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.5;
        position: relative;
        display: inline-block;
        padding: 1rem 4rem;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
        border-radius: 0.5rem;
    }

    .btn-about {
        width: 50%;
        font-size: 15px;
        text-decoration: none;
        display: block;
        text-align: center;
        text-decoration: none;
        margin: auto;
        padding: 1.5rem 2rem;
        font-weight: bold;
        border: 5px solid #d23918;
        background: #fff;
        color: #d23918;
        border-radius: 100vh;
        transition: 0.5s;
        box-sizing: border-box;
    }

    .btn-about:hover {
        color: #fff;
        background: #d23918;
    }

    .works {
        background-color: #d23918;
        width: 100%;
        padding-top: 4%;
        padding-bottom: 5%;
    }

    .works1 {
        /* background-color: #013392; */
        width: 40%;
        padding-left: 5%;
    }

    .works1 h2 {
        color: white;
        font-size: 150px;
        letter-spacing: 2px;
    }

    .works1 h4 {
        color: black;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 25px;
        padding-bottom: 3%;
        margin-bottom: 3%;
    }

    /* --------------------↓jsコピペ------------------- */

    /*==================================================
スライダーのためのcss
===================================*/
    .slider {
        /*横幅94%で左右に余白を持たせて中央寄せ*/
        width: 94%;
        margin: 0 auto;
    }

    .yellow1,
    .yellow2,
    .yellow3 {
        padding: 40px;
        background-color: #FFE4B3;
        border-radius: 20px;
    }

    .gray1,
    .gray2,
    .gray3 {
        padding: 40px;
        background-color: #E2DFDF;
        border-radius: 20px;
    }

    /* ↓スライダーのホバーをコピペ */

    .image_link {
        display: block;
        position: relative;
        text-decoration: none;
    }

    .image_link img {
        display: block;
        width: 100%;
    }

    .image_link:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 2;
        background: #000;
        /*好みの色に変えてください。*/
        opacity: 0;
        transition: 0.3s;
    }

    .image_link:after {
        content: "READ MORE";
        /*好みの文章に変更してください。*/
        display: block;
        color: #fff;
        line-height: 48px;
        width: 180px;
        border: solid 1px #fff;
        border-radius: 5px;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -1em;
        margin-left: -90px;
        opacity: 0;
        z-index: 3;
        transition: 0.3s;
        font-weight: bold;
        letter-spacing: 0.2em;
    }

    .image_link:hover:before {
        opacity: 0.5;
    }

    .image_link:hover:after {
        opacity: 1;
        margin-top: -0.5em;
    }

    /* ↑スライダーのホバーをコピペ */

    .slider img {
        width: 100%;
        /*スライダー内の画像を横幅100%に*/
        height: auto;
    }

    /*slickのJSで書かれるタグ内、スライド左右の余白調整*/

    .slider .slick-slide {
        margin: 0 10px;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        top: 50%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #fff;
        /*矢印の色*/
        border-right: 2px solid #fff;
        /*矢印の色*/
        height: 15px;
        width: 15px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: -1.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: -1.5%;
        transform: rotate(45deg);
    }

    /*ドットナビゲーションの設定*/

    .slick-dots {
        text-align: center;
        margin: 20px 0 0 0;
    }

    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }

    .slick-dots button {
        color: transparent;
        outline: none;
        width: 8px;
        /*ドットボタンのサイズ*/
        height: 8px;
        /*ドットボタンのサイズ*/
        display: block;
        border-radius: 50%;
        background: #ccc;
        /*ドットボタンの色*/
    }

    .slick-dots .slick-active button {
        background: #333;
        /*ドットボタンの現在地表示の色*/
    }


    /*========= レイアウトのためのCSS ===============*/

    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* --------------------↑jsコピペ------------------- */

    .works2 {
        width: 50%;
        margin: 4% auto 0 auto;
        text-align: center;
    }

    .btn-works {
        width: 65%;
        font-size: 40px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-weight: bold;
        display: inline-block;
        color: #013392;
        background-color: white;
        text-decoration: none;
        user-select: none;
        border: 5px solid #013392;
        border-radius: 70px;
        transition: 0.4s ease;
        padding: 1.5rem 2rem;
    }

    .btn-works:hover {
        color: #fff;
        background: #013392;
    }

    .contact {
        background-color: #fff;
        /* background-color: cadetblue; */
        width: 100%;
    }

    .contact1 {
        /* background-color: bisque; */
        width: 80%;
        text-align: center;
        margin: 0 auto;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .contact1 h3 {
        color: black;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 40px;
    }

    .contact1 p {
        color: #d23918;
        font-size: 150px;
        font-family: "Tilt Warp", serif;
        ;
    }

    .contact2 {
        /* background-color: darkgoldenrod; */
        width: 40%;
        text-align: center;
        margin: 0 auto;
        padding-top: 2%;
        font-family: "Tilt Warp", serif;
        ;
    }

    a.btn-contact {
        color: #fff;
        background-color: #013392;
        font-weight: bold;
        text-decoration: none;
        border-radius: 50%;
        line-height: 300px;
        width: 300px;
        height: 300px;
        padding: 0;
        -webkit-box-shadow: 0 10px 0 #5fb9ff;
        box-shadow: 0 10px 0 #5fb9ff;
        font-size: 35px;
    }

    a.btn-contact:hover {
        -webkit-transform: translate(0, 3px);
        transform: translate(0, 3px);
        -webkit-box-shadow: 0 5px 0 #5fb9ff;
        box-shadow: 0 5px 0 #5fb9ff;
    }

    .footer {
        background-color: #FFCE4E;
        width: 100%;
    }

    .footer1 {
        /* background-color: #FFCE4E; */
        width: 10%;
        text-align: center;
        margin: 0 auto;
        padding: 5% 0%;
    }

    .footer1 img {
        width: 30%;
    }

    .footer1 p {
        color: white;
        font-size: 20px;
    }

}





















/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:600px) and (max-width:1180px) {

    .container {
        background-color: white;
        width: 100%;
        font-family: "Tilt Warp", serif;
        ;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }

    /* -----------------↓ハンバーガーメニューコピペ------------ */

    /*==================================================
    　5-2-4 MENUがCLOSEに
    ===================================*/

    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn {
        position: relative;
        /*ボタン内側の基点となるためrelativeを指定*/
        background: #d23918;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn span:nth-of-type(2) {
        top: 19px;
    }

    .openbtn span:nth-of-type(3) {
        top: 25px;
    }

    .openbtn span:nth-of-type(3)::after {
        content: "Menu";
        /*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top: 5px;
        left: -2px;
        color: #fff;
        font-size: 0.6rem;
        text-transform: uppercase;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

    .openbtn.active span:nth-of-type(1) {
        top: 14px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(3)::after {
        content: "Close";
        /*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
        top: 5px;
        left: 4px;
    }

    /* ----------------↑ハンバーガーメニューコピペ--------------- */

    /*========= ↓ナビゲーションのためのCSS ===============*/

    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #d23918;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        right: -50px;
        top: -50px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }


    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        font-size: 30px;
        font-family: "Tilt Warp", serif;
        ;
    }


    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn span:nth-of-type(2) {
        top: 20px;
    }

    .openbtn span:nth-of-type(3) {
        top: 28px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    /* ------------------↑ナビコピペ5-1-20--------------- */

    .header img {
        width: 100%;
    }

    .about {
        background-color: white;
        /* ↑whiteにする */
        width: 100%;
    }

    .about1 {
        /* background-color: aliceblue; */
        width: 90%;
        padding-top: 80px;
        margin: 0 auto;
    }

    .about1 ul {
        display: flex;
        list-style: none;
        width: 100%;
        justify-content: space-around;
        font-size: 25px;
        letter-spacing: 0.12em;
    }

    .about1 ul a {
        text-decoration: none;
        display: block;
        text-align: center;
        text-decoration: none;
        margin: auto;
        padding: 10px 45px;
        font-weight: bold;
        border: 5px solid #d23918;
        background: #fff;
        color: #d23918;
        border-radius: 100vh;
        transition: 0.5s;
        box-sizing: border-box;
    }

    .about1 ul a:hover {
        color: #fff;
        background: #d23918;
    }

    /* ------------↓ページトップコピペ---------------------- */

    /*========= ページトップのためのCSS ===============*/

    /*リンクの形状*/
    #page-top a {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #d23918;
        border: 2px solid #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 20px;
        transition: all 0.3s;
    }

    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 10px;
        bottom: 10px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(100px);
    }

    /*　上に上がる動き　*/

    #page-top.UpMove {
        animation: UpAnime 0.5s forwards;
    }

    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /*　下に下がる動き　*/

    #page-top.DownMove {
        animation: DownAnime 0.5s forwards;
    }

    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 1;
            transform: translateY(100px);
        }
    }

    /* -------------↑ぺージトップのボタンコピペ8-1-2------------ */

    .about2 {
        padding-top: 3%;
        padding-left: 5%;
        margin-top: 5%;
    }

    .about2 h2 {
        color: #d23918;
        font-size: 130px;
        letter-spacing: 2px;
    }

    .about2 h4 {
        color: black;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 25px;
        /* padding-bottom: 3%; */
    }

    .about3 {
        /* background-color: gold; */
        width: 90%;
        display: flex;
        margin: 0 auto 10% auto;
        padding-top: 50px;
        align-items: center;
    }

    .about4 {
        /* background-color: lightcyan; */
        width: 50%;
        text-align: center;
    }

    .about4 img {
        width: 100%;
    }

    .about5 {
        /* background-color: lightskyblue; */
        width: 50%;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    .about5 p {
        color: black;
        font-size: 11px;
        padding: 6% 20% 7% 20%;
    }

    .btn,
    a.btn,
    button.btn {
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.5;
        position: relative;
        display: inline-block;
        padding: 1rem 4rem;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
        border-radius: 0.5rem;
    }

    .btn-about {
        width: 70%;
        font-size: 11px;
        text-decoration: none;
        display: block;
        text-align: center;
        text-decoration: none;
        margin: auto;
        padding: 15px 5px;
        font-weight: bold;
        border: 3px solid #d23918;
        background: #fff;
        color: #d23918;
        border-radius: 100vh;
        transition: 0.5s;
        box-sizing: border-box;
    }

    .btn-about:hover {
        color: #fff;
        background: #d23918;
    }

    .works {
        background-color: #d23918;
        width: 100%;
        padding-top: 5%;
        padding-bottom: 5%;
    }

    .works1 {
        /* background-color: #013392; */
        width: 40%;
        padding-left: 5%;
    }

    .works1 h2 {
        color: white;
        font-size: 130px;
        letter-spacing: 2px;
    }

    .works1 h4 {
        color: black;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 25px;
        padding-bottom: 3%;
        margin-bottom: 3%;
    }

    /* --------------------↓jsコピペ------------------- */

    /*==================================================
    スライダーのためのcss
    ===================================*/
    .slider {
        /*横幅94%で左右に余白を持たせて中央寄せ*/
        width: 94%;
        margin: 0 auto;
    }

    .yellow1,
    .yellow2,
    .yellow3 {
        padding: 40px;
        background-color: #FFE4B3;
        border-radius: 20px;
    }

    .gray1,
    .gray2,
    .gray3 {
        padding: 40px;
        background-color: #E2DFDF;
        border-radius: 20px;
    }

    /* ↓スライダーのホバーをコピペ */

    .image_link {
        display: block;
        position: relative;
        text-decoration: none;
    }

    .image_link img {
        display: block;
        width: 100%;
    }

    .image_link:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 2;
        background: #000;
        /*好みの色に変えてください。*/
        opacity: 0;
        transition: 0.3s;
    }

    .image_link:after {
        content: "READ MORE";
        /*好みの文章に変更してください。*/
        display: block;
        color: #fff;
        line-height: 48px;
        width: 180px;
        border: solid 1px #fff;
        border-radius: 5px;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -1em;
        margin-left: -90px;
        opacity: 0;
        z-index: 3;
        transition: 0.3s;
        font-weight: bold;
        letter-spacing: 0.2em;
    }

    .image_link:hover:before {
        opacity: 0.5;
    }

    .image_link:hover:after {
        opacity: 1;
        margin-top: -0.5em;
    }

    /* ↑スライダーのホバーをコピペ */

    .slider img {
        width: 100%;
        /*スライダー内の画像を横幅100%に*/
        height: auto;
    }

    /*slickのJSで書かれるタグ内、スライド左右の余白調整*/

    .slider .slick-slide {
        margin: 0 10px;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        top: 50%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #fff;
        /*矢印の色*/
        border-right: 2px solid #fff;
        /*矢印の色*/
        height: 15px;
        width: 15px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: -1.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: -1.5%;
        transform: rotate(45deg);
    }

    /*ドットナビゲーションの設定*/

    .slick-dots {
        text-align: center;
        margin: 20px 0 0 0;
    }

    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }

    .slick-dots button {
        color: transparent;
        outline: none;
        width: 8px;
        /*ドットボタンのサイズ*/
        height: 8px;
        /*ドットボタンのサイズ*/
        display: block;
        border-radius: 50%;
        background: #ccc;
        /*ドットボタンの色*/
    }

    .slick-dots .slick-active button {
        background: #333;
        /*ドットボタンの現在地表示の色*/
    }


    /*========= レイアウトのためのCSS ===============*/

    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* --------------------↑jsコピペ------------------- */

    .works2 {
        width: 65%;
        margin: 5% auto 3% auto;
        text-align: center;
    }

    .btn-works {
        width: 65%;
        font-size: 30px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-weight: bold;
        display: inline-block;
        color: #013392;
        background-color: white;
        text-decoration: none;
        user-select: none;
        border: 5px solid #013392;
        border-radius: 70px;
        transition: 0.4s ease;
        padding: 1.5rem 2rem;
    }

    .btn-works:hover {
        color: #fff;
        background: #013392;
    }

    .contact {
        background-color: #fff;
        /* background-color: cadetblue; */
        width: 100%;
    }

    .contact1 {
        /* background-color: bisque; */
        width: 80%;
        text-align: center;
        margin: 0 auto;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .contact1 h3 {
        color: black;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 40px;
    }

    .contact1 p {
        color: #d23918;
        font-size: 90px;
        font-family: "Tilt Warp", serif;
        ;
    }

    .contact2 {
        /* background-color: darkgoldenrod; */
        width: 60%;
        text-align: center;
        margin: 0 auto;
        padding-top: 2%;
    }

    a.btn-contact {
        color: #fff;
        background-color: #013392;
        text-decoration: none;
        border-radius: 50%;
        line-height: 300px;
        width: 300px;
        height: 300px;
        padding: 0;
        -webkit-box-shadow: 0 10px 0 #5fb9ff;
        box-shadow: 0 10px 0 #5fb9ff;
        font-size: 35px;
        font-family: "Tilt Warp", serif;
        ;
    }

    a.btn-contact:hover {
        -webkit-transform: translate(0, 3px);
        transform: translate(0, 3px);
        -webkit-box-shadow: 0 5px 0 #5fb9ff;
        box-shadow: 0 5px 0 #5fb9ff;
    }

    .footer {
        background-color: #FFCE4E;
        width: 100%;
    }

    .footer1 {
        /* background-color: #FFCE4E; */
        width: 20%;
        text-align: center;
        margin: 0 auto;
        padding: 5% 0%;
    }

    .footer1 img {
        width: 20%;
    }

    .footer1 p {
        color: white;
        font-size: 20px;
    }

}





















/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 599px) {

    .container {
        background-color: white;
        width: 100%;
        font-family: "Tilt Warp", serif;
        ;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }

    /* -----------------↓ハンバーガーメニューコピペ------------ */

    /*==================================================
        　5-2-4 MENUがCLOSEに
        ===================================*/

    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn {
        position: relative;
        /*ボタン内側の基点となるためrelativeを指定*/
        background: #d23918;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn span:nth-of-type(2) {
        top: 19px;
    }

    .openbtn span:nth-of-type(3) {
        top: 25px;
    }

    .openbtn span:nth-of-type(3)::after {
        content: "Menu";
        /*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top: 5px;
        left: -2px;
        color: #fff;
        font-size: 0.6rem;
        text-transform: uppercase;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

    .openbtn.active span:nth-of-type(1) {
        top: 14px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(3)::after {
        content: "Close";
        /*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
        top: 5px;
        left: 4px;
    }

    /* ----------------↑ハンバーガーメニューコピペ--------------- */

    /*========= ↓ナビゲーションのためのCSS ===============*/

    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #d23918;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        right: -50px;
        top: -50px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        font-size: 20px;
        font-family: "Tilt Warp", serif;
        ;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn span:nth-of-type(2) {
        top: 20px;
    }

    .openbtn span:nth-of-type(3) {
        top: 28px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    /* ------------------↑ナビコピペ5-1-20--------------- */

    .header img {
        width: 100%;
        display: none;
    }

    .header {
        content: url(../img/header1-smp.webp);
        width: 100%;
    }

    .about {
        background-color: white;
        /* ↑whiteにする */
        width: 100%;
    }

    .about1 {
        /* background-color: aliceblue; */
        width: 90%;
        padding-top: 80px;
        margin: 0 auto;
        display: none;
    }

    .about1 ul {
        display: flex;
        list-style: none;
        width: 100%;
        justify-content: space-around;
        font-size: 25px;
        letter-spacing: 0.12em;
    }

    .about1 ul a {
        text-decoration: none;
        display: block;
        text-align: center;
        text-decoration: none;
        margin: auto;
        padding: 10px 45px;
        font-weight: bold;
        border: 5px solid #d23918;
        background: #fff;
        color: #d23918;
        border-radius: 100vh;
        transition: 0.5s;
        box-sizing: border-box;
    }

    .about1 ul a:hover {
        color: #fff;
        background: #d23918;
    }

    /* ------------↓ページトップコピペ---------------------- */

    /*========= ページトップのためのCSS ===============*/

    /*リンクの形状*/
    #page-top a {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #d23918;
        opacity: 0.8;
        border: 2px solid #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 20px;
        transition: all 0.3s;
    }

    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 10px;
        bottom: 10px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(100px);
    }

    /*　上に上がる動き　*/

    #page-top.UpMove {
        animation: UpAnime 0.5s forwards;
    }

    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /*　下に下がる動き　*/

    #page-top.DownMove {
        animation: DownAnime 0.5s forwards;
    }

    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 1;
            transform: translateY(100px);
        }
    }

    /* -------------↑ぺージトップのボタンコピペ8-1-2------------ */

    .about2 {
        width: 90%;
        padding-top: 3%;
        padding-left: 5%;
        margin-top: 5%;
    }

    .about2 h2 {
        color: #d23918;
        font-size: 90px;
        letter-spacing: 2px;
    }

    .about2 h4 {
        color: black;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 15px;
    }

    .about3 {
        /* background-color: gold; */
        width: 90%;
        margin: 0 auto 10% auto;
        padding-top: 20px;
    }

    .about4 {
        /* background-color: lightcyan; */
        width: 100%;
        text-align: center;
    }

    .about4 img {
        width: 100%;
    }

    .about5 {
        /* background-color: lightskyblue; */
        width: 80%;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        margin: 0 auto;
        text-align: center;
    }

    .about6 p {
        width: 100%;
        text-align: left;
        color: black;
        font-size: 14px;
        font-weight: normal;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .btn,
    a.btn,
    button.btn {
        position: relative;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0s;
        transition: all 0s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
        border-radius: 0.5rem;
    }

    .btn-about {
        width: 80%;
        font-size: 14px;
        text-decoration: none;
        display: block;
        text-align: center;
        text-decoration: none;
        margin: auto;
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 17px;
        font-weight: normal;
        border: 3px solid #d23918;
        background: #fff;
        color: #d23918;
        border-radius: 100vh;
        transition: 0s;
        box-sizing: border-box;
    }

    .btn-about:hover {
        color: #fff;
        background: #d23918;
    }

    .works {
        background-color: #d23918;
        width: 100%;
        padding-top: 5%;
        padding-bottom: 5%;
    }

    .works1 {
        /* background-color: #013392; */
        width: 90%;
        padding-left: 5%;
        margin-bottom: 20px;
    }

    .works1 h2 {
        color: white;
        font-size: 90px;
        letter-spacing: 2px;
    }

    .works1 h4 {
        color: black;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 15px;
    }

    /* --------------------↓jsコピペ------------------- */

    /*==================================================
        スライダーのためのcss
        ===================================*/
    .slider {
        /*横幅94%で左右に余白を持たせて中央寄せ*/
        width: 80%;
        margin: 0 auto;
    }

    .yellow1,
    .yellow2,
    .yellow3 {
        padding: 40px;
        background-color: #FFE4B3;
        border-radius: 20px;
    }

    .gray1,
    .gray2,
    .gray3 {
        padding: 40px;
        background-color: #E2DFDF;
        border-radius: 20px;
    }

    /* ↓スライダーのホバーをコピペ */

    .image_link {
        display: block;
        position: relative;
        text-decoration: none;
    }

    .image_link img {
        display: block;
        width: 100%;
    }

    .image_link:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 2;
        background: #000;
        /*好みの色に変えてください。*/
        opacity: 0;
        transition: 0s;
    }

    .image_link:after {
        content: "READ MORE";
        /*好みの文章に変更してください。*/
        display: block;
        color: #fff;
        line-height: 48px;
        width: 180px;
        border: solid 1px #fff;
        border-radius: 5px;
        text-align: center;
        position: absolute;
        top: 45%;
        left: 50%;
        margin-top: -1em;
        margin-left: -90px;
        opacity: 0;
        z-index: 3;
        transition: 0s;
        font-weight: bold;
        letter-spacing: 0.2em;
    }

    .image_link:hover:before {
        opacity: 0.5;
    }

    .image_link:hover:after {
        opacity: 1;
        margin-top: -0.5em;
    }

    /* ↑スライダーのホバーをコピペ */

    .slider img {
        width: 100%;
        /*スライダー内の画像を横幅100%に*/
        height: auto;
    }

    /*slickのJSで書かれるタグ内、スライド左右の余白調整*/

    .slider .slick-slide {
        margin: 0 10px;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        top: 50%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #fff;
        /*矢印の色*/
        border-right: 2px solid #fff;
        /*矢印の色*/
        height: 15px;
        width: 15px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: -3.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: -3.5%;
        transform: rotate(45deg);
    }

    /*ドットナビゲーションの設定*/

    .slick-dots {
        text-align: center;
        margin: 20px 0 0 0;
    }

    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }

    .slick-dots button {
        color: transparent;
        outline: none;
        width: 8px;
        /*ドットボタンのサイズ*/
        height: 8px;
        /*ドットボタンのサイズ*/
        display: block;
        border-radius: 50%;
        background: #ccc;
        /*ドットボタンの色*/
    }

    .slick-dots .slick-active button {
        background: #333;
        /*ドットボタンの現在地表示の色*/
    }


    /*========= レイアウトのためのCSS ===============*/

    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* --------------------↑jsコピペ------------------- */

    .works2 {
        width: 90%;
        margin: 8% auto 3% auto;
        text-align: center;
    }

    .btn-works {
        width: 75%;
        font-size: 20px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-weight: bold;
        display: inline-block;
        color: #013392;
        background-color: white;
        text-decoration: none;
        user-select: none;
        border: 3px solid #013392;
        border-radius: 70px;
        transition: 0s ease;
        padding: 1rem 2rem;
    }

    .btn-works:hover {
        color: #fff;
        background: #013392;
    }

    .contact {
        background-color: #fff;
        /* background-color: cadetblue; */
        width: 100%;
        margin-bottom: 6%;
        margin-top: 5%;
    }

    .contact1 {
        /* background-color: bisque; */
        width: 80%;
        text-align: center;
        margin: 0 auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contact1 h3 {
        color: black;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 20px;
    }

    .contact1 p {
        color: #d23918;
        font-size: 50px;
        font-family: "Tilt Warp", serif;
        ;
    }

    .contact2 {
        /* background-color: darkgoldenrod; */
        width: 70%;
        text-align: center;
        margin: 0 auto;
        padding-top: 2%;
    }

    a.btn-contact {
        color: #fff;
        background-color: #013392;
        text-decoration: none;
        border-radius: 50%;
        line-height: 150px;
        width: 150px;
        height: 150px;
        padding: 0;
        -webkit-box-shadow: 0 10px 0 #5fb9ff;
        box-shadow: 0 10px 0 #5fb9ff;
        font-size: 20px;
        font-family: "Tilt Warp", serif;
        ;
    }

    a.btn-contact:hover {
        -webkit-transform: translate(0, 3px);
        transform: translate(0, 3px);
        -webkit-box-shadow: 0 5px 0 #5fb9ff;
        box-shadow: 0 5px 0 #5fb9ff;
    }

    .footer {
        background-color: #FFCE4E;
        width: 100%;
    }

    .footer1 {
        /* background-color: #FFCE4E; */
        width: 20%;
        text-align: center;
        margin: 0 auto;
        padding: 40px 0;
    }

    .footer1 img {
        width: 45%;
    }

    .footer1 p {
        color: white;
        font-size: 12px;
        font-family: "Tilt Warp", serif;
        ;
        font-weight: normal;
    }

}