/* CSS Document */

.breadcrumb {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.25), transparent);
}

.breadcrumb-inner {
  margin: 0 auto;
  padding: 10px 20px;
  text-align: right;
  font-size: 0.65rem;
  color: #ffffffcf;
  letter-spacing: 2px;
}

.breadcrumb-inner a:hover{
  text-decoration: underline;
}


.decorate-trees {
  position: absolute;
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
  user-select: none;
}

.decorate-tree-l-t {
  top: 0;
  left: -20px;
  width: 26vw;
}

.decorate-tree-r-b {
  bottom: 0;
  width: 46vw;
  right: -20px;
}



/* =============================================
   page-hero（下層ページ共通ヒーロー）
   TOPページ(#fv-top)の世界観を踏襲した簡易版
   ============================================= */

.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(28, 18, 54, 0.94), rgba(15, 10, 30, 0.97));
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../img/top/hero-filter.png") center / cover no-repeat;
  opacity: 0.55;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(240px, 28vw);
  aspect-ratio: 1/1;
  background: url("../img/decorate/matsu-big.png") center / cover no-repeat;
  opacity: 0.36;
  pointer-events: none;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-hero-content .section-label {
  display: block;
  color: #c7a96b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  font-family: "Shippori Mincho B1", serif;
  margin-bottom: 5px;
}

.page-hero-content h1 {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: min(3rem, 3vw);
}


@media (max-width: 1560px) {

  .page-hero {
    height: 260px;
    padding-top: 30px;
  }
  
  .page-hero::after {
    width: 150px;
  }
  
}

@media(max-width: 1100px){
  
  .page-hero{
    height: 240px;
    padding-top: 0;
  }
  
  .page-hero-content h1 {
    font-size: max(1.5rem, 3.5vw);
    letter-spacing: 0.05em;
  }
  
  .page-hero-content .section-label {
    font-size: max(0.45rem, 0.75vw);
    letter-spacing: 0.5em;
  }
  
  .breadcrumb-inner {
    margin: 0 auto;
    padding: 10px 20px;
    text-align: right;
    font-size: 0.5rem;
    color: #ffffffcf;
    letter-spacing: 2px;
  }
}


@media (max-width: 600px) {
  .page-hero { 
    height: 220px; 
    padding-bottom: 30px; 
    padding-top: 20px;
  }

  .page-hero-content .section-label {
      font-size: 0.5rem;
      letter-spacing: 0.2em;
      margin-bottom: 0;
  }
  
  .page-hero-content {
    margin-top: 20px;
  }
  
  .temple-card::before {
    top: 0px;
  }
 
}

