/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
font-family: sans-serif;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
  width: 100%;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
ul {
    padding: 0;
    margin: 0;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
  width: 100%;
  color: #333333;
  display: inline-block;
}
body {
  font-family: sans-serif;
}

/* pcの時は電話リンクなし */
@media (min-width: 769px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}

/* iPhone */
a[href^="tel:"] {
  display: inline;
}
/* iPhone form */
input[type="submit"] {
    /* -webkit-appearance: none; */
    border-radius: 0;
    display: block;
    cursor: pointer;
}

input[type="text"], input[type="email"] {
    /* -webkit-appearance: none; */
    border: 0;
    background-color: #EAEAEA;
    width: 100%;
}
input, select{
    /* -webkit-appearance: none; */
    appearance: none;
}
input[type="checkbox"] {
  appearance: auto;
}
html {
  font-size:10px
}
@media screen and (max-width: 768px) {
select {
  border-radius: 5px;
  color: #000;
}
}

input[type="radio"] {
  appearance: auto;
}

textarea {
  width: 100%;
  resize: none;
}
/* safariにのみ付く矢印を削除 */
summary::-webkit-details-marker {
  display:none;
}
