@charset "UTF-8";
/*
表玄関インデックスページ
*/

@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

.zen-maru gothic-regular {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    font-style: normal;
  }

body {
    height: 800px;
    background-image: url('background.png');
    background-position: bottom;
    background-repeat: repeat-x;
    background-attachment: fixed;
    text-align:center;
    font-family: "Zen Maru Gothic", serif;
    display: flex;
    justify-content: center;
    align-items: center;
   }

a {
    text-decoration:none;
    transition: all 0.3s;
}
a.btn {
    background: #161A30;
    color: white;
    text-align: center;
    width: fit-content;
    min-width: 100px;
}
a.btn:hover {
    background: #FFFFFF;
    color : #161A30;
}
.titlelogo {
    display: block;
    width: 300px;
    margin: auto;
}
.caution {
    display: block;
    margin: auto;
}

  .image_link img{
    filter: saturate(0%);
    transition:0.2s;
  }
  .image_link:hover img{
    filter: saturate(100%);
  }