@charset "UTF-8";

.body {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* アクセスのスタイル */
.access {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.access-info-title-container {
  width: 100%;
  border-bottom: 2px solid black; /* 枠線を黒にする */
}

.access-info-title {
  font-size: 1.1em;
  font-weight: bold;
  padding-left: 10px;
  width: 100%;
  text-align: left;
}

.access-item {
  display: flex;
  flex-direction: column; /* 縦並びにする */
  align-items: flex-start;
  margin-bottom: 20px;
  width: 100%;
}

.access-content-container {
  width: 100%;
}

.access-content {
  background-color: transparent; /* 背景色をなしにする */
  padding: 10px 0px 10px 0px;
  margin-top: 10px;
  display: flex;
  flex-direction: column; /* 縦並びにする */
  align-items: flex-start;
  width: 100%;
}

.info-item {
  display: flex;
  flex-direction: row; /* 横並びにする */
  align-items: stretch; /* 高さを揃える */
  width: 100%;
  margin-bottom: 10px; /* 下に余白を追加 */
  text-align: left;
}

.label-container {
  width: 30%; /* 親クラスの30% */
  display: flex;
  justify-content: flex-start;
  align-items: center; /* 中央揃え */
  /* 下線部を黄緑色、太さを1px */
  border-bottom: 1px solid #ADFF2F;  
}

.item-container {
  width: 70%; /* 親クラスの70% */
  display: flex;
  justify-content: flex-start;
  align-items: center; /* 中央揃え */
  /* 下線部を緑色、太さを1px */
  border-bottom: 1px solid green;
  text-align: left;
}

.label {
  font-size: 1.1rem;
  font-weight: 600;
}

.item {
  font-size: .9rem;
  font-weight: 300;
}

div.place-card {
  display: none !important;
}

/* Google Mapのスタイル */
#map {
  width: 100%;
  height: 450px;
}

.open-google-maps-container {
  text-align: left;
}

@media (max-width: 768px) {
  .body {
    margin-top: 0;
    margin-bottom: 0;
  }

  .label {
    font-size: 0.7em;
    font-weight: bold;
  }
  
  .item {
    width: 100%;
    font-size: 0.7em;
  }
}