@charset "UTF-8";

h1 {
  margin: 4rem 0;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.25;
  color: #000000;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
    margin: 3rem 0;
  }
}

table {
  margin: 0 auto 80px;
  max-width: 800px;
  word-break: break-all;
  overflow-wrap: break-word;
  font-size: 1rem;
  line-height: 1.8;
  width: 100%;
  border-collapse: collapse;
  display: table;
  box-sizing: border-box;
  text-indent: initial;
  unicode-bidi: isolate;
  border-spacing: 2px;
  border-color: gray;
}

td, th {
  width: auto;
  border: 1px solid #dee4e4;
  text-align: left;
  padding: 0.5rem;
  margin: -0.1rem;
}  

th {
  background: #f8fafa;
  vertical-align: top;
  width: 30%;
}

@media screen and (max-width: 768px) {
  th {
    width: auto;
    display: block;
    border-bottom-width: 0;
  }  
}

@media screen and (max-width: 768px) {
  td {
    display: block;
    border-bottom-width: 0;
  }
}

@media screen and (max-width: 768px) {
  tr:nth-last-of-type(1) td {
    border-bottom-width: 1px;
  }
}

td ol, td ul {
  padding-left: 20px;
  margin: 0;
}

td ol li {
  margin-bottom: 6px;
}

@media screen and (min-width: 768px){
a[href*="tel:"] {
    pointer-events: none; /*①アンカーのtelを無効化*/
    cursor: default; /*②アンカーのポインターをデフォルトにする*/
    text-decoration: none;
    color: #1a1a1a;
}
}

ul.card_icon{
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  align-items: center;
}

ul.card_icon li img{
  max-height: 40px;
  max-width: 40px;
  width: auto;
  height: auto;
}

@media screen and (min-width: 768px){
  ul.card_icon li img{
    max-height: 80px;
    max-width: 80px;
  }
}