@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background-color: inherit;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

:root {
  --header-height: 60px;
}

@media (min-width: 1025px) {
  :root {
    --header-height: 80px;
  }
}
body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
}
body.is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.l-header {
  width: 100%;
  height: var(--header-height);
  border-bottom: #e5e7eb 1px solid;
}
.l-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.l-header__logo {
  font-size: 37px;
  font-family: "Lora", serif;
  margin-right: auto;
}
.l-header__logo-link {
  color: inherit;
}

.l-section {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .l-section {
    padding: 40px 0;
  }
}

.l-inner {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
  }
}

.l-section-content {
  margin-top: 20px;
}

.l-footer {
  width: 100%;
  border-top: #ccc 1px solid;
  padding: 15px 0;
}
.l-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .l-footer__inner {
    flex-direction: column;
  }
}
.l-footer__logo {
  font-size: 30px;
  font-family: "Lora", serif;
  margin-right: auto;
}
.l-footer__logo a {
  color: inherit;
}
@media (max-width: 767px) {
  .l-footer__logo {
    margin-right: 0;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .l-footer__logo {
    margin-right: 0;
  }
}
.l-footer__sns {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .l-footer__sns {
    margin-left: 0;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .l-footer__sns {
    margin-left: 0;
  }
}
.l-footer__sns-link {
  width: 40px;
  padding: 8px;
  border: none;
}

.c-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.c-nav__list {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 767px) {
  .c-nav__list {
    flex-direction: column;
  }
}
.c-nav__item {
  padding: 15px 20px;
}
.c-nav__link {
  font-weight: 500;
}
.c-nav__btn {
  padding: 15px 20px;
  color: #fff;
  background: #3b82f6;
}
.c-nav__btn:hover {
  background: #2563eb;
}

.c-button {
  display: inline-block;
  text-align: center;
  border-radius: 5px;
}
.c-button--primary {
  color: #fff;
  background: #3b82f6;
}
.c-button--primary:hover {
  background: #2563eb;
}
.c-button--secondary {
  border: #3b82f6 1px solid;
  color: #3b82f6;
}
.c-button--secondary:hover {
  background: #2563eb;
  color: #fff;
}
@media (max-width: 767px) {
  .c-button {
    width: 150px;
  }
}

.c-icon {
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.c-item-title {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .c-item-title {
    font-size: 16px;
  }
}

.c-item-text {
  font-size: 14px;
}

.c-drawer__icon-area {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  position: relative;
  z-index: 100;
}

.c-drawer__input {
  display: none;
}

.c-drawer__icon {
  width: 27px;
  height: 22px;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1025px) {
  .c-drawer__icon {
    display: none;
  }
}

.c-drawer__icon-bar,
.c-drawer__icon-bar::before,
.c-drawer__icon-bar::after {
  content: "";
  position: absolute;
  display: block;
  width: 27px;
  height: 2px;
  background: #333;
  border-radius: 3px;
  transition: 0.5s;
}

.c-drawer__icon-bar::before {
  bottom: 8px;
}
.c-drawer__icon-bar::after {
  top: 8px;
}

#drawer-input:checked + .c-drawer__icon .c-drawer__icon-bar {
  background: transparent;
}
#drawer-input:checked + .c-drawer__icon .c-drawer__icon-bar::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer-input:checked + .c-drawer__icon .c-drawer__icon-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.c-drawer__content {
  width: 100%;
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  z-index: 99;
  background: #f7f9fc;
  transform: translateY(var(--header-height));
}

.c-drawer__nav {
  height: 100%;
}
.c-drawer__nav-list {
  width: 100%;
  height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
}
.c-drawer__nav-item {
  flex: 1;
  border-bottom: #e5e7eb 1px solid;
}
.c-drawer__nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.c-drawer__nav-title {
  text-align: center;
}
.c-drawer__nav-title--en {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.c-drawer__nav-title--ja {
  font-size: 12px;
  font-weight: normal;
}
.c-drawer__nav-btn {
  padding: 15px 20px;
  color: #fff;
  background: #6c4e8c;
}

.c-more-button {
  font-size: 12px;
  font-weight: 500;
  padding-right: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
.c-more-button:hover {
  color: #2563eb;
}
.c-more-button::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  content: "";
  width: 10px;
  height: 10px;
  -webkit-mask: url(../img/arrow.svg) no-repeat center center/contain;
          mask: url(../img/arrow.svg) no-repeat center center/contain;
  background-color: currentColor;
}

.c-section-title {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.c-section-title--en {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.c-section-title--ja {
  font-size: 12px;
  font-weight: 500;
}

.c-item-cat {
  background: #fff;
  display: inline-block;
  border: #e5e7eb 1px solid;
  padding: 5px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-item-cat {
    font-size: 10px;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .c-item-cat {
    font-size: 12px;
  }
}

.c-arrow-button {
  padding: 0 30px 0 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-weight: 500;
}
.c-arrow-button::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  content: "";
  width: 15px;
  height: 15px;
  -webkit-mask: url(../img/arrow.svg) no-repeat center center/contain;
          mask: url(../img/arrow.svg) no-repeat center center/contain;
  background-color: currentColor;
}

.p-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #fff 55%, #f7f9fc 100%);
}

.p-hero__content {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .p-hero__content {
    flex-direction: column-reverse;
  }
}

.p-hero__block {
  width: 50%;
  height: 100%;
}
@media (max-width: 767px) {
  .p-hero__block {
    width: 100%;
  }
}

.p-hero__title {
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-hero__title {
    margin-top: 20px;
    text-align: center;
  }
}

.p-hero__subtitle {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-hero__subtitle {
    margin-top: 20px;
    text-align: center;
  }
}

.p-hero__buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-hero__buttons {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
}

.p-hero__visual {
  width: 50%;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .p-hero__visual {
    width: 100%;
    margin-left: 0;
  }
}

.p-hero__button {
  width: 200px;
  height: 60px;
  line-height: 60px;
}

.p-hero__note {
  margin-top: 16px;
  font-size: 13px;
  color: #666;
}
.p-hero__note strong {
  color: #3b82f6;
  font-size: 15px;
}
@media (max-width: 767px) {
  .p-hero__note {
    text-align: center;
  }
}

.p-features {
  background: #f7f9fc;
}

.p-features__items {
  display: flex;
  align-items: stretch;
  gap: 24px;
}
@media (max-width: 767px) {
  .p-features__items {
    flex-direction: column;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-features__items {
    flex-direction: column;
  }
}

.p-features__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 8px;
  border-top: 3px solid #3b82f6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 28px 24px;
}
@media (max-width: 767px) {
  .p-features__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-features__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    max-width: 485px;
    width: 100%;
    margin: 0 auto;
  }
}

.p-features__icon {
  width: 72px;
  height: 72px;
  background: #f7f9fc;
  padding: 14px;
  flex-shrink: 0;
}

.p-features__item-text {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.p-works__head {
  display: flex;
  justify-content: space-between;
}

.p-works__items {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-works__items {
    flex-direction: column;
  }
}

.p-works__item {
  position: relative;
}

.p-works__img {
  overflow: hidden;
}
.p-works__img img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.p-works__item:hover .p-works__img img {
  transform: scale(1.07);
}

.p-works__item-title {
  margin-top: 7px;
}

.p-works-cat {
  position: absolute;
  top: 13%;
  right: 3%;
  font-weight: 700;
  box-shadow: 0 0 8px #000;
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-works-cat {
    top: 11%;
  }
}

.p-item-cat {
  margin-top: 7px;
}
.p-item-cat:not(:last-child) {
  margin-right: 7px;
}

.p-service {
  background: #f7f9fc;
}

.p-service__items {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-service__items {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-service__items {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.p-service__item {
  display: flex;
  align-items: flex-start;
  width: calc(25% - 15px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 24px 20px;
  gap: 12px;
}
@media (max-width: 767px) {
  .p-service__item {
    width: 100%;
    gap: 20px;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-service__item {
    width: calc(50% - 10px);
    gap: 20px;
  }
}

.p-service__icon {
  width: 56px;
  flex-shrink: 0;
  padding: 10px;
  background: #f7f9fc;
  border-radius: 6px;
}

.p-service__item-title {
  font-size: 16px;
  min-height: auto;
}

.p-service__item-text {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.p-profile {
  background: #f7f9fc;
}

.p-profile-content {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .p-profile-content {
    flex-direction: column;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-profile-content {
    flex-direction: column;
  }
}

.p-profile__photo {
  width: 20%;
}
@media (max-width: 767px) {
  .p-profile__photo {
    width: 100%;
    max-width: 500px;
    align-self: center;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-profile__photo {
    width: 100%;
    max-width: 500px;
    align-self: center;
  }
}

.p-profile__main {
  width: 30%;
}
@media (max-width: 767px) {
  .p-profile__main {
    width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-profile__main {
    width: 100%;
  }
}

.p-profile__text {
  margin-top: 20px;
}

.p-profile__skills {
  width: 50%;
}
@media (max-width: 767px) {
  .p-profile__skills {
    width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-profile__skills {
    width: 100%;
  }
}

.p-profile__skills-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile__skills-item {
  background: #fff;
  min-width: 150px;
  flex: 1;
  text-align: center;
  padding: 5px 10px;
  border: #e5e7eb 1px solid;
  font-weight: 500;
  white-space: nowrap;
}

.p-process {
  background: #f7f9fc;
}

.p-process__items {
  display: flex;
}
@media (max-width: 767px) {
  .p-process__items {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-process__items {
    flex-direction: column;
    align-items: center;
  }
}

.p-process__item {
  width: calc((100% - 200px) / 6);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: start;
}
@media (max-width: 767px) {
  .p-process__item {
    width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-process__item {
    width: 100%;
  }
}
.p-process__item .c-text-box {
  text-align: center;
}

.p-process__icon {
  width: 50px;
  padding: 8px;
  border: #e5e7eb 1px solid;
  background: #fff;
}

.p-process__number {
  font-weight: 700;
}

.p-process__item-title {
  font-size: 16px;
  text-align: center;
}

.p-process__item-text {
  font-size: 14px;
  text-align: center;
}

.p-process__arrow {
  width: 40px;
  height: 1px;
  background: #000;
  position: relative;
  flex-shrink: 0;
  margin: 25px 10px 0 10px;
}
@media (max-width: 767px) {
  .p-process__arrow {
    width: 1px;
    height: 40px;
    margin: 15px 0;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-process__arrow {
    width: 1px;
    height: 40px;
    margin: 15px 0;
  }
}
.p-process__arrow::before, .p-process__arrow::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background: #000;
  right: 0;
}
@media (max-width: 767px) {
  .p-process__arrow::before, .p-process__arrow::after {
    width: 1px;
    height: 10px;
    bottom: -1px;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-process__arrow::before, .p-process__arrow::after {
    width: 1px;
    height: 10px;
    bottom: -1px;
  }
}
.p-process__arrow::before {
  top: -3px;
  transform: rotate(35deg);
}
@media (max-width: 767px) {
  .p-process__arrow::before {
    top: auto;
    right: -3px;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-process__arrow::before {
    top: auto;
    right: -3px;
  }
}
.p-process__arrow::after {
  top: 3px;
  transform: rotate(-35deg);
}
@media (max-width: 767px) {
  .p-process__arrow::after {
    top: auto;
    right: 3px;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-process__arrow::after {
    top: auto;
    right: 3px;
  }
}

.p-cta {
  padding: 64px 0;
  background: #3b82f6;
}

.p-cta__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-cta__content {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .p-cta__content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

.p-cta__icon {
  background: #f7f9fc;
  width: 72px;
  padding: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-cta__icon {
    width: 56px;
  }
}

.p-cta__text {
  color: #fff;
}
.p-cta__text .c-item-title {
  font-size: 20px;
  white-space: normal;
}
@media (max-width: 767px) {
  .p-cta__text .c-item-title {
    font-size: 17px;
  }
}
.p-cta__text .c-item-text {
  margin-top: 6px;
  opacity: 0.85;
}

.p-cta__button {
  flex-shrink: 0;
  height: 56px;
  width: 240px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease;
}
.p-cta__button:hover {
  background: #fff;
  color: #3b82f6;
}
@media (max-width: 767px) {
  .p-cta__button {
    width: 100%;
    max-width: 280px;
    margin-left: 0;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-cta__button {
    max-width: 280px;
    margin-left: 0;
  }
}

.p-page-hero {
  background-color: #f7f9fc;
  padding: 40px 0;
  border-bottom: 1px solid #e5e7eb;
}
.p-page-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-page-hero__title {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.p-page-hero__title-en {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-page-hero__title-en {
    font-size: 24px;
  }
}
.p-page-hero__title-ja {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

.p-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
}
.p-breadcrumb__item {
  display: flex;
  align-items: center;
}
.p-breadcrumb__item:not(:first-child)::before {
  content: ">";
  margin-right: 6px;
}
.p-breadcrumb__item[aria-current=page] {
  color: #333;
}
.p-breadcrumb__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.p-breadcrumb__link:hover {
  color: #3b82f6;
}

.p-post__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .p-post__filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .p-post__filter::-webkit-scrollbar {
    display: none;
  }
}

.p-post__filter-item {
  display: flex;
}

.p-post__filter-btn {
  display: flex;
  align-items: center;
  padding: 8px 22px;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  color: #333;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.p-post__filter-btn:hover, .p-post__filter-btn.is-active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
}
@media (max-width: 767px) {
  .p-post__filter-btn {
    white-space: nowrap;
  }
}

.p-post__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-post__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .p-post__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.p-post__item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.p-post__item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.p-post__item.is-hidden {
  display: none;
}

.p-post__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.p-post__img-wrap {
  position: relative;
  overflow: hidden;
}

.p-post__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.p-post__item:hover .p-post__img {
  transform: scale(1.05);
}

.p-post__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #3b82f6;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.p-post__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
  gap: 10px;
}

.p-post__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-post__title {
    font-size: 15px;
  }
}

.p-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.p-post__text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  flex: 1;
}

.p-post__more {
  color: #3b82f6;
  font-size: 13px;
  font-weight: 500;
  align-self: flex-start;
  margin-top: 4px;
}
.p-post__more:hover {
  color: #2563eb;
}

.p-service-lead {
  background: #f7f9fc;
}
.p-service-lead__text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: #555;
}

.p-service-page__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-service-page__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-service-page__item {
    grid-template-columns: 160px 1fr;
  }
}
@media (max-width: 767px) {
  .p-service-page__item {
    grid-template-columns: 1fr;
  }
}

.p-service-page__accent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background: #3b82f6;
  color: #fff;
}
@media (max-width: 767px) {
  .p-service-page__accent {
    flex-direction: row;
    justify-content: flex-start;
    padding: 20px 24px;
    gap: 16px;
  }
}

.p-service-page__num {
  font-family: "Lora", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.6;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .p-service-page__num {
    font-size: 28px;
  }
}

.p-service-page__icon {
  width: 72px;
  height: 72px;
  background: #f7f9fc;
  padding: 16px;
}
@media (max-width: 767px) {
  .p-service-page__icon {
    width: 52px;
    height: 52px;
    padding: 10px;
  }
}

.p-service-page__icon-label {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.85;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-service-page__icon-label {
    display: none;
  }
}

.p-service-page__body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-service-page__body {
    padding: 28px 28px;
  }
}
@media (max-width: 767px) {
  .p-service-page__body {
    padding: 24px 20px;
  }
}

.p-service-page__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-service-page__title {
    font-size: 17px;
  }
}

.p-service-page__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
}

.p-service-page__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  padding: 16px;
  background: #f7f9fc;
  border-radius: 6px;
}

.p-service-page__feature {
  width: 50%;
  font-size: 13px;
  color: #444;
  padding-left: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
.p-service-page__feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3b82f6;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-service-page__feature {
    width: 100%;
  }
}

.p-service-page__btn {
  color: #3b82f6;
  font-size: 14px;
  font-weight: 600;
  align-self: flex-end;
}
.p-service-page__btn:hover {
  color: #2563eb;
}

.p-price-lead {
  background: #f7f9fc;
}
.p-price-lead__text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: #555;
}

.p-price-main__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.p-price-main__head {
  background: #3b82f6;
  color: #fff;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-price-main__head {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.p-price-main__badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
}
.p-price-main__title {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-price-main__title {
    font-size: 18px;
  }
}
.p-price-main__desc {
  font-size: 14px;
  opacity: 0.85;
  margin-left: auto;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .p-price-main__desc {
    margin-left: 0;
  }
}

.p-price-table {
  width: 100%;
  border-collapse: collapse;
}
.p-price-table__row {
  display: grid;
  grid-template-columns: 220px 200px 1fr;
  border-bottom: 1px solid #e5e7eb;
}
.p-price-table__row:last-child {
  border-bottom: none;
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-price-table__row {
    grid-template-columns: 160px 180px 1fr;
  }
}
@media (max-width: 767px) {
  .p-price-table__row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}
.p-price-table__label {
  padding: 24px 40px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  border-right: 1px solid #e5e7eb;
  background: #f7f9fc;
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-price-table__label {
    padding: 20px 20px;
  }
}
@media (max-width: 767px) {
  .p-price-table__label {
    padding: 16px 20px;
    border-right: none;
    background: #f7f9fc;
    grid-column: 1;
  }
}
.p-price-table__price {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-right: 1px solid #e5e7eb;
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-price-table__price {
    padding: 20px 16px;
  }
}
@media (max-width: 767px) {
  .p-price-table__price {
    padding: 16px 20px;
    border-right: none;
    grid-column: 2;
    grid-row: 1;
  }
}
.p-price-table__price-value {
  font-family: "Lora", serif;
  font-size: 22px;
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-price-table__price-value {
    font-size: 20px;
  }
}
.p-price-table__price-unit {
  font-size: 12px;
  color: #888;
  margin-left: 4px;
}
.p-price-table__note {
  padding: 24px 32px;
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  line-height: 1.7;
}
@media (min-width: 767px) and (max-width: 1024px) {
  .p-price-table__note {
    padding: 20px 20px;
  }
}
@media (max-width: 767px) {
  .p-price-table__note {
    padding: 4px 20px 16px;
    grid-column: 1/-1;
    grid-row: 2;
    border-top: none;
  }
}

.p-price-sub {
  background: #f7f9fc;
}
.p-price-sub__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .p-price-sub__grid {
    grid-template-columns: 1fr;
  }
}
.p-price-sub__item {
  background: #fff;
  border-radius: 8px;
  border-top: 3px solid #3b82f6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .p-price-sub__item {
    padding: 24px 20px;
  }
}
.p-price-sub__title {
  font-size: 17px;
  font-weight: 700;
}
.p-price-sub__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.p-price-sub__price-value {
  font-family: "Lora", serif;
  font-size: 28px;
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
}
.p-price-sub__price-unit {
  font-size: 13px;
  color: #888;
}
.p-price-sub__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}
.p-price-sub__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.p-price-sub__tag {
  font-size: 12px;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

.p-price-notes {
  background: #f7f9fc;
  padding-top: 0;
}
.p-price-notes__list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-price-notes__item {
  font-size: 13px;
  color: #666;
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}
.p-price-notes__item::before {
  content: "※";
  position: absolute;
  left: 0;
}

.p-contact__inner {
  max-width: 680px;
  margin: 0 auto;
}
.p-contact__lead {
  margin-bottom: 32px;
  line-height: 1.8;
  text-align: center;
  color: #555;
}

.p-contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.p-contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-contact-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}
.p-contact-form__required {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #3b82f6;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.p-contact-form__optional {
  font-size: 11px;
  font-weight: 500;
  color: #999;
  border: 1px solid #e5e7eb;
  padding: 2px 8px;
  border-radius: 4px;
}
.p-contact-form__input, .p-contact-form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.p-contact-form__input::-moz-placeholder, .p-contact-form__textarea::-moz-placeholder {
  color: #bbb;
}
.p-contact-form__input::placeholder, .p-contact-form__textarea::placeholder {
  color: #bbb;
}
.p-contact-form__input:focus, .p-contact-form__textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
.p-contact-form__textarea {
  resize: vertical;
  min-height: 200px;
  line-height: 1.8;
}
.p-contact-form__note {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}
.p-contact-form__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.p-contact-form__btn {
  width: 280px;
  height: 56px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s ease;
  border: none;
}
@media (max-width: 767px) {
  .p-contact-form__btn {
    width: 100%;
  }
}
.p-contact-form__privacy {
  font-size: 13px;
  color: #888;
  text-align: center;
  line-height: 1.8;
}

.wpcf7-spinner {
  display: none;
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.p-faq__item {
  border: #e5e7eb 1px solid;
  border-radius: 6px;
  padding: 20px 24px;
  background: #fff;
}
.p-faq__item.is-open .p-faq__question::after {
  transform: translateY(-50%) rotate(270deg);
}

.p-faq__question {
  display: block;
  width: 100%;
  position: relative;
  padding-right: 30px;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-align: left;
  background: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
.p-faq__question::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "";
  width: 10px;
  height: 10px;
  -webkit-mask: url(../img/arrow.svg) no-repeat center center/contain;
          mask: url(../img/arrow.svg) no-repeat center center/contain;
  background-color: #3b82f6;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.p-faq__answer {
  display: none;
  overflow: hidden;
}
.p-faq__answer p {
  margin-top: 12px;
  line-height: 1.8;
  color: #555;
}
.p-faq__answer a {
  color: #3b82f6;
  text-decoration: underline;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 68px;
  }
}
.p-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-top: #e5e7eb 1px solid;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
}

.p-sticky-cta__button {
  display: block;
  width: 100%;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: #3b82f6;
  border-radius: 4px;
}

.p-single__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.p-single__cat {
  background: #3b82f6;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}

.p-single__date {
  font-size: 13px;
  color: #888;
}

.p-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
}

.p-single__thumb {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  max-width: 760px;
  margin: 0 auto;
}
.p-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.p-single__content {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.9;
  color: #333;
  font-size: 16px;
  text-align: center;
  margin-top: 32px;
}
.p-single__content > :first-child {
  margin-top: 0;
}
.p-single__content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #3b82f6;
}
@media (max-width: 767px) {
  .p-single__content h2 {
    font-size: 19px;
  }
}
.p-single__content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
}
.p-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}
.p-single__content ul,
.p-single__content ol {
  margin-top: 16px;
  padding-left: 1.4em;
}
.p-single__content ul li {
  list-style: disc;
}
.p-single__content ol li {
  list-style: decimal;
}
.p-single__content li + li {
  margin-top: 8px;
}
.p-single__content a {
  color: #3b82f6;
  margin-top: 32px;
  font-size: 16px;
}
.p-single__content strong {
  font-weight: 700;
}
.p-single__content blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 4px solid #3b82f6;
  background: #f7f9fc;
  color: #555;
}
.p-single__content .wp-block-paragraph {
  margin-top: 32px;
}

.p-single__nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 760px;
  margin: 64px auto 0;
  padding-top: 32px;
  border-top: #e5e7eb 1px solid;
}

.p-single__nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-single__nav-link:hover .p-single__nav-title {
  color: #3b82f6;
}
.p-single__nav-link.is-next {
  margin-left: auto;
  text-align: right;
}

.p-single__nav-label {
  font-size: 12px;
  color: #888;
}

.p-single__nav-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  transition: color 0.2s ease;
}

.p-404__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.p-404__text {
  line-height: 1.8;
  color: #555;
}

.p-404__button {
  display: inline-block;
  width: 240px;
  height: 56px;
  line-height: 56px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .p-404__button {
    width: 100%;
  }
}

.u-space {
  margin-left: 0.5em;
  margin-right: 0.5em;
}

@media (min-width: 1025px) {
  .u-pc-none {
    display: none;
  }
}

@media (max-width: 767px) {
  .u-sp-none {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 767px) {
  .u-sp-only {
    display: inline;
  }
}

@media (min-width: 767px) and (max-width: 1024px) {
  .u-tab-none {
    display: none;
  }
}