/* 背景写真 */
#Group {
  display: block;
  background-image: url("../asset/group/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100dvh;
  padding-top: 40px;
}

.container {
  /* border: 2px solid blue; */
}

/*********** title ************/
/* Top画像 */
#Group .content.title {
  position: relative;
  width: 100%;
  padding: 9px;
  border: 5px solid black;
  border-bottom-width: 10px;
  background-color: white;
}

#Group .content.title::before,
#Group .content.title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: contain;
}

#Group .wrapper .content.title::before {
  background-image: url(../../assets/images/warpLeft.png);
  background-position: left;
}

#Group .content.title::after {
  background-image: url(../../assets/images/warpRight.png);
  background-position: right;
}

#Group h2 {
  font-size: 48px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

#Group h2::after {
  display: inline-block;
  content: attr(data);
  font-size: 12px;
  color: var(--black);
  margin: auto 6px;
}

@media(max-width:997px) {
  #Group h2 {
    line-height: 48px;
    flex-direction: column;
  }

  #Group h2::after {
    line-height: normal;
  }
}

@media (max-width:576px) {
  #Group h2 {
    line-height: 32px;
    font-size: 32px;
  }
}

#Group p {
  font-weight: bold;
  margin: 3% 0;
  text-align: left;
}

#Group .form_text {
  font-size: 35px;
  text-align: left;
  /* border: 2px solid tomato; */
  margin: 3% 0 0;
}

/* テーブル */
table {
  margin: 5% 0 8%;
  width: 100%;
}

table,
td,
th {
  /* border: 1px solid #595959; */
  border-collapse: collapse;
}

td {
  padding: 15px 5px;
  text-align: left;
  align-items: center;
  font-weight: bold;
  font-size: medium;
}

tr:hover {
  background-color: var(--white);
  filter: drop-shadow(0 0 6px rgb(190, 188, 188));
}

.item_name {
  background-color: black;
  color: white;
  border: 3px solid white;
  padding: 3px 3px 3px 10px;
  /* height: 25px; */
}

/* サイトに飛ばすアイコン */
.web {
  text-align: center;
  padding: 2px;
}

.ico_phone {
  width: 15px;
  height: 15px;
  /* border: 1px solid tomato; */
}

/* 住所 */
.address {
  font-size: small;
  font-weight: normal;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  font-size: large;
  font-weight: bold;
}

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

/* 〇アイコン */
.round_item {
  /* font-size: smaller; */
  border: 2px solid black;
  border-radius: 50px;
  display: inline-block;
  /* margin-right: 8px; */
  padding: 5px 10px;
  /* display: block; */
  height: auto;
  width: auto;
  background: conic-gradient(from -45deg, #cccccc, #fbfbfb, #cccccc, #fbfbfb, #cccccc);
  background-size: 12px 12px;
  text-align: center;
}

.ico_home:hover {
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  #Group {
    padding-bottom: 10px;
  }

  /* テーブル */
  table {
    /* margin: 5% 0 8%; */
    margin-top: 0;
    width: 100%;
  }

  td {
    border: 1px solid #595959;
    border-collapse: collapse;
    border-right: 0px none;
  }

  td {
    text-align: left;
    align-items: center;
    font-weight: bold;
  }

  tr td:nth-child(1) {
    width: 25%;
  }

  tr td:nth-child(2) {
    /* width: 75%; */
  }

  .table_title {
    text-align: left;
    margin: 3% 0 2%;
  }

  .table_title,
  .item_name,
  .address,
  .flex {
    font-size: xx-large;
  }

  .item_name {
    background-color: black;
    color: white;
    border: 1px solid white;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .address {
    padding-left: 5%;
    border-top: none;
  }

  /* 〇アイコン */
  .round_item {
    font-size: xx-large;
    padding: 5px 3%;
    margin-left: 5%;
  }

  .ico_home {
    margin: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    filter: drop-shadow(0 0 6px rgb(190, 188, 188));
  }

  .ico_phone {
    width: 6%;
    height: 6%;
  }
}

@media screen and (max-width: 768px) {

  .table_title,
  .item_name,
  .address,
  .flex,
  .round_item {
    font-size: x-large;
  }

  .ico_home {
    /* width: 60px;
    height: 60px; */
  }

  /* 画面が小さい時、並びは縦にする */
  .td_flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 700px) {}

@media screen and (max-width: 576px) {
  /* .table_title,
  .item_name,
  .address,
  .flex,
  .round_item {
    font-size: x-large;
  } */

  .ico_home {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 400px) {

  .table_title,
  .item_name,
  .address,
  .flex,
  .round_item {
    font-size: medium;
  }

  .round_item {
    font-size: 18px;
    margin: 0 auto;
  }
}