@charset "UTF-8";
/* 初期化 */
html, body, div, pre, p, blockquote,
form, fieldset, input, textarea, select, option,
dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
table, th, td, embed, object, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* フォントスタイル初期設定 */
html {
  font-size: 62.5%; /*標準サイズ*/
}

body {
  word-wrap: break-word;
  font-family: 'Noto Sans JP', sans-serif;
}

img {
  border: 0;
  vertical-align: bottom;
}

img[src$=".png"],
img[src$=".jpg"] {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

a:hover img.alpha {
  filter: alpha(opacity=70);
  opacity: 0.8;
  -moz-opacity: 0.8;
}

.btnflash a:hover {
  opacity: 0.7;
  animation: flash 1s;
}

.inner {
  margin: 0 auto;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

address {
  font-style: normal;
}

.large {
  font-size: larger;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
.animation-delay1 {
  animation-delay: 1s;
}

.animation-delay2 {
  animation-delay: 2s;
}

hr {
  border: 1px solid #ccc;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-between {
  justify-content: space-between;
}

.flex-a-center {
  align-items: center;
}

.row-reverse {
  flex-direction: row-reverse;
}

.flex-c-center {
  justify-content: center;
}

.flex-end {
  justify-content: flex-end;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

@media screen and (max-width: 750px) {
  img {
    max-width: 100%;
    height: auto;
  }
  .l-spCenter {
    text-align: center;
  }
  .pcOnly {
    display: none;
  }
}
@media screen and (min-width: 1201px) {
  .sp-center {
    text-align: center;
  }
  .spOnly {
    display: none;
  }
  .l-pcFlex {
    display: flex;
  }
  .l-spOnly {
    display: none;
  }
  .l-pcCenter {
    text-align: center;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}/*# sourceMappingURL=reset.css.map */