/* ------------------------------
  Common
------------------------------ */
.container {
  width: min(100% - 120px, 960px);
  margin-inline: auto;
}

.sp-br {
  display: none;
}

/* ------------------------------
  Page FV
------------------------------ */
.page-fv {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.page-fv--sub {
  height: 40vh;
}

.page-fv__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-fv__img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

.page-fv__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-fv__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  text-align: center;
}

.page-fv__content h1 {
  margin: 0;
  font-size: 2.5rem;
}

.page-fv__subtitle {
  margin: 15px 0 0;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.page-fv--sub .page-fv__content {
  color: #54714B;
}

/* ------------------------------
  Layout 2col
------------------------------ */
.layout-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.layout-2col__media,
.layout-2col__body {
  min-width: 0;
}

.layout-2col__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.layout-2col__media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.layout-2col__title {
  margin-bottom: 20px;
  color: #54714B;
  font-size: 2.3rem;
  font-weight: 700;
}

.layout-2col__title-sub {
  margin-bottom: 20px;
  color: #54714B;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.layout-2col__text {
  font-size: 1.6rem;
  line-height: 2;
}


/* cards */
.layout-2col--cards {
  align-items: start;
}

.layout-2col--cards .layout-2col__item {
  min-width: 0;
}

.layout-2col--cards .layout-2col__media {
  margin-bottom: 30px;
}

.layout-2col--cards .layout-2col__title {
  margin: 0 0 15px;
  font-size: 1.8rem;
  line-height: 1.6;
}

.layout-2col--cards .layout-2col__text {
  margin: 0;
}


/* products */
.layout-2col--products .layout-2col__price-list {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #9e9793;
}

.layout-2col--products .layout-2col__price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #9e9793;
}

.layout-2col--products .layout-2col__price-label,
.layout-2col--products .layout-2col__price-value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.layout-2col--products .layout-2col__price-value {
  text-align: right;
}

/* ------------------------------
  Layout 3col
------------------------------ */
.layout-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.layout-3col__item {
  overflow: hidden;
}

.layout-3col__media,
.layout-3col__body {
  min-width: 0;
}

.layout-3col__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.layout-3col__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layout-3col__text {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* ------------------------------
  Fixed Links
------------------------------ */
.fixed-links {
  position: fixed;
  top: 68%;
  left: 0;
  z-index: 999;
  transform: translateY(-50%);
}

.fixed-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  min-height: 180px;
  margin-bottom: 10px;
  border-radius: 0 8px 8px 0;
  color: #fff;
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: sideways-right;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  transition: opacity .35s ease, transform .35s ease;
}

.fixed-links__item:hover {
  opacity: .85;
}

.fixed-links__item--instagram {
  background: #6f8456;
}

.fixed-links__item--tel {
  background: #605632;
}

.fixed-links__text {
  display: block;
}

/* ------------------------------
  Section Heading
------------------------------ */
.section-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 70px;
}

.section-heading__label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.section-heading__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}

.section-heading__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

.section-heading__text {
  margin-top: 30px;
  line-height: 1.8;
}


/* center */
.section-heading--center {
  margin-bottom: 70px;
  text-align: center;
}

.section-heading--center .section-heading__label {
  justify-content: center;
  margin-bottom: 10px;
  color: #54714B;
  font-size: 1.8rem;
}

.section-heading--center .section-heading__label::after {
  display: none;
}

.section-heading--center .section-heading__title {
  font-size: 2.5rem;
}

/* ------------------------------
  Page Links
------------------------------ */
.page-links {
  padding: 150px 0;
  color: #fff;
}

.page-links__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.page-links__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}

.page-links__image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #ccc;
}

.page-links__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  transition: background .4s ease;
}

.page-links__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.page-links__card:hover .page-links__image img {
  transform: scale(1.08);
}

.page-links__card:hover .page-links__image::after {
  background: rgba(0, 0, 0, 0.28);
}

.page-links__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
}

.page-links__label {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
}

.page-links__title {
  margin: 0 0 25px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.page-links__content .button-row {
  margin: 0;
}

/* ------------------------------
  Notice Box
------------------------------ */
.notice-box {
  margin: 0 auto;
  padding: 40px 20px;
  border: 2px solid #c33;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.notice-box__title {
  margin: 0 0 25px;
  color: #c33;
  font-size: 2rem;
  font-weight: 700;
}

.notice-box__list {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.notice-box__list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 1.5em;
  color: #c33;
  font-size: 1.8rem;
  line-height: 1.6;
}

.notice-box__list li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* ------------------------------
  Breadcrumb
------------------------------ */
.breadcrumb-wrap {
  padding: 50px 0 0;
}

.breadcrumb-wrap--archive {
  padding: 0 0 50px;
}

.breadcrumb {
  font-size: 1.4rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: 1.4rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.breadcrumb__item:first-child a::before {
  content: "\f015";
  margin-right: 5px;
  font-family: "Font Awesome 6 Free";
  font-size: 1.2rem;
  font-weight: 700;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "＞";
  margin: 0 8px;
  color: #999;
}

.breadcrumb__link {
  font-weight: 500;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__current {
  color: #54714B;
  font-weight: 600;
}

/* ------------------------------
  Desktop / Fixed Links Hide
------------------------------ */
@media screen and (min-width: 768px) {
  .fixed-links.is-hide .fixed-links__item {
    opacity: 0;
    transform: translateX(-12px);
    pointer-events: none;
  }
}

/* ------------------------------
  Tablet
------------------------------ */
@media screen and (max-width: 1024px) {
  .layout-2col__title {
    margin-bottom: 15px;
    font-size: 2rem;
  }

  .layout-2col__title-sub {
    font-size: 1.6rem;
  }

  .layout-2col__text {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .layout-2col--products .layout-2col__price-item {
    padding: 15px 0;
  }

  .layout-3col {
    gap: 20px;
  }

  .layout-3col__title {
    margin-bottom: 15px;
    font-size: 2rem;
  }

  .layout-3col__text {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .page-links__list {
    gap: 20px;
  }

  .page-links__title {
    font-size: 1.6rem;
  }
}


/* ------------------------------
  Mobile
------------------------------ */
@media screen and (max-width: 767px) {
  .container {
    width: min(100% - 40px, 960px);
  }

  .sp-br {
    display: block;
  }

  .page-fv__content h1 {
    font-size: 2rem;
  }

  .layout-2col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .layout-2col__title {
    font-size: 1.8rem;
  }

  .layout-3col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .layout-3col__text {
    font-size: 1.4rem;
  }

  .fixed-links {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 0;
    transform: none;
  }

  .fixed-links__item {
    flex: 1;
    width: auto;
    min-height: 50px;
    margin-bottom: 0;
    border-radius: 0;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading--center .section-heading__title {
    font-size: 2.2rem;
  }

  .section-heading--center .section-heading__label {
    margin-bottom: 5px;
    font-size: 1.6rem;
  }

  .page-links {
    padding: 100px 0;
  }

  .page-links__list {
    grid-template-columns: 1fr;
  }

  .page-links__image {
    aspect-ratio: 16 / 7;
  }

  .page-links__content {
    padding: 25px 20px;
  }

  .page-links__label {
    margin: 0 0 5px;
    font-size: 1.2rem;
  }

  .page-links__title {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }

  .page-links__content .button-row {
    width: 100%;
  }

  .notice-box__list li {
    font-size: 1.4rem;
  }

  .breadcrumb__list {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .page-links__image {
    aspect-ratio: 4 / 3;
  }
}