@charset "UTF-8";
/* ======================== */
/*         common           */
/* ======================== */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #060606;
  background: #f5e6c6;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 auto;
  padding: 0;
  padding-top: var(--header-h);
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
}

main {
  flex: 1;
}

section {
  scroll-margin-top: min(16vw, 120px);
}
@media screen and (min-width: 751px) {
  section {
    scroll-margin-top: min(6.25vw, 120px);
  }
}

img {
  display: block;
  height: auto;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
}

.layout-padding {
  padding: 3.125rem 1.875rem;
  padding-block: min(18.6666666667vw, 8.75rem);
  padding-inline: min(8vw, 3.75rem);
}
@media screen and (min-width: 751px) {
  .layout-padding {
    padding-block: min(8.3333333333vw, 160px);
    padding-inline: 3%;
  }
}

.layout-inner {
  margin: 0 auto;
}

/* ======================== */
/*         heading           */
/* ======================== */
.section__heading {
  text-align: center;
}
.section__heading .section__label {
  margin-bottom: min(4vw, 1.875rem);
  color: #47763e;
  font-size: min(3.7333333333vw, 2.75rem);
}
@media screen and (min-width: 751px) {
  .section__heading .section__label {
    font-size: min(1.0416666667vw, 1.25rem);
    margin-bottom: min(1.1458333333vw, 1.375rem);
  }
}
.section__heading .section__title {
  font-size: min(8vw, 3.75rem);
  font-weight: 600;
  padding-top: min(8vw, 3.75rem);
  margin-bottom: min(7.7333333333vw, 3.625rem);
  position: relative;
  display: inline-block;
  line-height: 1.3;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (min-width: 751px) {
  .section__heading .section__title {
    padding-top: min(1.875vw, 2.25rem);
    margin-bottom: min(4.1666666667vw, 5rem);
    font-size: min(3.125vw, 3.75rem);
  }
}
.section__heading .section__label + .section__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(52vw, 390px);
  height: 1px;
  background-color: #47763e;
}
@media screen and (min-width: 751px) {
  .section__heading .section__label + .section__title::before {
    width: min(34.375vw, 660px);
  }
}
.section__heading .section__lead {
  font-size: min(3.2vw, 1.5rem);
  margin-bottom: min(7.4666666667vw, 3.5rem);
}
@media screen and (min-width: 751px) {
  .section__heading .section__lead {
    font-size: clamp(10px, 0.9375vw, 1.125rem);
    margin-bottom: min(4.7916666667vw, 5.75rem);
  }
}

h1 {
  font-family: "Noto Sans JP", sans-serif;
}

.pc-only {
  display: none !important;
}
@media screen and (min-width: 751px) {
  .pc-only {
    display: block !important;
  }
}

.sp-only {
  display: block !important;
}
@media screen and (min-width: 751px) {
  .sp-only {
    display: none !important;
  }
}

/*改行制御（brタグや span で使用）*/
.br-sm {
  display: none;
}
@media screen and (max-width: 620px) {
  .br-sm {
    display: inline;
  }
}

.br-sp-only {
  display: inline;
}
@media screen and (min-width: 751px) {
  .br-sp-only {
    display: none;
  }
}

.br-pc-only {
  display: none;
}
@media screen and (min-width: 751px) {
  .br-pc-only {
    display: inline;
  }
}

/* ======================== */
/*         header           */
/* ======================== */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.p-header__bg {
  background-color: #f5e6c6;
}
.p-header__padding {
  padding-block: min(2.4vw, 1.125rem);
  padding-inline: min(4.2666666667vw, 2rem);
}
@media screen and (min-width: 751px) {
  .p-header__padding {
    padding-block: min(1.0416666667vw, 1.25rem);
    padding-inline: min(3.6458333333vw, 4.375rem);
  }
}
.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 751px) {
  .p-header__inner {
    margin: 0 auto;
  }
}
.p-header__logo {
  width: min(35.4666666667vw, 266px);
}
@media screen and (min-width: 751px) {
  .p-header__logo {
    width: min(17.7083333333vw, 340px);
  }
}
.p-header__nav-area {
  display: flex;
  position: relative;
  z-index: 3;
  gap: min(5.3333333333vw, 2.5rem);
  align-items: center;
  font-size: min(3.2vw, 1.5rem);
}
@media screen and (min-width: 751px) {
  .p-header__nav-area {
    gap: min(3.125vw, 3.75rem);
    font-size: min(1.3541666667vw, 1.625rem);
  }
}
.p-header__nav {
  display: none;
}
@media screen and (min-width: 751px) {
  .p-header__nav {
    display: block;
    flex: 1 1 auto;
  }
}
.p-header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 751px) {
  .p-header__nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: min(4.1666666667vw, 5rem);
  }
}
.p-header__nav-link {
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
}
@media screen and (min-width: 751px) {
  .p-header__nav-link {
    display: inline-block;
    padding-block: 0.8rem;
  }
  .p-header__nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.2rem;
    transform: translateX(-50%);
    width: min(6.71875vw, 129px);
    height: 1px;
    background: currentColor;
  }
}
.p-header__cta {
  letter-spacing: 0em;
  justify-self: center;
  text-decoration: none;
  line-height: 1.3;
  background: #c5caab;
  padding: 0.25rem 0.75rem;
  padding-block: min(1.0666666667vw, 0.5rem);
  padding-inline: min(2.6666666667vw, 1.25rem);
  border-radius: min(2vw, 15px);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
@media screen and (min-width: 751px) {
  .p-header__cta {
    padding-block: min(1.0416666667vw, 1.25rem);
    padding-inline: min(1.25vw, 1.5rem);
    margin-left: auto;
    border-radius: min(0.78125vw, 15px);
    font-size: min(1.3020833333vw, 25px);
  }
}
@media screen and (min-width: 751px) {
  .p-header .cta-arrow {
    margin: 0.5rem;
  }
}
.p-header__hamburger {
  width: min(7.3333333333vw, 55px);
  height: min(5.8666666667vw, 44px);
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 751px) {
  .p-header__hamburger {
    display: none;
  }
}
.p-header__hamburger-lines {
  --line-h: 1px;
  --line-gap: min(calc(18 / 750 * 100vw), 18px);
  width: 100%;
  max-width: min(7.3333333333vw, 55px);
  display: flex;
  flex-direction: column;
  gap: var(--line-gap);
}
.p-header__hamburger-lines > span {
  display: block;
  height: var(--line-h);
  background: #060606;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.is-menu-open .p-header__hamburger-lines > span:nth-child(1) {
  transform: translateY(calc(var(--line-gap) + var(--line-h))) rotate(45deg);
}

.is-menu-open .p-header__hamburger-lines > span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .p-header__hamburger-lines > span:nth-child(3) {
  transform: translateY(calc(-1 * (var(--line-gap) + var(--line-h)))) rotate(-45deg);
}

@media (max-width: 390px) {
  .p-header__brand-sub {
    display: none;
  }
}
/* ======================== */
/*         hamburger           */
/* ======================== */
.p-header__hamburger {
  position: relative;
  z-index: 50;
}

.p-drawer {
  position: relative;
  z-index: 40;
}

.p-drawer {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h, 72px);
  bottom: 0;
  background: #f5e6c6;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.is-menu-open .p-drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}

.p-drawer__nav {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: min(23.2vw, 174px);
}

.p-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(520px, 100%);
}

.p-drawer__item {
  text-align: center;
}

.p-drawer__link {
  display: inline-block;
  width: 100%;
  padding: 3.2rem 1.6rem;
  padding-block: min(6.6666666667vw, 3.125rem);
  padding-inline: min(3.2vw, 1.5rem);
  text-decoration: none;
  color: #060606;
  font-weight: 500;
  font-size: min(4.8vw, 2.25rem);
  letter-spacing: 0.05em;
  position: relative;
}

.p-drawer__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  width: min(38.6666666667vw, 290px);
  height: 1px;
  background: rgba(0, 0, 0, 0.45);
  transform: translateX(-50%);
}

.p-header__hamburger-icon {
  width: 100%;
  max-width: min(5.3333333333vw, 40px);
  display: flex;
  flex-direction: column;
  gap: min(2.4vw, 18px);
  justify-content: center;
}

.p-header__hamburger-icon > span {
  display: block;
  height: 2px;
  background: #222;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.is-menu-open .p-header__hamburger-icon > span:nth-child(1) {
  transform: translateY(calc(2px + min(2.4vw, 18px))) rotate(45deg);
}

.is-menu-open .p-header__hamburger-icon > span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .p-header__hamburger-icon > span:nth-child(3) {
  transform: translateY(calc(-2px - min(2.4vw, 18px))) rotate(-45deg);
}

/* ======================== */
/*         footer           */
/* ======================== */
.p-footer {
  color: #f6e8b1;
  font-size: min(3.2vw, 1.5rem);
  font-weight: 200;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  .p-footer {
    font-size: min(0.9375vw, 18px);
  }
}
.p-footer__bg {
  background-color: #3c3d3d;
}
.p-footer__padding {
  padding-block: min(13.3333333333vw, 100px);
  padding-inline: min(1.8666666667vw, 0.875rem);
}
@media screen and (min-width: 751px) {
  .p-footer__padding {
    padding-block: min(3.6458333333vw, 70px);
    padding-inline: min(0.7291666667vw, 0.875rem);
  }
}
.p-footer__inner {
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
}
.p-footer__links {
  text-decoration: none;
  margin-bottom: min(2.6666666667vw, 20px);
}
@media screen and (min-width: 751px) {
  .p-footer__links {
    margin-bottom: min(0.78125vw, 15px);
  }
}
.p-footer__links:hover {
  text-decoration: underline;
}

.p-breadcrumb {
  font-size: clamp(10px, 2.4vw, 1.125rem);
  color: #060606;
  padding-bottom: min(2.9333333333vw, 22px);
  padding-inline: min(8vw, 3.75rem);
}
@media screen and (min-width: 751px) {
  .p-breadcrumb {
    font-size: min(0.9375vw, 1.125rem);
    padding-inline: min(4.1666666667vw, 80px);
    padding-bottom: min(2.2395833333vw, 43px);
  }
}
.p-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.p-breadcrumb--bottom {
  margin-top: auto;
}

/* ======================== */
/*         404           */
/* ======================== */
.p-not-found {
  line-height: 2;
}
@media screen and (min-width: 751px) {
  .p-not-found .section__title {
    margin-bottom: 4.25rem;
    font-size: 2.875rem;
  }
}
.p-not-found .section__lead {
  margin-top: 1.5rem;
}
.p-not-found .not-found__description {
  text-align: center;
}
.p-not-found .not-found__description a {
  text-decoration: underline;
}