@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Lato:wght@700;900&family=Outfit:wght@100..900&family=Rowdies:wght@300&display=swap');

:root {
  --color-orange: #eb610f;
}
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #000;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-feature-settings: 'palt';
}
main {
  flex: 1;
}
header,
footer {
  width: 100%;
}
.inner {
  width: 1000px;
  max-width: 95%;
  margin-inline: auto;
}
@media (hover: hover) {
  button,
  a:where([href]) {
    transition: opacity 0.3s;
    &:hover {
      opacity: 0.7;
    }
  }
  a:where(:not([href])) {
    pointer-events: none;
  }
  a:has(.scaleUpImgHover) {
    @media (hover: hover) {
      &:hover {
        opacity: 1;
      }
    }
  }
}
img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.grid {
  display: grid;
}
.tab_display,
.sp_display {
  display: none;
}
.bg-gray {
  background-color: #efebe9;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media screen and (min-width: 768px) {
  a[href^='tel:'] {
    pointer-events: none;
    cursor: default;
  }
}
/*==================================================
    装飾
==================================================*/
/* 文字
------------------------------------------------- */
.is-semibold {
  font-weight: 600;
}
.is-bold {
  font-weight: 700;
}
.is-orange {
  color: var(--color-orange);
}

/* 余白
------------------------------------------------- */
.mt-0 {
  margin-top: 0;
}
.mt-5 {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) and (max-width: 1053px) {
  html {
    font-size: 0.94966762vw;
  }
  .tab_display {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
  .pc_display {
    display: none;
  }
  .sp_display {
    display: block;
  }
  .tab_display {
    display: none;
  }
  .inner {
    max-width: 92%;
  }
  img {
    width: 100%;
  }
}
