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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #646464;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

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

ul,
ol {
  padding: 0;
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a,
button {
  cursor: pointer;
}

.u-mb-0 {
  margin-bottom: min(10px, 1vw) !important;
}

@media (min-width: 1025px) {
  .u-sp-only {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .u-pc-only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .u-phone-only {
    display: none !important;
  }
}

.c-wave {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
}

.c-wave--green {
  transform: translateY(calc(-100% + 0.5px));
}

.c-wave--cream {
  transform: translateY(calc(-100% + 0.5px));
}

.l-header {
  position: relative;
  z-index: 10;
  width: 100%;
  background: #8eba4f;
}

.l-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
}

.l-header__inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .l-header__inner {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: max(20px, 5.3333333333vw);
    padding-block: max(12px, 3.2vw);
  }
}
@media (min-width: 1025px) {
  .l-header__inner {
    padding-block: min(20px, 2vw);
  }
}

.l-header__logo a {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .l-header__logo a {
    gap: max(8px, 2.1333333333vw);
  }
}
@media (min-width: 1025px) {
  .l-header__logo a {
    gap: min(12px, 1.2vw);
  }
}
.l-header__logo .icon-paw {
  display: inline-block;
}
@media (max-width: 1024px) {
  .l-header__logo .icon-paw {
    width: auto;
    height: max(24px, 6.4vw);
  }
}
@media (min-width: 1025px) {
  .l-header__logo .icon-paw {
    width: min(32px, 3.2vw);
    height: min(30px, 3vw);
  }
}
.l-header__logo .logo {
  display: inline-block;
}
@media (max-width: 1024px) {
  .l-header__logo .logo {
    width: auto;
    height: max(16px, 4.2666666667vw);
  }
}
@media (min-width: 1025px) {
  .l-header__logo .logo {
    width: min(368px, 36.8vw);
    height: min(28px, 2.8vw);
  }
}

.l-header__hamburger {
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}
.l-header__hamburger span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  background: #ffffff;
}
@media (max-width: 1024px) {
  .l-header__hamburger {
    width: max(20px, 5.3333333333vw);
    height: max(16px, 4.2666666667vw);
  }
  .l-header__hamburger span {
    height: max(2px, 0.5333333333vw);
    border-radius: max(1px, 0.2666666667vw);
  }
  .l-header__hamburger span:nth-child(1) {
    top: 0;
  }
  .l-header__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .l-header__hamburger span:nth-child(3) {
    bottom: 0;
  }
  .is-open .l-header__hamburger {
    display: none;
  }
}
@media (min-width: 1025px) {
  .l-header__hamburger {
    display: none;
  }
}

@media (max-width: 1024px) {
  .l-header__nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    flex-direction: column;
    padding: max(12px, 3.2vw) max(20px, 5.3333333333vw);
    background: rgba(0, 1, 8, 0.85);
  }
  .is-open .l-header__nav {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .l-header__nav {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .l-header__nav-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (min-width: 1025px) {
  .l-header__nav-top {
    display: none;
  }
}

.l-header__close {
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}
.l-header__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ffffff;
}
.l-header__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 1024px) {
  .l-header__close {
    width: max(16px, 4.2666666667vw);
    height: max(16px, 4.2666666667vw);
  }
  .l-header__close span {
    width: max(14px, 3.7333333333vw);
    height: max(1px, 0.2666666667vw);
  }
}

.l-header__list {
  padding-left: 20px;
}
.l-header__list a {
  display: inline-block;
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(16px, 22.4px - 0.64vw, 20px);
}
@media (max-width: 1024px) {
  .l-header__list {
    display: flex;
    flex-direction: column;
    gap: max(24px, 6.4vw);
    margin-top: max(32px, 8.5333333333vw);
  }
}
@media (min-width: 1025px) {
  .l-header__list {
    display: flex;
    align-items: center;
    gap: min(40px, 4vw);
  }
}

@media (max-width: 1024px) {
  body.is-open {
    overflow: hidden;
  }
}
.l-footer {
  background: #646464;
  text-align: center;
}
@media (max-width: 767px) {
  .l-footer {
    padding-block: max(19px, 5.0666666667vw);
  }
}
@media (min-width: 768px) {
  .l-footer {
    padding-block: min(41px, 4.1vw);
  }
}

.l-footer__copyright {
  color: #ffffff;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.6;
  font-size: clamp(12px, 8.4px + 0.96vw, 18px);
}

.p-fv {
  position: relative;
}
@media (max-width: 1024px) {
  .p-fv {
    overflow: hidden;
  }
}

@media (max-width: 1024px) {
  .p-fv__bg {
    margin-bottom: -1.5vw;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  .p-fv__bg {
    padding-top: clamp(0px, 1330px - 57.2917vw, 30px);
    background: #26a6c6;
  }
}

.p-fv__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.p-fv__inner {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 20px;
}

.p-fv__text {
  position: absolute;
  top: 15%;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  .p-fv__text {
    bottom: 20%;
    flex-direction: row-reverse;
  }
}
@media (min-width: 1025px) and (min-width: 1367px) {
  .p-fv__text {
    max-width: 840px;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  .p-fv__text {
    top: calc(clamp(0px, 1330px - 57.2917vw, 30px) + 4.5833vw);
    bottom: 5.7292vw;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: -moz-max-content;
    width: max-content;
    gap: 58px;
    justify-content: flex-start;
  }
}
@media (max-width: 1024px) {
  .p-fv__text {
    position: static;
  }
}

.p-fv__lead {
  color: #ffffff;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .p-fv__lead {
    writing-mode: vertical-rl;
    height: 100%;
    font-size: 16px;
    line-height: 2.875;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  .p-fv__lead {
    font-size: 15px;
    line-height: 2.4;
  }
}
@media (max-width: 1024px) {
  .p-fv__lead {
    position: absolute;
    top: 45%;
    left: 20px;
    right: 20px;
    font-size: 3.2vw;
    line-height: 2.3;
  }
}

.p-fv__catch {
  color: #ffffff;
  font-weight: bold;
}
@media (min-width: 1025px) {
  .p-fv__catch {
    writing-mode: vertical-rl;
    font-size: 46px;
    line-height: 1.5;
  }
}
@media (max-width: 1024px) {
  .p-fv__catch {
    position: absolute;
    top: 8%;
    left: 20px;
    font-size: 8vw;
    line-height: 1.7;
  }
}

.p-story {
  position: relative;
  background: #f2efea;
}
@media (max-width: 767px) {
  .p-story {
    padding-bottom: max(80px, 21.3333333333vw);
  }
}
@media (min-width: 768px) {
  .p-story {
    padding-bottom: min(160px, 16vw);
  }
}

.p-story__inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .p-story__inner {
    padding-top: max(48px, 12.8vw);
  }
}
@media (min-width: 768px) {
  .p-story__inner {
    padding-top: min(100px, 10vw);
  }
}

@media (min-width: 768px) {
  .p-story__content {
    display: flex;
    align-items: flex-start;
    gap: min(40px, 4vw);
  }
}

.p-story__footprints {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.p-story__footprints img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  filter: brightness(0.9);
}
@media (max-width: 767px) {
  .p-story__footprints {
    top: 0;
    right: 0;
    width: max(103px, 27.4666666667vw);
  }
}
@media (min-width: 768px) {
  .p-story__footprints {
    top: min(0px, 0vw);
    right: 0;
    width: min(516px, 51.6vw);
  }
}

.p-story__body {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-story__body {
    flex: 1 1 auto;
    min-width: 0;
  }
}

.p-story__heading {
  font-weight: bold;
  color: #8eba4f;
  font-size: clamp(21px, 8.5954198473px + 3.3078880407vw, 34px);
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-story__heading {
    margin-bottom: max(24px, 6.4vw);
    line-height: 1.9048;
  }
}
@media (min-width: 768px) {
  .p-story__heading {
    margin-bottom: min(48px, 4.8vw);
    line-height: 2.1765;
  }
}

.p-story__text {
  color: #646464;
  font-weight: 500;
  font-size: clamp(12px, 8.1832061069px + 1.0178117048vw, 16px);
  letter-spacing: 0.03em;
}
.p-story__text p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-story__text {
    line-height: 2.4167;
  }
}
@media (min-width: 768px) {
  .p-story__text {
    line-height: 2.625;
  }
}

.p-story__photos {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-story__photos {
    flex: 0 0 min(300px, 30vw);
    width: min(300px, 30vw);
  }
}
@media (max-width: 767px) {
  .p-story__photos {
    margin-top: max(28px, 7.4666666667vw);
  }
}

.p-story__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-story__photo--1,
.p-story__photo--2,
.p-story__photo--3 {
  display: none;
}
@media (min-width: 768px) {
  .p-story__photo--1,
  .p-story__photo--2,
  .p-story__photo--3 {
    display: block;
    width: min(280px, 28vw);
  }
}

@media (min-width: 768px) {
  .p-story__photo--1 {
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .p-story__photo--2 {
    margin-top: min(30px, 3vw);
  }
}

@media (min-width: 768px) {
  .p-story__photo--3 {
    margin-top: min(30px, 3vw);
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .p-story__photo--sp {
    display: none;
  }
}

.p-articles {
  position: relative;
  background: #f2efea;
}
@media (max-width: 767px) {
  .p-articles {
    padding-bottom: max(80px, 21.3333333333vw);
  }
}
@media (min-width: 768px) {
  .p-articles {
    padding-bottom: min(160px, 16vw);
  }
}

.p-articles__inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 20px;
}

.p-articles__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8eba4f;
  font-weight: bold;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(24px, 18px + 1.6vw, 34px);
}
@media (max-width: 767px) {
  .p-articles__heading {
    gap: max(8px, 2.1333333333vw);
    padding-top: max(50px, 13.3333333333vw);
    margin-bottom: max(38px, 10.1333333333vw);
  }
}
@media (min-width: 768px) {
  .p-articles__heading {
    gap: min(12px, 1.2vw);
    padding-top: min(100px, 10vw);
    margin-bottom: min(50px, 5vw);
  }
}

.p-articles__heading-icon img {
  display: block;
  width: min(79px, 7.9vw);
  height: min(132px, 13.2vw);
}

.p-articles__list {
  display: grid;
  grid-auto-flow: column;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.p-articles__list::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .p-articles__list {
    grid-template-rows: repeat(1, auto);
    grid-auto-columns: max(250px, 66.6666666667vw);
    gap: max(20px, 5.3333333333vw);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-inline: max(62.5px, 16.6666666667vw);
  }
}
@media (min-width: 768px) {
  .p-articles__list {
    width: 100%;
    max-width: min(1000px, 100vw);
    margin-inline: auto;
    grid-template-columns: repeat(var(--pc-cols), min(320px, 32vw));
    grid-template-rows: repeat(2, auto);
    gap: min(20px, 2vw);
    overflow-x: hidden;
  }
}

.p-articles__item {
  display: block;
  background: #ffffff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-articles__item {
    scroll-snap-align: center;
    border-radius: max(8px, 2.1333333333vw);
  }
}
@media (min-width: 768px) {
  .p-articles__item {
    width: min(320px, 32vw);
    border-radius: min(8px, 0.8vw);
    grid-column: var(--col);
    grid-row: var(--row);
  }
}

.p-articles__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-articles__thumb {
    height: max(172px, 45.8666666667vw);
  }
}
@media (min-width: 768px) {
  .p-articles__thumb {
    height: min(220px, 22vw);
  }
}

@media (max-width: 767px) {
  .p-articles__body {
    padding: max(20px, 5.3333333333vw);
  }
}
@media (min-width: 768px) {
  .p-articles__body {
    padding: min(24px, 2.4vw);
  }
}

.p-articles__date {
  text-align: right;
  color: #999999;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: clamp(14px, 11.6px + 0.64vw, 18px);
}
@media (max-width: 767px) {
  .p-articles__date {
    margin-bottom: max(15px, 4vw);
    line-height: 1.7857;
  }
}
@media (min-width: 768px) {
  .p-articles__date {
    margin-bottom: min(16px, 1.6vw);
    line-height: 1.7778;
  }
}

.p-articles__title {
  font-weight: bold;
  color: #646464;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(14px, 11.6px + 0.64vw, 18px);
}
@media (max-width: 767px) {
  .p-articles__title {
    line-height: 1.7857;
  }
}
@media (min-width: 768px) {
  .p-articles__title {
    line-height: 1.7778;
  }
}

@media (max-width: 767px) {
  .p-articles__pager--pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .p-articles__pager--sp {
    display: none !important;
  }
}

.p-articles__pager {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .p-articles__pager {
    gap: max(11px, 2.9333333333vw);
    margin-top: max(28px, 7.4666666667vw);
  }
}
@media (min-width: 768px) {
  .p-articles__pager {
    gap: min(10px, 1vw);
    margin-top: min(50px, 5vw);
  }
}
.p-articles__pager button {
  display: block;
  border: none;
  padding: 0;
  border-radius: 50%;
  background-color: #b3b3b3;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-articles__pager button {
    width: max(9px, 2.4vw);
    height: max(9px, 2.4vw);
  }
}
@media (min-width: 768px) {
  .p-articles__pager button {
    width: min(10px, 1vw);
    height: min(10px, 1vw);
  }
}
.p-articles__pager button.is-active {
  background-color: #8eba4f;
}

.p-terms {
  position: relative;
  background: #8eba4f;
}
@media (max-width: 767px) {
  .p-terms {
    padding-bottom: max(60px, 16vw);
  }
}
@media (min-width: 768px) {
  .p-terms {
    padding-bottom: min(120px, 12vw);
  }
}

.p-terms__inner {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .p-terms__inner {
    padding-top: max(48px, 12.8vw);
  }
}
@media (min-width: 768px) {
  .p-terms__inner {
    padding-top: min(100px, 10vw);
  }
}

.p-terms__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  font-size: clamp(30px, 18px + 3.2vw, 50px);
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-terms__heading {
    gap: max(6px, 1.6vw);
    margin-bottom: max(28px, 7.4666666667vw);
    line-height: 0.8333;
  }
}
@media (min-width: 768px) {
  .p-terms__heading {
    gap: min(10px, 1vw);
    margin-bottom: min(48px, 4.8vw);
    line-height: 1;
  }
}

.p-terms__heading-icon img {
  display: block;
  width: min(48px, 4.8vw);
  height: min(98px, 9.8vw);
}

.p-terms__card {
  background: #ffffff;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .p-terms__card {
    width: 100%;
    padding: max(16px, 4.2666666667vw) max(24px, 6.4vw) max(16px, 4.2666666667vw) max(24px, 6.4vw);
  }
}
@media (min-width: 768px) {
  .p-terms__card {
    width: 100%;
    max-width: min(1000px, 100vw);
    margin-inline: auto;
    padding: min(80px, 8vw) min(80px, 8vw) min(80px, 8vw) min(110px, 11vw);
  }
}

.p-terms__summary {
  position: relative;
  display: block;
  text-align: center;
  color: #8eba4f;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  font-size: clamp(20px, 12.8px + 1.92vw, 32px);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-terms__summary {
    line-height: 2;
  }
}
@media (min-width: 768px) {
  .p-terms__summary {
    line-height: 0.9375;
  }
}
.p-terms__summary::-webkit-details-marker {
  display: none;
}
.p-terms__summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  transform: translateY(-50%);
  background-image: url("../img/terms/button_plus@2x.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .p-terms__summary::after {
    width: max(30px, 8vw);
    height: max(30px, 8vw);
  }
}
@media (min-width: 768px) {
  .p-terms__summary::after {
    width: min(60px, 6vw);
    height: min(60px, 6vw);
  }
}
.p-terms__accordion[open] .p-terms__summary::after {
  background-image: url("../img/terms/button_minus@2x.png");
}

.p-terms__content {
  color: #646464;
}
@media (max-width: 767px) {
  .p-terms__content {
    padding-top: max(24px, 6.4vw);
  }
}
@media (min-width: 768px) {
  .p-terms__content {
    padding-top: min(40px, 4vw);
  }
}
.p-terms__content h3 {
  color: #8eba4f;
  font-weight: 500;
  font-size: clamp(14px, 10.4px + 0.96vw, 20px);
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .p-terms__content h3 {
    margin-bottom: max(4px, 1.0666666667vw);
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .p-terms__content h3 {
    margin-bottom: min(8px, 0.8vw);
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .p-terms__content .p-terms__block {
    padding-bottom: max(16px, 4.2666666667vw);
  }
}
@media (min-width: 768px) {
  .p-terms__content .p-terms__block {
    padding-bottom: min(32px, 3.2vw);
  }
}
.p-terms__content p,
.p-terms__content .p-terms__list li {
  font-size: clamp(12px, 9.6px + 0.64vw, 16px);
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-terms__content p,
  .p-terms__content .p-terms__list li {
    line-height: 1.7;
  }
}
@media (min-width: 768px) {
  .p-terms__content p,
  .p-terms__content .p-terms__list li {
    line-height: 1.875;
  }
}
.p-terms__content .p-terms__list li {
  position: relative;
}
@media (max-width: 767px) {
  .p-terms__content .p-terms__list li {
    padding-left: max(12px, 3.2vw);
  }
}
@media (min-width: 768px) {
  .p-terms__content .p-terms__list li {
    padding-left: min(24px, 2.4vw);
  }
}
.p-terms__content .p-terms__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  border-radius: 50%;
  background: #8eba4f;
}
@media (max-width: 767px) {
  .p-terms__content .p-terms__list li::before {
    width: max(9px, 2.4vw);
    height: max(9px, 2.4vw);
  }
}
@media (min-width: 768px) {
  .p-terms__content .p-terms__list li::before {
    width: min(14px, 1.4vw);
    height: min(14px, 1.4vw);
  }
}

.p-terms__price-table {
  width: 100%;
  border-collapse: collapse;
}
@media (min-width: 768px) {
  .p-terms__price-table {
    max-width: min(330px, 33vw);
  }
}
.p-terms__price-table tr {
  display: flex;
  align-items: baseline;
}
.p-terms__price-table td {
  font-size: clamp(12px, 9.6px + 0.64vw, 16px);
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-terms__price-table td {
    padding: max(4px, 1.0666666667vw) 0;
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .p-terms__price-table td {
    padding: min(6px, 0.6vw) 0;
    line-height: 1.875;
  }
}
.p-terms__price-table td:first-child {
  display: flex;
  align-items: baseline;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}
.p-terms__price-table td:first-child::after {
  content: "";
  flex: 1 1 auto;
  order: 1;
  border-bottom: 2px dotted #646464;
}
@media (max-width: 767px) {
  .p-terms__price-table td:first-child::after {
    margin: 0 max(4px, 1.0666666667vw) max(2px, 0.5333333333vw);
  }
}
@media (min-width: 768px) {
  .p-terms__price-table td:first-child::after {
    margin: 0 min(8px, 0.8vw) min(3px, 0.3vw);
  }
}
.p-terms__price-table td:last-child {
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
}

.p-pricing {
  position: relative;
  background: #8eba4f;
}
@media (max-width: 767px) {
  .p-pricing {
    padding-bottom: max(80px, 21.3333333333vw);
  }
}
@media (min-width: 768px) {
  .p-pricing {
    padding-bottom: min(160px, 16vw);
  }
}

.p-pricing__inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .p-pricing__inner {
    padding-top: max(48px, 12.8vw);
  }
}
@media (min-width: 768px) {
  .p-pricing__inner {
    padding-top: min(100px, 10vw);
  }
}

.p-pricing__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  font-size: clamp(30px, 18px + 3.2vw, 50px);
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-pricing__heading {
    margin-bottom: max(28px, 7.4666666667vw);
    line-height: 1.6667;
  }
}
@media (min-width: 768px) {
  .p-pricing__heading {
    margin-bottom: min(56px, 5.6vw);
    line-height: 1;
  }
}

.p-pricing__heading-icon {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  transform: translateY(-60%);
}
@media (max-width: 767px) {
  .p-pricing__heading-icon {
    right: max(12px, 3.2vw);
  }
}
@media (min-width: 768px) {
  .p-pricing__heading-icon {
    right: min(24px, 2.4vw);
  }
}
.p-pricing__heading-icon img {
  display: block;
  width: min(179px, 17.9vw);
  height: min(131px, 13.1vw);
}

.p-pricing__card {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .p-pricing__card {
    padding: max(4px, 1.0666666667vw) max(20px, 5.3333333333vw) max(32px, 8.5333333333vw);
  }
}
@media (min-width: 768px) {
  .p-pricing__card {
    padding: min(28px, 2.8vw) min(60px, 6vw) min(64px, 6.4vw);
  }
}

.p-pricing__subheading {
  position: relative;
  color: #8eba4f;
  font-weight: bold;
  text-align: center;
  font-size: clamp(28px, 20.8px + 1.92vw, 40px);
}
@media (max-width: 767px) {
  .p-pricing__subheading {
    margin-top: max(40px, 10.6666666667vw);
    margin-bottom: max(12px, 3.2vw);
    line-height: 1.1429;
  }
}
@media (min-width: 768px) {
  .p-pricing__subheading {
    margin-top: min(72px, 7.2vw);
    margin-bottom: min(32px, 3.2vw);
    line-height: 1.15;
  }
}

.p-pricing__heading-icon--cat {
  position: absolute;
  display: block;
}
@media (max-width: 767px) {
  .p-pricing__heading-icon--cat {
    top: max(30px, 8vw);
    left: min(-20px, -5.3333333333vw);
  }
}
@media (min-width: 768px) {
  .p-pricing__heading-icon--cat {
    top: min(38px, 3.8vw);
    left: max(-20px, -2vw);
  }
}
.p-pricing__heading-icon--cat img {
  display: block;
  width: min(84px, 8.4vw);
  height: min(130px, 13vw);
}

.p-pricing__table {
  width: 100%;
  border-collapse: collapse;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-pricing__table {
    max-width: min(760px, 76vw);
  }
}
.p-pricing__table tr {
  border-bottom: 1px solid #8eba4f;
}
.p-pricing__table tr:first-child {
  border-top: 1px solid #8eba4f;
}
.p-pricing__table tr.p-pricing__table-row--no-border {
  border-bottom: none;
}
.p-pricing__table tr:nth-child(2) td,
.p-pricing__table tr:nth-child(3) td {
  padding-top: 0;
  padding-bottom: 0;
}
.p-pricing__table tr:nth-child(1) td {
  padding-bottom: 0;
}
.p-pricing__table tr:nth-child(4) td {
  padding-top: 0;
}
@media (max-width: 767px) {
  .p-pricing__table tr:nth-child(2) td,
  .p-pricing__table tr:nth-child(3) td,
  .p-pricing__table tr:nth-child(4) td {
    padding-top: max(4px, 1.0666666667vw);
  }
}
.p-pricing__table th,
.p-pricing__table td {
  text-align: left;
  vertical-align: middle;
}
.p-pricing__table th {
  background: #e8f1dc;
  color: #646464;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  font-size: clamp(16px, 11.2px + 1.28vw, 24px);
}
@media (max-width: 767px) {
  .p-pricing__table th {
    width: max(100px, 26.6666666667vw);
    white-space: normal;
    padding: max(12px, 3.2vw) max(4px, 1.0666666667vw);
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .p-pricing__table th {
    width: min(312px, 31.2vw);
    padding: min(14px, 1.4vw) min(16px, 1.6vw);
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .p-pricing__table td {
    padding: max(8px, 2.1333333333vw) max(4px, 1.0666666667vw) max(8px, 2.1333333333vw) max(8px, 2.1333333333vw);
  }
}
@media (min-width: 768px) {
  .p-pricing__table td {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: min(14px, 1.4vw) 0 min(14px, 1.4vw) min(24px, 2.4vw);
  }
}

.p-pricing__table.p-pricing__table--discount td {
  display: table-cell;
}
@media (max-width: 767px) {
  .p-pricing__table.p-pricing__table--discount td {
    padding: max(8px, 2.1333333333vw) max(8px, 2.1333333333vw) max(8px, 2.1333333333vw) max(16px, 4.2666666667vw);
  }
}
@media (min-width: 768px) {
  .p-pricing__table.p-pricing__table--discount td {
    padding: min(14px, 1.4vw) 0 min(14px, 1.4vw) min(24px, 2.4vw);
  }
}
.p-pricing__table.p-pricing__table--discount tr:nth-child(2) td,
.p-pricing__table.p-pricing__table--discount tr:nth-child(3) td {
  padding-top: 0;
}
@media (max-width: 767px) {
  .p-pricing__table.p-pricing__table--discount tr:nth-child(3) td {
    padding-bottom: max(8px, 2.1333333333vw);
  }
}
@media (max-width: 767px) {
  .p-pricing__table.p-pricing__table--discount .p-pricing__price {
    margin-left: max(8px, 2.1333333333vw);
  }
}
@media (min-width: 768px) {
  .p-pricing__table.p-pricing__table--discount .p-pricing__price {
    margin-left: min(20px, 2vw);
  }
}
@media (max-width: 767px) {
  .p-pricing__table.p-pricing__table--discount .p-pricing__label {
    display: inline;
  }
}

.p-pricing__label {
  color: #646464;
  font-size: clamp(14px, 9.2px + 1.28vw, 22px);
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-pricing__label {
    display: block;
    line-height: 1.7857;
  }
}
@media (min-width: 768px) {
  .p-pricing__label {
    line-height: 2.3;
  }
}

.p-pricing__value {
  display: flex;
  align-items: baseline;
}

.p-pricing__price {
  display: inline-block;
  color: #8eba4f;
  font-weight: bold;
  white-space: nowrap;
  font-size: clamp(16px, 11.2px + 1.28vw, 24px);
}
@media (max-width: 767px) {
  .p-pricing__price {
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .p-pricing__price {
    line-height: 1.9167;
  }
}

.p-pricing__price-num {
  font-size: 120%;
}

.p-pricing__unit {
  color: #646464;
  white-space: nowrap;
  font-size: clamp(16px, 11.2px + 1.28vw, 24px);
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-pricing__unit {
    margin-left: max(4px, 1.0666666667vw);
  }
}
@media (min-width: 768px) {
  .p-pricing__unit {
    margin-left: min(6px, 0.6vw);
  }
}

@media (max-width: 767px) {
  .p-pricing__amenities-wrap {
    position: relative;
  }
}

.p-pricing__amenities {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  color: #646464;
  font-weight: bold;
  font-size: clamp(15px, 9.6px + 1.44vw, 24px);
  border-top: 1px solid #8eba4f;
  border-bottom: 1px solid #8eba4f;
  padding-block: min(32px, 3.2vw);
  padding-inline: min(8px, 0.8vw);
}
@media (max-width: 767px) {
  .p-pricing__amenities {
    grid-template-columns: 1fr;
    line-height: 2.1333;
  }
}
@media (min-width: 768px) {
  .p-pricing__amenities {
    max-width: min(760px, 76vw);
    margin-inline: auto;
    line-height: 1.9167;
  }
}
.p-pricing__amenities li {
  position: relative;
}
.p-pricing__amenities li::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  background: #8eba4f;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .p-pricing__amenities li::before {
    margin-right: max(6px, 1.6vw);
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 768px) {
  .p-pricing__amenities li::before {
    margin-right: min(10px, 1vw);
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .p-pricing__amenities {
    row-gap: max(4px, 1.0666666667vw);
    margin-top: max(16px, 4.2666666667vw);
  }
}
@media (min-width: 768px) {
  .p-pricing__amenities {
    row-gap: min(8px, 0.8vw);
    margin-top: min(24px, 2.4vw);
  }
}

.p-pricing__photo img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .p-pricing__photo {
    width: min(355px, 35.5vw);
    height: min(255px, 25.5vw);
  }
  .p-pricing__photo img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 767px) {
  .p-pricing__photo--camper {
    position: absolute;
    bottom: -12%;
    right: min(-40px, -10.6666666667vw);
    width: max(177px, 47.2vw);
  }
}
@media (min-width: 768px) {
  .p-pricing__photo--camper {
    position: absolute;
    top: min(460px, 46vw);
    right: max(-60px, -6vw);
  }
}

@media (max-width: 767px) {
  .p-pricing__photo--tent {
    position: absolute;
    top: -3%;
    right: min(-40px, -10.6666666667vw);
    width: max(177px, 47.2vw);
  }
}
@media (min-width: 768px) {
  .p-pricing__photo--tent {
    position: absolute;
    right: max(-60px, -6vw);
    bottom: max(-40px, -4vw);
  }
}

.p-single {
  background: #ffffff;
}
@media (max-width: 767px) {
  .p-single {
    padding-block: max(50px, 13.3333333333vw);
  }
}
@media (min-width: 768px) {
  .p-single {
    padding-block: min(100px, 10vw);
  }
}

.p-single__inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .p-single__inner {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: max(20px, 5.3333333333vw);
  }
}

@media (max-width: 767px) {
  .p-single__header {
    margin-bottom: max(24px, 6.4vw);
  }
}
@media (min-width: 768px) {
  .p-single__header {
    margin-bottom: min(40px, 4vw);
  }
}

.p-single__date {
  color: #999999;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: clamp(14px, 12.8px + 0.32vw, 16px);
}
@media (max-width: 767px) {
  .p-single__date {
    margin-bottom: max(8px, 2.1333333333vw);
  }
}
@media (min-width: 768px) {
  .p-single__date {
    margin-bottom: min(12px, 1.2vw);
  }
}

.p-single__title {
  color: #646464;
  font-weight: bold;
  line-height: 1.5;
  font-size: clamp(24px, 16.8px + 1.92vw, 36px);
}

.p-single__thumbnail {
  overflow: hidden;
}
.p-single__thumbnail img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .p-single__thumbnail {
    margin-bottom: max(30px, 8vw);
    border-radius: max(8px, 2.1333333333vw);
  }
}
@media (min-width: 768px) {
  .p-single__thumbnail {
    margin-bottom: min(60px, 6vw);
    border-radius: min(10px, 1vw);
  }
}

.p-single__content {
  color: #646464;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 2;
  font-size: clamp(14px, 12.8px + 0.32vw, 16px);
}
@media (max-width: 767px) {
  .p-single__content > * + * {
    margin-top: max(20px, 5.3333333333vw);
  }
}
@media (min-width: 768px) {
  .p-single__content > * + * {
    margin-top: min(30px, 3vw);
  }
}
.p-single__content h2,
.p-single__content h3,
.p-single__content h4 {
  color: #646464;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
.p-single__content h2 {
  font-size: clamp(20px, 15.2px + 1.28vw, 28px);
}
.p-single__content h3 {
  font-size: clamp(17px, 14px + 0.8vw, 22px);
}
.p-single__content h4 {
  font-size: clamp(15px, 13.2px + 0.48vw, 18px);
}
.p-single__content a {
  color: #8eba4f;
  text-decoration: underline;
}
.p-single__content strong {
  font-weight: bold;
}
.p-single__content ul,
.p-single__content ol {
  padding-left: 1.4em;
}
@media (max-width: 767px) {
  .p-single__content ul li + li,
  .p-single__content ol li + li {
    margin-top: max(6px, 1.6vw);
  }
}
@media (min-width: 768px) {
  .p-single__content ul li + li,
  .p-single__content ol li + li {
    margin-top: min(8px, 0.8vw);
  }
}
.p-single__content ul {
  list-style: disc;
}
.p-single__content ol {
  list-style: decimal;
}
.p-single__content blockquote {
  background: #e8f1dc;
  border-left: 4px solid #8eba4f;
}
@media (max-width: 767px) {
  .p-single__content blockquote {
    padding: max(16px, 4.2666666667vw) max(20px, 5.3333333333vw);
    border-radius: max(4px, 1.0666666667vw);
  }
}
@media (min-width: 768px) {
  .p-single__content blockquote {
    padding: min(24px, 2.4vw) min(32px, 3.2vw);
    border-radius: min(6px, 0.6vw);
  }
}
@media (max-width: 767px) {
  .p-single__content img {
    border-radius: max(8px, 2.1333333333vw);
  }
}
@media (min-width: 768px) {
  .p-single__content img {
    border-radius: min(10px, 1vw);
  }
}
.p-single__content table {
  width: 100%;
  border-collapse: collapse;
}
.p-single__content table th,
.p-single__content table td {
  border: 1px solid #e8f1dc;
  vertical-align: top;
  text-align: left;
}
@media (max-width: 767px) {
  .p-single__content table th,
  .p-single__content table td {
    padding: max(8px, 2.1333333333vw) max(12px, 3.2vw);
  }
}
@media (min-width: 768px) {
  .p-single__content table th,
  .p-single__content table td {
    padding: min(10px, 1vw) min(16px, 1.6vw);
  }
}
.p-single__content table th {
  background: #e8f1dc;
  font-weight: bold;
}

.p-single__back {
  text-align: center;
}
@media (max-width: 767px) {
  .p-single__back {
    margin-top: max(50px, 13.3333333333vw);
  }
}
@media (min-width: 768px) {
  .p-single__back {
    margin-top: min(100px, 10vw);
  }
}
.p-single__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8eba4f;
  color: #ffffff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: clamp(14px, 12.8px + 0.32vw, 16px);
}
@media (max-width: 767px) {
  .p-single__back a {
    width: max(200px, 53.3333333333vw);
    height: max(45px, 12vw);
    border-radius: max(22.5px, 6vw);
  }
}
@media (min-width: 768px) {
  .p-single__back a {
    width: min(240px, 24vw);
    height: min(56px, 5.6vw);
    border-radius: min(28px, 2.8vw);
  }
}

.p-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .p-404 {
    padding-block: max(50px, 13.3333333333vw);
  }
}
@media (min-width: 768px) {
  .p-404 {
    padding-block: min(100px, 10vw);
  }
}

.p-404__inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .p-404__inner {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: max(20px, 5.3333333333vw);
  }
}

.p-404__code {
  color: #8eba4f;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: bold;
  line-height: 1;
  font-size: clamp(60px, 48px + 3.2vw, 80px);
}
@media (max-width: 767px) {
  .p-404__code {
    margin-bottom: max(12px, 3.2vw);
  }
}
@media (min-width: 768px) {
  .p-404__code {
    margin-bottom: min(16px, 1.6vw);
  }
}

.p-404__title {
  color: #646464;
  font-weight: bold;
  line-height: 1.5;
  font-size: clamp(24px, 19.2px + 1.28vw, 32px);
}
@media (max-width: 767px) {
  .p-404__title {
    margin-bottom: max(16px, 4.2666666667vw);
  }
}
@media (min-width: 768px) {
  .p-404__title {
    margin-bottom: min(24px, 2.4vw);
  }
}

.p-404__text {
  color: #646464;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 2;
  font-size: clamp(14px, 12.8px + 0.32vw, 16px);
}

@media (max-width: 767px) {
  .p-404__back {
    margin-top: max(30px, 8vw);
  }
}
@media (min-width: 768px) {
  .p-404__back {
    margin-top: min(60px, 6vw);
  }
}
.p-404__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8eba4f;
  color: #ffffff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: clamp(14px, 12.8px + 0.32vw, 16px);
}
@media (max-width: 767px) {
  .p-404__back a {
    width: max(200px, 53.3333333333vw);
    height: max(45px, 12vw);
    border-radius: max(22.5px, 6vw);
  }
}
@media (min-width: 768px) {
  .p-404__back a {
    width: min(240px, 24vw);
    height: min(56px, 5.6vw);
    border-radius: min(28px, 2.8vw);
  }
}
/*# sourceMappingURL=style.css.map */
