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;
}

.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(3, 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;
}
.p-header__nav-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.p-header__fz {
  font-size: clamp(1rem, 1.19vw + 0.429rem, 1.5rem);
}

.header__nav-item + .header__nav-item {
  margin-top: 24px;
}

.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 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;
}

.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-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;
}

.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;
}
