@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%;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*hover*/
.btn_gazou:hover {
	opacity: 0.8;
	transition: all 0.3s;
}

/*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;
  }
}

@media screen and (min-width:768px) {
  .sp_ds {
    display: none;
  }
  .pc_ds {
    display: inline-block;
  }
  .br-sp {
    display: none;
  }
}


/*--------------
footer
---------------*/
.footer_nav {
  font-size: 14px;
  text-align: center;
  background: #fff;
  padding: 1% 0;
}
.footer_nav a{
  color: #02A621;
}
footer{
  text-align: center;
  padding: 10px;
  background: #eee;
}
footer p{
  font-size: 14px;
  margin: 0;
}
@media screen and (max-width:740px) {
  .footer_nav {
  font-size: 3vw;
  padding: 4% 2%;
}
}