.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.pc-only {
  display: inline-block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: inline-block;
  }
}

.wrapper {
  background: url("../images/common/bg.png") no-repeat;
  background-size: cover;
}

.inner {
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .inner {
    padding: 0 1.6rem;
  }
}

.block {
  max-width: 104rem;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .block {
    width: 100%;
  }
}

.heading h2 {
  font-size: clamp(20px, 2.4vw, 36px);
  color: #f5f5f5;
  font-weight: 400;
  line-height: 7.2rem;
  margin-bottom: 1rem;
  font-family: "Shippori Antique", sans-serif;
}
@media (max-width: 768px) {
  .heading h2 {
    font-size: 2.8rem;
    line-height: 5.6rem;
  }
}
.heading span {
  font-size: clamp(12px, 0.91vw, 16px);
  font-weight: 500;
  color: #fff;
  line-height: 3.2rem;
}
@media (max-width: 768px) {
  .heading span {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}

.btn-link {
  background: #cea06d;
  border-radius: 2.4rem;
  height: 4.8rem;
  padding: 0.8rem 1.6rem;
  color: #635334;
  font-weight: 500;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.08);
  box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.08);
  font-size: clamp(12px, 0.91vw, 16px);
}
.btn-link .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #635334;
  line-height: 1;
  position: relative;
  width: 0.5em;
  height: 0.5em;
  -webkit-transform: translateX(-25%) rotate(45deg);
  -ms-transform: translateX(-25%) rotate(45deg);
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
}
.btn-link .arrow::before {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}
.btn-link .arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 4rem;
  background: #807568;
  border-radius: 1.2rem;
  -webkit-box-shadow: 0.4rem 0.4rem 0.5rem rgba(0, 0, 0, 0.15);
  box-shadow: 0.4rem 0.4rem 0.5rem rgba(0, 0, 0, 0.15);
  width: 94%;
  margin: auto;
  padding: 2rem 0;
  z-index: 100;
}
@media (max-width: 768px) {
  .header {
    padding: 1.2rem 0;
    top: 1.6rem;
  }
}
.header .inner {
  padding: 0 2.4rem;
}
.header-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-flex h1 {
  width: 12rem;
  display: block;
}
@media (max-width: 768px) {
  .header-flex h1 {
    width: 11.9rem;
  }
}
.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.6rem;
}
@media (max-width: 768px) {
  .header-content {
    margin-left: auto;
  }
}
.header-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.4rem;
}
.header-menu__link {
  color: #f5f5f5;
  line-height: 3.2rem;
  font-weight: 500;
  font-size: clamp(12px, 0.91vw, 16px);
}
.header-menu__link:hover {
  border-bottom: 0.1rem solid #f5f5f5;
  padding-bottom: 0.5rem;
}

.hamburger-menu {
  display: none;
}
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
    margin-left: 1.6rem;
  }
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 3rem;
  height: 1.8rem;
  position: relative;
  z-index: 200;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 0.3rem;
  background: #f5f5f5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}
.hamburger-line:nth-child(1) {
  top: 0;
}
.hamburger-line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hamburger-line:nth-child(3) {
  bottom: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -0.15rem;
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 50%;
  margin-bottom: -0.15rem;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(128, 117, 104, 0.95);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
}
@media (max-width: 768px) {
  .mobile-nav {
    display: block;
  }
}
.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__inner {
  padding: 12rem 2rem 4rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 4rem;
}

.mobile-nav__item {
  margin-bottom: 2.4rem;
}
.mobile-nav__item:last-child {
  margin-bottom: 0;
}

.mobile-nav__link {
  color: #f5f5f5;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.mobile-nav__link:hover {
  color: #fff;
}

.mobile-nav__btn {
  text-align: center;
}
.mobile-nav__btn .btn-link {
  font-size: 1.6rem;
  padding: 0.8rem 6.6rem;
}

@media (max-width: 768px) {
  .header-menu__list {
    display: none;
  }
}

.footer {
  background: #807568;
  padding: 7.5rem 0 2.4rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 2.8rem;
  }
}
.footer-wrap {
  text-align: center;
}
.footer-ttl {
  color: #f5f5f5;
  font-family: "Shippori Antique", sans-serif;
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .footer-ttl {
    font-size: 2rem;
  }
}
.footer-txt {
  font-size: clamp(12px, 0.91vw, 16px);
  font-weight: 500;
  line-height: 3.2rem;
  color: #f5f5f5;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .footer-txt {
    font-size: 1.4rem;
    line-height: 2.8rem;
    margin-bottom: 2.8rem;
  }
}
.footer-logo {
  display: block;
  width: 12rem;
  margin: 6.6rem auto 0;
}
@media (max-width: 768px) {
  .footer-logo {
    width: 11.9rem;
    margin: 4rem auto 2.4rem;
  }
}
.footer .btn-link {
  padding: 0 4.4rem 0 1.2rem;
  height: 5.6rem;
  border: 3rem;
  font-family: "Shippori Antique", sans-serif;
  font-size: clamp(14px, 1.14vw, 20px);
}
@media (max-width: 768px) {
  .footer .btn-link {
    font-size: 1.6rem;
  }
}
.footer-menu__list {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.4rem;
}
@media (max-width: 768px) {
  .footer-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0;
  }
}
.footer-menu__link {
  color: #fff;
  font-weight: 500;
  line-height: 3.2rem;
  font-size: clamp(12px, 0.91vw, 16px);
}
.footer-menu__link:hover {
  border-bottom: 0.1rem solid #f5f5f5;
  padding-bottom: 0.5rem;
}
.footer-copyright {
  margin-top: 3.6rem;
  color: #f5f5f5;
  font-weight: 500;
  font-size: clamp(10px, 0.45vw, 12px);
  line-height: 2.4rem;
}

.l-bread {
  padding: 15.3rem 0 0;
  font-size: clamp(12px, 0.68vw, 14px);
  font-weight: 500;
}
@media (max-width: 768px) {
  .l-bread {
    padding: 11rem 0 0;
    font-size: 1.2rem;
  }
}
.l-bread ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}
.l-bread ul li:first-child {
  border-bottom: 0.1rem solid #635334;
}
.l-bread ul li:first-child::before {
  content: none;
}
.l-bread ul li:last-of-type {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
}
.l-bread ul li::before {
  content: ">";
  display: inline-block;
  width: 3rem;
  text-align: center;
}

.private {
  display: none;
}

.dummy {
  padding-top: 25rem;
}
@media (max-width: 768px) {
  .dummy {
    padding-top: 7rem;
  }
}