/*  背景デザイン（斜線）  */
.bg_pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    opacity: 0.4;
    z-index: -1;
  }
  .Diagonal_v3 {
    background-size: 20px 20px;
    background-image: repeating-linear-gradient(-45deg, rgb(116, 192, 233) 0, rgb(116, 192, 233) 5px, rgb(195, 214, 224) 0, white 50%);
  }
/*  ここまで背景デザイン（斜線）  */

* {
    box-sizing: border-box;
 }
 
 body {
    margin: 0;
    padding: 0;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #e6e6e6;
 }


 .footer{
  background-color: white;
  text-align: center;
}
@media(min-width:641px){
  .sp-only{
    display: none;
}
}