@charset "utf-8";

body {
    width: 100%;
    background-color: #fff;
    background-image: url(../images/body-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
        "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}



/* 余白をゼロにする */
body,
p,
img {
    padding: 0;
    margin: 0;
}

/* レスポンシブ画面に１００％ */
img {
    vertical-align: bottom;
    max-width: 100%;
}

body {
    width: 100%;
    background-color: #fff;
}

/* 全部をcエンターに */
/* 画像をセンターに */
.all {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

/* ここに配置決める基準 */
.cta {
    position: relative;
}

/* 動かすのはこちらです */
/* ボタン配置したい場所は画像の全体のたてpx、ボタン配置の下からの長さはかり、％出す */
/* レスポンシブでもボタンが共に動くように */
/* ボタンの大きさ÷画面はば７５０px */
.cta a img {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 70%;
    transition: all 0.5s;
}

.cta a img:hover {
    opacity: 0.8;
}

.fixed a img {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    transition: all 0.5s;
}

.fixed a img:hover {
    opacity: 0.8;
}

footer {
    display: block;
    padding-top: 10px;
    border-top: 3px solid #ddd;
    background: #fff;
    margin-bottom: 250px;
}

ul {
    list-style: none;
}

.footer_nav {
    text-align: center;
    padding: 10px 0;
}

.footer_nav li {
    display: inline-block;
    margin: 0 5px 0 0;
    border-right: #000 solid thin;
    font-size: 13px;
}

.footer_nav li:nth-child(2) {
    border-right: none;
}

.footer_nav li a {
    text-decoration: none;
    padding: 0 10px 0 0;
    color: #000;
}

.footer_nav li:last-child {
    border: none;
}

footer .copyright p {
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    padding-bottom: 10px;
}

/* body,p,img{
   padding: 0;
   margin: 0; 
}

img{
    vertical-align: bottom;
    max-width: 100%;
}
body{
    width: 100%;
    background-color: #fff;
}
.all{
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}
.cta{
    position: relative;
    
}
.cta a img {
    position: absolute;
    bottom: 15.7%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    transition: all 0.5s;
 */