@charset "UTF-8";

/* パンくずリスト */
.breadcrumb .sec-inner {
  max-width: 1200px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .breadcrumb .sec-inner {
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding-bottom: 1em;
  }
}
.breadcrumb.h-thin .sec-inner {
  padding-bottom: 0;
}
nav.breadcrumb ol {
  display: flex;
  margin-top: 1em;
  gap: 2em;
  font-size: 12px;
  line-height: calc(48 / 12);
  color: #36241f;
}
nav.breadcrumb.h-thin ol {
  margin-top: 0;
}
nav.breadcrumb li {
  font-size: 12px;
  line-height: calc(48 / 12);
  color: #36241f;
}
nav.breadcrumb li a {
  display: block;
  position: relative;
}
nav.breadcrumb li a::after {
  content: "＞";
  position: absolute;
  right: -2em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6em;
}
@media screen and (max-width: 767px) {
}

.font-mincho {
  /* font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "MS PMincho", serif; */
  font-family: "Shippori Mincho", serif;
}
/* kv */
#kv {
  padding-top: var(--pc-header-height);
  position: relative;
}
@media screen and (max-width: 767px) {
  #kv {
    padding-top: var(--sp-header-height);
  }
}
.kv-inner {
  position: relative;
  padding: 30px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .kv-inner {
    padding: 10px;
  }
}
.kv-inner h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: #fff;
  font-size: 42px;
  line-height: calc(48 / 42);
  letter-spacing: 0.04em;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .kv-inner h1 {
    font-size: calc(28 / 430 * 100vw);
    line-height: calc(48 / 28);
  }
}
/* Google Map */
#googlemap {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#googlemap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (max-width: 767px) {
  #googlemap {
    height: 300px;
  }
}

/* アニメーション */
/* 初期状態（非表示・下にズレ） */
.fade-up {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* 遅延クラス（0〜1秒） */
.delay-0.in-view {
  transition-delay: 0s;
}
.delay-1.in-view {
  transition-delay: 0.5s;
}
.delay-2.in-view {
  transition-delay: 1.5s;
}
.delay-3.in-view {
  transition-delay: 2s;
}
.delay-4.in-view {
  transition-delay: 2.5s;
}
.delay-5.in-view {
  transition-delay: 3s;
}
