@charset "utf-8";

/* リセットCSS destyle.css */
/* ============================================ */

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}

small {
  font-size: 80%;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

thead {
  display: table-header-group;
  vertical-align: middle;
  unicode-bidi: isolate;
  border-color: var(--lgreen);
}



/* オリジナルCSS */
/* ============================================ */
* {
  margin:0;
  padding:0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow: auto;
}

br {
  line-height:0;
}

img {
  border:none;
  line-height:0;
  vertical-align:middle;
  max-width:100%;
  height:auto;
}

a {
  cursor: pointer;
  text-decoration:none;
  background-color: transparent;
  color: inherit;
}

a:hover {
  text-decoration:none;
}

ul,li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.db, .pc {
  display:block;
}

.dn, .sp {
  display:none;
}

.tel{
	pointer-events: none;
}

/* メディアクエリ */
/* ============================================ */
@media screen and (max-width: 992px){

}
@media screen and (max-width: 768px) {
  .tel{
    pointer-events: inherit;
  }
}
@media screen and (max-width: 576px) {

}
@media screen and (max-width: 480px) {
  img {
    user-select:none;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
  }
  /* .sp {
    display:block;
  }
  .pc {
    display:none;
  } */
}