@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  color: #212529;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.pcdn {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcdn {
    display: block;
  }
}
.pctbdn {
  display: none;
}

@media screen and (max-width: 480px) {
  .pctbdn {
    display: block;
  }
}
.tbspdn {
  display: block;
}

@media screen and (max-width: 768px) {
  .tbspdn {
    display: none;
  }
}
.spdn {
  display: block;
}

@media screen and (max-width: 480px) {
  .spdn {
    display: none;
  }
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.rice-indent {
  padding-left: 1em;
  position: relative;
}

.rice-indent:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

sup {
  vertical-align: super;
  font-size: small;
}

.align-left {
  text-align: left !important;
}

.align-right {
  text-align: right !important;
}

.align-center {
  text-align: center !important;
}

.v-align-top {
  vertical-align: top !important;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

@media (min-width: 600px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.l-container {
  width: 92%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.l-container--small {
  max-width: 720px;
}
.l-container--medium {
  max-width: 960px;
}
.l-container--large {
  max-width: 1140px;
}
.l-container--xlarge {
  max-width: 1280px;
}
.l-container--xxlarge {
  max-width: 1440px;
}
.l-container--full {
  max-width: 100%;
  width: 100%;
}

.l-section {
  padding: 120px 0;
}
.l-section--gray {
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .l-section {
    padding: 60px 0;
  }
}

.c-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1.5rem 6rem 1.5rem 3rem;
  border: 1px solid #111;
  color: #111;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-shadow: inset 0 0 0 0 #111;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  width: 2.4rem;
  height: 1px;
  background-color: #111;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #111;
  border-right: 1px solid #111;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.4s ease;
}
.c-btn:hover {
  box-shadow: inset 400px 0 0 0 #111;
  color: #fff;
  opacity: 1;
}
.c-btn:hover::before {
  background-color: #fff;
  right: 1.5rem;
}
.c-btn:hover::after {
  border-color: #fff;
  right: 1.5rem;
}

.p-sub-hero {
  position: relative;
  height: 300px; /* PCサイズ */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #001f3f;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.p-sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/common/sub-hero-service.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.p-sub-hero__inner {
  position: relative;
  z-index: 1;
}
.p-sub-hero__title {
  font-family: "Urbanist", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.p-sub-hero__sub {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 767px) {
  .p-sub-hero {
    padding-top: 60px;
    height: 260px;
  }
  .p-sub-hero__title {
    font-size: 2.5rem;
  }
}
/* ScrollHintのアイコンと文字を上部に強制表示するカスタム */
.scroll-hint {
  align-items: flex-start !important;
  /* アイコン自体の位置 */
}
.scroll-hint-icon {
  margin-top: 80px !important;
  position: sticky !important;
  top: 80px !important;
  z-index: 11 !important;
}
.scroll-hint {
  /* 「スクロールできます」のテキスト */
}
.scroll-hint-text {
  display: block !important;
  margin: 0 !important;
  margin-top: 135px !important;
  position: sticky !important;
  top: 135px !important;
  z-index: 11 !important;
  color: #fff !important;
  font-size: 12px !important;
}

header {
  position: relative;
}

header .l-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
@media screen and (max-width: 480px) {
  header .l-container {
    padding: 0;
    width: 100%;
  }
}

.nav-list {
  display: flex;
  gap: 3rem;
}
.nav-list a {
  font-weight: bold;
}
.nav-list a:hover {
  color: #0068b6;
}

.p-header {
  background-color: #fff;
  z-index: 900;
}
@media screen and (max-width: 480px) {
  .p-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .p-header img {
    width: 90%;
    z-index: 20;
  }
}
.p-header__logo {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    width: 70%;
    padding: 0 10px;
  }
}
.p-header__list {
  color: #212529;
}
.p-hamburger {
  display: none;
}
@media screen and (min-width: 1025px) {
  .p-hamburger {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .p-hamburger {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 80px;
    background: #0068b6 !important;
    position: fixed !important;
    top: 0;
    right: 0;
    z-index: 9999 !important;
    border: none;
    padding: 0;
  }
  .p-hamburger__line {
    display: block;
    width: 26px;
    height: 1px;
    background-color: #fff !important;
    position: relative;
    transition: 0.3s;
  }
  .p-hamburger__line::before, .p-hamburger__line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff !important;
    transition: 0.3s;
  }
  .p-hamburger__line::before {
    top: -8px;
  }
  .p-hamburger__line::after {
    top: 8px;
  }
  .p-hamburger__text {
    font-family: "Urbanist", sans-serif;
    font-size: 10px;
    color: #fff !important;
    margin-top: 12px;
    display: block;
  }
  .p-hamburger.is-open {
    background-color: transparent !important;
  }
  .p-hamburger.is-open .p-hamburger__line {
    background-color: transparent !important;
  }
  .p-hamburger.is-open .p-hamburger__line::before {
    top: 0 !important;
    transform: rotate(45deg) !important;
    background-color: #fff !important;
  }
  .p-hamburger.is-open .p-hamburger__line::after {
    top: 0 !important;
    transform: rotate(-45deg) !important;
    background-color: #fff !important;
  }
  .p-hamburger.is-open .p-hamburger__text {
    color: #fff !important;
  }
}

@media screen and (max-width: 1024px) {
  .p-header__nav.js-drawer {
    z-index: 9990 !important;
  }
}

@media screen and (min-width: 1025px) {
  .p-header__nav {
    display: block !important;
    position: static !important;
    background: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 5px;
  }
  .p-header__nav .p-header__list {
    display: flex;
    gap: 3rem;
    align-items: center;
  }
  .p-header__nav .p-header__list .p-header__item {
    margin: 0;
  }
  .p-header__nav .p-header__list .p-header__item a {
    text-decoration: none;
    color: #212529 !important;
    font-size: 1.5rem;
    font-weight: 400;
    transition: color 0.3s;
  }
  .p-header__nav .p-header__list .p-header__item a:hover {
    color: #0068b6 !important;
  }
  .p-header__nav .p-header__list .p-header__item a .en {
    display: none;
  }
  .p-header__nav .p-header__list .p-header__item a .ja {
    display: block;
  }
  .p-header__nav .p-header__nav-sub {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .p-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
  }
  .p-header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .p-header__nav .p-header__list {
    text-align: center;
  }
  .p-header__nav .p-header__list .p-header__item {
    margin-bottom: 30px;
  }
  .p-header__nav .p-header__list .p-header__item a {
    text-decoration: none;
  }
  .p-header__nav .p-header__list .p-header__item a .en {
    display: block;
    font-family: "Urbanist", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
  }
  .p-header__nav .p-header__list .p-header__item a .ja {
    display: block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
  }
  .p-header__nav .p-header__nav-sub {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .p-header__nav .p-header__nav-sub a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    text-decoration: none;
  }
}

footer {
  position: relative;
  background-color: #0f1c2d;
}

/* フッター全体のラップ */
.l-footer {
  width: 100%;
  /* 上段：白背景エリア */
}
.l-footer__top {
  background-color: #fff;
  color: #333;
  border-top: 1px solid #f0f0f0;
  /* 会社情報プロフィールの横並び調整 */
}
.l-footer__top .p-company__profile {
  display: flex;
  align-items: center;
  gap: 40px;
}
.l-footer {
  /* 下段：黒背景エリア */
}
.l-footer__bottom {
  background-color: #0f1c2d;
  color: #fff;
}

footer .l-container {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  color: #fff;
}
@media screen and (max-width: 480px) {
  footer .l-container {
    padding: 0;
    width: 92%;
  }
}
footer .l-container .footer-logo {
  background-color: #fff;
}
footer .l-container .p-company__profile {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 480px) {
  footer .l-container .p-company__profile {
    flex-direction: column;
  }
}
footer .l-container .p-company__profile .p-company__info {
  color: #212529;
}
footer .l-container .p-company__profile .p-company__info-name {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  font-feature-settings: "palt";
}
@media screen and (max-width: 480px) {
  footer .l-container .p-company__profile .p-company__info-name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  footer .l-container .footer-nav {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}
footer .l-container .footer-nav ul {
  display: flex;
  -moz-column-gap: min(4.8611111111vw, 60px);
       column-gap: min(4.8611111111vw, 60px);
}
@media screen and (max-width: 480px) {
  footer .l-container .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 1rem;
  }
}
footer .l-container .footer-nav ul li {
  font-size: clamp(1.5rem, 1.5vw, 1.6rem);
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  footer .l-container .footer-nav ul li {
    font-size: 1.5rem;
  }
}
footer .l-container .p-company__license {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  footer .l-container .p-company__license {
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: column;
  }
}
footer .l-container .copyright {
  text-align: right;
  margin-top: 50px;
  font-size: 1.5rem;
}
@media screen and (max-width: 480px) {
  footer .l-container .copyright {
    font-size: 1.3rem;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__top .p-company__profile {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
.p-mv {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  height: calc(100vh - 100px);
  max-height: 900px;
  min-height: 600px;
}
@media screen and (max-width: 480px) {
  .p-mv {
    height: calc(100svh - 60px);
    min-height: 500px;
  }
}
.p-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url("../images/bg-mv-pc.webp") no-repeat bottom center/cover;
  animation: zoomInBg 10s ease-out forwards;
}
@media screen and (max-width: 480px) {
  .p-mv::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url("../images/bg-mv-sp.webp");
  }
}
.p-mv__title {
  position: relative;
  z-index: 2;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-shadow: none;
  letter-spacing: 0.1em;
}
.p-mv__title span {
  display: inline-block;
}
.p-mv__title span:first-child {
  font-family: "Urbanist", Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.p-mv__title span:last-child {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(2.2rem, 5vw, 2.6rem);
  font-weight: 300;
  white-space: nowrap;
  letter-spacing: 0.15em;
}

@keyframes zoomInBg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
.p-mv__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  /* スクロール時に付与されるクラス */
}
.p-mv__scroll.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.p-mv__scroll {
  /* "Scroll"のテキスト設定 */
}
.p-mv__scroll span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: 300;
  font-family: "Urbanist", Arial, sans-serif;
  margin-bottom: 10px;
}
.p-mv__scroll {
  /* 伸びては消える縦線のアニメーション */
}
.p-mv__scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background: #fff;
  animation: scrollLine 2s cubic-bezier(1, 0, 0, 1) infinite;
}

/* =========================================
   スクロール線用キーフレーム
========================================= */
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.p-section-header {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.p-section-header__sub {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-family: serif;
  letter-spacing: 0.1em;
  color: #0068b6;
  margin-bottom: 0.5rem;
}
.p-section-header__title {
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #111;
}
.p-section-header__lead {
  font-size: clamp(1.5rem, 1.5vw, 1.6rem);
  line-height: 2;
  letter-spacing: 0.05em;
  color: #444;
}
.p-section-header__lead p {
  margin-bottom: 30px;
}

.p-section-content {
  max-width: 800px;
  margin: 0 auto;
}

.p-section-description {
  font-size: clamp(1.5rem, 1.5vw, 1.6rem);
  line-height: 2;
  letter-spacing: 0.05em;
  color: #444;
  margin-bottom: 3.5rem;
}

.p-section-btn {
  text-align: right;
}

.p-front-service {
  background-color: #f7f8f9;
  padding: 8rem 0;
}
@media screen and (min-width: 768px) {
  .p-front-service {
    padding: 12rem 0;
  }
}
.p-front-service .p-section-header {
  max-width: 800px;
  margin: 0 auto 6rem;
}

.p-service-list {
  display: grid;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .p-service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
  }
}

.p-top-service-item {
  display: flex;
  flex-direction: column;
}
.p-top-service-item__title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111;
  margin-bottom: 1.6rem;
}
.p-top-service-item__img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 1.6rem;
}
.p-top-service-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.p-top-service-item__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #444;
}
.p-top-service-item:hover .p-service-item__img img {
  transform: scale(1.05);
}

.p-front-case {
  background-color: #fff;
  padding: 8rem 0;
}
@media screen and (min-width: 768px) {
  .p-front-case {
    padding: 12rem 0;
  }
}
.p-front-case__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .p-front-case__inner {
    flex-direction: row-reverse;
    align-items: center;
    gap: 6rem;
  }
}
.p-front-case__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-case__img {
    width: 55%;
  }
}
.p-front-case__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-case__content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-front-case__content {
    width: 45%;
  }
}
.p-front-case__content .p-section-header {
  margin-bottom: 2rem;
  text-align: left;
}
.p-front-case__text {
  font-size: clamp(1.5rem, 1.5vw, 1.6rem);
  line-height: 2;
  color: #444;
  margin-bottom: 4rem;
}
.p-front-case__btn {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-front-case__btn {
    text-align: right;
  }
}

.u-m-half {
  margin: 16px !important;
}
.u-m-1 {
  margin: 32px !important;
}
@media screen and (max-width: 480px) {
  .u-m-1 {
    margin: 16px !important;
  }
}

.u-m-1-half {
  margin: 48px !important;
}
@media screen and (max-width: 480px) {
  .u-m-1-half {
    margin: 32px !important;
  }
}

.u-m-2 {
  margin: 64px !important;
}
@media screen and (max-width: 480px) {
  .u-m-2 {
    margin: 48px !important;
  }
}

.u-m-2-half {
  margin: 80px !important;
}
@media screen and (max-width: 480px) {
  .u-m-2-half {
    margin: 64px !important;
  }
}

.u-m-3 {
  margin: 96px !important;
}
@media screen and (max-width: 480px) {
  .u-m-3 {
    margin: 80px !important;
  }
}

.u-m-3-half {
  margin: 112px !important;
}
@media screen and (max-width: 480px) {
  .u-m-3-half {
    margin: 96px !important;
  }
}

.u-mt-half {
  margin-top: 16px !important;
}
.u-mt-1 {
  margin-top: 32px !important;
}
@media screen and (max-width: 480px) {
  .u-mt-1 {
    margin-top: 16px !important;
  }
}

.u-mt-1-half {
  margin-top: 48px !important;
}
@media screen and (max-width: 480px) {
  .u-mt-1-half {
    margin-top: 32px !important;
  }
}

.u-mt-2 {
  margin-top: 64px !important;
}
@media screen and (max-width: 480px) {
  .u-mt-2 {
    margin-top: 48px !important;
  }
}

.u-mt-2-half {
  margin-top: 80px !important;
}
@media screen and (max-width: 480px) {
  .u-mt-2-half {
    margin-top: 64px !important;
  }
}

.u-mt-3 {
  margin-top: 96px !important;
}
@media screen and (max-width: 480px) {
  .u-mt-3 {
    margin-top: 80px !important;
  }
}

.u-mt-3-half {
  margin-top: 112px !important;
}
@media screen and (max-width: 480px) {
  .u-mt-3-half {
    margin-top: 96px !important;
  }
}

.u-mb-half {
  margin-bottom: 16px !important;
}
.u-mb-1 {
  margin-bottom: 32px !important;
}
@media screen and (max-width: 480px) {
  .u-mb-1 {
    margin-bottom: 16px !important;
  }
}

.u-mb-1-half {
  margin-bottom: 48px !important;
}
@media screen and (max-width: 480px) {
  .u-mb-1-half {
    margin-bottom: 32px !important;
  }
}

.u-mb-2 {
  margin-bottom: 64px !important;
}
@media screen and (max-width: 480px) {
  .u-mb-2 {
    margin-bottom: 48px !important;
  }
}

.u-mb-2-half {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 480px) {
  .u-mb-2-half {
    margin-bottom: 64px !important;
  }
}

.u-mb-3 {
  margin-bottom: 96px !important;
}
@media screen and (max-width: 480px) {
  .u-mb-3 {
    margin-bottom: 80px !important;
  }
}

.u-mb-3-half {
  margin-bottom: 112px !important;
}
@media screen and (max-width: 480px) {
  .u-mb-3-half {
    margin-bottom: 96px !important;
  }
}

.u-pt-half {
  padding-top: 16px !important;
}
.u-pt-1 {
  padding-top: 32px !important;
}
@media screen and (max-width: 480px) {
  .u-pt-1 {
    padding-top: 16px !important;
  }
}

.u-pt-1-half {
  padding-top: 48px !important;
}
@media screen and (max-width: 480px) {
  .u-pt-1-half {
    padding-top: 32px !important;
  }
}

.u-pt-2 {
  padding-top: 64px !important;
}
@media screen and (max-width: 480px) {
  .u-pt-2 {
    padding-top: 48px !important;
  }
}

.u-pt-2-half {
  padding-top: 80px !important;
}
@media screen and (max-width: 480px) {
  .u-pt-2-half {
    padding-top: 64px !important;
  }
}

.u-pt-3 {
  padding-top: 96px !important;
}
@media screen and (max-width: 480px) {
  .u-pt-3 {
    padding-top: 80px !important;
  }
}

.u-pt-3-half {
  padding-top: 112px !important;
}
@media screen and (max-width: 480px) {
  .u-pt-3-half {
    padding-top: 96px !important;
  }
}

.u-pb-half {
  padding-bottom: 16px !important;
}
.u-pb-1 {
  padding-bottom: 32px !important;
}
@media screen and (max-width: 480px) {
  .u-pb-1 {
    padding-bottom: 16px !important;
  }
}

.u-pb-1-half {
  padding-bottom: 48px !important;
}
@media screen and (max-width: 480px) {
  .u-pb-1-half {
    padding-bottom: 32px !important;
  }
}

.u-pb-2 {
  padding-bottom: 64px !important;
}
@media screen and (max-width: 480px) {
  .u-pb-2 {
    padding-bottom: 48px !important;
  }
}

.u-pb-2-half {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 480px) {
  .u-pb-2-half {
    padding-bottom: 64px !important;
  }
}

.u-pb-3 {
  padding-bottom: 96px !important;
}
@media screen and (max-width: 480px) {
  .u-pb-3 {
    padding-bottom: 80px !important;
  }
}

.u-pb-3-half {
  padding-bottom: 112px !important;
}
@media screen and (max-width: 480px) {
  .u-pb-3-half {
    padding-bottom: 96px !important;
  }
}

.u-mb-none {
  margin-bottom: 0 !important;
}

.u-font-xx-small {
  font-size: 1.3rem !important;
}
@media screen and (max-width: 480px) {
  .u-font-xx-small {
    font-size: 1.1rem !important;
  }
}

.u-font-x-small {
  font-size: 1.4rem !important;
}
@media screen and (max-width: 480px) {
  .u-font-x-small {
    font-size: 1.3rem !important;
  }
}

.u-font-small {
  font-size: 1.6rem !important;
}
@media screen and (max-width: 480px) {
  .u-font-small {
    font-size: 1.5rem !important;
  }
}

.u-font-normal {
  font-size: 1.8rem !important;
}
@media screen and (max-width: 480px) {
  .u-font-normal {
    font-size: 1.6rem !important;
  }
}

.u-font-medium {
  font-size: 2rem !important;
}
@media screen and (max-width: 480px) {
  .u-font-medium {
    font-size: 1.8rem !important;
  }
}

.u-font-large {
  font-size: 2.3rem !important;
}
@media screen and (max-width: 480px) {
  .u-font-large {
    font-size: 2rem !important;
  }
}

.u-font-x-large {
  font-size: 2.6rem !important;
}
@media screen and (max-width: 480px) {
  .u-font-x-large {
    font-size: 2rem !important;
  }
}

.u-font-xx-large {
  font-size: 2.9rem !important;
}
@media screen and (max-width: 480px) {
  .u-font-xx-large {
    font-size: 2.3rem !important;
  }
}

.u-font-xxx-large {
  font-size: 3.2rem !important;
}
@media screen and (max-width: 480px) {
  .u-font-xxx-large {
    font-size: 2.3rem !important;
  }
}

/* ==========================================================================
   事業内容ページ (page-service.php) 専用スタイル
   ========================================================================== */
/* --- 事業内容のヒーロー画像 --- */
.p-sub-hero--service::before {
  background-image: url("../images/hero/service-pc.jpg"); /* PC用画像 */
}
@media screen and (max-width: 767px) {
  .p-sub-hero--service::before .p-service-hero::before {
    background-position: center 20%;
  }
}

/* ---  リード文セクション --- */
.p-service-lead {
  background-color: #fff;
  padding: 8rem 0 0;
}
.p-service-lead__text {
  max-width: 800px;
  margin: 0;
  font-size: 1.7rem;
  line-height: 2;
  color: #333;
}

/* ---  各事業アイテムのレイアウト --- */
.p-service-detail {
  background-color: #fff;
  padding-bottom: 10rem;
}

.p-service-item {
  border-top: 1px solid #e5e7eb;
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
}
.p-service-item:last-child {
  border-bottom: 1px solid #e5e7eb;
}
.p-service-item__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-service-item__number {
  font-family: "Urbanist", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #001f3f;
  line-height: 1;
}
.p-service-item__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-service-item__title small {
  display: block;
  font-size: 1.3rem;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  color: #999;
  margin-top: 0.25rem;
  text-transform: uppercase;
}
.p-service-item__body {
  padding-top: 0.5rem;
}
.p-service-item__desc {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
}

/* スマホ対応（縦並びに切り替え） */
@media screen and (max-width: 959px) {
  .p-service-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
  }
  .p-service-item__number {
    font-size: 1.6rem;
  }
  .p-service-item__title {
    font-size: 1.7rem;
  }
  .p-service-lead__text {
    font-size: 1.6rem;
    line-height: 2;
  }
}
/* ==========================================================================
   弊社の強みページ (page-about.php) 専用スタイル
   ========================================================================== */
.p-sub-hero--about::before {
  background-image: url("../images/hero/about-pc.webp");
}

@media screen and (max-width: 767px) {
  .p-sub-hero--about::before {
    background-position: center center;
  }
}
.p-about-lead {
  background-color: #fff;
  padding: 10rem 0 6rem;
}
.p-about-lead__inner {
  max-width: 900px;
}
.p-about-lead__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3rem;
  color: #001f3f;
}
.p-about-lead__text {
  font-size: 1.7rem;
  line-height: 2;
  color: #333;
}

.p-about-features {
  padding-bottom: 12rem;
}

.p-about-feature {
  padding: 6rem 0;
}
.p-about-feature__inner {
  display: flex;
  align-items: center;
  gap: 8rem;
}
.p-about-feature__image {
  flex: 1;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.p-about-feature__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.p-about-feature__image:hover img {
  transform: scale(1.05);
}
.p-about-feature__content {
  flex: 1;
}
.p-about-feature__number {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #001f3f;
  margin-bottom: 1rem;
  position: relative;
}
.p-about-feature__number::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #001f3f;
  margin-top: 5px;
}
.p-about-feature__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #001f3f;
}
.p-about-feature__subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 2rem;
}
.p-about-feature__desc {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
}
.p-about-feature--reverse .p-about-feature__inner {
  flex-direction: row-reverse;
}

@media screen and (max-width: 959px) {
  .p-about-lead {
    padding: 6rem 0 4rem;
  }
  .p-about-lead__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .p-about-lead__text {
    font-size: 1.6rem;
  }
  .p-about-feature {
    padding: 4rem 0;
  }
  .p-about-feature__inner {
    flex-direction: column !important;
    gap: 3rem;
  }
  .p-about-feature__number {
    font-size: 2rem;
  }
  .p-about-feature__title {
    font-size: 2rem;
  }
  .p-about-feature__subtitle {
    font-size: 1.5rem;
  }
}
/* ==========================================================================
   開発実績ページ (page-case-studies.php) 専用スタイル
   ========================================================================== */
.p-sub-hero--case-studies::before {
  background-image: url("../images/hero/case-studies-pc.webp");
}

@media screen and (max-width: 767px) {
  .p-sub-hero--case-studies::before {
    background-position: 80% center;
  }
}
.p-cases-lead {
  padding: 8rem 0 0;
}
.p-cases-lead__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #001f3f;
}
.p-cases-lead__text {
  font-size: 1.6rem;
  line-height: 2;
  color: #444;
}

.p-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
}

.p-case-card {
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-case-card:hover {
  transform: translateY(-5px);
}
.p-case-card:hover .p-case-card__image img {
  transform: scale(1.05);
}
.p-case-card__image {
  position: relative;
  overflow: hidden;
  background-color: #f7f7f7;
}
.p-case-card__image img {
  width: 100%;
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}
.p-case-card__category {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #001f3f;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.5rem 1.2rem;
  letter-spacing: 0.05em;
}
.p-case-card__content {
  padding: 2rem 0;
}
.p-case-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: #222;
}
.p-case-card__info {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.5rem 1rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-case-card__info dt {
  color: #999;
  font-weight: 400;
}
.p-case-card__info dt::after {
  content: ":";
}
.p-case-card__info dd {
  color: #555;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .p-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
  }
}
@media screen and (max-width: 599px) {
  .p-cases-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .p-cases-lead__title {
    font-size: 2.2rem;
  }
  .p-cases-lead__text {
    font-size: 1.5rem;
  }
}
.p-case-archive {
  padding: 100px 0 80px;
  background-color: #fff;
}
.p-case-archive__title {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-case-archive__title .ja {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
  color: #0068b6;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.p-case-archive__title .en {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #999;
  margin-top: 8px;
  text-transform: uppercase;
}
.p-case-archive__title::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #ccc;
  margin-top: 25px;
}

.p-case-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.p-case-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  min-width: 800px;
}
.p-case-table th, .p-case-table td {
  padding: 20px 15px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: middle;
}
.p-case-table {
  /* ヘッダー部分 */
}
.p-case-table thead tr {
  border-bottom: 2px solid #0068b6;
}
.p-case-table th {
  font-weight: bold;
  color: #0068b6;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.p-case-table__th--cat {
  width: 15%;
}
.p-case-table__th--name {
  width: 25%;
}
.p-case-table__th--address {
  width: 45%;
}
.p-case-table__th--area {
  width: 15%;
}
.p-case-table tbody tr {
  transition: background-color 0.3s;
}
.p-case-table tbody tr:hover {
  background-color: #fcfcfc;
}
.p-case-table td {
  color: #444;
}
.p-case-table__p-name {
  font-weight: bold;
  color: #111 !important;
}
.p-case-table__badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 1.1rem;
  background-color: #f4f4f4;
  color: #555;
  border-radius: 2px;
  white-space: nowrap;
  font-weight: 500;
}

/* PCでは案内を非表示に */
.p-case-table-notice {
  display: none;
}

@media screen and (max-width: 480px) {
  .p-case-table-notice {
    display: block;
    text-align: right;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0068b6;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    animation: pulse 2s infinite;
  }
}
/* ==========================================================================
   プライバシーポリシーページ (page-privacy.php) 専用スタイル
   ========================================================================== */
.p-sub-hero--privacy::before {
  background-image: url("../images/hero/privacy-pc.webp");
}

@media screen and (max-width: 767px) {
  .p-sub-hero--privacy::before {
    background-position: center center;
  }
}
.p-privacy {
  padding: 8rem 0 10rem;
  background-color: #fff;
}
.p-privacy__container {
  max-width: 800px;
  margin: 0 auto;
}
.p-privacy__title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #001f3f;
}
.p-privacy__lead {
  font-size: 1.5rem;
  line-height: 2;
  color: #333;
  margin-bottom: 5rem;
}
.p-privacy__section {
  margin-bottom: 4rem;
}
.p-privacy__section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 1.5rem;
  border-left: 3px solid #001f3f;
  padding-left: 1rem;
}
.p-privacy__section p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
}
.p-privacy__section ul {
  list-style-type: disc;
  padding-left: 2.5rem;
  margin-top: 1rem;
}
.p-privacy__section ul li {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 0.5rem;
}
.p-privacy__contact {
  background-color: #f7f8f9;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 4px;
}
.p-privacy__contact p {
  margin-bottom: 1rem;
}
.p-privacy__contact ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}
.p-privacy__note {
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666;
}

/* --- レスポンシブ対応 --- */
@media screen and (max-width: 767px) {
  .p-privacy {
    padding: 5rem 0 6rem;
  }
  .p-privacy__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .p-privacy__lead {
    font-size: 1.4rem;
  }
  .p-privacy__section h3 {
    font-size: 1.6rem;
  }
  .p-privacy__section p, .p-privacy__section ul li {
    font-size: 1.4rem;
  }
}
/* ==========================================================================
   会社概要ページ (page-company.php) 専用スタイル
   ========================================================================== */
.p-sub-hero--company::before {
  background-image: url("../images/hero/company-pc.webp");
}

@media screen and (max-width: 767px) {
  .p-sub-hero--company::before {
    background-position: 30% center;
  }
}
.p-company {
  padding: 8rem 0 10rem;
  background-color: #fff;
}
.p-company__container {
  max-width: 900px;
  margin: 0 auto;
}
.p-company__title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5rem;
  color: #001f3f;
}

/* --- 会社概要テーブル (dl版) --- */
.p-company-info {
  border-top: 1px solid #e5e7eb;
}
.p-company-info__row {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
}
.p-company-info dt {
  width: 25%;
  padding: 3rem 2rem;
  background-color: #f7f8f9;
  font-size: 1.5rem;
  font-weight: 700;
  color: #001f3f;
  display: flex;
  align-items: center;
}
.p-company-info dd {
  width: 75%;
  padding: 3rem 4rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
.p-company-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-company-info__list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5rem;
}
.p-company-info__list li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #001f3f;
  border-radius: 50%;
}
.p-company-info__list li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-company {
    padding: 5rem 0 6rem;
  }
  .p-company__title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
  .p-company-info__row {
    flex-direction: column;
  }
  .p-company-info dt {
    width: 100%;
    padding: 1.5rem;
    background-color: transparent;
    border-bottom: 2px solid #f7f8f9;
  }
  .p-company-info dd {
    width: 100%;
    padding: 1.5rem;
  }
}
/* ==========================================================================
   お問い合わせページ (page-contact.php) 専用スタイル
   ========================================================================== */
.p-sub-hero--contact::before {
  background-image: url("../images/hero/contact-pc.webp");
}

@media screen and (max-width: 767px) {
  .p-sub-hero--contact::before {
    background-position: left center;
  }
}
.p-contact {
  padding: 8rem 0 10rem;
  background-color: #fff;
}
.p-contact__container {
  max-width: 800px;
  margin: 0 auto;
}
.p-contact__title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5rem;
  color: #001f3f;
}

.p-form__row {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px dashed #e5e7eb;
}
.p-form__row:last-of-type {
  border-bottom: none;
  margin-bottom: 4rem;
}
.p-form__label {
  width: 30%;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
}
.p-form__label--top {
  align-items: flex-start;
  margin-top: 1.5rem;
}
.p-form__badge {
  display: inline-block;
  background-color: #c20000;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.2rem 0.8rem;
  margin-left: 1.5rem;
  border-radius: 2px;
  font-weight: 400;
}
.p-form__input {
  width: 70%;
  margin: 0;
}
.p-form__input input[type=text],
.p-form__input input[type=email],
.p-form__input input[type=tel],
.p-form__input textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.6rem;
  font-family: inherit;
  background-color: #fafafa;
  transition: border-color 0.3s ease;
}
.p-form__input input[type=text]:focus,
.p-form__input input[type=email]:focus,
.p-form__input input[type=tel]:focus,
.p-form__input textarea:focus {
  outline: none;
  border-color: #001f3f;
  background-color: #fff;
}
.p-form__input input[type=text]::-moz-placeholder, .p-form__input input[type=email]::-moz-placeholder, .p-form__input input[type=tel]::-moz-placeholder, .p-form__input textarea::-moz-placeholder {
  color: #bbb;
}
.p-form__input input[type=text]::placeholder,
.p-form__input input[type=email]::placeholder,
.p-form__input input[type=tel]::placeholder,
.p-form__input textarea::placeholder {
  color: #bbb;
}
.p-form__input textarea {
  resize: vertical;
  min-height: 150px;
}
.p-form__agreement {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 4rem;
  color: #333;
}
.p-form__agreement a {
  color: #001f3f;
  text-decoration: underline;
}
.p-form__agreement a:hover {
  text-decoration: none;
}
.p-form__agreement .wpcf7-list-item {
  margin: 0;
}
.p-form__agreement input[type=checkbox] {
  transform: scale(1.2);
  margin-right: 1rem;
}
.p-form__submit {
  text-align: center;
}
.p-form__submit input[type=submit] {
  background-color: #001f3f;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 2rem 8rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  letter-spacing: 0.1em;
}
.p-form__submit input[type=submit]:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
  .p-contact {
    padding: 5rem 0 6rem;
  }
  .p-form__row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .p-form__label {
    width: 100%;
    margin-bottom: 1rem;
  }
  .p-form__label--top {
    margin-top: 0;
  }
  .p-form__input {
    width: 100%;
  }
  .p-form__submit input[type=submit] {
    width: 100%;
    padding: 1.5rem 0;
  }
}
.p-form__agreement input[type=checkbox] {
  -moz-appearance: checkbox;
       appearance: checkbox;
  -webkit-appearance: checkbox;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
  background-color: #fff !important;
  border: 1px solid #ccc !important;
}
.p-form__agreement .p-form__checktext {
  vertical-align: middle;
  font-size: 1.4rem;
}

/* ==========================================================================
   お問い合わせ完了ページ専用スタイル
   ========================================================================== */
.l-thanks {
  padding: 100px 0;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.l-thanks .c-title-primary {
  font-family: "Urbanist", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  color: #0068b6;
  margin-bottom: 20px;
}
.l-thanks .p-thanks__lead {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.l-thanks .p-thanks__message {
  line-height: 2;
  font-size: 1.6rem;
  color: #444;
}
.l-thanks .p-thanks__message p {
  margin-bottom: 20px;
}/*# sourceMappingURL=main.css.map */