@charset "UTF-8";
html {
  font-size: clamp(14px, 0.875rem + 0.188vw, 16px);
}

body {
  font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
  color: #555;
}
body.is-fixed {
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
}

time {
  display: inline-block;
  width: 3rem;
  text-align: end;
}

p {
  color: #555;
  line-height: 1.6;
}

@keyframes fadeInSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate__fadeInSlideLeft {
  animation: fadeInSlideLeft 1s ease-in-out;
}

.l-main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100vw;
}

.l-section {
  padding: 60px 0;
  position: relative;
}

.l-section__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 32px;
}

.l-section__head--center {
  text-align: center;
}

.l-section__footer {
  display: grid;
  background: #aaa;
}

.section__lead-text {
  font-size: 16px;
  line-height: 1.6;
}

.section__contents {
  margin-top: 40px;
}

.l-inner {
  max-width: calc(1000px + 10vw);
  margin-inline: auto;
  padding-inline: 5vw;
}

.l-button {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-button {
    text-align: end;
  }
}

.l-grid-wrapper_center {
  display: grid;
  place-items: center;
}

.l-wrapper-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.l-grid {
  display: grid;
  grid-template-columns: auto;
  gap: 16px 32px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-subgrid {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
}

.l-grid__swiper {
  display: grid;
}

.l-grid-row {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  row-gap: 0.5rem;
}

.l-grid-colmun {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0.5rem;
}

.l-fv {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.l-fv__contents {
  position: relative;
  margin: 0 auto;
  height: 60vh;
  display: grid;
  align-items: end;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-fv__contents {
    justify-content: start;
  }
}

.l-fv__heading {
  position: absolute;
  top: 50%;
  left: 2vw;
  display: grid;
  grid-template-rows: auto auto;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 2vw;
  padding: clamp(10px, 1.878vw + 2.958px, 30px);
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .l-fv__heading {
    background-color: rgba(0, 0, 0, 0.252);
    margin-bottom: 0;
  }
}

.l-subpage {
  display: grid;
  background-color: #d3d3d3;
  grid-template-columns: 1fr 300px;
  grid-template-rows: auto auto;
  gap: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
  grid-template-areas: "main sidebar" "footer footer";
}

.l-subpage__main {
  height: 1000px;
  background-color: #a3c1da;
  grid-area: main;
}

.l-subpage__sidebar {
  height: 1000px;
  background-color: #b2e0b2;
  grid-area: sidebar;
}

.l-subpage__footer {
  max-width: 100%;
  height: 100px;
  background-color: #d3d3d3;
  grid-area: footer;
}

.l-subpage__section {
  padding-top: 200px;
  background-color: rgba(194, 200, 181, 0.8);
}

.l-footer {
  position: relative;
  padding-block: 20px;
  text-align: center;
  z-index: 3;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.l-footer__partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  color: inherit;
  font-size: 13px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease, gap 0.2s ease;
}
.l-footer__partner-link:hover {
  opacity: 1;
  gap: 10px;
}

.l-footer__partner-arrow {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}

.l-footer__copyright {
  display: block;
}

.c-button {
  display: inline-flex;
  position: relative;
  background-color: #464f43;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  transition: opacity 0.3s;
  padding: 1rem 5rem 1rem 4rem;
}
@media screen and (min-width: 768px) {
  .c-button {
    padding: 1rem 3rem 1rem 2rem;
  }
}
.c-button:hover {
  opacity: 0.8;
}
.c-button:hover .c-button__icon {
  right: 0.5rem;
}

.c-button__icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.c-button__arrow::after {
  display: block;
  content: "";
  background: url(../../../css/img/arrow-right.svg) center/cover no-repeat;
  width: 24px;
  height: 24px;
}

.button--bg {
  background-color: #fff;
}

.button--bg .button__text {
  color: #464f43;
}

.button--border {
  border: solid #fff 1px;
}

.button--border .button__text {
  color: #fff;
}

.button__icon {
  width: 24px;
  display: flex;
  align-items: center;
}

.button__icon-path {
  fill: #fff;
}
.button__icon-path--contact {
  fill: #464f43;
}

.button__text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

.c-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5vh;
}

.c-card {
  width: 100%;
  padding: 16px;
  background-color: #fafafa;
  overflow: hidden;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s linear;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.c-card.js-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.c-card__img {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.c-card__img img {
  object-fit: cover;
  transition: all 0.3s;
}

.c-card__link:hover .c-card__img img {
  transform: scale(1.2);
  opacity: 0.8;
}

.c-card__title {
  letter-spacing: 1.2px;
  font-size: clamp(16px, 0.751vw + 13.183px, 24px);
  font-weight: bold;
}

.c-card__text {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .c-card__text {
    font-size: 16px;
  }
}

.c-card__footer {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .c-card__footer {
    margin-right: 0;
  }
}

.c-card__user-name,
.c-card__pass {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
}

.c-card__footer-text {
  font-weight: bold;
  margin-block: auto;
}

.c-card__footer-btn {
  overflow: hidden;
  border-radius: 3px;
  background-color: #b5dfb3;
  padding: 10px;
  border-right: #000 solid 3px;
  border-bottom: #000 solid 3px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.c-card__footer-btn:hover {
  border-right: 3px solid #b5dfb3;
  border-bottom: 3px solid #b5dfb3;
  transform: translate(3px, 3px);
}

.c-card-swiper {
  padding: 16px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  background-color: #fafafa;
}

.c-card-swiper__img {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.c-card-swiper__img img {
  object-fit: cover;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
}

.c-service__card {
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.c-service__card.js-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.c-service__card-inner {
  display: flex;
  gap: 16px;
}

.c-service__card-img {
  width: 48px;
  height: auto;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.c-service__card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-service__card-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.c-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 6px;
}
.c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.c-img__top {
  object-fit: contain;
  aspect-ratio: 1/1;
  border-radius: 6px;
}

.c-text {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 1.2rem;
  }
}

.c-text--html {
  color: #e44d26;
}

.c-text--css {
  color: #264de4;
}

.c-text--js {
  color: #f0db4f;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.c-text--wordpress {
  color: #21759b;
}

.c-text--writing {
  color: #464f43;
}

.c-text__category {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-text__category {
    flex-direction: row;
    gap: 3vw;
  }
}

.c-text__category-name {
  font-size: clamp(1rem, 0.563vw + 0.868rem, 1.375rem);
  margin-bottom: clamp(0.5rem, 0.751vw + 0.324rem, 1rem);
}

.c-text__category-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
}

.c-text__category-item {
  display: flex;
  gap: 0.8rem;
  line-height: 1.3;
  align-items: center;
}

.c-title {
  font-size: 3.5rem;
  letter-spacing: 0.1em;
}

.c-title__sub {
  font-size: 1rem;
  align-items: end;
  margin-block: auto;
  font-weight: 700;
}

.price-table__container {
  margin-block: 3em;
}

.c-price-table {
  width: fit-content;
  border-collapse: collapse;
  margin: 2em auto;
}
.c-price-table th,
.c-price-table td {
  background: #f7f7f7;
  border: 1px solid #ddd;
  padding: 0.7em 1em;
  text-align: left;
}
.c-price-table th:first-child,
.c-price-table td:first-child {
  width: 30%;
  min-width: 140px;
}
.c-price-table th:last-child,
.c-price-table td:last-child {
  vertical-align: middle;
}
.c-price-table th {
  background: #464f43;
  color: #fff;
  font-weight: 700;
}

.c-price-table__note {
  margin-top: 1em;
  font-size: 0.95em;
  color: #555;
}

.c-drawer-icon {
  position: relative;
  justify-self: end;
  width: 40px;
  height: 30px;
  z-index: 51;
}
@media screen and (min-width: 768px) {
  .c-drawer-icon {
    display: none;
  }
}

.c-drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #fff;
  transition-property: transform, top;
  transition-duration: 0.3s;
}
.c-drawer-icon__bar:nth-of-type(1) {
  top: 0;
  transition-delay: 0s, 0.3s;
}
.c-drawer-icon__bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.c-drawer-icon__bar:nth-of-type(3) {
  top: 93%;
  transition-delay: 0s, 0.3s;
}

.is-checked .c-drawer-icon__bar:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
  transition-delay: 0.3s, 0s;
}
.is-checked .c-drawer-icon__bar:nth-of-type(2) {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
.is-checked .c-drawer-icon__bar:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(30deg);
  transition-delay: 0.3s, 0s;
}

.p-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  height: 80px;
  transition: all 0.3s linear;
  background-color: #688166;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 100px;
  }
}
.p-header.is-fixed {
  background-color: rgba(255, 255, 255, 0.3);
  color: #333;
}
.p-header.is-fixed .p-header__logo-text {
  color: #333;
}
.p-header.is-fixed .p-header__menu-link {
  font-weight: 700;
  color: #333;
}
.p-header.is-fixed .c-drawer-icon__bar {
  background-color: #333;
}

.p-header__container {
  display: grid;
  position: relative;
  grid-template-columns: auto 1fr;
  padding: 10px 20px;
  z-index: 10;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header__container {
    padding: 20px 60px;
    margin: 0 auto;
    max-width: 1200px;
  }
}

.p-header__menu {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__menu {
    display: grid;
    justify-self: end;
    grid-template-columns: repeat(4, 1fr);
    margin-left: 30px;
    column-gap: 1rem;
  }
}

.p-header__logo {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 0.5em;
}

.p-header__logo-img {
  width: clamp(40px, 1.878vw + 32.958px, 60px);
  height: clamp(40px, 1.878vw + 32.958px, 60px);
  border-radius: 50%;
  overflow: hidden;
}

.p-header__logo-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(20px, 0.939vw + 16.479px, 30px);
  letter-spacing: clamp(1px, 0.094vw + 0.648px, 2px);
}

.p-header__menu-item {
  justify-self: center;
  align-self: center;
  position: relative;
}
.p-header__menu-item::after, .p-header__menu-item::before {
  position: absolute;
  content: "";
  background-color: #fff;
  transition: all 0.3s ease;
}
.p-header__menu-item::before {
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
}
.p-header__menu-item::after {
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
}
.p-header__menu-item:hover::before {
  width: 100%;
}
.p-header__menu-item:hover::after {
  height: 100%;
}

.p-header__menu-link {
  display: block;
  position: relative;
  padding: clamp(0.625rem, 1.19vw + 0.054rem, 1.125rem) clamp(1rem, 1.19vw + 0.429rem, 1.5rem);
  letter-spacing: 0.05em;
}
.p-header__menu-link::after, .p-header__menu-link::before {
  position: absolute;
  content: "";
  background-color: #fff;
  transition: all 0.3s ease;
}
.p-header__menu-link::before {
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
}
.p-header__menu-link::after {
  bottom: 0;
  right: 0;
  width: 2px;
  height: 0;
}
.p-header__menu-link:hover::before {
  width: 100%;
}
.p-header__menu-link:hover::after {
  height: 100%;
}

.p-header__nav-list {
  display: grid;
  gap: 2rem;
  color: #fff;
  justify-content: center;
  padding-bottom: 32px;
}

.p-header__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-header__fz {
  font-size: clamp(1rem, 1.19vw + 0.429rem, 1.5rem);
}

.current::before {
  position: absolute;
  content: "";
  background-color: #fff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
}

.p-drawer__contents {
  background-color: #464f43;
  transform: translateY(-150%);
  transition: transform 0.3s linear;
  padding-top: 20vh;
  border-bottom: 2px solid #fff;
}
.p-drawer__contents.is-checked {
  transform: translateY(-25%);
}

.p-drawer__footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 2px solid #fff;
}

.p-drawer__footer-left,
.p-drawer__footer-right {
  flex: 1;
}
.p-drawer__footer-left a,
.p-drawer__footer-right a {
  display: grid;
  grid-template-columns: auto auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  column-gap: 0.5rem;
  width: 100%;
  text-align: start;
}
.p-drawer__footer-left p,
.p-drawer__footer-right p {
  color: #fff;
}
.p-drawer__footer-left svg,
.p-drawer__footer-right svg {
  justify-self: end;
}

.p-drawer__footer-left {
  border-right: 2px solid #fff;
}

.p-fv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-fv__heading-main {
  font-size: clamp(2rem, 4.507vw + 0.944rem, 5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}
.p-fv__heading-main span {
  display: inline-block;
}
.p-fv__heading-main.reverse {
  color: #fff;
}

.p-fv__heading-sub {
  font-size: clamp(1rem, 0.657vw + 0.596rem, 1.1875rem);
  line-height: 2;
  color: #fff;
}

.p-service {
  padding-block: 120px;
}

.p-service__cards {
  margin-top: 100px;
  gap: 48px;
}

.c-service__card-link {
  margin-top: 12px;
}
.c-service__card-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2e4e2d;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: #2e4e2d 1px solid;
  border-radius: 4px;
  padding: 8px 16px;
}
.c-service__card-link a:hover {
  background-color: #2e4e2d;
  color: #eef6f5;
}
.c-service__card-link a::after {
  display: block;
  content: "→";
  transition: transform 0.2s ease;
}
.c-service__card-link a:hover::after {
  transform: translateX(6px);
}

.p-work-flow {
  padding: 60px 0;
  z-index: 10;
}

.p-work-flow__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-work-flow__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-work-flow__item {
  border: solid 2px #6f6f6f;
  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  gap: 10px 8px;
  align-items: center;
}

.p-work-flow__icon {
  grid-row: span 2/span 2;
}

.p-work-flow__title {
  font-size: 18px;
  font-weight: 700;
}

.p-work-flow__text {
  grid-column-start: 2;
}

.p-works {
  z-index: 20;
  background-color: #fffff2;
}
.p-works__img {
  height: 100%;
}
.p-works-container {
  display: flex;
  gap: 90px;
  margin-top: 48px;
  align-items: flex-start;
}
@media (max-width: 999px) {
  .p-works-container {
    flex-direction: column;
    gap: 48px;
  }
}
.p-works-container__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 695px;
  flex-shrink: 0;
}
@media (max-width: 999px) {
  .p-works-container__left {
    width: 100%;
  }
}
.p-works-container__right {
  flex-shrink: 0;
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 999px) {
  .p-works-container__right {
    width: 100%;
  }
}
.p-works-detail {
  z-index: 30;
  background-color: #fff;
}
.p-works__detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.p-works__detail-inner {
  background: #fff;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  max-width: 335px;
  overflow: hidden;
}
.p-works__detail-wrapper {
  box-sizing: border-box;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .p-works__detail-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
  }
}
.p-works__detail-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 415px;
  width: 100%;
  align-items: flex-start;
}
.p-works__detail-image {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  box-shadow: 4px 4px 10px rgba(170, 156, 156, 0.8);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.p-works__detail-image img {
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.p-works__detail-contents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.p-works__detail-title {
  box-sizing: border-box;
  padding: 16px 16px 0;
}
.p-works__detail-title h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: normal;
  color: #688166;
}
.p-works__detail-content {
  height: 150px;
  padding: 0 16px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: normal;
}
.p-works__detail-content p {
  margin-bottom: 0;
}

.p-slide-screenshot {
  width: 100%;
  height: 1000px;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: scroll;
  top: 120px;
  border-radius: 4px;
}
@media (max-width: 999px) {
  .p-slide-screenshot {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: static;
  }
}
@media (max-width: 768px) {
  .p-slide-screenshot {
    height: 600px;
  }
}
.p-slide-screenshot__item {
  display: none;
}
.p-slide-screenshot__item.is-active {
  display: block;
}
.p-slide-screenshot img {
  width: 100%;
  height: auto;
}

.p-slide-info__item {
  display: none;
}
.p-slide-info__item.is-active {
  display: block;
}
.p-slide-info__inner {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .p-slide-info__inner {
    flex-direction: column;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .p-slide-info__inner {
    gap: 32px;
  }
}
.p-slide-info__left {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 388px;
  flex-shrink: 0;
}
@media (max-width: 999px) {
  .p-slide-info__left {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p-slide-info__left {
    gap: 32px;
  }
}
.p-slide-info__section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
@media (max-width: 768px) {
  .p-slide-info__section {
    gap: 16px;
  }
}
.p-slide-info__heading {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: normal;
  color: #000;
  padding: 10px 29px;
  background: linear-gradient(to top, #c2c8b5 0%, #c2c8b5 50%, transparent 50%, transparent 100%);
  display: inline-block;
  width: fit-content;
}
@media (max-width: 768px) {
  .p-slide-info__heading {
    font-size: 18px;
    padding: 8px 20px;
  }
}
.p-slide-info__text {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 19.5px;
  line-height: 1.6;
  color: #000;
}
.p-slide-info__text ul {
  list-style: disc;
  margin-left: 29.25px;
}
.p-slide-info__text ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-slide-info__text {
    font-size: 16px;
  }
}
.p-slide-info__button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background-color: #464f43;
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-slide-info__button:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .p-slide-info__button {
    padding: 12px 24px;
  }
}
.p-slide-info__button-text {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 19.5px;
  line-height: normal;
  color: #fff;
}
@media (max-width: 768px) {
  .p-slide-info__button-text {
    font-size: 16px;
  }
}
.p-slide-info__button-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.p-slide-info__right {
  flex-shrink: 0;
}
.p-slide-info__screenshot {
  width: 500px;
  height: 1000px;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: scroll;
}
@media (max-width: 999px) {
  .p-slide-info__screenshot {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .p-slide-info__screenshot {
    height: 600px;
  }
}
.p-slide-info__screenshot img {
  width: 100%;
  height: auto;
}
.p-slide-info__img {
  aspect-ratio: 16/9;
}
.p-slide-info__content {
  line-height: 1.6;
}

.p-thumbnail-slider-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  position: relative;
  width: 100%;
}

.p-swiperThumbnail {
  display: block;
  flex: 1;
  overflow: hidden;
  max-width: calc(100% - 120px);
}
.p-swiperThumbnail .swiper-wrapper {
  display: flex;
  gap: 10px;
}
.p-swiperThumbnail .swiper-slide {
  width: 130px !important;
  height: 100px;
  flex-shrink: 0;
}
.p-swiperThumbnail .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.p-thumbnail-swiper-button-prev,
.p-thumbnail-swiper-button-next {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}
.p-thumbnail-swiper-button-prev:hover,
.p-thumbnail-swiper-button-next:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.p-thumbnail-swiper-button-prev::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  border-radius: 50%;
}
.p-thumbnail-swiper-button-prev::after {
  position: absolute;
  content: "";
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 15px;
  height: 15px;
  border-top: 3px solid #6f6f6f;
  border-right: 3px solid #6f6f6f;
}

.p-thumbnail-swiper-button-next::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6f6f6f;
  border-radius: 50%;
}
.p-thumbnail-swiper-button-next::after {
  position: absolute;
  content: "";
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.p-swiper-slide-thumb {
  opacity: 0.8;
}

.swiper-slide-thumb-active {
  opacity: 1;
  border: solid 3px #58b467;
}

.p-swiper__buttons {
  display: flex;
  margin-top: 30px;
  gap: 50px;
  justify-content: end;
}
@media screen and (min-width: 1200px) {
  .p-swiper__buttons {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    padding-top: 62.5%;
  }
}

.swiper-pagination {
  position: static;
  bottom: 50px;
}
@media screen and (min-width: 1200px) {
  .swiper-pagination {
    display: none;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 50px;
}

.swiper-pagination-bullet {
  border-radius: 0;
  width: 10%;
  height: 3px;
  background-color: #b5deb2;
}

.swiper-pagination-progressbar {
  margin-top: 8px;
  background-color: #464f43;
  opacity: 0.7;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #58b467;
  opacity: 1;
}

.p-about {
  background-color: #fffff2;
}

.p-about__img {
  max-width: 100%;
  overflow: hidden;
}

.p-about__background {
  position: relative;
  overflow: hidden;
}
.p-about__background::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
}

.p-about__contents {
  background-color: #fff;
  padding: 1rem;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, auto);
  gap: 1rem;
  grid-auto-flow: row;
  grid-template-areas: "p-about-skill  p-about-img" "p-about-web    p-about-web" "p-about-writing p-about-writing" "p-about-time   p-about-time" "p-about-text   p-about-text";
}
@media screen and (min-width: 768px) {
  .p-about__contents {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "p-about-img    p-about-skill   p-about-skill" "p-about-img    p-about-web     p-about-writing" "p-about-time   p-about-text    p-about-text";
  }
}

.p-about__top {
  margin-top: 10vh;
  margin-bottom: 5vh;
}
@media screen and (min-width: 768px) {
  .p-about__top {
    margin-top: 30vh;
  }
}

.p-about__top-text {
  display: flex;
  gap: 0.5rem;
}

.p-about__card {
  width: 100%;
  padding: 16px;
  background-color: #fafafa;
  overflow: hidden;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s linear;
}
@media screen and (min-width: 768px) {
  .p-about__card {
    padding: 1rem 1.5rem;
  }
}

.p-about__container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 240px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about__container {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
  }
}

.p-about__container-title {
  font-size: clamp(19px, 0.469vw + 17.239px, 24px);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.p-about__container-sp {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas: "p-about__text-kick" "p-about__img-kick1" "p-about__img-kick2" "p-about__img-kick3";
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about__container-sp {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto 240px;
    grid-template-areas: "p-about__text-kick p-about__text-kick p-about__text-kick" "p-about__img-kick1 p-about__img-kick2 p-about__img-kick3";
  }
}

.p-about__text-kick {
  grid-area: p-about__text-kick;
  margin-bottom: 1rem;
}

.p-about__img-kick1 {
  grid-area: p-about__img-kick1;
}

.p-about__img-kick2 {
  grid-area: p-about__img-kick2;
}

.p-about__img-kick3 {
  grid-area: p-about__img-kick3;
}

.p-about__img {
  display: flex;
  justify-self: center;
  align-items: center;
  max-width: 240px;
  max-height: 240px;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .p-about__img {
    justify-self: end;
    align-self: center;
  }
}

@media screen and (min-width: 768px) {
  .p-about__reverse {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.p-about-img {
  grid-area: p-about-img;
  max-width: 120px;
}
@media screen and (min-width: 768px) {
  .p-about-img {
    max-width: 500px;
  }
}

.p-about-skill {
  grid-area: p-about-skill;
  display: grid;
  align-items: center;
}

.p-about-text {
  grid-area: p-about-text;
}

.p-about-time {
  grid-area: p-about-time;
}

.p-about-web {
  grid-area: p-about-web;
}

.p-about-writing {
  grid-area: p-about-writing;
}

.p-about-title {
  font-size: 1.8rem;
  padding-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .p-about-img,
  .p-about-skill,
  .p-about-text {
    background-color: #fff;
    padding: 1rem;
  }
}
.p-about-text__category {
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 3vh;
}
@media screen and (min-width: 768px) {
  .p-about-text__category {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    column-gap: 1vw;
  }
}

[class*=img-kick] {
  justify-self: center;
}

.p-contact {
  padding-block: 100px;
}

.p-contact__wrapper {
  margin-top: 6vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-contact__head {
  display: flex;
  gap: 20px;
  margin-bottom: 5rem;
}

.p-contact__item {
  height: auto;
}

.p-contact__item-name {
  font-weight: 700;
}

.p-contact__req {
  color: #e60000;
  padding: 10px 20px;
  background-color: #ffe9cd;
  border-radius: 6px;
}

.p-contact__text,
.p-contact__textarea {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  opacity: 0.8;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}
.p-contact__text::placeholder,
.p-contact__textarea::placeholder {
  color: #808080;
  opacity: 0.8;
}
.p-contact__text:hover,
.p-contact__textarea:hover {
  outline: 1px solid #6f6f6f;
}

.p-contact__text {
  max-width: 300px;
}

.p-contact__textarea {
  max-width: 670px;
  height: 12rem;
  resize: vertical;
  word-wrap: break-word;
}

.p-contact__radio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-contact__radio-wrapper {
  max-width: 480px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.p-contact__button {
  display: inline-block;
}

.wpcf7-form {
  display: grid;
  gap: 20px;
}

.wpcf7-form-control {
  padding: 10px;
  border-radius: 5px;
}

.wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wpcf7-text {
  background-color: #fff;
  width: 100%;
  max-width: 300px;
  opacity: 0.8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}
.wpcf7-text::placeholder {
  color: #808080;
}

.wpcf7-textarea {
  background-color: #fff;
  width: 100%;
  opacity: 0.8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.wpcf7-submit {
  display: inline-flex;
  position: relative;
  background-color: #464f43;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  transition: opacity 0.3s;
  padding: 1rem 5rem 1rem 4rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .wpcf7-submit {
    padding: 1rem 2rem;
  }
}
.wpcf7-submit:hover {
  opacity: 0.8;
}
.wpcf7-submit:hover .c-button__icon {
  right: 0.5rem;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
}

.smf-form .smf-text-control__control {
  width: 100% !important;
}

.smf-progress-tracker {
  margin-bottom: 8rem !important;
}

.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
  background-color: #5d914c;
}

.smf-form--business .smf-item__col--label {
  background-color: #eef6f5;
}

.smf-button-control__control {
  background-image: none !important;
  padding: 20px 100px !important;
  background-color: #5d914c !important;
  color: #fff !important;
  border: none !important;
  transition: opacity 0.3s ease !important;
}
.smf-button-control__control:hover {
  opacity: 0.8;
}

.smf-radio-button-control {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.smf-radio-button-control:hover {
  background-color: #e2f0da;
  border-color: #bbb;
}

.smf-radio-button-control__control {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.smf-radio-button-control__label {
  font-size: 15px;
  line-height: 1.4;
}

.smf-form .smf-radio-button-control__control {
  margin-top: 2px;
}

.smf-checkboxes-control__control {
  display: flex;
  justify-content: center;
}

.smf-checkbox-control {
  padding: 16px 24px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-radius: 3px;
}
.smf-checkbox-control:hover {
  background-color: #e2f0da;
  border-color: #bbb;
}

.smf-checkbox-control__control {
  margin-top: 0 !important;
}

.smf-checkbox-control__label a {
  color: blue;
  border-bottom: blue 1px solid;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}
.smf-checkbox-control__label a:hover {
  color: red;
  border-bottom-color: transparent;
}

.p-voice__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-voice__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background-color: #fff;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  align-items: center;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.p-voice__item.js-fade-in {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .p-voice__item {
    flex-direction: row;
    align-items: flex-start;
    padding: 40px;
    gap: 40px;
  }
}

.p-voice__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.p-voice__img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-voice__img {
    margin: 0;
    width: 150px;
    height: 150px;
  }
}
.p-voice__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-voice__name {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.05em;
}

.p-voice__text-box {
  flex-grow: 1;
  width: 100%;
}

.p-voice__text {
  line-height: 1.8;
  font-size: 16px;
  text-align: justify;
}

.p-privacy {
  padding-block: 120px;
}
.p-privacy p,
.p-privacy li {
  font-size: 16px;
  line-height: 1.8;
}
.p-privacy li {
  list-style: circle;
  margin-left: 28px;
}
.p-privacy p + p {
  margin-top: 12px;
}
.p-privacy p + ul {
  margin-top: 24px;
}
.p-privacy a {
  color: blue;
  text-decoration: underline;
}

.p-privacy-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 20px;
}

.p-privacy__contents {
  display: inline-flex;
  flex-direction: column;
}

.p-privacy__title {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-privacy__title::after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 4px;
  background-color: #688165;
}

.p-privacy__footer-data {
  margin-top: 48px;
  font-size: 20px;
}

.p-privacy__footer-name {
  font-size: 20px;
}

.wp-block-heading {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 32px;
  margin-top: 24px;
}
.wp-block-heading::after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #b5deb3;
}

.p-single {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-single {
    padding: 100px 0;
  }
}
.p-single__container {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-single__container {
    flex-direction: row;
    gap: 60px;
  }
}
.p-single__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}
.p-single__info-section {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-single__info-heading h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: normal;
  color: #688166;
}
.p-single__info-text {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}
.p-single__info-text p {
  margin: 0;
}
.p-single__info-list {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}
.p-single__info-list ul {
  list-style: disc;
  margin-left: 20px;
}
.p-single__info-list ul li {
  margin-bottom: 8px;
}
.p-single__info-list p {
  margin: 0 0 8px 0;
}
.p-single__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.p-single__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #464f43;
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-single__button:hover {
  opacity: 0.8;
}
.p-single__button-text {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: normal;
  color: #fff;
}
.p-single__right {
  flex: 1;
}
.p-single__image {
  width: 100%;
}
.p-single__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-single-blog {
  padding: 60px 0 0;
}
@media screen and (min-width: 768px) {
  .p-single-blog {
    padding: 80px 0 0;
  }
}

.p-single-blog__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5vw;
}

.p-single-blog__breadcrumb {
  font-size: 13px;
  color: #6f6f6f;
  margin-bottom: 24px;
}
.p-single-blog__breadcrumb a {
  color: #688166;
  text-decoration: none;
}
.p-single-blog__breadcrumb a:hover {
  text-decoration: underline;
}

.p-single-blog__header {
  margin-bottom: 32px;
}

.p-single-blog__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.p-single-blog__category {
  display: inline-block;
  background-color: #688166;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
}

.p-single-blog__date {
  font-size: 14px;
  color: #6f6f6f;
}

.p-single-blog__title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-single-blog__title {
    font-size: 36px;
  }
}

.p-single-blog__thumbnail {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}
.p-single-blog__thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-single-blog__content {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}
.p-single-blog__content h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 60px 0 24px;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-single-blog__content h2 {
    font-size: 28px;
  }
}
.p-single-blog__content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 40px 0 20px;
  padding-left: 12px;
  border-left: 4px solid #688166;
}
@media screen and (min-width: 768px) {
  .p-single-blog__content h3 {
    font-size: 24px;
  }
}
.p-single-blog__content h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 32px 0 16px;
}
.p-single-blog__content p {
  margin-bottom: 24px;
}
.p-single-blog__content ul {
  list-style-type: disc;
  margin: 0 0 24px 24px;
}
.p-single-blog__content ul li {
  margin-bottom: 8px;
}
.p-single-blog__content ol {
  list-style-type: decimal;
  margin: 0 0 24px 24px;
}
.p-single-blog__content ol li {
  margin-bottom: 8px;
}
.p-single-blog__content img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  border-radius: 4px;
}
.p-single-blog__content a {
  color: #688166;
  text-decoration: underline;
}
.p-single-blog__content a:hover {
  opacity: 0.8;
}
.p-single-blog__content blockquote {
  margin: 32px 0;
  padding: 16px 24px;
  background-color: #fffff2;
  border-left: 4px solid #6f6f6f;
  color: #6f6f6f;
  font-style: italic;
}
.p-single-blog__content blockquote p {
  margin-bottom: 0;
}
.p-single-blog__content table {
  width: 100%;
  margin-bottom: 32px;
  border-collapse: collapse;
}
.p-single-blog__content table th,
.p-single-blog__content table td {
  border: 1px solid #ddd;
  padding: 12px;
}
.p-single-blog__content table th {
  background-color: #eef6f5;
  font-weight: bold;
  text-align: left;
}
.p-single-blog__content figure {
  margin: 32px 0;
}
.p-single-blog__content figure figcaption {
  font-size: 13px;
  color: #6f6f6f;
  text-align: center;
  margin-top: 8px;
}

.p-single-blog__related {
  margin-top: 80px;
  padding-top: 60px;
  background-color: #fffff2;
  padding-bottom: 80px;
}

.p-single-blog__related-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.p-blog {
  max-width: calc(1000px + 10vw);
  margin: 0 auto;
  padding: 80px 5vw;
}
@media screen and (min-width: 768px) {
  .p-blog {
    padding: 100px 5vw;
  }
}

.p-blog__categories {
  margin-bottom: 60px;
}

.p-blog__categories-title,
.p-blog__posts-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
  text-align: center;
  position: relative;
}
.p-blog__categories-title::after,
.p-blog__posts-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #688166;
  margin: 12px auto 0;
}

.p-blog__categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.p-blog__categories-item a {
  display: inline-block;
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  color: #555;
  transition: all 0.3s;
}
.p-blog__categories-item a:hover {
  background-color: #688166;
  color: #fff;
  border-color: #688166;
}

.p-blog__categories-item.is-active a {
  background-color: #688166;
  color: #fff;
  border-color: #688166;
}

.p-blog__posts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-blog__posts-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media screen and (min-width: 1000px) {
  .p-blog__posts-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-blog__posts-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-blog__posts-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.p-blog__posts-link:hover .p-blog__posts-img img {
  transform: scale(1.05);
}

.p-blog__posts-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #eee;
}
.p-blog__posts-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.p-blog__posts-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.p-blog__posts-date {
  font-size: 13px;
  color: #6f6f6f;
  margin-bottom: 8px;
  display: block;
}

.p-blog__posts-title-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #333;
}

.p-blog__posts-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-top: auto;
}

.p-footer__contact::before {
  display: block;
  content: "";
  background: url(../../../img/ico_mail.svg) center/cover no-repeat;
  width: 20px;
  height: 20px;
}

.p-footer__item-top {
  display: grid;
  padding: 30px 0 12px;
  place-items: center;
}

.p-footer__item-bottom {
  display: grid;
  padding: 12px 0 30px;
  place-items: center;
}

.p-error-404 {
  display: grid;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 170px;
}

.p-error-404__title {
  font-size: clamp(2rem, 2.381vw + 0.857rem, 3rem);
  margin-bottom: 16px;
}

.p-error-404__text {
  line-height: 1.6;
}

.p-error-404__button {
  text-align: right;
}

.p-partner {
  color: #4f4f4f;
  font-family: "Noto Sans JP", sans-serif;
  overflow: clip;
}

.p-partner-hero {
  position: relative;
  background-color: #f8fafc;
  padding: 3rem 1rem 1rem;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-partner-hero {
    padding: 1.75rem 1rem 1rem;
    padding-left: 1.625rem;
  }
}

.p-partner-hero__inner {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

.p-partner-hero__wrapper {
  display: grid;
  margin: 0 auto;
  max-width: 28.125rem;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__wrapper {
    max-width: 72rem;
  }
}
@media screen and (min-width: 1000px) {
  .p-partner-hero__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-partner-hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.p-partner-hero__deco img {
  display: block;
  width: 100%;
  height: auto;
}

.p-partner-hero__deco-1 {
  max-width: 23.75rem;
  width: 100%;
  height: auto;
  top: 18.75rem;
  left: calc(50% + 6.25rem);
}
@media screen and (min-width: 768px) {
  .p-partner-hero__deco-1 {
    top: 14rem;
    left: auto;
    right: calc(50% - 36rem);
    max-width: 28.125rem;
  }
}

.p-partner-hero__deco-2 {
  max-width: 11.25rem;
  width: 100%;
  height: auto;
  top: -3rem;
  left: calc(50% - 18.75rem);
}
@media screen and (min-width: 768px) {
  .p-partner-hero__deco-2 {
    max-width: 23.75rem;
    top: 18.75rem;
    left: calc(50% - 48.75rem);
  }
}

.p-partner-hero__deco-3 {
  max-width: 15.625rem;
  width: 100%;
  height: auto;
  top: -3rem;
  left: -4rem;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__deco-3 {
    max-width: 26.625rem;
    top: 8rem;
    left: -1rem;
  }
}

.p-partner-hero__deco-4 {
  max-width: 15.625rem;
  width: 100%;
  height: auto;
  top: -3.75rem;
  left: calc(50% + 0.625rem);
}
@media screen and (min-width: 768px) {
  .p-partner-hero__deco-4 {
    left: 14.5rem;
    top: -13.25rem;
    right: auto;
    max-width: 21.875rem;
  }
}

.p-partner-hero__deco-5 {
  max-width: 5rem;
  width: 100%;
  height: auto;
  top: 23.75rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__deco-5 {
    right: 3rem;
    left: auto;
    top: 30.125rem;
    max-width: 8.125rem;
  }
}

.p-partner-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__content {
    gap: 1.5rem;
    flex-shrink: 0;
    width: fit-content;
  }
}

.p-partner-hero__badge {
  align-self: flex-start;
  background-color: rgba(46, 78, 45, 0.1);
  color: #2e4e2d;
  font-weight: 700;
  font-size: 0.438125rem;
  line-height: 0.625rem;
  padding: 0.1875rem 0.5rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__badge {
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.375rem 1rem;
  }
}

.p-partner-hero__title {
  position: relative;
  color: #2e4e2d;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__title {
    white-space: nowrap;
  }
}

.p-partner-hero__title-large {
  font-size: 1.75rem;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__title-large {
    font-size: 3rem;
    letter-spacing: 1.92px;
  }
}

.p-partner-hero__title-small {
  font-size: 1.375rem;
  letter-spacing: 0.88px;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__title-small {
    font-size: 2.5rem;
    letter-spacing: 1.6px;
  }
}

.p-partner-hero__title-marker {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: #df5b38;
}
.p-partner-hero__title-marker::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.25rem;
  height: 0.875rem;
  background-color: #f8f540;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__title-marker::before {
    height: 1.0625rem;
    bottom: 0.375rem;
  }
}

.p-partner-hero__lead {
  color: #2e4e2d;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__lead {
    font-size: 1.125rem;
  }
}

.p-partner-hero__photos {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 13.75rem;
  margin: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__photos {
    flex-shrink: 0;
    width: 33.75rem;
    height: 20rem;
    margin: 0;
  }
}

.p-partner-hero__photo {
  position: absolute;
}
.p-partner-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__photo {
    position: relative;
  }
}

.p-partner-hero__photo--kick {
  top: 2.25rem;
  left: -1.5rem;
  width: 100%;
  max-width: 11.25rem;
  height: auto;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__photo--kick {
    left: calc(50% - 3.75rem);
  }
}
@media screen and (min-width: 1000px) {
  .p-partner-hero__photo--kick {
    top: 17.625rem;
    left: auto;
    right: 6.5rem;
    max-width: 16rem;
  }
}

.p-partner-hero__photo--portrait {
  top: -2.0625rem;
  left: calc(50% - 0.6875rem);
  width: 100%;
  max-width: 11.625rem;
  height: auto;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__photo--portrait {
    top: -15.625rem;
    left: calc(50% + 10rem);
    max-width: 22rem;
  }
}
@media screen and (min-width: 1000px) {
  .p-partner-hero__photo--portrait {
    top: -15.625rem;
    left: calc(50% - 15rem);
  }
}
@media screen and (min-width: 1200px) {
  .p-partner-hero__photo--portrait {
    top: -13.5rem;
    right: auto;
    left: 13.5rem;
    max-width: 22rem;
  }
}

.p-partner-hero__cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__cta {
    align-items: center;
  }
}
@media screen and (min-width: 1000px) {
  .p-partner-hero__cta {
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.25rem;
  }
}

.p-partner-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  max-width: 31.25rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #df5b38;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 5px 7.5px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.p-partner-hero__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
@media screen and (min-width: 768px) {
  .p-partner-hero__btn {
    width: auto;
    height: 3.75rem;
    padding: 0.625rem 1.5rem;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
}

.p-partner-hero__btn-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__btn-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-partner-hero__note {
  color: #4f4f4f;
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-partner-hero__note {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25rem;
  }
}

.p-partner-hero--bottom {
  position: relative;
  background-color: #dfe8f1;
}
.p-partner-hero--bottom img {
  display: block;
  width: 100%;
  height: auto;
}
.p-partner-hero--bottom .p-partner-hero__bottom-shadow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transform: translateY(0);
  will-change: transform;
}
.p-partner-hero--bottom .p-partner-hero__bottom-front {
  position: relative;
  z-index: 1;
}

.p-partner-worry {
  background-color: #dfe8f1;
  padding: 2rem 1rem 3rem;
}
@media screen and (min-width: 768px) {
  .p-partner-worry {
    padding: 3rem 1.5rem;
  }
}

.p-partner-worry__inner {
  max-width: 42.125rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-partner-worry__inner {
    gap: 1rem;
  }
}

.p-partner-worry__title {
  margin: 0;
  color: #2e4e2d;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.5rem;
  letter-spacing: 1.6px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-partner-worry__title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    white-space: nowrap;
  }
}

.p-partner-worry__title-emphasis {
  position: relative;
  display: inline-block;
  color: #df5b38;
  font-size: 1.5rem;
}

.p-partner-worry__title-dots {
  position: absolute;
  top: -0.4375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.5625rem;
  height: 0.25rem;
}

.p-partner-worry__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-partner-worry__body {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-left: -9.5625rem;
  }
}

.p-partner-worry__illust {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}

.p-partner-worry__bubble {
  position: relative;
  width: 9.375rem;
  height: 5.3125rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-partner-worry__bubble {
    margin-top: -1.875rem;
  }
}

.p-partner-worry__bubble-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.p-partner-worry__bubble-text {
  position: relative;
  margin: 0;
  padding-top: 1.125rem;
  padding-left: 0.3125rem;
  width: 8.75rem;
  color: #2e4e2d;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-partner-worry__man {
  width: 8.875rem;
  height: auto;
  flex-shrink: 0;
}

.p-partner-worry__list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-partner-worry__list {
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, 12.5rem);
    gap: 0.5rem 1rem;
  }
}

.p-partner-worry__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0.75rem 1.25rem 1rem;
  background-color: #f8fafc;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-partner-worry__item {
    padding: 0.75rem 0.75rem 0.75rem 1rem;
    gap: 1.125rem;
  }
}

.p-partner-worry__check {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.p-partner-worry__text {
  margin: 0;
  color: #2e4e2d;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-partner-worry__text strong {
  font-weight: 700;
}

.p-partner-worry__message {
  position: relative;
  width: 100%;
  background-color: #fff;
  border: 1px solid #df5b38;
  border-radius: 0.5rem;
  padding: 2.25rem 1.25rem 1rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-partner-worry__message {
    padding: 1.75rem 1.5rem 1rem;
    margin-top: 2.5rem;
  }
}

.p-partner-worry__message-badge {
  position: absolute;
  top: -1.125rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #df5b38;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 0.25rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-partner-worry__message-badge {
    top: -1.5rem;
  }
}

.p-partner-worry__message-icon {
  width: 1rem;
  height: 1.3125rem;
  flex-shrink: 0;
}

.p-partner-worry__message-text {
  margin: 0;
  color: #4f4f4f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
}
.p-partner-worry__message-text strong {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #4f4f4f;
}

.p-partner-resp {
  background-color: #fff;
  padding: 5rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-partner-resp {
    padding: 5rem 1.5rem;
  }
}

.p-partner-resp__inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-partner-resp__inner {
    gap: 1rem;
  }
}

.p-partner-resp__heading {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-partner-resp__heading-en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eaf0ea;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-partner-resp__heading-en {
    font-size: 4rem;
  }
}

.p-partner-resp__heading-ja {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #2e4e2d;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 2.25rem;
  letter-spacing: 1.2px;
}

.p-partner-resp__lead {
  margin: 0;
  color: #4f4f4f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  text-align: center;
}
.p-partner-resp__lead strong {
  color: #df5b38;
  font-weight: 700;
}

.p-partner-resp__cards {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-partner-resp__cards {
    flex-direction: row;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.p-partner-resp__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125rem;
  padding: 2rem;
  background-color: #f8fafc;
  border: 1px solid #f8fafc;
  border-radius: 1rem;
  text-align: center;
}

.p-partner-resp__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(46, 78, 45, 0.1);
  border-radius: 0.75rem;
  flex-shrink: 0;
}
.p-partner-resp__card-icon img {
  width: 1.875rem;
  height: 1.875rem;
  transform: scaleY(-1);
}

.p-partner-resp__card-title {
  margin: 0;
  color: #2e4e2d;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.p-partner-resp__card-text {
  margin: 0;
  color: #4f4f4f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.p-partner-resp__note {
  margin: 0;
  color: #4f4f4f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-align: center;
}

.p-partner-promise {
  position: relative;
  background-color: #7d987c;
  padding: 4rem 1rem 4rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-partner-promise {
    padding: 6rem 1.5rem;
  }
}

.p-partner-promise__deco {
  position: absolute;
  bottom: -3.125rem;
  right: -3.125rem;
  width: 25.9375rem;
  height: auto;
  pointer-events: none;
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .p-partner-promise__deco {
    bottom: -6.25rem;
    right: -6.25rem;
    width: 46.875rem;
  }
}

.p-partner-promise__inner {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-partner-promise__inner {
    gap: 4rem;
    padding-inline: 1.5rem;
  }
}

.p-partner-promise__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.p-partner-promise__heading-en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 2.5rem));
  color: rgba(234, 240, 234, 0.2);
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-partner-promise__heading-en {
    top: 82%;
  }
}

.p-partner-promise__heading-ja {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 2.25rem;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 768px) {
  .p-partner-promise__heading-ja {
    flex-direction: row;
    align-items: flex-end;
  }
}

.p-partner-promise__heading-line {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.25rem;
}

.p-partner-promise__heading-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #fff;
  color: #df5b38;
  font-family: "Montserrat", sans-serif;
  font-size: 2.9375rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 9999px;
  letter-spacing: 0;
}

.p-partner-promise__lead {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  text-align: center;
}

.p-partner-promise__cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-partner-promise__cards {
    gap: 3rem;
    max-width: 58.5rem;
    margin: 0 auto;
  }
}

.p-partner-promise__card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-partner-promise__card {
    flex-direction: row;
    align-items: center;
    padding: 2.5rem 5.5rem;
    gap: 2.5rem;
    min-height: 18.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-partner-promise__card--reverse {
    flex-direction: row-reverse;
  }
}

.p-partner-promise__badge {
  position: absolute;
  top: -0.5rem;
  width: 4.0625rem;
  height: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .p-partner-promise__badge {
    width: 6rem;
    height: 6rem;
    top: -2.125rem;
  }
}

.p-partner-promise__badge--left {
  left: calc(50% - 6.375rem);
}
@media screen and (min-width: 768px) {
  .p-partner-promise__badge--left {
    left: -3rem;
  }
}

.p-partner-promise__badge--right {
  right: calc(50% - 6.375rem);
}
@media screen and (min-width: 768px) {
  .p-partner-promise__badge--right {
    right: -3rem;
  }
}

.p-partner-promise__icon {
  flex-shrink: 0;
  width: 8.125rem;
  height: auto;
  background-color: #f8fafc;
  border: 1.625px solid rgba(46, 78, 45, 0.1);
  border-radius: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.1875rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-partner-promise__icon {
    width: 10rem;
    height: 10rem;
  }
}

.p-partner-promise__illust {
  object-fit: contain;
}
.p-partner-promise__illust-1 {
  width: 6.5625rem;
  height: 3.4375rem;
}

.p-partner-promise__illust-2 {
  width: 3rem;
  height: 3.4375rem;
}

.p-partner-promise__illust-3 {
  width: 6.375rem;
  height: 3.4375rem;
}

.p-partner-promise__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-partner-promise__title {
  margin: 0;
  color: #2e4e2d;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.p-partner-promise__text {
  margin: 1rem 0 0;
  color: #4f4f4f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: justify;
}

.p-partner-promise__checklist {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-partner-promise__check-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #4f4f4f;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-partner-promise__check-item {
    gap: 0.75rem;
  }
}

.p-partner-promise__check-icon {
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
}

.p-partner-promise__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  color: #df5b38;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-decoration: underline;
  align-self: flex-start;
}
.p-partner-promise__link:hover {
  opacity: 0.85;
}
@media screen and (min-width: 768px) {
  .p-partner-promise__link {
    margin-top: 0.25rem;
  }
}

.p-partner-promise__link-icon {
  width: 1rem;
  height: 1rem;
  transform: scaleY(-1);
}

.p-partner-cta {
  background-color: #fff;
  padding: 2.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-partner-cta {
    padding: 6rem 1.5rem;
  }
}

.p-partner-cta__inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.p-partner-cta__title {
  margin: 0;
  color: #2e4e2d;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 2px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__title {
    font-size: 2rem;
    letter-spacing: 3.2px;
  }
}

.p-partner-cta__lead {
  margin: 0;
  color: #2e4e2d;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__lead {
    font-size: 1rem;
  }
}

.p-partner-cta__buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 31.25rem;
  margin: 0.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    max-width: fit-content;
  }
}

.p-partner-cta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.p-partner-cta__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.p-partner-cta__btn--web {
  width: 100%;
  flex-direction: column;
  background-color: transparent;
  color: #fff;
  padding: 0;
  gap: 0.5rem;
  box-shadow: none;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__btn--web {
    width: auto;
    flex-direction: row;
    align-items: flex-end;
    background-color: #df5b38;
    padding: 1rem 2rem 1rem 1.5rem;
    height: 6.875rem;
    gap: 0.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
}

.p-partner-cta__btn-illust {
  width: 7.5625rem;
  height: 6.25rem;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__btn-illust {
    width: 10rem;
    height: 8.25rem;
  }
}

.p-partner-cta__btn--web .p-partner-cta__btn-text {
  width: 100%;
  height: 3.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #df5b38;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 1rem 2rem 1rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .p-partner-cta__btn--web .p-partner-cta__btn-text {
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0.75rem;
  }
}

.p-partner-cta__btn--x .p-partner-cta__btn-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__btn--x .p-partner-cta__btn-text {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.p-partner-cta__btn--x {
  width: 100%;
  background-color: #2e4e2d;
  color: #fff;
  height: 4.125rem;
  padding: 1rem 4rem;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__btn--x {
    width: auto;
    height: 6.875rem;
  }
}

.p-partner-cta__btn-badge {
  position: absolute;
  top: -1.125rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #2e4e2d;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.5rem 1rem;
  border-radius: 8.5rem;
  white-space: nowrap;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.05));
}
@media screen and (min-width: 768px) {
  .p-partner-cta__btn-badge {
    top: -1.625rem;
    font-size: 0.875rem;
    padding: 0.625rem 2.25rem;
  }
}

.p-partner-cta__btn-x-icon {
  width: 1.4375rem;
  height: 1.4375rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__btn-x-icon {
    width: 2.1875rem;
    height: 2.25rem;
  }
}

.p-partner-cta__voice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background-color: #f8fafc;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: background-color 0.2s ease;
}
.p-partner-cta__voice:hover {
  background-color: #eef2f6;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__voice {
    width: auto;
    padding: 1rem 2rem;
    margin: 3rem auto 0;
  }
}

.p-partner-cta__voice-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__voice-body {
    width: 20rem;
    flex: none;
  }
}

.p-partner-cta__voice-text {
  margin: 0;
  color: #2e4e2d;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__voice-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.p-partner-cta__voice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #df5b38;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__voice-link {
    font-size: 1rem;
  }
}

.p-partner-cta__voice-arrow {
  width: 1rem;
  height: 1rem;
  transform: scaleY(-1);
}

.p-partner-cta__voice-illust {
  flex-shrink: 0;
  width: 5rem;
  height: 5.125rem;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-partner-cta__voice-illust {
    width: 5.9375rem;
    height: 6.125rem;
  }
}

.p-partner-works {
  position: relative;
  background-color: #f8fafc;
  padding: 6rem 0;
}

.p-partner-works__deco {
  position: absolute;
  top: -2.5625rem;
  left: -2.0625rem;
  width: 9.6875rem;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.p-partner-works__inner {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.p-partner-works__title {
  margin: 0;
  color: #2e4e2d;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-partner-works__title {
    font-size: 4rem;
  }
}

.p-partner-works__lead {
  margin: 0;
  color: #2e4e2d;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: center;
}

.p-partner-works__slider-wrap {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-partner-works__slider-wrap {
    margin-top: 3rem;
  }
}

.swiper.p-partner-works__swiper {
  width: 100%;
  padding: 3.75rem 0 4.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .swiper.p-partner-works__swiper {
    padding: 4.5rem 0 5rem;
  }
}

.p-partner-works__swiper .swiper-slide.p-partner-works__card {
  flex-shrink: 0;
  width: 21.5625rem;
  height: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-partner-works__swiper .swiper-slide.p-partner-works__card {
    width: 17.5rem;
    max-width: calc(100vw - 5rem);
  }
}

.p-partner-works__card-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border: 1px solid #df5b38;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  box-shadow: -7px -7px 18px 0 rgba(223, 91, 56, 0.15), 7px 7px 18px 0 rgba(229, 143, 121, 0.15);
  transform: scale(0.9);
  transform-origin: center center;
  transition: transform 0.4s ease;
}

.swiper-slide-active .p-partner-works__card-link {
  transform: scale(1);
}

@media screen and (min-width: 768px) {
  .swiper-slide-active .p-partner-works__card-link {
    transform: scale(1.08);
  }
}
.p-partner-works__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #ddd;
}
.p-partner-works__card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.p-partner-works__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-partner-works__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
}

.p-partner-works__card-category {
  color: #df5b38;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
}

.p-partner-works__card-title {
  margin: 0;
  color: #2e4e2d;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.p-partner-works__card-text {
  margin: 0;
  color: #4f4f4f;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-partner-works__card-more {
  margin-top: 0.25rem;
  color: #4f4f4f;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-decoration: underline;
  text-align: right;
}

.p-partner-works__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #df5b38;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.p-partner-works__nav:hover {
  opacity: 0.9;
}
.p-partner-works__nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media screen and (min-width: 768px) {
  .p-partner-works__nav {
    width: 3rem;
    height: 3rem;
  }
}
.p-partner-works__nav::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}

.p-partner-works__nav--prev {
  left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-partner-works__nav--prev {
    left: calc(50% - 11.78125rem);
    transform: translate(-50%, -50%);
  }
}
.p-partner-works__nav--prev::before {
  border-width: 0.6875rem 0.6875rem 0.6875rem 0;
  border-color: transparent #fff transparent transparent;
  margin-right: 0.1875rem;
}

.p-partner-works__nav--next {
  right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-partner-works__nav--next {
    right: auto;
    left: calc(50% + 11.78125rem);
    transform: translate(-50%, -50%);
  }
}
.p-partner-works__nav--next::before {
  border-width: 0.6875rem 0 0.6875rem 0.6875rem;
  border-color: transparent transparent transparent #fff;
  margin-left: 0.1875rem;
}

.p-partner-works__footer {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.p-partner-works__more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #df5b38;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-decoration: underline;
}
.p-partner-works__more-link:hover {
  opacity: 0.85;
}

.p-partner-cap {
  background-color: #fff;
  padding: 5rem 1rem 5.0625rem;
}
@media screen and (min-width: 768px) {
  .p-partner-cap {
    padding: 6rem 1.5rem;
  }
}

.p-partner-cap__inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-partner-cap__inner {
    gap: 2rem;
  }
}

.p-partner-cap__heading {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-partner-cap__heading-en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eaf0ea;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-partner-cap__heading-en {
    font-size: 4rem;
  }
}

.p-partner-cap__heading-ja {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #2e4e2d;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 2.25rem;
  letter-spacing: 1.2px;
}

.p-partner-cap__lead {
  margin: 0;
  color: #4f4f4f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  text-align: center;
}

.p-partner-cap__cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-partner-cap__cards {
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
  }
}

.p-partner-cap__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  padding: 1.6875rem 1.5625rem 1.5625rem;
  background-color: #f8fafc;
  border: 1px solid #f8fafc;
  border-radius: 0.75rem;
  text-align: center;
}

.p-partner-cap__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}
.p-partner-cap__card-icon img {
  width: 100%;
  height: 100%;
  transform: scaleY(-1);
}

.p-partner-cap__card-title {
  margin: 0;
  color: #2e4e2d;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.p-partner-cap__card-sub {
  margin: 0;
  padding: 0.375rem 0 0.5rem;
  color: #4f4f4f;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
}

.p-partner-cap__card-text {
  margin: 0;
  width: 100%;
  color: #4f4f4f;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

.p-partner-cap__wp {
  position: relative;
  background-color: #f8fafc;
  border: 1px solid #f8fafc;
  border-radius: 0.75rem;
  padding: 1.6875rem 1.5625rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-partner-cap__wp {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    padding: 2.5rem 2.5rem 4.5rem;
  }
}

.p-partner-cap__wp-point {
  position: absolute;
  top: -0.9375rem;
  left: 0.8125rem;
  width: 4.8125rem;
  height: 4.8125rem;
  z-index: 2;
  overflow: hidden;
  border-radius: 50%;
}
.p-partner-cap__wp-point::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 70%, transparent 100%);
  transform: skewX(-20deg);
  animation: p-partner-cap__wp-point-shimmer 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes p-partner-cap__wp-point-shimmer {
  0% {
    left: -120%;
  }
  60%, 100% {
    left: 220%;
  }
}
.p-partner-cap__wp-point-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-partner-cap__wp-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  text-align: center;
  padding-top: 1.875rem;
}
.p-partner-cap__wp-head .p-partner-cap__card-text {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-partner-cap__wp-head {
    width: 13.75rem;
    flex-shrink: 0;
    padding-top: 1.875rem;
  }
}

.p-partner-cap__wp-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-partner-cap__wp-detail {
    flex: 1;
  }
}
.p-partner-cap__wp-detail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6.25rem;
  background: linear-gradient(to top, #f8fafc 20%, rgba(248, 250, 252, 0));
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.p-partner-cap__wp[data-state=open] .p-partner-cap__wp-detail::after {
  opacity: 0;
}

.p-partner-cap__wp-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-partner-cap__wp-block-title {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  color: #4f4f4f;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-partner-cap__wp-tag {
  display: inline-flex;
  align-items: center;
  background-color: #7d987c;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.125rem;
  padding: 0.125rem 0.5rem;
  border-radius: 1.3125rem;
}

.p-partner-cap__wp-list {
  margin: 0;
  padding: 0 0 0 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.p-partner-cap__wp-list li {
  position: relative;
  padding-left: 1rem;
  color: #4f4f4f;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-partner-cap__wp-list li::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #7d987c;
  border-radius: 50%;
}

.p-partner-cap__wp-support {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.p-partner-cap__wp-support-text {
  margin: 0;
  color: #4f4f4f;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-partner-cap__wp-support-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.p-partner-cap__wp-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 3.75rem;
  padding: 0.625rem 1.5rem;
  background-color: #df5b38;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.p-partner-cap__wp-support-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.p-partner-cap__wp-support-btn img {
  width: 1rem;
  height: 1rem;
  transform: scaleY(-1);
}

.p-partner-cap__wp-support-note {
  margin: 0;
  color: #4f4f4f;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-partner-cap__wp-toggle {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: transparent;
  border: none;
  color: #df5b38;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.5rem;
}
.p-partner-cap__wp-toggle:hover {
  opacity: 0.85;
}

.p-partner-cap__wp-toggle-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}
.p-partner-cap__wp[data-state=open] .p-partner-cap__wp-toggle-icon {
  transform: rotate(180deg);
}

.p-partner-cap__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0.9375rem 0;
  border-radius: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-partner-cap__footer {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.p-partner-cap__footer-mascot {
  flex-shrink: 0;
  width: 4.125rem;
  height: 4.125rem;
  border-radius: 50%;
  object-fit: cover;
}

.p-partner-cap__footer-text {
  margin: 0;
  color: #4f4f4f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-partner-cap__footer-text strong {
  font-weight: 700;
}

.p-partner-price {
  background-color: #7d987c;
  padding: 5rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-partner-price {
    padding: 5rem 1.5rem;
  }
}

.p-partner-price__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-partner-price__inner {
    gap: 3rem;
  }
}

.p-partner-price__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.p-partner-price__heading-en {
  margin: 0;
  color: #eaf0ea;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

.p-partner-price__lead {
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.p-partner-price__table {
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  width: 100%;
}

.p-partner-price__row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border-bottom: 1px solid #f8fafc;
}
.p-partner-price__row:nth-of-type(odd):not(.p-partner-price__row--head) {
  background-color: #f8fafc;
}
@media screen and (min-width: 768px) {
  .p-partner-price__row {
    flex-wrap: nowrap;
    align-items: center;
  }
}

.p-partner-price__row--head {
  background-color: #2e4e2d;
}
.p-partner-price__row--head:nth-of-type(odd) {
  background-color: #2e4e2d;
}
.p-partner-price__row--head .p-partner-price__cell {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 20/14;
}
.p-partner-price__row--head .p-partner-price__cell--name {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-partner-price__row--head .p-partner-price__cell--name {
    flex: 0 0 16.125rem;
  }
}
.p-partner-price__row--head .p-partner-price__cell--price,
.p-partner-price__row--head .p-partner-price__cell--note {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-partner-price__row--head .p-partner-price__cell--price,
  .p-partner-price__row--head .p-partner-price__cell--note {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-partner-price__row--head .p-partner-price__cell--price {
    flex: 0 0 11rem;
  }
}
@media screen and (min-width: 768px) {
  .p-partner-price__row--head .p-partner-price__cell--note {
    flex: 1;
  }
}

.p-partner-price__cell {
  padding: 0.5rem 1rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-partner-price__cell {
    padding: 1rem 1.5rem;
  }
}

.p-partner-price__row:not(.p-partner-price__row--head) .p-partner-price__cell--name {
  flex: 1;
  min-width: 0;
  color: #4f4f4f;
  font-weight: 700;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-partner-price__row:not(.p-partner-price__row--head) .p-partner-price__cell--name {
    flex: 0 0 16.125rem;
  }
}

.p-partner-price__row:not(.p-partner-price__row--head) .p-partner-price__cell--price {
  width: 8.125rem;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 1rem;
  color: #df5b38;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-partner-price__row:not(.p-partner-price__row--head) .p-partner-price__cell--price {
    flex: 0 0 11rem;
    width: auto;
    padding-right: 1.5rem;
  }
}

.p-partner-price__num {
  font-size: 1.125rem;
  line-height: 20/18;
}

.p-partner-price__unit {
  font-size: 0.875rem;
  line-height: 20/14;
}

.p-partner-price__per {
  margin-left: 0.125rem;
  color: #4f4f4f;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 16/12;
}

.p-partner-price__row:not(.p-partner-price__row--head) .p-partner-price__cell--note {
  flex: 0 0 100%;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0.5rem;
  color: #808080;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20/14;
}
@media screen and (min-width: 768px) {
  .p-partner-price__row:not(.p-partner-price__row--head) .p-partner-price__cell--note {
    flex: 1;
    width: auto;
    padding: 1rem 1.5rem;
  }
}

.p-partner-price__more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-width: 12.5rem;
  height: 3.75rem;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.p-partner-price__more:hover {
  opacity: 0.7;
}

.p-partner-price__more-text {
  text-decoration: underline;
}

.p-partner-price__more-icon {
  width: 1rem;
  height: 1rem;
  transform: scaleY(-1);
}

.p-partner-price__note {
  margin: 0;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.7;
  text-align: center;
}

.p-partner-flow {
  background-color: #fff;
  padding: 6rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-partner-flow {
    padding: 6rem 1.5rem;
  }
}

.p-partner-flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-partner-flow__inner {
    gap: 4rem;
  }
}

.p-partner-flow__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.p-partner-flow__heading-en {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 0.4375rem));
  color: #eaf0ea;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.p-partner-flow__heading-ja {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #2e4e2d;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 36/24;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-partner-flow__lead {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4f4f4f;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.p-partner-flow__steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
  width: 100%;
  max-width: 43rem;
}
@media screen and (min-width: 768px) {
  .p-partner-flow__steps {
    gap: 3rem;
  }
}
.p-partner-flow__steps::before {
  content: "";
  position: absolute;
  top: 5rem;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5625rem;
  background-color: #2e4e2d;
  z-index: 0;
}

.p-partner-flow__step {
  position: relative;
  z-index: 1;
  background-color: #f8fafc;
  border: 2px solid #2e4e2d;
  border-radius: 1rem;
  padding: 2.125rem 1.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-partner-flow__step {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 2.125rem 2.625rem;
  }
}

.p-partner-flow__step--deco {
  overflow: hidden;
}

.p-partner-flow__step-deco {
  position: absolute;
  right: -3.25rem;
  bottom: -3.25rem;
  width: 11.3125rem;
  height: 11.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.p-partner-flow__step-deco img {
  width: 8rem;
  height: 8rem;
  transform: rotate(45deg) scaleY(-1);
}

.p-partner-flow__step-illust {
  flex-shrink: 0;
  width: 7.875rem;
  height: 5.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-partner-flow__step-illust img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.p-partner-flow__step-body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.p-partner-flow__step-num {
  color: #df5b38;
  font-weight: 700;
  font-size: 1rem;
  line-height: 24/16;
}

.p-partner-flow__step-title {
  margin: 0;
  color: #2e4e2d;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 28/20;
}

.p-partner-flow__step-text {
  margin: 0.4375rem 0 0;
  color: #2e4e2d;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

.p-partner-flow__step-btn {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.625rem 1.5rem;
  background-color: #df5b38;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 24/16;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1), 0 4px 6px 0 rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.p-partner-flow__step-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.p-partner-flow__step-btn-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.p-partner-philosophy {
  position: relative;
  z-index: 1;
  padding: 6rem 1rem;
  background-color: #7d987c;
}
@media screen and (min-width: 768px) {
  .p-partner-philosophy {
    padding: 6rem 1.5rem;
  }
}

.p-partner-philosophy__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.p-partner-philosophy__deco img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-partner-philosophy__deco--hd1 {
  top: -8.5rem;
  right: -16.75rem;
  width: 41.9375rem;
  height: 38.75rem;
}

.p-partner-philosophy__deco--hd5 {
  top: -6.25rem;
  right: 16.5rem;
  width: 9.9375rem;
  height: 9.9375rem;
}

.p-partner-philosophy__deco--cta1 {
  bottom: -2.5rem;
  left: -3.75rem;
  width: 17.5rem;
  height: 17.5rem;
  opacity: 0;
}
.p-partner-philosophy__deco--cta1.is-flying {
  position: fixed;
  top: 0;
  left: 0;
  bottom: auto;
  z-index: 9999;
  pointer-events: none;
  animation: p-partner-cta1-fly 20s linear infinite;
}

@keyframes p-partner-cta1-fly {
  0% {
    transform: translate(-100vmax, -100vmax);
    opacity: 0;
    animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
  }
  6% {
    opacity: 1;
  }
  34% {
    opacity: 1;
  }
  40% {
    transform: translate(100vmax, 100vmax);
    opacity: 0;
  }
  100% {
    transform: translate(-100vmax, -100vmax);
    opacity: 0;
  }
}
.p-partner-philosophy__deco--kick {
  bottom: 0;
  right: 6.25rem;
  width: 16.4375rem;
  height: 23.5rem;
}

.p-partner-philosophy__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.p-partner-philosophy__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.p-partner-philosophy__heading-en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 0.4375rem));
  color: rgba(234, 240, 234, 0.35);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.p-partner-philosophy__heading-ja {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 36/24;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-partner-philosophy__lead {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 24/16;
  text-align: center;
}

.p-partner-philosophy__circles {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-partner-philosophy__circles {
    display: grid;
    grid-template-columns: repeat(2, 17.5rem);
    grid-template-rows: 17.5rem 17.5rem;
    gap: 4.5rem 5.625rem;
    justify-content: center;
    padding: 2.5rem 0;
  }
}
.p-partner-philosophy__circles::before {
  content: "";
  display: none;
}
@media screen and (min-width: 768px) {
  .p-partner-philosophy__circles::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 23.625rem;
    height: 23.625rem;
    border: 1px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }
}

.p-partner-philosophy__mascot {
  width: 10.125rem;
  height: 10.125rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: #b6c8b6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}
.p-partner-philosophy__mascot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-partner-philosophy__mascot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.p-partner-philosophy__card {
  position: relative;
  width: 17.5rem;
  height: 17.5rem;
  border: 1px solid #fff;
  border-radius: 13.5rem;
  background-color: #2e4e2d;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  box-shadow: inset 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.p-partner-philosophy__tag {
  position: absolute;
  top: -0.5625rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #2e4e2d;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.1875rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.p-partner-philosophy__card-title {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 24/20;
}
@media screen and (min-width: 768px) {
  .p-partner-philosophy__card-title {
    font-size: 1.375rem;
    line-height: 31/22;
  }
}

.p-partner-philosophy__card-text {
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-partner-philosophy__card-text {
    font-size: 0.875rem;
  }
}

.p-partner-floating-cta {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-partner-floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    display: flex;
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  .p-partner-floating-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

[data-fade] {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.18, 2.2, 0.4, 1);
}
[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-fade=blur] {
  transform: none;
  filter: blur(0.75rem);
  transition: opacity 0.7s ease-out, filter 0.7s ease-out;
}
[data-fade=blur].is-visible {
  filter: blur(0);
}

[data-fade=slide] {
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-fade=reveal] {
  overflow: hidden;
  opacity: 1;
  transform: none;
}
[data-fade=reveal] > * {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-fade=reveal].is-visible > * {
  transform: translateY(0);
}

[data-fade=reveal-lines] {
  opacity: 1;
  transform: none;
}
[data-fade=reveal-lines] > * {
  display: block;
  overflow: hidden;
}
[data-fade=reveal-lines] > * > * {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-fade=reveal-lines].is-visible > * > * {
  transform: translateY(0);
}
[data-fade=reveal-lines] > *:nth-child(1) > * {
  transition-delay: 0s;
}
[data-fade=reveal-lines] > *:nth-child(2) > * {
  transition-delay: 0.12s;
}
[data-fade=reveal-lines] > *:nth-child(3) > * {
  transition-delay: 0.24s;
}
[data-fade=reveal-lines] > *:nth-child(4) > * {
  transition-delay: 0.36s;
}
[data-fade=reveal-lines] > *:nth-child(5) > * {
  transition-delay: 0.48s;
}
[data-fade=reveal-lines] > *:nth-child(6) > * {
  transition-delay: 0.6s;
}
[data-fade=reveal-lines] > *:nth-child(7) > * {
  transition-delay: 0.72s;
}
[data-fade=reveal-lines] > *:nth-child(8) > * {
  transition-delay: 0.84s;
}

.p-partner-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  background-color: #2e4e2d;
  border-bottom: 1px solid #f8fafc;
  backdrop-filter: blur(6px);
  z-index: 100;
  transition: all 0.3s linear;
}
@media screen and (min-width: 768px) {
  .p-partner-header {
    height: 5rem;
  }
}

.p-partner-header__container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .p-partner-header__container {
    padding: 0 1.5rem;
  }
}

.p-partner-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.p-partner-header__logo-img {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-partner-header__logo-img {
    width: 3rem;
    height: 3rem;
  }
}
.p-partner-header__logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-partner-header__logo-text {
  color: #f8fafc;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 28/20;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 768px) {
  .p-partner-header__logo-text {
    font-size: 1.25rem;
  }
}

.p-partner-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-partner-header__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.p-partner-header__nav-link {
  color: #f8fafc;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 28/20;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.p-partner-header__nav-link:hover {
  opacity: 0.7;
}

.p-partner-header__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 24/16;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: color 0.3s ease;
}
.p-partner-header__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.p-partner-header__btn:hover::before {
  transform: translateX(0);
}
.p-partner-header__btn > * {
  position: relative;
  z-index: 1;
}

.p-partner-header__btn-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.p-partner-header__btn--resource {
  background-color: #fff;
  border: 1px solid #f8fafc;
  color: #4f4f4f;
}
.p-partner-header__btn--resource::before {
  background-color: #2e4e2d;
}
.p-partner-header__btn--resource:hover {
  color: #fff;
}

.p-partner-header__btn--contact {
  background-color: #df5b38;
  color: #fff;
}
.p-partner-header__btn--contact::before {
  background-color: #fff;
}
.p-partner-header__btn--contact:hover {
  color: #df5b38;
}

.p-partner-footer {
  background-color: #2e4e2d;
  padding: 1.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-partner-footer {
    padding: 2rem 1.5rem;
  }
}

.p-partner-footer__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-partner-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
}

.p-partner-footer__copyright {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-partner-footer__logo-img {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.p-partner-footer__logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-partner-footer__copyright-text {
  color: #f8fafc;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 20/13;
  white-space: nowrap;
}

.p-partner-footer__links {
  display: flex;
  gap: 1rem;
}

.p-partner-footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  color: #f8fafc;
  transition: opacity 0.2s ease;
}
.p-partner-footer__link:hover {
  opacity: 0.7;
}
.p-partner-footer__link svg {
  display: block;
}

.p-estimate {
  background-color: #fff;
  padding: 5rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-estimate {
    padding: 6rem 1.5rem;
  }
}

.p-estimate__inner {
  max-width: 45rem;
  margin: 0 auto;
}

.p-estimate__header {
  text-align: center;
  margin-bottom: 2rem;
}

.p-estimate__title {
  margin: 0 0 0.75rem;
  color: #2e4e2d;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-estimate__title {
    font-size: 2rem;
  }
}

.p-estimate__lead {
  margin: 0;
  color: #4f4f4f;
  font-size: 0.875rem;
  line-height: 1.7;
}
.p-estimate__lead strong {
  color: #df5b38;
  font-weight: 700;
}

.p-estimate__progress {
  width: 100%;
  height: 0.25rem;
  background-color: #e8edec;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.p-estimate__progress-bar {
  height: 100%;
  width: 0;
  background-color: #df5b38;
  transition: width 0.3s ease;
}

.p-estimate__running {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.25rem;
  background-color: rgba(46, 78, 45, 0.06);
  border: 1px solid rgba(46, 78, 45, 0.15);
  border-radius: 0.5rem;
}

.p-estimate__running-label {
  color: #4f4f4f;
  font-size: 0.75rem;
  font-weight: 500;
}

.p-estimate__running-amount {
  color: #2e4e2d;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-estimate__running-amount {
    font-size: 1.5rem;
  }
}

.p-estimate__steps {
  position: relative;
  min-height: 17.5rem;
}

.p-estimate__step {
  display: none;
}
.p-estimate__step.is-active {
  display: block;
  animation: p-estimate-fade-in 0.3s ease-out;
}

@keyframes p-estimate-fade-in {
  from {
    opacity: 0;
    transform: translateY(0.625rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-estimate__q {
  margin: 0 0 0.5rem;
  color: #2e4e2d;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-estimate__q {
    font-size: 1.5rem;
  }
}

.p-estimate__sub {
  margin: 0 0 1.25rem;
  color: #4f4f4f;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.p-estimate__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.p-estimate__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background-color: #f8fafc;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  color: #4f4f4f;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.p-estimate__option:hover {
  border-color: rgba(46, 78, 45, 0.2);
}
.p-estimate__option input {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #2e4e2d;
  cursor: pointer;
}
.p-estimate__option:has(input:checked) {
  border-color: #2e4e2d;
  background-color: rgba(46, 78, 45, 0.05);
}

.p-estimate__option--unsure {
  background-color: #f7f3eb;
}
.p-estimate__option--unsure:has(input:checked) {
  border-color: #df5b38;
  background-color: rgba(223, 91, 56, 0.08);
}

.p-estimate__counts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.p-estimate__count {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #f8fafc;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.p-estimate__count > span:first-child {
  flex: 1;
  font-weight: 700;
  color: #2e4e2d;
}
.p-estimate__count input {
  width: 5rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid #e8edec;
  border-radius: 0.375rem;
  text-align: center;
}
.p-estimate__count input:focus {
  outline: none;
  border-color: #2e4e2d;
}

.p-estimate__count-unit {
  font-size: 0.8125rem;
  color: #4f4f4f;
}

.p-estimate__info-block {
  margin-top: 1.25rem;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-radius: 0.5rem;
  text-align: center;
}

.p-estimate__info-price {
  display: block;
  color: #df5b38;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.p-estimate__info-note {
  margin: 0;
  color: #4f4f4f;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.p-estimate__step--result {
  text-align: center;
}

.p-estimate__total {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background-color: #2e4e2d;
  color: #fff;
  border-radius: 0.75rem;
}

.p-estimate__total-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.p-estimate__total-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-estimate__total-amount {
    font-size: 3rem;
  }
}

.p-estimate__total-suffix {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.p-estimate__monthly {
  margin: 0 0 1rem;
  padding: 1rem 1.5rem;
  background-color: #f8fafc;
  border-radius: 0.5rem;
}
.p-estimate__monthly .p-estimate__total-label {
  color: #4f4f4f;
  opacity: 1;
}
.p-estimate__monthly .p-estimate__total-amount {
  color: #2e4e2d;
  font-size: 1.375rem;
}

.p-estimate__breakdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 0.625rem 1.25rem;
  background: transparent;
  border: 1px solid #2e4e2d;
  border-radius: 9999px;
  color: #2e4e2d;
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.p-estimate__breakdown-toggle:hover {
  background-color: #2e4e2d;
  color: #fff;
}

.p-estimate__breakdown-arrow {
  font-size: 0.625rem;
  transition: transform 0.2s ease;
}

.p-estimate__breakdown-toggle[aria-expanded=true] .p-estimate__breakdown-arrow {
  transform: rotate(180deg);
}

.p-estimate__breakdown {
  margin-bottom: 1.25rem;
}

.p-estimate__breakdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  background-color: #f8fafc;
  border-radius: 0.5rem;
  overflow: hidden;
}

.p-estimate__breakdown-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #e8edec;
  font-size: 0.875rem;
}
.p-estimate__breakdown-item:last-child {
  border-bottom: 0;
}
.p-estimate__breakdown-item span:first-child {
  color: #4f4f4f;
}
.p-estimate__breakdown-item span:last-child {
  color: #2e4e2d;
  font-weight: 700;
  white-space: nowrap;
}
.p-estimate__breakdown-item--empty {
  justify-content: center;
  color: #4f4f4f;
}

.p-estimate__result-note {
  margin: 1rem 0;
  color: #4f4f4f;
  font-size: 0.8125rem;
  line-height: 1.7;
}
.p-estimate__result-note strong {
  color: #df5b38;
  font-weight: 700;
}

.p-estimate__result-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.p-estimate__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: #df5b38;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 8px 16px rgba(223, 91, 56, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.p-estimate__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(223, 91, 56, 0.3);
}

.p-estimate__restart {
  background: transparent;
  border: 0;
  color: #4f4f4f;
  font-size: 0.8125rem;
  text-decoration: underline;
  cursor: pointer;
}
.p-estimate__restart:hover {
  color: #2e4e2d;
}

.p-estimate__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.p-estimate__nav-btn {
  padding: 0.75rem 1.5rem;
  background-color: #2e4e2d;
  color: #fff;
  border: 0;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.p-estimate__nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.p-estimate__nav-btn:not(:disabled):hover {
  opacity: 0.85;
}

.p-estimate__nav-btn--back {
  background-color: transparent;
  color: #4f4f4f;
}
.p-estimate__nav-btn--back:not(:disabled):hover {
  color: #2e4e2d;
  opacity: 1;
}

.p-estimate__step-count {
  font-size: 0.8125rem;
  color: #4f4f4f;
}

.p-estimate__consult {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, #2e4e2d, #1a3b1a);
  border-radius: 0.75rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(46, 78, 45, 0.2);
}
@media screen and (min-width: 768px) {
  .p-estimate__consult {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 2rem 2.5rem;
    gap: 2rem;
  }
}

.p-estimate__consult-text {
  flex: 1;
}

.p-estimate__consult-title {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-estimate__consult-title {
    font-size: 1.25rem;
  }
}

.p-estimate__consult-body {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  opacity: 0.95;
  color: #fff;
}
.p-estimate__consult-body strong {
  color: #f8f540;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-estimate__consult-body {
    font-size: 0.875rem;
  }
}

.p-estimate__consult-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background-color: #df5b38;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.p-estimate__consult-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-estimate__consult-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.p-price-contact {
  background-color: #f8fafc;
  padding: 5rem 1rem;
  scroll-margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-price-contact {
    padding: 6rem 1.5rem;
  }
}

.p-price-contact__inner {
  max-width: 45rem;
  margin: 0 auto;
}

.p-price-contact__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.p-price-contact__title {
  margin: 0 0 1rem;
  color: #2e4e2d;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-price-contact__title {
    font-size: 2rem;
  }
}

.p-price-contact__lead {
  margin: 0;
  color: #4f4f4f;
  font-size: 0.875rem;
  line-height: 1.7;
}
.p-price-contact__lead strong {
  color: #df5b38;
  font-weight: 700;
}

.u-bg-light_green {
  background-color: rgba(194, 200, 181, 0.8);
}

.u-bg-green {
  position: relative;
  z-index: 2;
  background-color: #eef6f5;
}

.u-bg-white {
  background-color: #fff;
}

.u-green_gradation {
  background: linear-gradient(135deg, #a8d5ba, #b5ead7, #c1e1c5, #d4edda, #e2f0d9);
}

.u-bg-header {
  background-color: #688166;
}

.u-bg-dark-green {
  background-color: #464f43;
}

.u-bg-gray {
  background-color: #6f6f6f;
}

.u-bg-black {
  background-color: #000;
}

.u-bg-main {
  background-color: #b5deb2;
}

.u-bg-image_custom {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
}

.u-pos-absolute {
  position: absolute;
}

.u-display-block {
  display: block;
}

.u-display-flex {
  display: flex;
}

.u-display-grid {
  display: grid;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-left {
  text-align: left;
}

.u-text-white {
  color: #fff;
}

.u-white-color {
  color: #fff;
}

.svg-color {
  color: #fff;
}

.right {
  width: 40px;
  height: 40px;
  color: red;
}

.u-fz-1_5 {
  font-size: 1.5rem;
}

.u-fw-700 {
  font-weight: 700;
}

.u-fw-600 {
  font-weight: 600;
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-hidden-sp {
    display: block;
  }
}

.u-hidden-pc {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-mb-1 {
  margin-bottom: 1rem;
}

.u-mb-0_5 {
  margin-bottom: 0.5rem;
}

.u-ml-1 {
  margin-left: 1rem;
}

.u-mt-7vh {
  margin-top: 7vh;
}

.u-mt-30vh {
  margin-top: 30vh;
}

.u-m-center {
  margin: auto;
}

.u-mt-4 {
  margin-top: 4px;
}
