@charset "utf-8";

body{
    background-image: url("../img/site_ornaments.png"),url("../img/yokokusa.png");
    background-repeat: repeat-x,repeat-y;
    background-size: 100%,100%;
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
}

p{text-align: left;}
p.center{text-align: center;}
h1{
    font-size: x-large;
    text-align: center;
}

img{
    width: 100%;
    height: auto;
}
.container{
    flex-wrap: wrap-reverse;/* 画面小→折り返しを適用。トップ画像と入り口ボタンを並び替える */
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 50px 0px 0px 0px;
} 

.con_left{
    flex-basis: 85%;
    margin: 20px 0px 0px 0px;
}
.con_right{
    flex-basis: 85%;
    margin: 0;
}

.go_img{display: none;}
.go_img_s{display: block;}


/* tablet */
@media screen and (min-width: 520px) {

h1{font-size: 2em;}
.go_img_s img{width: 70%;}

}


/* pc */
@media screen and (min-width: 920px) {
body{
    background-size: 70%,100%;
}
.container{
    justify-content: space-around;
    margin: 50px 0 0 0;
}
.con_left{
    text-align: center;    
    flex-basis: 40%;
    padding: 10px 0 0 40px;
    margin: 0;
}
.con_right{
    flex-basis: 55%;
    margin: 50px 0px 0px 0px;
}
.go_img_s{display: none;}

.go_img{display: block;}
.go_img img{width: 70%;}
}
 

@media screen and (min-width: 1281px){
body{
    background-size: 50%,100%;
}
.container{
    justify-content: center;
    margin: 100px 0 0 0;
}
.con_left{
    flex-basis: 40%;
    margin: 30px 0 0 0;
    padding: 0;
}
.con_right{
    flex-basis: 40%;
    margin: 0;
}



.go_img img{width: 60%;}

}

