@charset "UTF-8";

/* ========================================
 *  Template Name: Common Style Sheet
 * =======================================*/

.grecaptcha-badge {visibility: hidden;!important; }

main {
  flex: 1 0 auto;
}

#container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 15px;  
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3em;
  font-size: .8em;
  color: #333;
  gap: 4px;
}

/* リンク部分のスタイル */
.breadcrumb a {
  text-decoration: none;
  color: #333;
  transition: text-decoration 0.2s ease;
}

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

/* 区切り「>」のスタイル */
.breadcrumb-separator {
  margin: 0 4px;
  color: #888;
  user-select: none;
}

/* 現在のページのスタイル（リンクではない） */
.breadcrumb [aria-current="page"] {
  color: #555;
  font-weight: normal;
}

#content {
  padding: 3rem 0;
}

.page-header {
  padding: 10px 15px;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  margin-top: 60px; /* 固定ヘッダー分の余白確保 */
}

.page-ttl {
  max-width: 1200px;
  margin: 0 auto;
  color: #222;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align: center;
}

.page-ttl h2 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.page-ttl h3 {
  font-size: 1rem;
  margin: 5px 0 0 0;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.1;
}

.section-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 15px;
  z-index: 2;
}

.section-area {
  position: relative;
  z-index: 2;
}

.section-area p {
  margin-bottom: 10px;
  text-align: center;
}

.section-ttl h3 {
  font-family: 'Playfair Display', serif;
  color: #000;
  font-size: 2rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
  display: block;
  position: relative;
  text-align: center;
}

.section-ttl h3:after {
  border-radius: 50px;
  height: 2px;
  width: 37px;
  background: #73674c;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 0;
}

.section-ttl h4 {
  color: #000;
  font-size: .8rem;
  text-align: center;
}

.all a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  margin: 0 auto;
  padding: 20px 30px;
  background: #000;
  color: #fff;
  font-size: 1em;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
  z-index: 1;
  transition: .3s;
  cursor: pointer;
}

.all a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: #1c1d21;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.all a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.button a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 350px;
  margin: 0 auto;
  padding: 15px 30px;
  background: #73674c;;
  color: #fff;
  font-size: 1em;
  text-align: center;
  text-decoration: none;
  line-height: 1.7em;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
  z-index: 1;
  transition: .3s;
  cursor: pointer;
}

.button a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: #1c1d21;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.button a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.arrow {
  width: 40px;
  height: 8px;
  margin-left: 10px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: skew(45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
 *  画面の横幅が768px以上 (Tablet)
 * =======================================*/
@media screen and (min-width: 768px) {

  .page-header {
    padding: 20px 15px;
    margin-top: 60px; /* 固定ヘッダーの高さ */
  }

  .page-ttl h2 {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
  }

  .page-ttl h3 {
    font-size: 1.2rem;
  }

}

/* ========================================
 *  画面の横幅が1024px以上 (Desktop)
 * =======================================*/
@media screen and (min-width: 1024px) {

.page-header {
  padding: 6rem 0;
}

#container {
  padding: 0;
}

#content {
  padding: 6rem 0;
}

}
