@charset "UTF-8";

/*基本設計*/   

body {
    margin: 0;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 2;
    font-size: 18px;
    color: #333;
}

img {
    border: 0;
    vertical-align: bottom;
}
/* 大枠 */
.wrapper {
    width: 1064px;
    margin: 0 auto;
    box-shadow: 4px 0px 3px -3px #ccc,-4px 0px 3px -3px #ccc;
}

.container {
    width: 1000px;
    margin: 0 auto;
}
/* ユーチューブ動画 */
.youtube-box {
    position: relative;
}

.youtube-inner {
    position: absolute;
    top: 10px;
    left: 170px;
}

/* フォーム */
.btn-box1 {
    position: relative;
}

.btn1-inner {
    position: absolute;
    top: 800px;
    left: 170px;
     animation: piko 2.5s infinite;
     
}


@keyframes piko {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

.btn-box2 {
    position: relative;
}

.btn2-inner {
    position: absolute;
    top: 60px;
    left: 170px;
     animation: piko 2.5s infinite;
}

@keyframes piko {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}
.btn1-inner img,
.btn2-inner img {
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn1-inner img:hover,
.btn2-inner img:hover {
    transform: scale(1.05);
    filter: brightness(1.08);
}

/* フッター */
.footer {
    background: #f2618f;
    color: #fff;
    padding: 20px 30px;
    text-align: center;

}

.footer-inner {
    width: 1024px;
    margin-left: auto;
    margin-right: auto; 
}

.footer a {
    color: #fff;
    text-decoration: none;
}