@charset "utf-8";

.invisible-style{
  display: none!important;
}

body{
  color: #121820;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

a:hover {
  text-decoration: none;
  color: #000;
}

img {
  max-width: 100%;
  display: block;
  width: 100%;
}

p
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

.phone span {
  text-decoration: underline;
}

u {
  text-decoration: none;
  display: inline-block;
}
strong {
  font-weight: unset;
  display: inline-block;
}

/* 共通パーツ */
.inner {
  max-width: 1920px;
  margin: 0 auto;
}

/* pg-fv */
.pg-fv__bg--sp {
  display: none;
}
.pg-fv__title {
    width: 100%;
        top: 50%;
    transform: translateY(-50%);
    padding-left: clamp(2.5rem, -8.786rem + 17.63vw, 12.375rem);
    position: absolute;
}
.pg-fv-title__sub {
      font-size: clamp(1rem, 0.143rem + 1.34vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.pg-fv-title__main {
  font-family: "Pinyon Script", cursive;
    font-size: clamp(3.75rem, -0.964rem + 7.37vw, 7.875rem);
    font-weight: 400;
    color: #fff;
}
@media (max-width: 767px) {
  .pg-fv-title__main {
    font-size: 35px;
  }
}

/* パンくずリスト */
.pg-breadcrumb {
      display: flex;
    column-gap: 0.5em;
    padding-left: clamp(2.5rem, -1.5rem + 6.25vw, 6rem);
}
.breadcrumb__text {
    padding-top: 16px;
      font-size: clamp(0.75rem, 0.464rem + 0.45vw, 1rem);
    font-weight: 700;
    line-height: 1;
}
.breadcrumb__text--white {
  color: #fff;
}
@media (max-width: 767px) {
  .pg-breadcrumb {
    padding-left: 20px;
  }
  .breadcrumb__text {
    padding-top: 8px;
  }
}

/* section__title */
.section__title {
      display: flex;
    flex-direction: column;
    align-items: center;
}
.section-title__sub {
      font-size: clamp(0.875rem, 0.589rem + 0.45vw, 1.125rem);
    font-weight: 700;
    color: #D0A443;
}
.section-title__main {
      font-family: "Pinyon Script", cursive;
    font-size: clamp(2rem, -1.714rem + 5.8vw, 5.25rem);
    font-weight: 400;
    color: #D0A443;
}

/* btn-line */
.btn-line {
      padding: 8px clamp(4.125rem, 3.875rem + 0.52vw, 4.5rem) 8px clamp(1.375rem, 1.292rem + 0.17vw, 1.5rem);
    background-color: #8F6B1D;
    width: fit-content;
    border-left: 8px solid #D0A443;
    position: relative;
    transition: all 0.5s;
}
.btn-line__text {
      font-size: clamp(1.125rem, 1.042rem + 0.17vw, 1.25rem);
    font-weight: 400;
    color: #fff;
}
.btn-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -37px;
  width: 74px;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease;
}
.btn-line:hover::after {
  transform: translateX(15px);
  transition: all 0.5s;
}