body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  font-size: 15px;
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

img {
  width: 100%;
}

.Forsp {
  display: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
  font-weight: bold;
}
a:hover {
  opacity: 0.8;
}
section {
  padding: 120px 0;
}
.inner_box {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 60px;
}

h3,
h4 {
  font-weight: 500;
}

/* ===== Section Heading ===== */
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 80px;
  width: fit-content;
}
.section-heading-en {
  display: block;
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 64px;
  background: linear-gradient(
    141deg,
    rgb(38, 51, 5) 0%,
    rgb(102, 135, 12) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0;
}
.section-heading h2 {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 24px;
  background: linear-gradient(
    176deg,
    rgb(38, 51, 5) 0%,
    rgb(102, 135, 12) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  margin-bottom: 16px;
  order: -1;
}
.section-heading-line {
  display: block;
  height: 2px;
  margin-top: 4px;
}
.section-heading-line--green {
  width: 100%;
  background: #6f9110;
}

/* ===== Header ===== */
header {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}
.header-contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 12px;
}
.header-contents .header-logo {
  width: 230px;
  margin-bottom: -10px;
}

.g-nav-menu .circle_btn {
  width: fit-content;
  padding: 16px 24px;
  border-radius: 4px;
}
.g-nav-menu .circle_btn a {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
.g-nav-menu .consultation {
  background: #6f9110;
}

header .g-nav-menu {
  display: flex;
  width: 710px;
  margin: 0 auto;
  justify-content: space-around;
  font-size: 14px;
  align-items: center;
  font-weight: bold;
}

/* ===== FV ===== */
#fv {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  box-sizing: border-box;
  margin-top: 80px;
  padding: 0;
}

/* Green overlay */
.fv-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #263305, #66870c);
  z-index: 3;
  transition: opacity 0.8s ease;
}
.fv-gradient.hide {
  opacity: 0;
  pointer-events: none;
}

/* 3-pane container */
.fv-panes {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 4;
}

/* Left pane */
.fv-left {
  display: block;
  position: relative;
  width: 35%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.fv-left.show {
  opacity: 1;
  transform: translateX(0);
}
.fv-left-img {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ccc url("../img/fv_left.png") center center / cover no-repeat;
  transform: scale(1.2);
  transform-origin: center center;
}
.fv-left-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/fv_left_hover.png") center center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.fv-left:hover .fv-left-img::after {
  opacity: 1;
}
.fv-left-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: underline;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.fv-left-cta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.fv-left:hover .fv-left-cta {
  opacity: 1;
}
.fv-left-img.zoom {
  animation: fv-zoom 30s ease-out forwards;
}
@keyframes fv-zoom {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
.fv-label {
  position: absolute;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.8s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  gap: 8px;
}
.fv-label.show {
  opacity: 1;
}
.fv-label-en {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(152deg, #263305, #66870c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.fv-label-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.fv-label-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(125deg, #263305, #66870c);
}
.fv-label-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(125deg, #263305, #66870c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.fv-label-company {
  left: 0;
  top: 0;
  width: 35%;
  border-right: 3px solid #263305;
  border-bottom: 3px solid #263305;
  box-sizing: border-box;
}
.fv-label-freelance {
  right: 0;
  bottom: 0;
  width: 35%;
  border-left: 3px solid #263305;
  border-top: 3px solid #263305;
  box-sizing: border-box;
}

/* Center pane */
.fv-center-pane {
  position: relative;
  width: 30%;
  height: 100%;
  background: linear-gradient(120deg, #263305, #66870c);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.fv-center {
  display: flex;
  flex-direction: row-reverse;
  gap: 24px;
  position: relative;
  z-index: 4;
}
.fv-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.fv-char {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 1px solid #fff;
  color: #fff;
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.fv-char.show {
  opacity: 1;
  transform: translateY(0);
}
.fv-char-knockout {
  background:
    linear-gradient(108.95deg, #263305 0%, #66870c 100%),
    linear-gradient(#fff, #fff);
  -webkit-background-clip: text, padding-box;
  background-clip: text, padding-box;
  -webkit-text-fill-color: transparent;
  border: 1px solid #6f9110;
}
.fv-char-noborder {
  border: none;
}
.fv-char-plain {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  color: #fff;
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  writing-mode: vertical-rl;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(10px);
  letter-spacing: 0.4em;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.fv-char-plain.show {
  opacity: 1;
  transform: translateY(0);
}

/* Column offset - stagger columns vertically like Figma */
.fv-col-1 {
  margin-top: 0;
}
.fv-col-2 {
  margin-top: 70px;
}
.fv-col-3 {
  margin-top: 140px;
}

/* Right pane */
.fv-right {
  display: block;
  position: relative;
  width: 35%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.fv-right.show {
  opacity: 1;
  transform: translateX(0);
}
.fv-right-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url("../img/fv_right_hover.png") center center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.fv-right:hover .fv-right-hover {
  opacity: 1;
}
.fv-right-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: underline;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.fv-right:hover .fv-right-cta {
  opacity: 1;
}
.fv-right-scroll {
  display: flex;
  gap: 16px;
  height: 100%;
  justify-content: center;
  padding: 0 16px;
}
.fv-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 48%;
  max-width: 220px;
  flex-shrink: 0;
}
.fv-right-col-left {
  animation: fv-scroll-up 25s linear infinite;
}
.fv-right-col-right {
  margin-top: -150px;
  animation: fv-scroll-down 25s linear infinite;
}
@keyframes fv-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-50% - 8px));
  }
}
@keyframes fv-scroll-down {
  0% {
    transform: translateY(calc(-50% - 8px));
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fv-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 4px));
  }
}
@keyframes fv-marquee-reverse {
  0% {
    transform: translateX(calc(-50% - 4px));
  }
  100% {
    transform: translateX(0);
  }
}
.fv-thumb {
  width: 100%;
  aspect-ratio: 220 / 300;
  background: #ccc center / cover no-repeat;
  border: 1px solid #fff;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* ===== Who We Are ===== */
#whoweare {
  background: #fff url(../img/who_we_are_bg.png) center / cover no-repeat;
  overflow: hidden;
  position: relative;
}
.whoweare-inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}
.whoweare-hero {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
}
.whoweare-hero-img {
  width: 100%;
  height: 100%;
  background: #ddd url(../img/who_we_are_eyecatch.png) center / cover no-repeat;
  background-size: cover;
  background-position: center;
}
.whoweare-hero-overlay {
  position: absolute;
  bottom: -12px;
  left: 0;
  background: linear-gradient(
    157.876deg,
    rgba(38, 51, 5, 0.8) 0%,
    rgba(102, 135, 12, 0.8) 100%
  );
}
.whoweare-hero-title {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 105px;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}
.whoweare-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}
.whoweare-heading {
  width: 100%;
}
.whoweare-heading p {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 32px;
  color: #131c00;
  line-height: 1.8;
  margin: 0;
}
.gradient-text {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 48px;
  background: linear-gradient(
    167.029deg,
    rgb(38, 51, 5) 0%,
    rgb(102, 135, 12) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  text-decoration-color: #6f9110;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}
.whoweare-desc {
  width: 100%;
}
.whoweare-desc p {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #464646;
  line-height: 1.6;
}
.whoweare-cta {
  text-align: right;
}
.whoweare-cta a {
  font-size: 16px;
  color: #131c00;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #131c00;
  padding-bottom: 8px;
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 32px;
  background: #131c00;
  color: #fff;
  border-radius: 2px;
  font-size: 18px;
}

/* ===== Service ===== */
#service {
  background: #fff;
  position: relative;
}
#service::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  height: 220px;
  background: url("../img/opacity_logo.png") no-repeat center / contain;
  z-index: 0;
  pointer-events: none;
}
#service::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 160px;
  height: 180px;
  background: url("../img/opacity_logo.png") no-repeat center / contain;
  z-index: 0;
  pointer-events: none;
}
#service .section-heading h2 {
  margin-bottom: 0;
}
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 120px;
}
.service-tab {
  width: 520px;
  padding: 0 0 16px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #dcdcdc;
  background: none;
  border: none;
  border-bottom: 2px solid #dcdcdc;
  cursor: pointer;
  text-align: center;
  transition: color 0.3s;
}
.service-tab.active {
  font-weight: 800;
  color: #6f9110;
  border-bottom: 2px solid #6f9110;
}
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 160px;
}
.service-card {
  display: flex;
  gap: 64px;
  align-items: center;
}
.service-card.reverse {
  flex-direction: row-reverse;
}
.service-card-img {
  width: 600px;
  min-width: 600px;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%;
  height: auto;
  display: block;
}
.service-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card-catch {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 40px;
  color: #6f9110;
  line-height: 1.5;
  margin-bottom: 24px;
}
.service-card-text h3 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #131c00;
  line-height: 1.5;
}
.service-card-desc {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #131c00;
  line-height: 1.6;
}
.service-card-cta {
  margin-top: 24px;
  text-align: right;
}
.service-card-cta a {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  color: #131c00;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #131c00;
  padding-bottom: 8px;
}
/* Coming Soon Card */
.service-card-coming {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
.service-card-coming h3 {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #131c00;
  line-height: 1.5;
  white-space: nowrap;
}
.service-coming-img {
  width: 60%;
  max-width: 600px;
  flex-shrink: 1;
}
.service-coming-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Case Study ===== */
#case {
  background: linear-gradient(
    126.467deg,
    rgb(137, 177, 25) 0%,
    rgb(111, 145, 16) 99.982%
  );
  position: relative;
  overflow: hidden;
}
#case::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/case_study_bg.png) center / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
#case > .inner_box {
  position: relative;
  z-index: 1;
}
#case .section-heading h2 {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  color: #fff;
}
#case .section-heading-en {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  color: #fff;
}
#case .section-heading-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin-top: 4px;
}
.case-cta {
  text-align: right;
  margin-top: 40px;
}
.case-cta a {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
}
.btn-arrow-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  background: #fff;
  color: #6f9110;
  font-size: 18px;
  border-radius: 2px;
}
.case-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.case-card {
  flex: 0 0 calc((100% - 80px) / 3);
  max-width: calc((100% - 80px) / 3);
  min-width: 280px;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  aspect-ratio: 320 / 418;
}
.case-card-img {
  width: 100%;
  flex: 0 0 47%;
  background: #eaeaea center / cover no-repeat;
}
.case-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-card-body .case-card-btn {
  margin-top: 32px;
}
.case-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #464646;
  font-weight: 500;
}
.case-card-icon {
  width: 16px;
  height: 16px;
  background: #464646;
  display: inline-block;
  flex-shrink: 0;
}
.case-card-divider {
  width: 1px;
  height: 16px;
  background: #464646;
  display: inline-block;
}
.case-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #131c00;
  line-height: 1.5;
}
.case-card-btn {
  text-align: right;
}
.case-card-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  background: #131c00;
  color: #fff;
  font-size: 18px;
  border-radius: 2px;
}

/* ===== Clients ===== */
#clients {
  background: #fff;
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
}
#clients::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 180px;
  height: 200px;
  background: url("../img/opacity_logo.png") no-repeat center / contain;
  z-index: 0;
  pointer-events: none;
}
.clients-heading {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 40px;
  background: linear-gradient(
    174deg,
    rgb(38, 51, 5) 0%,
    rgb(102, 135, 12) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
}
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin: 0 auto;
  justify-content: flex-start;
  align-items: center;
}
.client-logo {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo img {
  height: 70px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

/* ===== News ===== */
#news {
  position: relative;
  background: #fff;
}
#news::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 160px;
  height: 180px;
  background: url("../img/opacity_logo.png") no-repeat center / contain;
  z-index: 0;
  pointer-events: none;
}
#news > .inner_box {
}
#news .section-heading {
  width: fit-content;
}
.news-list {
  width: 100%;
}
.news-cta {
  text-align: right;
  margin-top: 40px;
}
.news-cta a {
  font-size: 16px;
  color: #131c00;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #131c00;
  padding-bottom: 8px;
}
.news-item {
  border-bottom: 1px solid #eaeaea;
}
.news-item a {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 16px 0;
  font-weight: 500;
}
.news-date {
  font-size: 14px;
  color: #464646;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-title {
  font-size: 16px;
  color: #131c00;
  flex: 1;
  font-weight: 600;
}
.news-arrow {
  font-size: 20px;
  color: #464646;
  flex-shrink: 0;
}

/* ===== Marquee ===== */
#marquee {
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.marquee-row {
  height: 120px;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  align-items: center;
  position: absolute;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track.reverse {
  animation: marquee-scroll-reverse 30s linear infinite;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.marquee-set {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 16px;
}
.marquee-photo {
  width: 166px;
  height: 100px;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
}
.marquee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.marquee-text {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 80px;
  color: #6f9110;
  line-height: 1.5;
  white-space: nowrap;
}
.marquee-text.accent {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  background: linear-gradient(180deg, #9fe017 0%, #87bd17 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Footer ===== */
footer {
  background: linear-gradient(
    109deg,
    rgb(38, 51, 5) 0%,
    rgb(102, 135, 12) 100%
  );
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 80px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-logo {
  width: 209px;
}
.footer-company p {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
.footer-tel {
  margin-top: 16px !important;
  color: #fff;
}
.footer-tel a {
  color: #fff;
}
.footer-nav {
  display: flex;
  gap: 80px;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-nav-links li a {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: underline;
}
.footer-services {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-service-heading {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.footer-service-group ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-service-group ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}
.footer-catchcopy {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  min-height: 338px;
}
.footer-catch-ja {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}
.footer-catch-en {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin-top: 16px;
  font-style: normal;
}
.footer-catchcopy-photos {
  position: relative;
  width: 500px;
  height: 338px;
}
.footer-photo {
  width: 140px;
  height: 168px;
  overflow: hidden;
  border: 2px solid #fff;
  position: absolute;
}
.footer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-photo-1 {
  left: 0;
  top: 0;
}
.footer-photo-2 {
  left: 168px;
  top: 170px;
}
.footer-photo-3 {
  left: 336px;
  top: 48px;
}
.footer-isms {
  margin-top: 32px;
}
.footer-isms-heading {
  font-size: 14px;
  color: #fff;
  margin-bottom: 24px;
}
.footer-isms-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-isms-logos > img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.footer-isms-logo-item {
  width: 100px;
}
.footer-isms-logo-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.footer-isms-logo-caption {
  font-size: 10px;
  color: #fff;
  line-height: 1.5;
  margin-top: 16px;
}
.footer-isms-text {
  font-size: 12px;
  color: #fff;
  line-height: 1.8;
  max-width: 448px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
}
.footer-legal a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}
footer small {
  text-align: center;
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 800;
}
.footer-watermark {
  position: absolute;
  bottom: 0;
  left: 80px;
  pointer-events: none;
  line-height: 0;
}
.footer-watermark img {
  width: 1120px;
  height: auto;
}

/* ===== Tablet (751px - 1300px) ===== */
@media screen and (min-width: 751px) and (max-width: 1300px) {
  /* FV labels */
  .fv-label-en {
    font-size: clamp(36px, 5vw, 70px);
  }
  .fv-label-ja {
    font-size: clamp(14px, 2vw, 24px);
  }
  .fv-label {
    padding: 8px 14px;
    gap: 6px;
  }

  /* FV center text */
  .fv-char {
    width: clamp(40px, 5.5vw, 70px);
    height: clamp(40px, 5.5vw, 70px);
    font-size: clamp(24px, 3.5vw, 40px);
  }
  .fv-char-plain {
    font-size: clamp(20px, 3vw, 36px);
  }
  .fv-col {
    gap: clamp(4px, 0.5vw, 8px);
  }
  .fv-center {
    gap: clamp(8px, 1.5vw, 24px);
  }

  /* FV CTA text */
  .fv-left-cta,
  .fv-right-cta {
    font-size: clamp(12px, 1.4vw, 16px);
  }

  /* Service cards */
  .service-card {
    gap: 32px;
  }
  .service-card-img {
    width: 50%;
    min-width: auto;
  }
  .service-card-catch {
    font-size: clamp(24px, 3vw, 40px);
    margin-bottom: 16px;
  }
  .service-card-text h3 {
    font-size: clamp(18px, 2vw, 24px);
  }
  .service-card-desc {
    font-size: 14px;
  }

  /* Footer */
  .footer-top {
    padding: 0 40px;
  }
  .footer-nav {
    gap: 40px;
  }
  .footer-catchcopy {
    padding: 0 40px;
  }
  .footer-catch-ja {
    font-size: clamp(28px, 4vw, 48px);
  }
  .footer-catchcopy-photos {
    width: clamp(280px, 35vw, 500px);
    height: clamp(200px, 25vw, 338px);
  }
  .footer-photo {
    width: clamp(80px, 11vw, 140px);
    height: clamp(96px, 13vw, 168px);
  }
  .footer-photo-2 {
    left: clamp(96px, 13vw, 168px);
    top: clamp(100px, 13vw, 170px);
  }
  .footer-photo-3 {
    left: clamp(192px, 26vw, 336px);
    top: clamp(28px, 4vw, 48px);
  }

  /* Section heading */
  .section-heading-en {
    font-size: clamp(40px, 5vw, 64px);
  }

  /* Footer */
  footer {
    padding: 80px 40px 60px;
  }
  .footer-nav {
    gap: 40px;
  }
  .footer-service-heading {
    font-size: 20px;
  }

  /* Header */
  .g-nav-menu li {
    font-size: 14px;
  }
  .g-nav-menu {
    gap: 20px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
}

/* ===== Responsive ===== */
@media screen and (max-width: 750px) {
  section {
    padding: 70px 0;
    overflow: hidden;
  }
  .Forpc {
    display: none !important;
  }
  .Forsp {
    display: block !important;
  }

  /* SP Header */
  .header-sp {
    position: fixed;
    background: rgba(255, 255, 255, 0.699);
    box-shadow: inherit;
  }
  .header-sp .cta_area {
    box-shadow: none;
  }
  .header-sp .cta_area .cta_area_box div a {
    width: 90%;
  }
  .header-sp .header__inner {
    width: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff57;
    padding: 5px 10px 2px;
  }
  .header-sp .header-logo {
    width: 170px;
  }
  .header-sp .header__menu {
    position: fixed;
    z-index: 50000;
    top: 50px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    right: 0;
  }
  .header-sp .header__inner.active .header__menu {
    opacity: 1;
    visibility: visible;
    position: absolute;
    top: 0;
    z-index: -1;
    height: fit-content;
    padding: 5rem 10px;
    width: 80%;
  }
  .header-sp .menu__item {
    border-bottom: 1px solid #7fae55;
  }
  .header-sp .menu__link {
    display: block;
    padding: 13px 20px;
    color: #7fae55;
    font-size: 15px;
    font-weight: bold;
  }
  .header-sp .header__menu-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    width: 30px;
    height: 38px;
    cursor: pointer;
  }
  .header-sp .header__menu-btn span:nth-child(-n + 3) {
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: #7fae55;
  }
  .header-sp .header__menu-btn span:nth-child(1) {
    top: 10px;
    transition: all 0.2s ease;
  }
  .header-sp .header__inner.active .header__menu-btn span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }
  .header-sp .header__menu-btn span:nth-child(2) {
    top: 18px;
    transition: opacity 0.2s ease;
  }
  .header-sp .header__inner.active .header__menu-btn span:nth-child(2) {
    opacity: 0;
  }
  .header-sp .header__menu-btn span:nth-child(3) {
    top: 26px;
    transition: all 0.2s ease;
  }
  .header-sp .header__inner.active .header__menu-btn span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }
  .header-sp .header__menu-btn span:nth-child(4) {
    font-size: 10px;
    color: #f5675b;
  }
  .inner_box {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .cta_area .cta_area_box {
    display: block;
    width: 100%;
  }
  .cta_area .cta_area_box .consultation_box a {
    margin-bottom: 20px;
    background: #6f9110;
    width: 90% !important;
    padding: 16px 24px;
    border-radius: 4px;
    color: #fff;
    display: block;
    margin: 0 auto;
  }
  .header-cta {
    text-align: center;
  }
  .header-cta .consultation_box a {
    background: #6f9110;
    border-radius: 4px;
  }

  /* SP FV */
  #fv {
    height: calc(100svh - 57.8px);
    margin-top: 57.8px;
  }
  .fv-panes {
    flex-direction: column;
  }
  .fv-left {
    order: 3;
  }
  .fv-center-pane {
    order: 2;
  }
  .fv-right {
    order: 1;
    width: 100%;
    height: 25%;
  }
  .fv-right-scroll {
    flex-direction: column;
    height: 100%;
    padding: 4px 0;
    gap: 4px;
  }
  .fv-right-col {
    flex-direction: row;
    gap: 8px;
    width: auto;
    max-width: none;
    height: calc(50% - 2px);
    margin-top: 0;
  }
  .fv-right-col-left {
    animation: fv-marquee 20s linear infinite;
  }
  .fv-right-col-right {
    margin-top: 0;
    animation: fv-marquee-reverse 20s linear infinite;
  }
  .fv-thumb {
    width: auto;
    height: 100%;
    aspect-ratio: 375 / 275;
  }
  .fv-center-pane {
    width: 100%;
    height: 45%;
  }
  .fv-left {
    width: 100%;
    height: 30%;
  }
  .fv-left-img {
    background-image: url("../img/fv_bottom.png");
  }
  .fv-label-en {
    font-size: 32px;
  }
  .fv-label-ja {
    font-size: 14px;
  }
  .fv-label-line {
    height: 2px;
  }
  .fv-label {
    padding: 6px 12px;
    gap: 4px;
  }
  .fv-label-sub {
    gap: 6px;
  }
  .fv-label-company {
    width: auto;
    left: auto;
    right: 0;
    bottom: 0;
    top: auto;
    border-right: none;
    border-bottom: none;
    border-left: 2px solid #263305;
    border-top: 2px solid #263305;
  }
  .fv-label-freelance {
    width: auto;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    border-left: none;
    border-top: none;
    border-right: 2px solid #263305;
    border-bottom: 2px solid #263305;
  }
  /* SP: horizontal text layout */
  .fv-center {
    flex-direction: column;
    gap: 8px;
  }
  .fv-col {
    flex-direction: row;
    align-items: center;
  }
  .fv-col-1,
  .fv-col-2,
  .fv-col-3 {
    margin-top: 0;
  }
  .fv-char {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .fv-char-plain {
    width: auto;
    font-size: 18px;
    writing-mode: horizontal-tb;
    padding: 0 4px;
    letter-spacing: 0.1em;
  }

  /* SP Section Heading */
  .section-heading {
    margin-bottom: 40px;
  }
  .section-heading h2 {
    font-size: 16px;
  }
  .section-heading-en {
    font-size: 36px;
  }

  /* SP Who We Are */
  .whoweare-inner {
    width: 90%;
  }
  .whoweare-hero {
    height: 240px;
  }
  .whoweare-hero-overlay {
    width: 100%;
    height: 60px;
  }
  .whoweare-hero-title {
    font-size: 32px;
  }
  .whoweare-heading p {
    font-size: 20px;
  }
  .gradient-text {
    font-size: 28px;
  }
  .whoweare-desc p br {
    display: none;
  }

  /* SP Service */
  .service-tabs {
    margin-bottom: 32px;
  }
  .service-tab {
    padding: 12px 20px;
    font-size: 14px;
  }
  .service-cards {
    gap: 40px;
  }
  .service-card,
  .service-card.reverse {
    flex-direction: column;
    gap: 20px;
  }
  .service-card-img {
    width: 100%;
    min-width: unset;
  }
  .service-card-catch {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .service-card-text {
    gap: 10px;
  }
  .service-card-text h3 {
    font-size: 18px;
  }
  .service-card-desc {
    font-size: 14px;
  }
  .service-card-cta {
    margin-top: 8px;
  }
  .service-card-coming {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .service-card-coming h3 {
    white-space: normal;
  }
  .service-coming-img {
    width: 100%;
    min-width: unset;
  }

  /* SP Decorative Logos */
  #service::before {
    width: 100px;
    height: 110px;
    top: 10px;
    right: 10px;
  }
  #service::after {
    display: none;
  }
  #clients::before {
    width: 90px;
    height: 100px;
    top: 10px;
    right: 10px;
  }
  #news::before {
    width: 80px;
    height: 90px;
    bottom: 10px;
    left: 10px;
  }

  /* SP Clients */
  #clients {
    padding-top: 70px;
  }
  .clients-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .client-logo {
    height: 45px;
  }
  .client-logo img {
    height: 45px;
  }
  .clients-grid {
    gap: 12px;
  }

  /* SP Case Study */
  .case-cards {
    gap: 24px;
    justify-content: center;
  }
  .case-card {
    flex: none;
    max-width: 320px;
    width: 100%;
    min-width: 0;
  }

  /* SP News */
  .news-item a {
    gap: 16px;
  }
  .news-date {
    font-size: 12px;
  }
  .news-title {
    font-size: 14px;
  }

  /* SP Marquee */
  #marquee {
    padding: 60px 0;
    gap: 20px;
  }
  .marquee-row {
    height: 60px;
  }
  .marquee-text {
    font-size: 40px;
  }
  .marquee-photo {
    width: 83px;
    height: 50px;
  }

  /* SP Footer */
  footer {
    padding: 40px 20px;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
  .footer-logo {
    width: 170px;
  }
  .footer-catchcopy {
    flex-direction: column;
    gap: 16px;
    min-height: auto;
    margin-bottom: 24px;
  }
  .footer-catch-ja {
    font-size: 28px;
  }
  .footer-catchcopy-photos {
    width: 100%;
    height: 200px;
  }
  .footer-photo {
    width: 100px;
    height: 120px;
  }
  .footer-photo-1 {
    left: 0;
    top: 0;
  }
  .footer-photo-2 {
    left: 120px;
    top: 80px;
  }
  .footer-photo-3 {
    left: 240px;
    top: 20px;
  }
  .footer-isms {
    max-width: 100%;
    margin-top: 0;
  }
  .footer-isms-logos {
    gap: 10px;
  }
  .footer-isms-logos > img {
    width: 80px;
    height: 80px;
  }
  .footer-isms-logo-item {
    width: 80px;
  }
  .footer-isms-logo-item img {
    width: 80px;
    height: 80px;
  }
  .footer-legal {
    gap: 20px;
  }
  .footer-watermark {
    font-size: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-watermark img {
    width: 100vw;
  }
}

/* ===== About Page (Who We Are) ===== */
#about-hero {
  background: linear-gradient(108deg, #f6f9f7 0%, #e9f0e8 100%);
  padding: 0;
  height: 496px;
  position: relative;
}
.about-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 60px;
  position: relative;
  height: 100%;
}
.about-hero-title {
  position: absolute;
  top: 176px;
  left: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-hero-title h2 {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 24px;
  background: linear-gradient(
    176deg,
    rgb(38, 51, 5) 0%,
    rgb(102, 135, 12) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  order: -1;
}
.about-hero-title-en {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 64px;
  background: linear-gradient(
    155deg,
    rgb(38, 51, 5) 0%,
    rgb(102, 135, 12) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-title-line {
  display: block;
  width: 394px;
  height: 2px;
  background: linear-gradient(
    155deg,
    rgb(38, 51, 5) 0%,
    rgb(102, 135, 12) 100%
  );
}

/* About Tabs */
.about-tabs {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1040px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.about-tab {
  flex: 1;
  max-width: 347px;
  padding: 0 0 16px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #dcdcdc;
  background: none;
  border: none;
  border-bottom: 2px solid #dcdcdc;
  cursor: pointer;
  text-align: center;
  transition: color 0.3s;
}
.about-tab.active {
  font-weight: 800;
  color: #6f9110;
  border-bottom: 2px solid #6f9110;
}

/* About Section Content */
.about-section {
  padding: 80px 0 120px;
  background: #fff;
}
.about-section-inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 60px;
}

/* About Block */
.about-block {
  margin-bottom: 80px;
}
.about-block:last-child {
  margin-bottom: 0;
}
.about-block-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.about-block-num {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #131c00;
  line-height: 1.5;
}
.about-block-line {
  display: block;
  width: 20px;
  height: 1px;
  background: #131c00;
}
.about-block-title {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #131c00;
  line-height: 1;
  margin-bottom: 40px;
}
.about-block-title-ja {
  font-weight: 800;
}

/* Hero Image */
.about-hero-img {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
}
.about-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Catch Copy */
.about-catch {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 40px;
  color: #6f9110;
  line-height: 1.5;
  margin-bottom: 16px;
}
.about-text {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #464646;
  line-height: 1.6;
}

/* Values */
.about-values {
  display: flex;
  gap: 40px;
}
.about-value-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.about-value-icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-value-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.about-value-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}
.about-value-ja {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 40px;
  color: #6f9110;
  line-height: 1;
  margin-bottom: -3px;
}
.about-value-en {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 16px;
  color: #6f9110;
  line-height: 1;
}
.about-value-desc {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #464646;
  line-height: 1.6;
  text-align: center;
}

/* CEO Message */
.about-ceo-photo {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-bottom: 40px;
}
.about-ceo-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-ceo-photo--sp {
  display: none;
}
.about-ceo-message-svg {
  display: none;
}
.about-ceo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}
.about-ceo-catch {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.about-ceo-attr {
  text-align: right;
}
.about-ceo-role {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.about-ceo-name {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.about-ceo-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-ceo-tag {
  display: inline-block;
  width: fit-content;
  background: #6f9110;
  padding: 8px 16px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.about-ceo-career p {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #131c00;
  line-height: 2;
}
.about-ceo-message p {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #131c00;
  line-height: 1.5;
  margin-bottom: 8px;
}
.about-ceo-message-heading {
  font-weight: 700 !important;
  font-size: 18px !important;
  margin-top: 16px;
}

/* Company Info */
.about-company-title {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #131c00;
  margin-bottom: 40px;
}
.about-company-table {
  width: 100%;
  max-width: 960px;
  border-collapse: collapse;
}
.about-company-table tr {
  border-bottom: 1px solid #eaeaea;
}
.about-company-table th,
.about-company-table td {
  padding: 40px 0;
  text-align: left;
  vertical-align: top;
}
.about-company-table th {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #131c00;
  width: 192px;
  padding-right: 80px;
}
.about-company-table td {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #131c00;
}

/* Certification */
.about-certification {
  margin-top: 40px;
}
.about-certification img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== About Page Responsive ===== */
@media screen and (max-width: 750px) {
  #about-hero {
    height: 360px;
  }
  .about-hero-title {
    top: 120px;
    left: 20px;
  }
  .about-hero-title h2 {
    font-size: 16px;
  }
  .about-hero-title-en {
    font-size: 36px;
  }
  .about-hero-title-line {
    width: 200px;
  }
  .about-tab {
    font-size: 14px;
    padding: 0 0 12px;
  }
  .about-section {
    padding: 40px 0 60px;
  }
  .about-section-inner {
    padding: 0 20px;
  }
  .about-block {
    margin-bottom: 60px;
  }
  .about-block-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .about-catch {
    font-size: 24px;
  }
  .about-values {
    flex-direction: column;
  }
  .about-value-ja {
    font-size: 28px;
  }
  .about-ceo-photo--pc {
    display: none;
  }
  .about-ceo-photo--sp {
    display: block;
    height: auto;
    overflow: visible;
  }
  .about-ceo-photo--sp > img {
    height: auto;
    object-fit: contain;
  }
  .about-ceo-message-svg {
    display: block;
    margin-top: 32px;
  }
  .about-ceo-message-svg img {
    width: 100%;
    display: block;
  }
  .about-ceo-catch {
    font-size: 20px;
  }
  .about-ceo-role {
    font-size: 12px;
  }
  .about-ceo-name {
    font-size: 16px;
  }
  .about-ceo-tag {
    font-size: 16px;
  }
  .about-company-table th {
    display: block;
    width: 100%;
    padding-bottom: 8px;
    padding-right: 0;
  }
  .about-company-table td {
    display: block;
    font-size: 16px;
    padding-top: 0;
  }
}

/* ===== Recruit Page ===== */
#recruit-page {
  background: #fff;
  padding-top: 190px;
}
.recruit-inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 60px;
}
#recruit-page .section-heading {
  margin-bottom: 80px;
}
.recruit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.recruit-card {
  flex: 1 0 calc(50% - 20px);
  min-width: 0;
  border: 2px solid #6f9110;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.recruit-card:hover {
  opacity: 0.8;
}
.recruit-card-header {
  display: flex;
  gap: 8px;
  align-items: center;
}
.recruit-card-tag {
  background: #6f9110;
  color: #fff;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 800;
  font-size: 20px;
  padding: 8px 16px;
  line-height: 1;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-card-title {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #6f9110;
  line-height: 1.5;
}
.recruit-card-desc {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #464646;
  line-height: 1.5;
}
.recruit-card-arrow {
  text-align: right;
}
.recruit-card-arrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #131c00;
  color: #fff;
  font-size: 18px;
}

/* ===== Recruit Detail Page ===== */
#recruit-detail-page {
  background: #fff;
  padding-top: 150px;
  padding-bottom: 120px;
}
#recruit-detail-page .recruit-inner {
  padding-inline: 60px;
}
.recruit-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.recruit-detail-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recruit-detail-tag-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.recruit-detail-name {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #6f9110;
  line-height: 1.5;
}
.recruit-detail-subtitle {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #464646;
  line-height: 1.5;
}
.recruit-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 32px;
  border: 1px solid #6f9110;
  border-radius: 4px;
  background: #fff;
  color: #6f9110;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  flex-shrink: 0;
}
.recruit-apply-arrow {
  font-size: 18px;
}
.recruit-detail-body {
  border: 2px solid #6f9110;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.recruit-detail-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recruit-detail-section-title {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #6f9110;
  line-height: 1;
}
.recruit-detail-section-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  color: #131c00;
  line-height: 1.5;
}
.recruit-detail-section-content p {
  font-weight: 500;
}
.recruit-detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recruit-detail-list-item-bold {
  font-weight: 800 !important;
}
.recruit-detail-appeal {
  display: flex;
  flex-direction: column;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  color: #131c00;
  line-height: 1.5;
}
.recruit-detail-appeal p {
  font-weight: 500;
}
.recruit-detail-subgroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  color: #131c00;
  line-height: 1.5;
}
.recruit-detail-subgroup p {
  font-weight: 500;
}
.recruit-detail-bottom-cta {
  text-align: center;
  margin-top: 80px;
}
.recruit-apply-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 24px 100px;
  border: 2px solid #6f9110;
  border-radius: 4px;
  background: #fff;
  color: #6f9110;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

/* ===== News page ===== */
#news-page {
  padding: 160px 0 120px;
}
#news-page .inner_box {
}
#news-page .section-heading {
  width: fit-content;
  margin-bottom: 60px;
}
#news-page #loading-text {
  text-align: center;
  padding: 40px 0;
}
.news-page-list .news-item:first-child {
  border-top: 1px solid #eaeaea;
}

/* News pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
}
.news-pagination-item {
  font-size: 16px;
  color: #464646;
  cursor: pointer;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.news-pagination-item.active {
  color: #6f9110;
  font-weight: 700;
}
.news-pagination-item:hover {
  color: #6f9110;
}

/* News detail page */
.news-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.news-detail-tag {
  background: #c3dba3;
  padding: 2px 12px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
}
.news-detail-title {
  font-size: 24px;
  font-weight: 600;
  color: #131c00;
  line-height: 1.6;
  padding-bottom: 24px;
  border-bottom: 1px solid #eaeaea;
}
.news-detail-body {
  margin-top: 40px;
  font-size: 16px;
  line-height: 2;
  color: #464646;
}
.news-detail-back {
  margin-top: 60px;
  text-align: center;
}
.news-detail-back a {
  font-size: 16px;
  color: #131c00;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #131c00;
  padding-bottom: 8px;
}

/* ===== Case Study page ===== */
#case-study-page {
  padding: 160px 0 120px;
}
#case-study-page .section-heading {
  width: fit-content;
  margin-bottom: 60px;
}
#case-study-page #loading-text {
  text-align: center;
  padding: 40px 0;
}
#case-study-page .case-cards {
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media screen and (max-width: 999px) {
  #case-study-page .case-cards {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }
  #case-study-page .case-card {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 750px) {
  #case-study-page {
    padding: 120px 0 80px;
  }
  #case-study-page .section-heading {
    margin-bottom: 40px;
  }
  #case-study-page .case-cards {
    flex-direction: column;
  }
  #case-study-page .case-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 750px) {
  #news-page {
    padding: 120px 0 80px;
  }
  #news-page .section-heading {
    margin-bottom: 40px;
  }
  .news-detail-title {
    font-size: 18px;
  }
  .news-detail-body {
    font-size: 14px;
  }
}

/* ===== Case Detail page ===== */
#case-detail-page {
  padding: 120px 0 120px;
}
#case-detail-page .inner_box {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}
#case-detail-page #loading-text {
  text-align: center;
  padding: 40px 0;
}

/* Hero */
.case-detail-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, #263305, #66870c) 1;
  padding: 60px 50px 76px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.case-detail-hero-text {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  order: -1;
  position: relative;
}
.case-detail-hero-decoration {
  position: absolute;
  top: 0;
  left: 55px;
  width: 432px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.case-detail-hero-titles,
.case-detail-client-badge {
  position: relative;
  z-index: 1;
}
.case-detail-hero-titles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-detail-title {
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.8;
  width: fit-content;
  background: linear-gradient(130deg, #263305, #66870c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-detail-subtitle {
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  background: linear-gradient(172deg, #263305, #66870c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-detail-client-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6f9110;
  color: #fff;
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  width: fit-content;
}
.case-detail-badge-divider {
  width: 1px;
  height: 16px;
  background: #fff;
  display: inline-block;
}
.case-detail-hero-img {
  position: relative;
  flex: 0 1 420px;
}
.case-detail-hero-img-shadow {
  position: absolute;
  top: 16px;
  left: 15px;
  width: 100%;
  height: 100%;
  background: #6f9110;
  border-radius: 16px;
}
.case-detail-hero-img img {
  position: relative;
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Body content */
.case-detail-body {
  display: flex;
  flex-direction: column;
}
.case-detail-body > *:first-child {
  margin-top: 0;
}
.case-detail-body h1 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 800;
  font-size: 24px;
  background: linear-gradient(150deg, #263305 0%, #66870c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
  margin-top: 80px;
  margin-bottom: 0;
}
.case-detail-body h1::before {
  content: "";
  display: block;
  width: 5px;
  min-height: 40px;
  align-self: stretch;
  background: linear-gradient(180deg, #263305, #6f9110);
  border-radius: 2px;
  flex-shrink: 0;
  -webkit-text-fill-color: initial;
}
.case-detail-body h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-size: 20px;
  color: #131c00;
  margin-top: 40px;
  margin-bottom: 0;
}
.case-detail-body h1 + h2 {
  margin-top: 40px;
}
.case-detail-body h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, #263305, #6f9110);
  flex-shrink: 0;
}
.case-detail-body p {
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #464646;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 0;
}
.case-detail-body h1 + p,
.case-detail-body h2 + p,
.case-detail-body figure + p {
  margin-top: 40px;
}
.case-detail-body ul {
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #464646;
  line-height: 1.5;
  list-style: disc;
  padding-left: 24px;
  margin-top: 24px;
  margin-bottom: 0;
}
.case-detail-body li {
  list-style-type: disc;
  line-height: 1.5;
}
.case-detail-body figure {
  margin: 40px 0;
}
.case-detail-body figure img {
  width: 100%;
  height: auto;
}

/* Back button */
.case-detail-back {
  display: flex;
  justify-content: center;
}
.case-detail-back a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Hiragino Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #131c00;
  text-decoration: none;
  border-bottom: 1px solid #131c00;
  padding-bottom: 8px;
}

/* Tablet: text stacks but image should be full width */
@media screen and (min-width: 751px) and (max-width: 1100px) {
  .case-detail-hero {
    padding: 60px 40px 76px;
  }
  .case-detail-hero-text {
    flex-basis: 100%;
    order: -1;
  }
  .case-detail-hero-img {
    flex: 0 0 100%;
    max-width: 600px;
  }
  .case-detail-hero-decoration {
    width: 350px;
  }
}

@media screen and (max-width: 750px) {
  #case-detail-page {
    padding: 60px 0 80px;
  }
  #case-detail-page .inner_box {
    gap: 60px;
  }
  .case-detail-hero {
    gap: 24px;
    padding: 40px 0 60px;
    margin-inline: auto;
  }
  .case-detail-hero-text {
    gap: 20px;
    order: 0;
    flex-basis: 100%;
  }
  .case-detail-title {
    font-size: 24px;
  }
  .case-detail-hero-img {
    flex: 0 0 100%;
  }
  .case-detail-client-badge {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 1;
  }
  .case-detail-badge-divider {
    display: none;
  }
  .case-detail-body h1 {
    margin-top: 60px;
  }
  .case-detail-body h1 {
    font-size: 20px;
  }
  .case-detail-body h2 {
    font-size: 18px;
  }
  .case-detail-body p {
    font-size: 14px;
  }
  .case-detail-body ul {
    font-size: 14px;
  }
}

/* ===== Recruit SP ===== */
@media screen and (max-width: 750px) {
  .recruit-inner {
    padding: 0 20px;
  }
  #recruit-page .section-heading {
    margin-bottom: 40px;
  }
  .recruit-list {
    flex-direction: column;
    gap: 24px;
  }
  .recruit-card {
    flex: 1 0 100%;
    padding: 24px;
    gap: 24px;
  }
  .recruit-card-tag {
    font-size: 16px;
    padding: 6px 12px;
  }
  .recruit-card-title {
    font-size: 18px;
  }
  .recruit-card-desc {
    font-size: 14px;
  }
  .recruit-card-arrow span {
    width: 40px;
    height: 40px;
  }
  #recruit-page {
    padding-top: 120px;
  }
  #recruit-detail-page {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  #recruit-detail-page .recruit-inner {
    padding: 0 20px;
  }
  .recruit-detail-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .recruit-detail-body {
    padding: 24px;
    gap: 32px;
  }
  .recruit-detail-name {
    font-size: 20px;
  }
  .recruit-detail-bottom-cta {
    margin-top: 40px;
  }
  .recruit-apply-btn-large {
    padding: 20px 60px;
  }
}

/* ===== Contact Page ===== */
#contact-page {
  padding: 200px 0 120px;
}
.contact-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 60px;
}
.contact-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.contact-heading-ja {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-size: 24px;
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  background: linear-gradient(
    176deg,
    rgb(38, 51, 5) 0%,
    rgb(102, 135, 12) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-heading-en {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-size: 64px;
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  background: linear-gradient(
    144deg,
    rgb(38, 51, 5) 0%,
    rgb(102, 135, 12) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-heading-line {
  display: block;
  width: 257px;
  height: 2px;
  background: #6f9110;
}
.contact-form {
  border: 2px solid #6f9110;
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-label {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #131c00;
  line-height: 1;
}
.contact-input {
  width: 100%;
  height: 48px;
  padding: 16px;
  border: 1px solid #eaeaea;
  background: #fff;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #131c00;
  box-sizing: border-box;
  outline: none;
}
.contact-input::placeholder {
  color: #dcdcdc;
}
.contact-input:focus {
  border-color: #6f9110;
}
.contact-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #131c00;
  line-height: 1;
}
.contact-checkbox input[type="checkbox"] {
  display: none;
}
.contact-checkbox-box {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1px solid #131c00;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.contact-checkbox input[type="checkbox"]:checked + .contact-checkbox-box {
  background: #6f9110;
  border-color: #6f9110;
}
.contact-checkbox
  input[type="checkbox"]:checked
  + .contact-checkbox-box::after {
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.contact-textarea {
  width: 100%;
  height: 200px;
  padding: 16px;
  border: 1px solid #eaeaea;
  background: #fff;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #464646;
  box-sizing: border-box;
  outline: none;
  resize: vertical;
}
.contact-textarea::placeholder {
  color: #464646;
}
.contact-textarea:focus {
  border-color: #6f9110;
}
.contact-form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 400px;
  padding: 24px 100px;
  background: #fff;
  border: 2px solid #6f9110;
  border-radius: 4px;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #6f9110;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
  box-sizing: border-box;
}
.contact-btn-arrow {
  font-size: 20px;
  line-height: 1;
  color: #6f9110;
}
.contact-submit-btn:hover {
  background: #6f9110;
  color: #fff;
}
.contact-submit-btn:hover .contact-btn-arrow {
  color: #fff;
}
.contact-privacy-note {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #464646;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.contact-privacy-note a {
  color: #464646;
  text-decoration: underline;
  font-weight: 400;
}

@media screen and (max-width: 750px) {
  #contact-page {
    padding: 100px 0 80px;
  }
  .contact-inner {
    padding: 0 20px;
  }
  .contact-heading-en {
    font-size: 36px;
  }
  .contact-heading-ja {
    font-size: 18px;
  }
  .contact-heading-line {
    width: 100%;
  }
  .contact-form {
    padding: 24px 16px;
    gap: 40px;
  }
  .contact-form-fields {
    gap: 24px;
  }
  .contact-checkbox span:not(.contact-checkbox-box) {
    font-size: 14px;
  }
  .contact-submit-btn {
    width: 100%;
    padding: 20px 40px;
  }
  .contact-privacy-note {
    font-size: 12px;
    text-align: left;
  }
}

/* ===== Service Page ===== */
#service-hero {
  background: linear-gradient(108deg, #f6f9f7 0%, #e9f0e8 100%);
  padding: 0;
  height: 496px;
  position: relative;
}
.service-page {
  padding-top: 80px;
}
.service-page .service-tabs {
  margin-bottom: 80px;
}

@media screen and (max-width: 750px) {
  #service-hero {
    height: 320px;
  }
  .service-page {
    padding-top: 32px;
  }
  .service-page .service-tabs {
    margin-bottom: 32px;
  }
}
