@charset "UTF-8";

.sec-Head {
  text-align: center;
  /*margin: 150px auto;*/
  padding: 150px 0;
}
.sec-Head .ttl-Box {
  margin: 0 0 40px;
}
.sec-Head .ttl-Box h2 {
  display: inline-block;
  background: linear-gradient(0deg, #998770 0%, #e4cbac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Cinzel', serif;
  /*font-size: min(4.64vw, 58px);*/
  font-size: clamp(34px, 4.14vw, 58px);
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.sec-Head .catch-Copy {
  margin: 0 0 40px;
}
.sec-Head .catch-Copy p {
  font-size: clamp(20px, 1.71vw, 24px);
  line-height: 2;
}
.sec-Head .lead-Copy p {
  font-size: clamp(14px, 1.14vw, 16px);
  line-height: 2.8125;
}

.map-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Google Map Button */
.gmap-Btn {
  margin: 30px auto 100px;
  text-align: center;
}

.gmap-Btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* 文字と矢印の間 */
  width: 200px;
  padding: 10px 0;
  text-align: center;

  font-size: 0.925em;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #000;
  text-decoration: none;
  transition: opacity .3s;
}

/* 上下のグラデ線 */
.gmap-Btn a::before,
.gmap-Btn a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    #b49a83 0%,
    #e7d6ac 50%,
    #b49a83 100%
  );
}

.gmap-Btn a::before { top: 0; }
.gmap-Btn a::after  { bottom: 0; }

.gmap-Btn a span::after {
      content: "";
    display: block;
    width: 0.6em;
    aspect-ratio: 1 / 1;
    border-top: 1px solid #b89f8a;
    border-right: 1px solid #b89f8a;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(45deg);
    transition: all ease 0.3s;
}

.gmap-Btn a:hover {
  opacity: .7;
}
.gmap-Btn a:hover span::after {
  right: 5px;
}



/*---------------------------
PC・TABのみ
---------------------------*/
@media only screen and (min-width: 769px) and (max-width: 1024px) {}

/*---------------------------
Tab
---------------------------*/
@media screen and (max-width: 1024px) {}

/*---------------------------
sp
---------------------------*/
@media only screen and (max-width: 768px) {


  .sec-Head {
    /*margin: 50px auto 40px;*/
    padding: 50px 0 40px;
  }
  .sec-Head .ttl-Box {
    margin: 0 0 25px;
  }
  .sec-Head .catch-Copy {
    margin: 0 0 40px;
  }
  .sec-Head .catch-Copy p {
    font-size: clamp(20px, 1.71vw, 24px);
  }
  .sec-Head .lead-Copy p {
    font-size: clamp(14px, 1.14vw, 16px);
    line-height: 2;
  }

  
  .gmap-Btn {
      text-align: center;
      margin: 30px auto 60px;
  }
  .gmap-Btn a {
      padding: 10px 20px;
      font-size: 1em;
  }

}
