@charset "UTF-8";
html {
  font-size: 16px;
  color: #333;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.center {
  display: block;
  margin-top: 100px;
  margin-bottom: 100px;
  max-width: 800px;
  margin-inline: auto;
  padding: 0 4%;
}
@media only screen and (max-width: 780px) {
  .center {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
}

h1 {
  display: block;
  text-align: center;
  color: #195f55;
  font-weight: 700;
  font-size: 32px;
}

.center-text {
  margin-top: 50px;
}

.table {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 4%;
  margin-top: 50px;
}
@media only screen and (max-width: 780px) {
  .table {
    width: 100%;
  }
}

.table p {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}

.table ul {
  margin-top: 2em;
}

.table ul li {
  padding-top: 1em;
}

.table ul li + li {
  margin-top: 1em;
  border-top: 1px solid #e1e1e1;
}

p.caption {
  margin-top: 40px;
  font-weight: 400;
  text-align: left;
  font-size: 16px;
}
p.caption a {
  color: #195f55;
  text-decoration: underline;
}