@charset "utf-8";
/* CSS Document */
/*all*/
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue,Hiragino Kaku Gothic ProN", "繝｡繧､繝ｪ繧ｪ", meiryo, sans-serif;
  background-color: #fff;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
p {
  line-height: 1.6;
  word-wrap: break-word;
}
a {
  color: #000;
}
img {
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}
#container {
  width: 1300px;
  margin: 0 auto;
}

/*pc・sp responsive*/
@media screen and (max-width:767px) {
  .sp_ds {
    display: inline-block;
  }
  .pc_ds {
    display: none;
  }
  .br-sp {
    display: inline-block;
  }
  .br-pc {
    display: none;
  }
  #container {
    width: 100%;
  }
}

@media screen and (min-width:768px) {
  .sp_ds {
    display: none;
  }
  .pc_ds {
    display: inline-block;
  }
  .br-sp {
    display: none;
  }
}