/**
 * Daiki-p main stylesheet
 */
:root {
  --color-brand: #8fc31f;
  --color-brand-dark: #7aad1a;
  --color-text: #676767;
  --color-text-muted: #999999;
  --color-text-dark: #444;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f5;
  --color-footer-bg: #2d2d2d;
  --color-border: #e5e7eb;
  --color-error: #ff0000;
  --container-max: 1425px;
  --header-height: 70px;
  --section-padding: 80px;
  --section-padding-mobile: 48px;
  --font-ja: Noto Sans JP, sans-serif;
  --font-en: Open Sans, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.8;
  background: var(--color-bg);
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--color-brand-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--color-brand);
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 1000px) {
  .container {
    padding: 0 90px;
  }
}
.container::before, .container::after {
  content: none;
  display: none;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 10px 16px;
  clip: auto;
  background: #ffffff;
  border: 2px solid var(--color-brand);
}
.mob-hide {
  display: none;
}
@media screen and (min-width: 690px) {
  .mob-hide {
    display: block;
  }
}
.mob-show {
  display: block;
}
@media screen and (min-width: 690px) {
  .mob-show {
    display: none;
  }
}
:root {
  --animate-duration: 750ms;
  --animate-easing: cubic-bezier(0.215, 0.61, 0.355, 1);
  --animate-distance: 30px;
  --animate-stagger: 200ms;
}
@keyframes daiki-fade-up {
  from {
    opacity: 0;
    transform: translateY(var(--animate-distance));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes daiki-split-up {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  html:not(.no-js) .home-hero__subtitle, html:not(.no-js) .home-hero__actions {
    opacity: 0;
    transform: translateY(var(--animate-distance));
  }
  .animate-fade-up:not(.is-visible) {
    opacity: 0;
    transform: translateY(var(--animate-distance));
  }
  .animate-fade-up.is-visible {
    animation: daiki-fade-up var(--animate-duration) var(--animate-easing) var(--animate-delay, 0ms) both;
  }
  .animate-split-line {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
  }
  .home-hero__title .animate-split-line, .section__title .animate-split-line {
    display: inline-block;
  }
  .animate-split-inner {
    display: inline-block;
    transform: translateY(110%);
  }
  .animate-split-line.is-visible .animate-split-inner {
    animation: daiki-split-up var(--animate-duration) var(--animate-easing) var(--animate-delay, 0ms) both;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (max-width: 768px) {
  :root {
    --animate-duration: 450ms;
    --animate-distance: 16px;
  }
  .post-list .animate-fade-up, .entry-content .animate-fade-up {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero__subtitle, .home-hero__actions, .animate-fade-up, .animate-split-inner {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  box-shadow: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 879px) {
  .site-header {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-height);
}
@media screen and (min-width: 1000px) {
  .site-header__inner {
    padding: 0 90px;
  }
}
.site-header__logo {
  flex: 0 0 auto;
}
.site-header__logo-link, .site-header .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.site-header__logo img, .site-header .custom-logo {
  display: block;
  height: 50px;
  width: auto;
}
.site-header__toggle {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 879px) {
  .site-header__toggle {
    display: flex;
  }
}
.site-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.site-header__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media screen and (max-width: 879px) {
  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 1001;
    display: none;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  .site-nav.is-open {
    display: block;
  }
}
.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 879px) {
  .site-nav__list {
    flex-direction: column;
    padding: 16px 20px 24px;
  }
}
.site-nav__list a {
  color: var(--color-text);
  font-weight: 700;
  font-size: 14px;
}
.site-nav__list a:hover {
  color: var(--color-brand);
}
.site-nav__list .current-menu-item > a, .site-nav__list .current_page_item > a {
  color: var(--color-brand-dark);
}
.home-hero {
  position: relative;
  padding: clamp(80px, 11vw, 180px) 0 clamp(120px, 15vw, 280px);
  color: #ffffff;
}
.home-hero__bg-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.home-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120%;
  background-position: var(--hero-bg-position, center 18%);
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .home-hero__bg {
    background-position: var(--hero-bg-position-mobile, var(--hero-bg-position, center 22%));
  }
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.home-hero__inner {
  position: relative;
  z-index: 4;
}
.home-hero__content {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .home-hero__content {
    max-width: 100%;
  }
}
.home-hero__title {
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .home-hero__title {
    margin-bottom: 16px;
    font-size: clamp(22px, 5.5vw, 28px);
  }
}
.home-hero__title span {
  display: inline-block;
}
.home-hero__subtitle {
  margin: 0 0 30px;
  max-width: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .home-hero__subtitle {
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
  }
}
.home-hero__actions {
  margin-top: 20px;
  overflow: visible;
}
.home-hero .shape-divider {
  z-index: 3;
}
.section {
  padding: var(--section-padding) 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile) 0;
  }
}
.section--philosophy {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.05);
  font-size: 14px;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  .section--philosophy {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }
}
.section--clients {
  padding-top: calc(100vw * 0.1);
  padding-bottom: calc(100vw * 0.1);
  font-size: 14px;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  .section--clients {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }
}
.section--clients .section__inner {
  position: relative;
  z-index: 1;
}
.section--clients .clients-grid {
  color: #ffffff;
}
.section--clients .clients-grid p {
  margin: 0 0 2px;
}
.section--clients .clients-grid__note {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.section--voice {
  padding: 0;
  font-size: 14px;
  line-height: 26px;
}
.section--news {
  padding-top: calc(100vw * 0.03);
  padding-bottom: calc(100vw * 0.03);
  background: #f4f4f4;
  font-size: 14px;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  .section--news {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }
}
.section--cta {
  background: var(--color-bg-alt);
}
.section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.section__label {
  margin: 0 0 16px;
  color: var(--color-brand);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.section__label--left {
  text-align: left;
}
.section__title {
  margin: 0 0 24px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.section__title span {
  display: inline-block;
}
.section__title--small {
  font-size: clamp(20px, 3vw, 28px);
}
.section__text {
  margin: 0 auto 32px;
  max-width: 800px;
  text-align: center;
}
.section__inner--center {
  text-align: center;
}
.section__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.section__actions--left {
  justify-content: flex-start;
}
.voice-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .voice-split {
    grid-template-columns: 1fr;
  }
}
.voice-split__media {
  position: relative;
  min-height: 320px;
}
@media screen and (max-width: 768px) {
  .voice-split__media {
    min-height: 240px;
  }
}
.voice-split__media .column-image-bg {
  background-position: center top;
}
.voice-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc((100vw - 180px) * 0.07);
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .voice-split__content {
    padding: var(--section-padding-mobile) 20px;
  }
}
@media screen and (min-width: 1000px) {
  .voice-split__content {
    padding: calc(1245px * 0.07);
  }
}
.column-image-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.column-image-bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--primary {
  background: var(--color-brand);
  color: #ffffff !important;
}
.btn--primary:hover {
  background: var(--color-brand-dark);
  color: #ffffff !important;
}
.btn--outline {
  border: 2px solid var(--color-brand-dark);
  color: var(--color-brand-dark) !important;
  background: transparent;
}
.btn--outline:hover {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #ffffff !important;
}
.btn--large {
  padding: 16px 32px;
  font-size: 15px;
}
.btn--footer {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  background: #ffffff;
  color: var(--color-brand-dark) !important;
  line-height: 45px;
  padding: 0 16px;
}
.btn--footer:hover {
  background: #f0f0f0;
  color: var(--color-brand) !important;
}
.btn-3d {
  --btn-3d-depth: 24px;
  --btn-3d-border: 2px;
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  overflow: visible;
}
.btn-3d.mob-hide {
  display: none;
}
@media screen and (min-width: 690px) {
  .btn-3d.mob-hide {
    display: inline-block;
  }
}
.btn-3d.mob-show {
  display: inline-block;
}
@media screen and (min-width: 690px) {
  .btn-3d.mob-show {
    display: none;
  }
}
.btn-3d__link {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
  perspective: 2000px;
  transform-style: preserve-3d;
}
.btn-3d__sizer {
  display: block;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
  box-sizing: border-box;
  white-space: nowrap;
  border: var(--btn-3d-border) solid transparent;
}
.btn-3d__inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  display: block;
}
.btn-3d__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  transform-origin: 50% 50% calc(-1 * var(--btn-3d-depth));
  transition: transform 0.25s cubic-bezier(0.2, 0.65, 0.4, 1);
  border-radius: 3px;
  box-sizing: border-box;
  white-space: nowrap;
  border-style: solid;
  border-width: var(--btn-3d-border);
}
.btn-3d__face--front {
  background: var(--color-brand);
  color: #ffffff;
  border-color: var(--color-brand);
  transform: rotateX(-90deg);
}
.btn-3d__face--back {
  background: transparent;
  color: var(--color-brand-dark);
  border-color: var(--color-brand-dark);
  transform: rotateX(0deg);
}
.btn-3d:hover .btn-3d__face--front, .btn-3d:focus-within .btn-3d__face--front {
  transform: rotateX(0deg);
}
.btn-3d:hover .btn-3d__face--back, .btn-3d:focus-within .btn-3d__face--back {
  transform: rotateX(90deg);
}
.btn-3d--jumbo {
  --btn-3d-depth: 39px;
  --btn-3d-border: 4px;
  font-size: 15px;
  line-height: 22px;
}
.btn-3d--jumbo .btn-3d__sizer, .btn-3d--jumbo .btn-3d__face {
  padding: 24px 52px;
}
@media screen and (max-width: 689px) {
  .btn-3d--jumbo {
    --btn-3d-depth: 26px;
    --btn-3d-border: 2px;
    font-size: 14px;
    line-height: 22px;
  }
  .btn-3d--jumbo .btn-3d__sizer, .btn-3d--jumbo .btn-3d__face {
    padding: 13px 30px;
  }
}
.btn-3d--medium {
  --btn-3d-depth: 24px;
  --btn-3d-border: 2px;
  font-size: 13px;
  line-height: 20px;
}
.btn-3d--medium .btn-3d__sizer, .btn-3d--medium .btn-3d__face {
  padding: 12px 32px;
}
.btn-3d--light .btn-3d__face--front {
  background: #ffffff;
  color: var(--color-text-dark);
  border-color: #ffffff;
}
.btn-3d--light .btn-3d__face--back {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
@media (prefers-reduced-motion: reduce) {
  .btn-3d__face {
    transition: none;
    transform: none !important;
  }
  .btn-3d__face--front {
    display: none;
  }
  .btn-3d__face--back {
    position: absolute;
  }
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}
.clients-grid p {
  margin: 0 0 8px;
}
.clients-grid__note {
  margin-top: 24px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 14px;
}
.post-list {
  display: grid;
  gap: 20px;
}
.post-list-item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.post-list-item__date {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-muted);
  font-size: 14px;
}
.post-list-item__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
}
.post-list-item__title a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.section--voice, .section--news {
  font-size: 14px;
  line-height: 26px;
  color: var(--color-text);
}
.section--voice .post_flex, .section--news .post_flex {
  margin-bottom: 20px;
}
.section--voice .topItemList, .section--news .topItemList {
  margin-bottom: 10px;
}
.section--voice .news_date, .section--news .news_date {
  display: inline-block;
  margin-right: 20px;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}
.section--voice .news_title, .section--news .news_title {
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
}
.section--voice .news_title a, .section--news .news_title a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.section--voice .topItemList {
  padding-left: 12px;
  border-left: 2px solid var(--color-border);
}
.section--voice .news_title {
  display: block;
}
.post_flex {
  margin-bottom: 20px;
}
.topItemList {
  margin-bottom: 10px;
}
.section--page:has(+ .section--related-posts) {
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .section--page:has(+ .section--related-posts) {
    padding-bottom: 40px;
  }
}
.section--related-posts {
  padding: 56px 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}
@media screen and (max-width: 768px) {
  .section--related-posts {
    padding: 40px 0;
  }
}
.related-posts__heading, .section--related-posts__heading {
  position: relative;
  margin: 0 0 32px;
  padding-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--color-text-dark);
}
.related-posts__heading::after, .section--related-posts__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 2px;
  background: var(--color-brand);
  opacity: 0.5;
  transform: translateX(-50%);
}
.related-posts__grid, .section--related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .related-posts__grid, .section--related-posts__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.related-posts__card, .section--related-posts__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.related-posts__card:hover, .section--related-posts__card:hover {
  border-color: rgba(143, 195, 31, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.related-posts__link, .section--related-posts__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.related-posts__label, .section--related-posts__label {
  display: block;
  padding: 20px 24px 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.related-posts__label a, .section--related-posts__label a {
  position: relative;
  color: var(--color-brand-dark);
  text-decoration: none;
}
.related-posts__label a:hover, .section--related-posts__label a:hover {
  color: var(--color-brand);
}
.related-posts__body, .section--related-posts__body {
  flex: 1;
  padding: 12px 24px 24px;
}
.related-posts__title, .section--related-posts__title {
  margin: 0;
  min-height: calc(15px * 1.6 * 2);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
.related-posts__title a, .section--related-posts__title a {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}
.related-posts__excerpt, .section--related-posts__excerpt {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.related-posts__question, .section--related-posts__question {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text);
}
.related-posts__meta, .section--related-posts__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-text-muted);
}
.related-posts__author a, .section--related-posts__author a {
  position: relative;
  z-index: 2;
  color: inherit;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}
.related-posts__author a:hover, .section--related-posts__author a:hover {
  color: var(--color-brand);
}
.related-posts__date, .section--related-posts__date {
  font-size: 12px;
  line-height: 1.4;
}
.page-header {
  padding: 60px 0 40px;
  background: var(--color-bg-alt);
  text-align: center;
}
.page-header__subtitle {
  margin: 0 0 8px;
  color: var(--color-text-muted);
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-header__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}
.page-hero {
  position: relative;
  padding: clamp(80px, 11vw, 180px) 0 clamp(120px, 15vw, 280px);
  color: #ffffff;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120%;
  background-position: var(--hero-bg-position, center 18%);
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .page-hero__bg {
    background-position: var(--hero-bg-position-mobile, var(--hero-bg-position, center 22%));
  }
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.001) 100%);
  opacity: 0.5;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
}
.page-hero__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 700;
}
.shape-divider {
  --shape-divider-height: 350px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--shape-divider-height);
  z-index: 3;
  transform: translateZ(0);
  pointer-events: none;
}
.shape-divider__svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100%;
}
.shape-divider__wave {
  fill: var(--color-bg);
}
.shape-divider__wave--back {
  opacity: 0.15;
}
.shape-divider__wave--mid {
  opacity: 0.3;
}
.shape-divider__wave--front {
  opacity: 1;
}
@media screen and (max-width: 999px) {
  .shape-divider__svg {
    height: 75%;
  }
}
@media screen and (max-width: 689px) {
  .shape-divider__svg {
    height: 33%;
  }
}
.content-area {
  max-width: 900px;
  margin: 0 auto;
}
.content-area--narrow {
  max-width: 720px;
}
.entry-content > *:first-child {
  margin-top: 0;
}
.entry-meta {
  margin-bottom: 24px;
  color: var(--color-text-muted);
  font-size: 14px;
}
.question {
  padding: 40px 0 20px;
  font-size: 20px;
  font-weight: 700;
}
.answer {
  font-weight: 400;
}
.security-policy {
  margin: 28px auto;
  padding: 40px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  color: var(--color-text);
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .security-policy {
    margin: 32px auto;
    padding: 24px 20px;
    border-radius: 12px;
  }
}
.security-policy__lead {
  margin: 0 0 28px;
  font-size: 16px;
}
.security-policy__list {
  margin: 0 0 32px;
  padding-left: 1.5em;
}
.security-policy__item {
  margin: 0 0 20px;
}
.security-policy__title {
  display: block;
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 768px) {
  .security-policy__title {
    font-size: 16px;
  }
}
.security-policy__text {
  margin: 0;
}
.security-policy__footer {
  margin-top: 32px;
  text-align: right;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .security-policy__footer {
    text-align: left;
  }
}
.security-policy__footer p {
  margin: 0;
}
.member-greeting {
  margin-bottom: 24px;
}
.member-greeting .logout {
  color: var(--color-text-muted);
}
.member-greeting .logout:hover {
  color: var(--color-brand);
}
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  overflow: hidden;
}
.tabs input:checked + .tab_item {
  background-color: var(--color-brand);
  color: #ffffff;
}
.tab_item {
  width: 50%;
  height: 50px;
  border-bottom: 3px solid var(--color-brand);
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  font-weight: 700;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.tab_item:hover {
  opacity: 0.75;
}
input[name="tab_item"] {
  display: none;
}
.tab_content {
  display: none;
  padding: 30px 30px 0;
  clear: both;
  overflow: hidden;
}
#payment:checked ~ #payment_content, #common:checked ~ #common_content {
  display: block;
}
.tab_content_description a {
  display: block;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-bottom: 1px solid #dddddd;
  transition: color 0.3s;
}
.tab_content_description a:hover {
  color: var(--color-brand);
}
.section--about {
  padding-top: calc(100vw * 0.03);
  padding-bottom: calc(100vw * 0.05);
  font-size: 14px;
  line-height: 26px;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .section--about {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }
}
.about-intro {
  width: 83.333%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.about-intro p {
  margin: 0 0 1em;
}
.about-intro__line {
  display: inline-block;
}
.about-section-heading, .about-heading {
  margin: 0 0 32px;
  font-size: 19px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  color: var(--color-text-dark);
}
.about-section-heading--light {
  color: #ffffff;
}
.about-section-heading--left {
  text-align: left;
}
.about-heading {
  margin-top: 56px;
  margin-bottom: 21px;
}
.about-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  width: 100%;
  margin: 0;
  padding-bottom: 5%;
}
@media screen and (max-width: 768px) {
  .about-table {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 0;
  }
}
.about-table__col {
  min-width: 0;
}
.about-row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 22px 0;
}
.about-row__label {
  flex: 0 0 30%;
  padding-right: 30px;
  color: var(--color-brand);
  font-weight: 400;
}
.about-row__value {
  flex: 1;
  min-width: 0;
  color: var(--color-text);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .about-row {
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
  }
  .about-row__label {
    flex: none;
    padding-right: 0;
  }
}
.section-parallax {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}
.section-parallax__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120%;
  background-position: var(--hero-bg-position, center 18%);
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .section-parallax__bg {
    background-position: var(--hero-bg-position-mobile, var(--hero-bg-position, center 22%));
  }
}
.section-parallax__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #444444 0%, #000000 100%);
  opacity: 0.5;
}
.section--clients-hero {
  padding: clamp(80px, 11vw, 180px) 0 clamp(120px, 15vw, 280px);
  font-size: 14px;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  .section--clients-hero {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }
}
.section--clients-hero .section__inner {
  position: relative;
  z-index: 1;
}
.section--clients-hero .clients-grid {
  color: #ffffff;
}
.section--clients-hero .clients-grid p {
  margin: 0 0 2px;
}
.section--clients-hero .clients-grid__note {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.section--cta-split {
  padding: 80px 0;
  background: #f4f4f4;
  font-size: 14px;
  line-height: 26px;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .section--cta-split {
    padding: var(--section-padding-mobile) 0;
  }
}
.cta-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 24px 40px;
}
@media screen and (max-width: 768px) {
  .cta-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.cta-split__title {
  margin: 0 0 15px;
  font-family: "Roboto Condensed", var(--font-ja);
  font-size: 30px;
  font-weight: 700;
  line-height: 33px;
  text-align: left;
  color: var(--color-text-dark);
}
@media screen and (max-width: 768px) {
  .cta-split__title {
    font-size: clamp(22px, 4vw, 30px);
    text-align: center;
  }
}
.cta-split__text {
  margin: 0;
  text-align: left;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .cta-split__text {
    text-align: center;
  }
}
.cta-split__actions {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .cta-split__actions {
    justify-content: center;
  }
}
.section--client {
  padding-top: calc(100vw * 0.03);
  padding-bottom: calc(100vw * 0.05);
  font-size: 14px;
  line-height: 26px;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .section--client {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }
}
.client-intro {
  width: 83.333%;
  max-width: 100%;
  margin: 0 auto 56px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .client-intro {
    width: 100%;
    margin-bottom: 40px;
  }
}
.client-intro__title {
  margin: 0 0 24px;
  font-size: 29px;
  font-weight: 700;
  line-height: 36px;
  color: var(--color-text-dark);
}
@media screen and (max-width: 768px) {
  .client-intro__title {
    font-size: 24px;
    line-height: 30px;
  }
}
.client-intro__lead {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}
.client-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
}
@media screen and (max-width: 768px) {
  .client-features {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.client-feature__title {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-text-dark);
}
@media screen and (max-width: 768px) {
  .client-feature__title {
    font-size: 17px;
    line-height: 26px;
  }
}
.client-feature__list {
  margin: 0;
  padding-left: 1.2em;
}
.client-feature__list li {
  margin-bottom: 8px;
}
.client-feature__list li:last-child {
  margin-bottom: 0;
}
.client-feature__note {
  color: var(--color-text-muted);
  font-size: 13px;
}
.section--contact {
  padding-top: calc(100vw * 0.02);
  padding-bottom: calc(100vw * 0.05);
  font-size: 14px;
  line-height: 26px;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .section--contact {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }
}
.hissu {
  background: var(--color-error);
  font-size: 0.5em !important;
  color: #ffffff !important;
  margin-left: 7px;
  padding: 1px 3px;
  border-radius: 3px;
}
.wpcf7-not-valid-tip {
  box-shadow: none !important;
  color: var(--color-error) !important;
}
input.wpcf7-form-control.wpcf7-submit {
  display: block;
  margin: 40px auto 0;
  width: 60%;
  background: var(--color-brand);
  border: 0;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
input.wpcf7-form-control.wpcf7-submit:hover {
  background: #a6de2d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(143, 195, 31, 0.35);
}
input.wpcf7-form-control.wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(143, 195, 31, 0.25);
}
input.wpcf7-form-control.wpcf7-submit:focus-visible {
  outline: 2px solid var(--color-brand-dark);
  outline-offset: 2px;
}
input.wpcf7-form-control.wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
@media (prefers-reduced-motion: reduce) {
  input.wpcf7-form-control.wpcf7-submit {
    transition: background 0.2s ease;
  }
  input.wpcf7-form-control.wpcf7-submit:hover, input.wpcf7-form-control.wpcf7-submit:active {
    transform: none;
    box-shadow: none;
  }
}
.wpcf7-form > p {
  margin: 0 0 20px;
}
.wpcf7-form > p:first-child {
  margin-bottom: 32px;
  text-align: center;
  line-height: 2;
}
.wpcf7-form label {
  display: block;
  font-weight: 600;
  color: var(--color-text-dark);
}
.wpcf7-form .wpcf7-checkbox, .wpcf7-form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 8px;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item, .wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item label, .wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  cursor: pointer;
}
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form input[type="date"], .wpcf7-form select, .wpcf7-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  background: #ffffff;
}
.wpcf7-form textarea {
  min-height: 180px;
  resize: vertical;
}
.site-footer {
  background: var(--color-footer-bg);
  color: #ffffff;
}
.site-footer a {
  color: #ffffff;
}
.site-footer a:hover {
  color: var(--color-brand);
}
.site-footer__widgets {
  padding: 60px 0 40px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.site-footer__grid.container::before, .site-footer__grid.container::after {
  content: none;
  display: none;
}
@media screen and (max-width: 999px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 999px) {
  .site-footer__col--links {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  .site-footer__col--cta {
    margin-top: 24px;
  }
}
@media screen and (max-width: 999px) {
  .site-footer__col--info {
    text-align: center;
  }
}
@media screen and (max-width: 999px) {
  .site-footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
}
.site-footer__company {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}
.site-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__menu li {
  margin-bottom: 8px;
}
.site-footer__cta .btn-3d {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.site-footer__cta .btn-3d__link {
  width: 100%;
}
.site-footer__cta .btn-3d__sizer, .site-footer__cta .btn-3d__face {
  width: 100%;
}
.site-footer__security-badge {
  display: block;
  margin-top: 16px;
}
@media screen and (max-width: 999px) {
  .site-footer__security-badge {
    margin-left: auto;
    margin-right: auto;
  }
}
.site-footer__security-link {
  margin: 16px 0 0;
  text-align: center;
}
.site-footer__security-link a {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
}
.site-footer__copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer__copyright p {
  margin: 0;
}
.navigation.pagination {
  margin-top: 40px;
  text-align: center;
}
.nav-links {
  display: inline-flex;
  gap: 8px;
}
.nav-links a, .nav-links span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
}
.nav-links .current {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #ffffff;
}
