a:link {
  color: #004de6;
  text-decoration: none;

}

a:visited {
  color: #235BC8;
  text-decoration: none;
}

a:hover {
  color: #EF4123;
  text-decoration: none;
}

a:active {
  color: #EF4123;
  text-decoration: none;
}



.abc {
  border-left: solid 10px #639b4d;
  border-bottom: solid 1px gray;
  /*余白をつけておきます*/
  padding: 10px;
}



/* スマホ用 */
@media screen and (max-width: 1000px) {
  /* スマホ用のCSSを記述 */

}

/* PC用 */
@media screen and (min-width: 1001px) {
  .container {
    max-width: 800px;
    font-size: 20px;
    /* justify-items: center; */
  }
}

.Header {
  position: fixed;
  /* ヘッダーを固定する */
  top: 0;
  /* 上部から配置の基準位置を決める */
  left: 0;
  /* 左から配置の基準位置を決める */
  width: 100%;
  /* ヘッダーの横幅を指定する */
  /* height: 50px; */
  /* ヘッダーの高さを指定する */
  padding: 0px;
  /* ヘッダー内側の余白を指定する(上下左右) */
  /* padding-left: 100px; */
  background-color: #ffffff;
  /* border-bottom: solid 1px #686868; */
  /* ヘッダーの背景色を指定する */
  color: #000000;
  /* ヘッダーのフォントの色を指定する */

}

.container {
  display: grid;
  /* max-width:1000px; */
  grid-template-columns: 1fr;
  gap: 30px;
  /* border: 2px solid; */
  /* margin: 20px; */
  margin-top: 100px;
  margin-left: 20px;
  margin-right: 20px;
  /* justify-items: center; */
  align-items: center;
}

.item {
  /* border: 2px solid; */
  margin: 20px;
}

.container-header {
  display: grid;
  grid-template-columns: 200px 260px 100px;
  justify-items: center;
  align-items: center;
  margin-left: 20px;
}



.marker {
  background: linear-gradient(transparent 80%, #f7ce48 0%);
  font-weight: bold;
}

.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  /* 比率を4:3に固定 */
}

/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-link a {
  /* background-color: #5a8af1; */
  font-size: 30px;
  padding: 20px;

  color: white;
  margin-left: 20px;
}

.header-link {
  background: linear-gradient(to right, rgb(92, 214, 68) 20%, rgb(233, 194, 108) 60% );

  padding: 10px;
}