.mx-auto {
  width: 55%;
}

#sitelogo {
  max-height: 60px;
}

.content-title {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: black;
  background: transparent;/*背景透明に*/
  border-left: solid 5px #7db4e6;/*左線*/
}

h3 {
  padding: 0.25em 0.5em;
  margin-top: 2em;
  margin-bottom: 0.5em;
  border-left: solid 5px #ebba31;
}

li{
  list-style:none;
  font-weight:bold;
  margin-top: 1.0em;
}


.hero {
  background: url('/images/items/background.jpg') no-repeat center center;
  background-size: cover;
  height: 15vh;
  color: white;
  position: relative;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.3);
    /* 背景の透過黒 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

.main-image {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

/* パンくずリスト */
.custom-breadcrumb {
    padding-bottom: 20px;
    background-color: #f8f9fa; /* Bootstrapのbg-lightと同じ色 */
    border-radius: 0.375rem;   /* rounded-2 */
    justify-content: center;
    display: flex;             /* justify-content を効かせるため */
}

.breadcrumb-home-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}



/* footer */
footer {
  margin-top: 4rem;
}

footer a {
  color: rgba(255, 255, 255, 0.6); /* やや薄い白 */
  font-weight: 400;               /* 通常の細さ */
  text-decoration: none;          /* アンダーラインなし */
  transition: color 0.2s ease, font-weight 0.2s ease;
}

footer a:hover {
  color: #ffffff;                 /* 明るい白に */
  font-weight: 500;               /* 少しだけ太く */
  text-decoration: underline;     /* アンダーラインで視認性UP */
}

footer li {
  list-style:none;
  font-weight:bold;
  margin-top: 0;
  list-style: none;
}

.member-image {
    width: 100%;
    aspect-ratio: 1 / 1.3;
    object-fit: cover;

}

/* タブレット用 */
@media screen and (max-width: 1024px) {

  .mx-auto {
    width: 100%;
  }

}
/* スマホ用 */ 
@media screen and (max-width: 480px) {
  .mx-auto {
      width: 90%;
  }
  
  #sitelogo {
    max-height: 30px;
  }

  #menu {
    font-size: xx-small;
  }

  #inquiry {
    display: none;
  }

  .hero {
    height: 10vh;
  }

  /* パンくずリスト */
  .custom-breadcrumb {
    font-size: 10px;
    padding-top: 4px;
  }

  .breadcrumb-home-icon {
    width: 10px;
    height: 10px;
  }

  .footer-pc {
    display: none;
  }

}