*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  color: #333333;
  background-color: #fff9eb;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

p {
  line-height: 1.8;
}

.l-inner {
  width: 100%;
  max-width: 950px;
  margin-inline: auto;
  padding-inline: 20px;
}

.l-section {
  padding-block: 5.625rem;
}

.l-section--pt-only {
  padding-top: 5.625rem;
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.625rem;
  background-color: #4fabbf;
  color: #ffffff;
  border-radius: 0.3125rem;
  padding: 1.25rem 1.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn__arrow {
  width: 0;
  height: 0;
  border-top: 0.375rem solid transparent;
  border-bottom: 0.375rem solid transparent;
  border-left: 0.625rem solid #ffffff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.c-btn--lg {
  width: 21.875rem;
  height: 4.375rem;
  font-size: 1.125rem;
  border-radius: 2.1875rem;
}

.c-section-heading {
  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: 0.75rem;
  margin-bottom: 3.75rem;
}
@media (max-width: 1023px) {
  .c-section-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 2.5rem;
  }
}
.c-section-heading__text {
  font-size: 2.8125rem;
  font-weight: 700;
  color: #333333;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .c-section-heading__text {
    font-size: 1.625rem;
    white-space: normal;
    text-align: center;
  }
}
.c-section-heading__deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.c-section-heading__deco span {
  display: block;
  width: 2.1875rem;
  height: 2.875rem;
  border-radius: 0.25rem;
}
.c-section-heading__deco span:nth-child(1) {
  background-color: #e8829a;
  opacity: 0.6;
}
.c-section-heading__deco span:nth-child(2) {
  background-color: #4fabbf;
  opacity: 0.5;
}
.c-section-heading__deco span:nth-child(3) {
  background-color: #e8829a;
  opacity: 0.8;
}
@media (max-width: 1023px) {
  .c-section-heading__deco {
    gap: 0.3125rem;
  }
  .c-section-heading__deco span {
    width: 2rem;
    height: 0.625rem;
    border-radius: 0.1875rem;
  }
}

.c-sub-heading {
  display: inline-block;
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  color: #4fabbf;
  padding-bottom: 0.25rem;
  margin-bottom: 0.5rem;
}
.c-sub-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: #4fabbf;
  border-radius: 0.125rem;
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.5rem;
  background-color: rgba(255, 249, 235, 0.9);
  backdrop-filter: blur(4px);
  z-index: 100;
  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;
}
.p-header__inner {
  width: 100%;
  max-width: 1440px;
  padding-inline: 1.25rem;
  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;
  position: relative;
}
.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 1023px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__nav-btn {
  background-color: #4fabbf;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1.125rem 1rem;
  border-radius: 0.3125rem;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.p-header__nav-btn:hover {
  opacity: 0.8;
}
.p-header__logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  text-decoration: none;
}
.p-header__logo-inner {
  position: relative;
  width: 7.125rem;
  height: 3.125rem;
  margin-inline: auto;
}
.p-header__logo-union {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.p-header__logo-deco-top {
  position: absolute;
  top: 1.125rem;
  left: 0.3125rem;
  width: 6.5rem;
  height: 0.3125rem;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.p-header__logo-deco-bottom {
  position: absolute;
  top: 1.25rem;
  left: 0.0625rem;
  width: 7rem;
  height: 0.3125rem;
}
.p-header__logo-text {
  position: absolute;
  top: 1.8125rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.p-header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .p-header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-header__hamburger span {
  display: block;
  width: 1.75rem;
  height: 0.125rem;
  background-color: #333333;
  border-radius: 0.125rem;
  -webkit-transition:
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition:
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition:
    transform 0.3s,
    opacity 0.3s;
  transition:
    transform 0.3s,
    opacity 0.3s,
    -webkit-transform 0.3s;
}

.p-drawer {
  display: none;
}
@media (max-width: 1023px) {
  .p-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    background-color: rgba(79, 171, 191, 0.7);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.25rem;
  }
  .p-drawer[aria-hidden="false"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-drawer__head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.p-drawer__logo {
  text-decoration: none;
}
.p-drawer__logo-inner {
  position: relative;
  width: 4.375rem;
  height: 1.875rem;
}
.p-drawer__logo-union {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.p-drawer__logo-deco-top {
  position: absolute;
  top: 0.6875rem;
  left: 0.1875rem;
  width: 4rem;
  height: 0.1875rem;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.p-drawer__logo-deco-bottom {
  position: absolute;
  top: 0.75rem;
  left: 0.0625rem;
  width: 4.3125rem;
  height: 0.1875rem;
}
.p-drawer__logo-text {
  position: absolute;
  top: 1.125rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 0.375rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.p-drawer__close {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: #ffffff;
}
.p-drawer__close-icon {
  position: relative;
  width: 1.0625rem;
  height: 1.0625rem;
}
.p-drawer__close-icon::before,
.p-drawer__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 0.125rem;
  background: #ffffff;
  border-radius: 0.125rem;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.p-drawer__close-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-drawer__close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-drawer__close-label {
  font-size: 0.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.p-drawer__nav {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.9375rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.p-drawer__item {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  text-decoration: none;
}

.p-fv {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-fv {
    height: 100svh;
  }
}
.p-fv__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 1.4s ease;
  transition: opacity 1.4s ease;
  pointer-events: none;
}
.p-fv__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.p-fv__slide.is-active .p-fv__bg {
  -webkit-animation: fv-zoom 7s ease-out forwards;
  animation: fv-zoom 7s ease-out forwards;
}
.p-fv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes fv-zoom {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
}
@keyframes fv-zoom {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
}
.p-fv__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.25)), color-stop(65%, transparent));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, transparent 65%);
}
.p-fv__overlay--sky {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.35)),
    color-stop(60%, rgba(0, 0, 0, 0.1)),
    to(transparent)
  );
  background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}
.p-fv__overlay--dark {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.45)),
    color-stop(60%, rgba(0, 0, 0, 0.2)),
    to(transparent)
  );
  background: linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}
.p-fv__content {
  position: relative;
  z-index: 1;
  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;
  padding-left: 5rem;
}
@media (max-width: 1023px) {
  .p-fv__content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 8.75rem;
  }
}
.p-fv__subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.75rem;
}
@media (max-width: 1023px) {
  .p-fv__subtitle {
    font-size: 1rem;
  }
}
.p-fv__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}
.p-fv__title em {
  font-style: normal;
  color: #ffdd44;
}
.p-fv__title .p-fv__em--sky {
  font-style: normal;
  color: #ffdd44;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 2px;
}
@media (max-width: 1023px) {
  .p-fv__title {
    font-size: 1.5rem;
  }
}
.p-fv__pagination {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
.p-fv__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition:
    background-color 0.3s,
    -webkit-transform 0.3s;
  transition:
    background-color 0.3s,
    -webkit-transform 0.3s;
  transition:
    background-color 0.3s,
    transform 0.3s;
  transition:
    background-color 0.3s,
    transform 0.3s,
    -webkit-transform 0.3s;
}
.p-fv__dot.is-active {
  background-color: #ffffff;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.p-fv__dot:hover:not(.is-active) {
  background-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1023px) {
  .p-fv__dot {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.p-fv__cta {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 2;
  width: 9.1875rem;
  height: 14.125rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4.625rem;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1.25rem 0.625rem;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.p-fv__cta:hover {
  opacity: 0.85;
}
@media (max-width: 1023px) {
  .p-fv__cta {
    right: 1rem;
    bottom: 1rem;
    width: 6.25rem;
    height: 10rem;
  }
}
.p-fv__cta-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .p-fv__cta-text {
    font-size: 0.6875rem;
  }
}
.p-fv__cta-arrow {
  width: 1.3125rem;
  height: 1.4375rem;
  fill: #4fabbf;
}

.p-charms {
  background-color: #fff9eb;
  padding-top: 5.625rem;
  padding-bottom: 5.625rem;
}
.p-charms__header {
  text-align: center;
  margin-bottom: 3.75rem;
}
.p-charms__lead-label {
  display: inline-block;
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  color: #4fabbf;
  padding: 0.25rem 1.25rem;
  border: 0.125rem solid #4fabbf;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}
.p-charms__lead-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}
.p-charms__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.75rem;
}

.p-charm-item {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 3.125rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media (max-width: 1023px) {
  .p-charm-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.p-charm-item:nth-child(even) {
  grid-template-columns: 1fr 450px;
}
@media (max-width: 1023px) {
  .p-charm-item:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
.p-charm-item:nth-child(even) .p-charm-item__photos {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media (max-width: 1023px) {
  .p-charm-item:nth-child(even) .p-charm-item__photos {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
.p-charm-item:nth-child(even) .p-charm-item__body {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.p-charm-item__photos {
  display: grid;
  grid-template-rows: 17.5rem 9.375rem;
  gap: 0.625rem;
}
@media (max-width: 1023px) {
  .p-charm-item__photos {
    grid-template-rows: 12.5rem 6.875rem;
  }
}
.p-charm-item__photos-main {
  width: 100%;
  height: 17.5rem;
  aspect-ratio: 450/280;
  border-radius: 0.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #d0ccc0;
}
@media (max-width: 1023px) {
  .p-charm-item__photos-main {
    height: 12.5rem;
    aspect-ratio: unset;
  }
}
.p-charm-item__photos-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
  display: block;
}
.p-charm-item__photos-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
@media (max-width: 1023px) {
  .p-charm-item__photos-sub {
    height: 6.875rem;
  }
}
.p-charm-item__photos-sub div {
  border-radius: 0.5rem;
  background-color: #c4c0b4;
  overflow: hidden;
}
.p-charm-item__photos-sub div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.p-charm-item__body {
  padding-top: 1rem;
}
.p-charm-item__number {
  font-size: 3.3125rem;
  font-weight: 700;
  color: #4fabbf;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.p-charm-item__number::after {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 4.6875rem;
  background-color: #d8d0c0;
}
.p-charm-item__title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.p-charm-item__text {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 2rem;
}

.p-balloon {
  position: relative;
  overflow: hidden;
  background-color: #8ba0b0;
}
.p-balloon__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}
.p-balloon__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.p-balloon__inner {
  position: relative;
  z-index: 1;
  padding-top: 5.625rem;
  padding-bottom: 5.625rem;
}
.p-balloon__header {
  text-align: center;
  margin-bottom: 3.75rem;
}
.p-balloon__label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  border: 0.125rem solid #ffffff;
  border-radius: 0.25rem;
  padding: 0.25rem 1.25rem;
  margin-bottom: 1rem;
}
.p-balloon__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}
.p-balloon__lead {
  font-size: 0.9375rem;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.8;
}
.p-balloon__card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0.5rem;
  padding: 1.875rem;
  display: grid;
  grid-template-columns: 16.25rem 1fr;
  gap: 1.875rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 3.75rem;
}
@media (max-width: 1023px) {
  .p-balloon__card {
    grid-template-columns: 1fr;
  }
}
.p-balloon__card-img {
  width: 16.25rem;
  height: 12.5rem;
  border-radius: 0.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #c8bfb0;
}
@media (max-width: 1023px) {
  .p-balloon__card-img {
    width: 100%;
    height: 11.25rem;
  }
}
.p-balloon__card-body {
  padding: 0.625rem 0;
}
.p-balloon__card-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.p-balloon__card-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #d94040;
  margin-bottom: 1rem;
}
.p-balloon__card-text {
  font-size: 0.875rem;
  line-height: 1.9;
}
.p-balloon__schedule-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.875rem;
}
.p-balloon__schedule-scroll-outer {
  position: relative;
}
@media (max-width: 1023px) {
  .p-balloon__schedule-scroll-outer::after {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    bottom: 0;
    width: 6.875rem;
    pointer-events: none;
    border-radius: 0 0.5rem 0.5rem 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .p-balloon__schedule-scroll-outer.is-scrollable::after {
    opacity: 1;
  }
  .p-balloon__schedule-scroll-outer.is-scrollable.is-scrolled-end::after {
    opacity: 0;
  }
}
.p-balloon__schedule-scroll-hint {
  display: none;
}
@media (max-width: 1023px) {
  .p-balloon__schedule-scroll-hint {
    position: absolute;
    top: 0;
    right: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #333333;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .is-scrollable .p-balloon__schedule-scroll-hint {
    opacity: 1;
    -webkit-animation: scroll-hint-nudge 1.2s ease-in-out infinite;
    animation: scroll-hint-nudge 1.2s ease-in-out infinite;
  }
  .is-scrollable.is-scrolled-end .p-balloon__schedule-scroll-hint {
    opacity: 0;
    -webkit-animation: none;
    animation: none;
  }
}
.p-balloon__schedule-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.5rem;
}
.p-balloon__schedule table {
  width: 100%;
  min-width: 32.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-balloon__schedule table th,
.p-balloon__schedule table td {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  border-bottom: 1px solid #d8d0c0;
  vertical-align: top;
  text-align: left;
}
.p-balloon__schedule table thead {
  background-color: #4fabbf;
  color: #ffffff;
}
.p-balloon__schedule table thead th {
  font-weight: 700;
  text-wrap: nowrap;
}
.p-balloon__schedule table tbody tr:last-child td {
  border-bottom: none;
}
.p-balloon__schedule table td:first-child {
  font-weight: 700;
  white-space: nowrap;
  color: #4fabbf;
}
@media (min-width: 1024px) {
  .p-balloon__schedule table th:nth-child(3),
  .p-balloon__schedule table td:nth-child(3) {
    min-width: 6.25rem;
  }
}

@-webkit-keyframes scroll-hint-nudge {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
}

@keyframes scroll-hint-nudge {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
}
.p-tours {
  background-color: #fff9eb;
  padding-block: 5.625rem;
}
.p-tours__header {
  text-align: center;
  margin-bottom: 3.75rem;
}
.p-tours__label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #4fabbf;
  border: 0.125rem solid #4fabbf;
  border-radius: 0.25rem;
  padding: 0.25rem 1.25rem;
  margin-bottom: 1rem;
}
.p-tours__title {
  font-size: 2.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.p-tours__sub-title {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.p-tours__nomad {
  margin-bottom: 3.75rem;
}
.p-tours__nomad-lead {
  font-size: 0.9375rem;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 2.5rem;
}
.p-tours__nomad-card {
  display: grid;
  grid-template-columns: 20.625rem 1fr;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1023px) {
  .p-tours__nomad-card {
    grid-template-columns: 1fr;
  }
}
.p-tours__nomad-img {
  width: 20.625rem;
  height: 100%;
  min-height: 16.875rem;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #c8c0b0;
}
@media (max-width: 1023px) {
  .p-tours__nomad-img {
    width: 100%;
    height: 12.5rem;
  }
}
.p-tours__nomad-body {
  background-color: #ffffff;
  padding: 1.875rem 2.25rem;
}
.p-tours__nomad-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.p-tours__nomad-price {
  font-size: 1.875rem;
  font-weight: 700;
  color: #d94040;
  margin-bottom: 1rem;
}
.p-tours__nomad-text {
  font-size: 0.875rem;
  line-height: 1.9;
  margin-bottom: 0.75rem;
}
.p-tours__nomad-note {
  font-size: 0.8125rem;
  color: #d94040;
  font-weight: 700;
}
.p-tours__sub-heading {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.p-tours__sub-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.p-tours__tag {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #4fabbf;
  border-bottom: 0.125rem solid #4fabbf;
  padding-bottom: 0.125rem;
}
.p-tours__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.875rem;
  margin-bottom: 3.75rem;
}
.p-tours__comment {
  background-color: #ffffff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 2px 2px 0 #d8d0c0;
  box-shadow: 2px 2px 0 #d8d0c0;
  padding: 1.875rem 2.5rem;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.9;
  position: relative;
}

.c-tour-card {
  display: grid;
  grid-template-columns: 20.625rem 1fr;
  min-height: 10rem;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (max-width: 1023px) {
  .c-tour-card {
    grid-template-columns: 1fr;
  }
}
.c-tour-card__img {
  position: relative;
  width: 20.625rem;
  overflow: hidden;
  background-color: #c8c0b0;
}
.c-tour-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (max-width: 1023px) {
  .c-tour-card__img {
    width: 100%;
    height: 11.25rem;
  }
}
.c-tour-card__body {
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.c-tour-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.c-tour-card__price {
  font-size: 1.625rem;
  font-weight: 700;
  color: #d94040;
  margin-bottom: 0.75rem;
}
.c-tour-card__text {
  font-size: 0.875rem;
  line-height: 1.9;
}

.p-camp {
  position: relative;
  overflow: hidden;
}
.p-camp__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.p-camp__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
}
.p-camp__inner {
  position: relative;
  z-index: 1;
  padding-block: 5.625rem;
}
.p-camp__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.125rem;
}
@media (max-width: 1023px) {
  .p-camp__cards {
    grid-template-columns: 1fr;
  }
}
.p-camp__card {
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 0.5rem;
  overflow: hidden;
  padding-bottom: 1.5rem;
}
.p-camp__card-img {
  width: 100%;
  height: 12.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #b8c8d0;
  display: block;
}
.p-camp__card-body {
  padding: 1.25rem 1.25rem 0.5rem;
}
.p-camp__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.p-camp__card-text {
  font-size: 0.8125rem;
  line-height: 1.9;
}
.p-camp__card-label {
  display: inline-block;
  background-color: #4fabbf;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 1.25rem;
  padding: 0.125rem 0.75rem;
  margin-top: 0.5rem;
}

.p-testimonials {
  background-color: #fff9eb;
  padding-block: 5.625rem;
}
.p-testimonials__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  margin-top: 3.125rem;
}
@media (max-width: 1023px) {
  .p-testimonials__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.c-testimonial-card {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #ffffff;
  -webkit-box-shadow: 3px 4px 4px 0 rgba(51, 51, 51, 0.3);
  box-shadow: 3px 4px 4px 0 rgba(51, 51, 51, 0.3);
  padding: 2.25rem 2.75rem 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.c-testimonial-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.c-testimonial-card__author {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  text-align: right;
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}
.c-testimonial-card__divider {
  border: none;
  border-top: 1px solid #d8d0c0;
  margin-block: 1rem;
}
.c-testimonial-card__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #333333;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .c-testimonial-card__text {
    font-size: 1.125rem;
  }
}
.c-testimonial-card__btn {
  -ms-flex-item-align: center;
  align-self: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.625rem;
  width: 15.625rem;
  height: 3.75rem;
  background-color: #4fabbf;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 0.4375rem;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.c-testimonial-card__btn:hover {
  opacity: 0.8;
}
.c-testimonial-card__btn-arrow {
  width: 0;
  height: 0;
  border-top: 0.375rem solid transparent;
  border-bottom: 0.375rem solid transparent;
  border-left: 0.625rem solid #ffffff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background-color: #fff9eb;
  overflow-y: auto;
}
.c-modal[hidden] {
  display: none;
}
.c-modal__body {
  position: relative;
  z-index: 1;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
  padding: 5rem 1.25rem 3.75rem;
}
.c-modal__inner {
  width: 100%;
  max-width: 63.5rem;
  background: #ffffff;
  -webkit-box-shadow: 3px 4px 4px 0 rgba(51, 51, 51, 0.3);
  box-shadow: 3px 4px 4px 0 rgba(51, 51, 51, 0.3);
  padding: 3.75rem 6.25rem;
}
@media (max-width: 1023px) {
  .c-modal__inner {
    padding: 2rem 1.25rem;
  }
}
.c-modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
}
.c-modal__divider {
  border: none;
  border-top: 1px solid #d8d0c0;
  margin-block: 1.25rem;
}
.c-modal__text {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 1.25rem;
}
@media (max-width: 1023px) {
  .c-modal__text {
    font-size: 0.875rem;
  }
}
.c-modal__text:last-of-type {
  margin-bottom: 0;
}
.c-modal__author-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.c-modal__author-bio {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #333333;
  margin-top: 0.5rem;
}
.c-modal__close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.625rem;
  width: 15.625rem;
  height: 3.75rem;
  background-color: #4fabbf;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 0.4375rem;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  margin-top: 2.5rem;
}
.c-modal__close:hover {
  opacity: 0.8;
}
.c-modal__close-arrow {
  width: 0;
  height: 0;
  border-top: 0.375rem solid transparent;
  border-bottom: 0.375rem solid transparent;
  border-left: 0.625rem solid #ffffff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1023px) {
  .p-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-gallery__item {
  aspect-ratio: 360/250;
  overflow: hidden;
  background-color: #b8b0a0;
}
.p-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
}
.p-gallery__item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.p-faq {
  background-color: #fff9eb;
  padding-block: 5.625rem;
}
.p-faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3.125rem;
}
.p-faq__btn-wrap {
  text-align: center;
}

.c-faq-item {
  border: 0.0625rem solid #d8d0c0;
  border-radius: 0.5rem;
  overflow: hidden;
}
.c-faq-item__question {
  display: grid;
  grid-template-columns: 3.75rem 1fr 2.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.5rem 0.875rem 1rem;
  cursor: pointer;
  background-color: #ffffff;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.c-faq-item__question:hover {
  background-color: rgba(79, 171, 191, 0.05);
}
.c-faq-item__q-badge {
  width: 2.3125rem;
  height: 2.3125rem;
  border-radius: 50%;
  background-color: #4fabbf;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  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;
}
.c-faq-item__q-text {
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
}
.c-faq-item__chevron {
  width: 1.125rem;
  height: 1.125rem;
  stroke: #4fabbf;
  stroke-width: 2.5;
  fill: none;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
  margin-left: auto;
}
.c-faq-item[aria-expanded="true"] .c-faq-item__chevron {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.c-faq-item[aria-expanded="true"] .c-faq-item__question {
  background-color: rgba(79, 171, 191, 0.08);
}
.c-faq-item__answer {
  display: none;
  background-color: #ffffff;
  border-top: 0.0625rem solid #d8d0c0;
}
.c-faq-item__answer[aria-hidden="false"] {
  display: block;
}
.c-faq-item__answer-inner {
  display: grid;
  grid-template-columns: 3.75rem 1fr;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1.25rem 1rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.c-faq-item__a-badge {
  width: 2.3125rem;
  height: 2.3125rem;
  border-radius: 50%;
  border: 0.125rem solid #4fabbf;
  color: #4fabbf;
  font-size: 1.125rem;
  font-weight: 700;
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.c-faq-item__a-text {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #333333;
}

.p-thoughts {
  background-color: #fff9eb;
  padding-block: 5.625rem;
}
.p-thoughts__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3.125rem;
}
@media (max-width: 1023px) {
  .p-thoughts__content {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
.p-thoughts__img {
  width: 100%;
  aspect-ratio: 460/350;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
  background-color: #b8b0a0;
}
.p-thoughts__body {
  padding: 1.25rem 0;
}
.p-thoughts__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.p-thoughts__text {
  font-size: 0.875rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.p-thoughts__signature {
  font-size: 1rem;
  font-weight: 700;
  color: #4fabbf;
  margin-top: 1.5rem;
}

.p-contact {
  background-color: #fff9eb;
  padding-block: 5.625rem;
}
.p-contact__form {
  max-width: 47rem;
  margin-inline: auto;
  margin-top: 3.125rem;
}
.p-contact__row {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 1023px) {
  .p-contact__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.p-contact__label {
  font-size: 1rem;
  font-weight: 700;
  padding-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}
.p-contact__required {
  display: inline-block;
  background-color: #4fabbf;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.25rem;
  padding: 0.125rem 0.5rem;
}
.p-contact__input,
.p-contact__textarea {
  width: 100%;
  border: 0.0625rem solid #d8d0c0;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #333333;
  background-color: #ffffff;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.p-contact__input::-webkit-input-placeholder,
.p-contact__textarea::-webkit-input-placeholder {
  color: #bbb;
}
.p-contact__input::-moz-placeholder,
.p-contact__textarea::-moz-placeholder {
  color: #bbb;
}
.p-contact__input:-ms-input-placeholder,
.p-contact__textarea:-ms-input-placeholder {
  color: #bbb;
}
.p-contact__input::-ms-input-placeholder,
.p-contact__textarea::-ms-input-placeholder {
  color: #bbb;
}
.p-contact__input::placeholder,
.p-contact__textarea::placeholder {
  color: #bbb;
}
.p-contact__input:focus,
.p-contact__textarea:focus {
  outline: none;
  border-color: #4fabbf;
}
.p-contact__textarea {
  resize: vertical;
  min-height: 12.5rem;
}
.p-contact__checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.p-contact__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
}
.p-contact__checkbox-label input[type="checkbox"] {
  width: 1.375rem;
  height: 1.375rem;
  accent-color: #4fabbf;
  cursor: pointer;
}
.p-contact__submit-wrap {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 3.125rem;
}
.p-contact__submit {
  background-color: #4fabbf;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 1.25rem 3.75rem;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.p-contact__submit:hover {
  opacity: 0.8;
}
.p-contact__contacts {
  display: grid;
  grid-template-columns: repeat(2, 18.75rem);
  gap: 1.875rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1.875rem;
}
@media (max-width: 1023px) {
  .p-contact__contacts {
    grid-template-columns: 1fr;
  }
}
.p-contact__contact-box {
  background-color: #ffffff;
  border-radius: 0.5rem;
  border: 0.0625rem solid #d8d0c0;
  padding: 1.5rem 1.5rem 1.25rem;
  text-align: center;
}
.p-contact__contact-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: #4fabbf;
  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;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}
.p-contact__contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #ffffff;
}
.p-contact__contact-label {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.p-contact__contact-value {
  font-size: 1.375rem;
  font-weight: 700;
}
.p-contact__contact-note {
  font-size: 0.8125rem;
  color: #888;
  margin-top: 0.25rem;
}
.p-contact__ssl {
  font-size: 0.75rem;
  color: #888;
  text-align: center;
  line-height: 1.8;
}

.p-footer {
  background-color: #4fabbf;
  color: #ffffff;
  padding-top: 2.5rem;
}
.p-footer__nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 1023px) {
  .p-footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-footer__nav-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}
.p-footer__nav-title {
  font-size: 0.875rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
.p-footer__nav-title::before {
  content: "";
  display: block;
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50%;
  border: 0.125rem solid #ffffff;
}
.p-footer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.p-footer__nav-item::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.3125rem solid transparent;
  border-bottom: 0.3125rem solid transparent;
  border-left: 0.5rem solid #ffffff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.p-footer__nav-item:hover {
  opacity: 0.75;
}
.p-footer__note {
  font-size: 0.8125rem;
  line-height: 1.8;
  text-align: center;
  padding: 1.5rem 1.25rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.3);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
}
.p-footer__copyright {
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem 1.25rem;
  opacity: 0.85;
}

@media (min-width: 1024px) {
  .u-sp {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .u-pc {
    display: none !important;
  }
}
.u-nowrap {
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .u-pc-nowrap {
    white-space: nowrap;
  }
}
.js-fadein {
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition:
    opacity 2s ease,
    -webkit-transform 2s ease;
  transition:
    opacity 2s ease,
    -webkit-transform 2s ease;
  transition:
    opacity 2s ease,
    transform 2s ease;
  transition:
    opacity 2s ease,
    transform 2s ease,
    -webkit-transform 2s ease;
}
.js-fadein.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
