@charset "UTF-8";
.c-bg {
  background-color: #FFFDFD;
}
.c-bg--sub {
  background-color: #F5F1E8;
}

.pt_0 {
  padding: 0;
}

.pb_0 {
  padding-bottom: 0;
}

.pt_3 {
  padding-top: 3rem;
}

.mt_0 {
  margin: 0;
}

.mb_0 {
  margin-bottom: 0;
}

.c-bg {
  background-color: #FFFDFD;
}
.c-bg--sub {
  background-color: #F5F1E8;
}

.pt_0 {
  padding: 0;
}

.pb_0 {
  padding-bottom: 0;
}

.pt_3 {
  padding-top: 3rem;
}

.mt_0 {
  margin: 0;
}

.mb_0 {
  margin-bottom: 0;
}

.news-list {
  overflow-y: auto;
  max-height: 218px;
  padding-right: 0.8em;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}
.news-list::-webkit-scrollbar {
  width: 8px;
}
.news-list::-webkit-scrollbar-thumb {
  background: #EB7F32;
  border-radius: 4px;
}
.news-list::-webkit-scrollbar-thumb:hover {
  background: #EB7F32;
}
.news-list__item {
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed #2A9D63;
  margin-bottom: 1.2rem;
}
.news-list__link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5em;
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #333;
}
@media (max-width: 768px) {
  .news-list__link {
    flex-direction: column;
    gap: 1rem;
  }
}
.news-list__cat {
  display: inline-block;
  padding: 2px;
  width: 14em;
  text-align: center;
  background: #2A9D63;
  color: #FFF;
}
@media (max-width: 768px) {
  .news-list__cat {
    width: 100%;
  }
}
.news-list__cat--notice {
  background: #EB7F32;
}
.news-list__cat.cat-important {
  background: #b8323d;
}
.news-list__cat.cat-important ~ .news-list__title {
  color: #b8323d;
}
.news-list__date {
  font-weight: 800;
  width: 9em;
}
@media (max-width: 768px) {
  .news-list__date {
    line-height: 1;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .news-list__title {
    line-height: 1;
  }
}

.c-bg {
  background-color: #FFFDFD;
}
.c-bg--sub {
  background-color: #F5F1E8;
}

.pt_0 {
  padding: 0;
}

.pb_0 {
  padding-bottom: 0;
}

.pt_3 {
  padding-top: 3rem;
}

.mt_0 {
  margin: 0;
}

.mb_0 {
  margin-bottom: 0;
}

.camp-cards__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-inline: auto;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2vw;
}
@media (max-width: 768px) {
  .camp-cards__list {
    gap: 4vw;
  }
}
.camp-cards__item {
  flex: 0 1 calc((100% - 4vw) / 3);
}
@media (max-width: 1200px) {
  .camp-cards__item {
    flex: 0 1 calc((100% - 4vw) / 2);
  }
}
@media (max-width: 768px) {
  .camp-cards__item {
    flex: initial;
    width: 100%;
  }
}

.camp-card {
  position: relative;
  border-radius: 15px;
  filter: drop-shadow(2px 4px 5px rgba(0, 0, 0, 0.15));
  transition: opacity 0.3s ease-in-out;
}
.camp-card__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  content: "";
}
.camp-card:hover {
  opacity: 0.85;
  transition: opacity 0.3s ease-in-out;
}
.camp-card__media {
  position: relative;
  margin-bottom: 0;
}
.camp-card__media img {
  object-fit: cover;
  aspect-ratio: 3/2;
  border-radius: 15px 15px 0 0;
}
.camp-card__status .camp-status:first-child.camp-status--sold-out {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  background-color: rgba(30, 43, 58, 0.75);
  border-radius: 15px 15px 0 0;
  z-index: 1;
}
.camp-card__status .camp-status:first-child.camp-status--sold-out:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 178px;
  max-height: 176px;
  margin: auto;
  background-repeat: no-repeat;
  background-image: url("../images/camp/soldout_icon.png");
  z-index: 10;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
}
.camp-card__status .camp-status:not(:first-child) {
  display: none;
}
.camp-card__body {
  background: #FFF;
  padding: 2.6rem 3rem;
  border-radius: 0 0 15px 15px;
}
@media (max-width: 768px) {
  .camp-card__body {
    padding: 2rem;
  }
}
.camp-card__title {
  margin-block: 0 2rem;
  line-height: 1.35;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
}
.camp-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  line-height: 1.35;
  margin-bottom: 2rem;
}
.camp-card__meta-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.6em;
}
.camp-card__meta-item--summary {
  display: inline;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 1px;
  padding-top: 2rem;
  border-top: 1px dashed #EB7F32;
}
@media (max-width: 768px) {
  .camp-card__meta-item--summary {
    line-height: 1.45;
  }
}
.camp-card__meta-icon {
  width: 1.4rem;
  height: 1.6rem;
}
.camp-card__meta-icon path {
  fill: #2A9D63;
}
.camp-card__meta-text {
  flex: 1;
}

.p-about,
.p-camp,
.p-outdoor {
  background-color: #F5F1E8;
}

.p-hero {
  padding-bottom: 0;
}
.p-hero__inner {
  width: 94vw;
  height: 90vh;
  /*background-image: url("/wp-content/themes/original2025/assets/images/hero-bg/top2025-w.jpg");*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .p-hero__inner {
    /*background-image: url("/wp-content/themes/original2025/assets/images/hero-bg/top-sp2025-w.jpg");*/
    background-position: right bottom;
    height: 86vh;
  }
}
.p-hero__title {
  position: absolute;
  width: 685px;
  height: auto;
  bottom: 18vh;
  left: 6vw;
  margin: 0;
  /* SVG 全体の初期状態（ふわっと登場） */
  /* バウンス */
  /* 動きを苦手な環境ではオフ */
}
@media (max-width: 768px) {
  .p-hero__title {
    width: 38vh;
    top: 14vh;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.p-hero__title .hero-svg {
  display: block;
  width: 100%;
  opacity: 0;
  /* 初期は透明（JSでis-animateを付けて表示） */
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.p-hero__title .hero-svg.is-animate {
  opacity: 1;
  transform: translateY(0);
}
.p-hero__title .hero-svg.is-animate g > path {
  transform-box: fill-box;
  transform-origin: center bottom;
  opacity: 0;
  animation: hero-bounce 0.6s cubic-bezier(0.35, 1.6, 0.4, 1) forwards;
  animation-delay: calc(var(--i, 0) * 60ms);
  will-change: transform, opacity;
}
@keyframes hero-bounce {
  0% {
    transform: translateY(24px) scale(0.6);
    opacity: 0;
  }
  60% {
    transform: translateY(-8px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__title .hero-svg,
  .p-hero__title .hero-svg g > path {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .p-news__inner.js-fade {
    opacity: 1;
  }
}

.p-about {
  position: relative;
  overflow-x: hidden;
}
.p-about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100dvw;
  aspect-ratio: 1919/166;
  background: url("../images/divider1.svg") center bottom/100% 100% no-repeat;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-about:before {
    background: url("../images/divider1-sp.svg") center bottom/100% 100% no-repeat;
    aspect-ratio: 150/41;
  }
}
@media (max-width: 768px) {
  .p-about__inner {
    padding-top: 1rem;
  }
}

.top-project{
	text-align: center; margin: 4rem 0 0 0;
}
.c-btn2--form {
    background-color: #2A9D63;
    color: #fff;
}
