@charset "UTF-8";
/* =========================
   CSS RESET
   ========================= */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
}

/* HTML & body */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  color: #000;
  background: #fff;
}

/* Media elements */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

p {
  overflow-wrap: break-word;
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Forms */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Address hidden overflow issue on iOS */
body {
  -webkit-font-smoothing: antialiased;
}

/* Remove animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*-------------------------------------------
  common
-------------------------------------------*/
@font-face {
  font-family: "NotoSerif JP";
  src: url("/asset/fonts/noto-serif-jp/NotoSerifJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSerif JP";
  src: url("../fonts/noto-serif-jp/NotoSerifJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Crimson Text";
  src: url("../fonts/crimson/CrimsonText-Roman.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 100%;
}

body {
  background-color: #ffffff;
  color: #333;
  font-family: "NotoSerif JP", serif;
  font-weight: 400;
}

html,
body {
  height: 100%;
  scroll-snap-type: y mandatory;
}


html:has(.l_low__main),
body:has(.l_low__main) {
  scroll-snap-type: none;
}

.b_container {
  scroll-snap-align: start;
  display: flex;
  justify-self: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .b_container {
    width: 100%;
  }
}
.b_wrapper {
  max-width: 900px;
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 959px) {
  .b_wrapper {
    width: 100%;
    padding-inline: 3%;
  }
}



.l_section__contact {
  scroll-snap-align: start;
}

@media screen and (max-width: 959px) {
  .l_footer {
    scroll-snap-align: start;
  }
}

.l_low__main {
  scroll-snap-type: none;
}


li {
  list-style: none;
}


img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

p {
  line-height: 2;
  font-size: calc(16 / 16 * 1rem);
}

@media (max-width: 959px) {
  p {
    font-size: calc(14 / 16 * 1rem);
  }
}
@media screen and (max-width: 599px) {
  .sp-left {
    text-align: left !important;
  }
  .sp-center {
    text-align: center !important;
  }
}
.sp-br,
.pc-br {
  display: none;
}

@media (max-width: 959px) {
  .sp-br {
    display: inline;
  }
}
@media (min-width: 960px) {
  .pc-br {
    display: inline;
  }
}
.en {
  font-family: "Crimson Text", serif;
}

/* =========================
   header
   ========================= */

.l-header {
  position: relative;
}


.l-header__logo {
  position: fixed;
  z-index: 999;
  left: 2.5rem;
  top: 2.5rem;
}

.l-header__logo a {
display: inline-block;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    rgba(0, 166, 230, 1) 0%,
    rgba(34, 190, 197, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


@media (max-width: 959px) {
  .l-header__logo {
    left: 1rem;
    top: 1rem;
  }
}
.l-header__nav {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 2.5rem;
}

.l-header__nav ul {
  display: grid;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
}
.l-header__nav ul li {
  background: linear-gradient(
    96.87deg,
    #2b4263 5.15%,
    #0e516d 54.79%,
    #007692 100%
  );
  color: #fff;
  border-radius: 1.875rem 0 0 1.875rem;
  text-align: center;
	border: 1px solid transparent;
	transition: background 0.3s ease, border 0.3s ease;
}

.l-header__nav ul li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
	  padding: 0.5rem 1.875rem;
}


.l-header__nav ul li span {
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: inherit;
	transition: color 0.3s ease;
}

.l-header__nav ul li:hover {
  background: #fff;
  border: 1px solid #253957;
  color: #253957;
}
/* ローディング画面 */
#loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

#loading.show {
  opacity: 1;
  pointer-events: auto;
}

#loading.is-hidden {
  opacity: 0;
  transition-delay: 0.3s;
}

#loading.is-hidden .loading_inner {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0s; 
}

.loading_inner {
  text-align: center;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.8s ease, transform 1.0s ease;
  transition-delay: 0.6s; /* 表示時のみ遅延 */
}

#loading.show .loading_inner {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s; /* 表示時の遅延 */
}

.loading_logo a {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(90deg, #00a6e6 0%, #22bec5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-decoration: none;
}



/* ==== ▼ sp-nav start ==== */
/* ハンバーガーボタン */
.hamburger {
position: fixed; 
  right: 16px;
  top: 20px;
  width: 40px;
  height: 30px;
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger__line {
  display: block;
  height: 3px;
background: linear-gradient(90deg, rgba(0, 166, 230, 1) 0%, rgba(34, 190, 197, 1) 100%);
  transition: 0.3s ease;
}

.hamburger__line--top {
  width: 28px;
}

.hamburger__line--bottom {
  width: 18px;
}

/* 開いてる時のバツ変形 */
.hamburger.is-open .hamburger__line--top {
  transform: translateY(5px) rotate(45deg);
  width: 28px;
}

.hamburger.is-open .hamburger__line--bottom {
  transform: translateY(-5px) rotate(-45deg);
  width: 28px;
}

/* ドロワー本体 */
.l_header__sp_drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: 0.45s ease;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}

.l_header__sp_drawer.is-open {
  right: 0;
}

.l_header__sp_drawer__nav {
  width: 70%;
  max-width: 300px;
  background: transparent;
  padding: 60px 24px;
}

.l_header__sp_drawer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l_header__sp_drawer__nav li + li {
  margin-top: 20px;
}

.l_header__sp_drawer__nav a {
  color: #333;
  font-size: 18px;
  text-decoration: none;
}

@media (min-width: 960px) {
  .hamburger,
  .l_header__sp_drawer {
    display: none;
  }
}
@media (max-width: 959px) {
  .l-header__nav {
    display: none;
  }
}

/* =========================
   footer
   ========================= */
.l_footer {
  padding-top: calc(60 / 16 * 1rem);
  background-color: #4f4f4f;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

@media (min-width: 960px) {
  .l_footer__inner {
    max-width: calc(1024 / 16 * 1rem) !important;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 959px) {
  .l_footer__inner {
    padding: 7%;
  }
}
.l_footer p,
.l_footer ul li {
  font-size: calc(14 / 16 * 1rem);
  line-height: 1.8;
  margin-bottom: calc(8 / 16 * 1rem);
}

.l_footer__company {
  font-weight: bold;
}

.l_footer__company span {
  font-size: calc(21 / 16 * 1rem);
}

.l_footer__nav_title {
  font-weight: bold;
  font-size: calc(15 / 16 * 1rem);
}

.l_footer__nav-group ul li {
  position: relative;
  left: 1.5rem;
}

.l_footer__nav-group ul li::before {
  position: absolute;
  content: "-";
  left: -1rem;
}

.l_footer__small {
  font-size: calc(12 / 16 * 1rem);
  text-align: center;
  margin-top: calc(60 / 16 * 1rem);
  padding-bottom: calc(30 / 16 * 1rem);
  color: #ccc;
}

@media (max-width: 959px) {
  .l_footer__small {
    margin-top: calc(15 / 16 * 1rem);
    padding-bottom: calc(15 / 16 * 1rem);
  }
}
.l_footer_nav__waves {
  top: 100px;
}
@media (max-width: 959px) {
.l_footer_nav__waves {
  top: 16.806vw;
}
}

.l_footer__waves {
  height: 100dvh;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
}


.l_footer__waves__inner {
  left: -10%;
  position: relative;
  width: 120%;
}

.l_footer__waves svg {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  image-rendering: optimize-contrast;
  max-width: 100%;
  vertical-align: bottom;
}

.l_footer__waves svg path {
  stroke: hsla(0, 0%, 100%, 0.1);
}


/* =========================
   main
   ========================= */
/* ==== ▼ fv start ==== */
.l_main__fv_section {
  position: relative;
  height: 100vh;
  scroll-snap-align: start;
}
.fv_particles {
  position: absolute;
  inset: 0;
  z-index:999;
}

.l_main__fv_img {
  background: url(/wp-content/uploads/2026/01/fv_pc.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
	  position: relative;
  z-index: 2;
}

@media (max-width: 959px) {
.l_main__fv_img {
  background: url(/wp-content/uploads/2026/01/fv_sp2.jpg) no-repeat;
	background-size: contain;
}
}


.l_main__fv_text_wrap {
	position:absolute;
	color:#fff;
	bottom:10%;
	left:2%;
	  z-index: 3;
}

@media (max-width: 959px) {
.l_main__fv_text_wrap {
		bottom:17%;
	}
}
.l_main__fv_text_wrap h1 {
	font-weight:bold;
	font-size:clamp(30px, 4vw, 50px);
}

.l_main__fv_text_wrap h1 span {
	font-size:clamp(50px, 5vw, 70px);
}
.l_main__fv_subText {
	text-shadow:1px 1px 1px #000;
	font-weight:bold;
}

/* ==== ▲ fv end ==== */
/* ==== ▼ common start ==== */

/* #Button
  -------------------------------------------------------------------------- */
/* --- ホバーするとシャドウが付く ---*/
.c_button {
  margin-top: calc(40 / 16 * 1rem);
}

.c_button a {
  display: inline-block;
  padding: calc(10 / 16 * 1rem) calc(20 / 16 * 1rem);
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
background: linear-gradient(96.87deg, #2B4263 5.15%, #0E516D 54.79%, #007692 100%);
  position: relative;
  transition: color 0.5s ease;
  z-index: 0;
	border: 1px solid transparent;
	  border-radius: 1.875rem;
	overflow: hidden;
}

.c_button a::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    #f6e27a,
    #d4af37 25%,
    #fff1a8 45%,
    #b8932e 65%,
    #f6e27a
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.c_button a:hover::after {
  filter: brightness(1.15);
}


.c_button a:hover {
  border: 1px solid #253957;
}

.c_button a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.c_button a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
	background: #000;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  z-index: -1;
	  border-radius: 1.875rem;
}



/* ==========================================================================
  Animation Utility（完成版）
========================================================================== */
:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --fade-distance: 24px;
  --fade-duration: 2s;
}

/* ------------------------------------------
  base（必須）
------------------------------------------ */
.is-fade-base {
  opacity: 0;
  transition: opacity var(--fade-duration) var(--ease-out), transform var(--fade-duration) var(--ease-out);
  will-change: opacity, transform;
}
.is-fade-base.is-show {
  opacity: 1;
  transform: translate(0);
}

/* ------------------------------------------
  direction（移動方向だけ）
------------------------------------------ */
.is-fade-up {
  transform: translateY(var(--fade-distance));
}

.is-fade-down {
  transform: translateY(calc(var(--fade-distance) * -1));
}

.is-fade-left {
  transform: translateX(var(--fade-distance));
}

.is-fade-right {
  transform: translateX(calc(var(--fade-distance) * -1));
}

/* ------------------------------------------
  delay（時間差）
------------------------------------------ */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-7 {
  transition-delay: 0.7s;
}

.delay-8 {
  transition-delay: 0.8s;
}

.delay-9 {
  transition-delay: 0.9s;
}

.delay-10 {
  transition-delay: 1s;
}

.delay-11 {
  transition-delay: 1.1s;
}

.delay-12 {
  transition-delay: 1.2s;
}

.delay-13 {
  transition-delay: 1.3s;
}

.delay-14 {
  transition-delay: 1.4s;
}

.delay-15 {
  transition-delay: 1.5s;
}

.delay-16 {
  transition-delay: 1.6s;
}

.delay-17 {
  transition-delay: 1.7s;
}

.delay-18 {
  transition-delay: 1.8s;
}

.delay-19 {
  transition-delay: 1.9s;
}

.delay-20 {
  transition-delay: 2s;
}

.l_main__sec_title {
  position: relative;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: bold;
  text-align: center;
  margin-bottom: calc(40 / 16 * 1rem);
  white-space: nowrap;
color: #0f172a;
	z-index:0;
}

.l_main__sec_title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
top: clamp(-8rem, -11vw, -3rem);
	font-size:clamp(24px, 12vw, 140px); 
  font-weight: bold;
  white-space: nowrap;
color: rgba(204, 204, 204,0.5);
  pointer-events: none;
		z-index:-1;
	
}

.l_section__service .l_main__sec_title {
  color: #fff;
}
.l_main__sec_title.mission_title::before {
  content: "Why Us";
}

.l_main__sec_title.service_title::before {
  content: "Service";
}

.l_main__sec_title.works_title::before {
  content: "How we work";
}

.l_main__sec_title.company_title::before {
  content: "Company";
}


.l_main__sec_title.message_title::before {
  content: "Message";
}


.l_main__sec_title.contact_title::before {
  content: "Contact";
}


.l_low__sec_title {
  font-size: calc(30 / 16 * 1rem);
  font-weight: bold;
  margin-bottom: calc(40 / 16 * 1rem);
  white-space: nowrap;
}

.l_low__wrap {
  display: flex;
  margin-top: calc(120 / 16 * 1rem);
}

@media (max-width: 1099px) {
  .l_low__wrap {
    margin-top: calc(0 / 16 * 1rem);
  }
}

.l_low__fv {
	position:relative;
	  height: calc(760 / 16 * 1rem);
}

@media (min-width: 2501px) {
.l_low__fv {
background-size:cover;
}
}

.l_low__fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.l_low__fv_inner,
.l_low__scroll {
  position: relative;
  z-index: 2;
  color: #fff;
}

.l_low__fv_inner {
  position: absolute;
  left: 7vw;
  top: 50%;
  transform: translateY(-50%);
}

.l_low__scroll {
  color: #fff;
  position: absolute;
  right: 3rem;
  bottom: 7rem;
  writing-mode: vertical-rl;
}

.l_low__scroll:after {
  content: "";
  font-size: calc(12 / 16 * 1rem);
  border-right: 1px solid #fff;
  width: calc(1 / 16 * 1rem);
  height: calc(90 / 16 * 1rem);
  position: absolute;
  bottom: -r(100);
  left: 40%;
  transform: translateX(-60%);
}

.l_low__fv_subTitle {
  font-size: clamp(40 / 16 * 1rem, 5vw, 80 / 16 * 1rem);
  font-weight: bold;
  margin-bottom: calc(25 / 16 * 1rem);
}

.l_low__fv_title {
  margin-bottom: calc(40 / 16 * 1rem);
  font-weight: bold;
  font-size: clamp(20 / 16 * 1rem, 2vw, 25 / 16 * 1rem);
}

.l_low__fv_subTitle,
.l_low__fv_title,
.l_low__fv_text {
  color: #f2f4f5;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.l_low__nav {
  width: 300px;
  flex-shrink: 0;
  margin-left: 5%;
  background-color: #f3f4f4;
  padding: 1.5rem 3rem;
  height: 100vh;
}

@media (min-width: 1100px) {
  .l_low__wrap {
    display: flex;
    align-items: flex-start;
  }
  .l_low__nav {
    position: sticky;
    top: 120px;
    height: calc(100vh - 120px);
    overflow-y: auto;
  }
}
.l_low__nav ul li {
  margin-bottom: calc(16 / 16 * 1rem);
}

@media (max-width: 1099px) {
  .l_low__wrap {
    display: block;
  }
  .l_low__nav {
    width: 100%;
    height: auto;
    margin-left: 0;
    padding: 1rem 3%;
    background-color: #f3f4f4;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .l_low__nav ul {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .l_low__nav ul li {
    margin-bottom: 0;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .l_low__content {
    margin-top: calc(40 / 16 * 1rem);
    padding-inline: 3%;
  }
}
.l_low__content {
  margin-top: calc(80 / 16 * 1rem);
  padding-inline: 3%;
}

.l_low__common__inner {
  max-width: 900px;
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 959px) {
  .l_low__common__inner {
    width: 100%;
    padding-inline: 3%;
  }
}

/* ==== ▲ common end ==== */
/* ==== ▼ mission start ==== */
.l_section__mission {
	background-color:#EBF5FC;
}

.l_section__mission p {
	margin-bottom:2rem;
	text-align:left;
}

.l_section__mission p.l_main__mission_bigText {
	font-weight:bold;
	font-size:clamp(20px, 1.979vw, 36px);
	text-align:center;
	line-height:1.3;
}





/* ==== ▲ mission end ==== */

/* ==== ▼ service start ==== */
.l_section__service {
	background: linear-gradient(96.87deg, #2B4263 5.15%, #0E516D 54.79%, #007692 100%);
      background-size: 400% 400%;
      animation: gradientShift 15s ease infinite;
      display: flex;
      justify-content: center;
      align-items: center;
	color:#fff;
    }

    @keyframes gradientShift {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
}

.l_main__service_list h3 {
  font-weight: bold;
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 2rem);
  filter: drop-shadow(0px 10px 24px rgba(42, 161, 182, 0.8)) drop-shadow(0px -2px 10px rgba(42, 67, 99, 0.7)) drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.7));
}

.l_main__service_list {
	  margin-bottom: calc(20 / 16 * 1rem);
}



/* ==== ▲ service end ==== */

/* ==== ▼ works start ==== */
.l_section__works {
	background-color:#EBF5FC;
	position:relative;
}

.l_section__works:after {
	position:absolute;
	content:"";
	bottom:0;
	left:0;
	width:100%;
background:url(/wp-content/uploads/2026/01/work-bg3.png) no-repeat;
	background-size:cover;
	aspect-ratio: 2/1;
}
	



  .l_main__works_list {
    display: flex;
    gap: 5vw;
    justify-content: center;
	  align-items: flex-start;
}


.l_main__works_item__inner {
	position:relative;
  margin-bottom: 2rem;
	    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	flex:1;
	gap:20px;
	z-index:90;
}

.l_main__works_item__inner h3 {
  flex-shrink: 0;
  width: 190px;
aspect-ratio: 1.18 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(
    135deg,
    #2B4263,
    #0E516D,
    #007692
  );
position:relative;
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );
}
	
	@media (max-width: 959px) {
		.l_main__works_item__inner h3 {
			  width: 100%;
		}
	}

.l_main__works_item__inner h3::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    #f6e27a,
    #d4af37 25%,
    #fff1a8 45%,
    #b8932e 65%,
    #f6e27a
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
	  clip-path: inherit;
}



/* ==== ▲ works end ==== */

/* ==== ▼ contact start ==== */
.l_section__contact {
  position: relative;
  padding-block: calc(120 / 16 * 1rem);
  color: #fff;
	text-shadow:1px 1px 1px #333;
  overflow: hidden;
}
.l_section__contact_bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url(/wp-content/uploads/2026/01/contact-bg.jpg) center / cover no-repeat;
  z-index: 1;
}

.l_section__contact > .b_wrapper {
  position: relative;
  z-index: 2;
}

.l_section__contact .l_main__sec_title {
  color: #fff;
  font-size: clamp(70 / 16 * 1rem, 5vw, 120 / 16 * 1rem);
}


@media (min-width: 960px) {
  .l_section__contact .b_wrapper {
    max-width: calc(1024 / 16 * 1rem) !important;
    margin-inline: auto;
  }
  .l_section__contact .l_main__contents_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.l_main__contact_left h2,
.l_main__contact_left p {
  text-align: left;
	font-weight:bold;
}

.l_main__contact_number {
  font-size: calc(55 / 16 * 1rem);
  font-weight: bold;
}

@media (max-width: 599px) {
  .l_main__contact_number {
    font-size: calc(40 / 16 * 1rem);
  }
}
.l_main__contact_time {
  font-weight: bold;
}

/* ==== ▲ contact end ==== */

/* -------------------------------------------------------------------------- 
   #contact-page
----------------------------------------------------------------------------- */
/* ==== ▼ contact 電話 start ==== */
.l_contact__fv {
	background-image:url(/wp-content/uploads/2026/01/contact_bg.jpg);
		background-position:center;
}

.l_contact__container {
	background-color:#EBF5FC;
	
}

.l_contact__inner {
	padding-block: calc(120 / 16 * 1rem);
}

/* =========================================================
   contact-page form (Contact Form 7)
========================================================= */

/* フォーム全体 */
.l_contact__container .wpcf7 {
  max-width: 720px;
  margin-inline: auto;
}

/* 各フィールドブロック */
.l_contact__container .wpcf7 label {
  display: block;
  margin-bottom: 2rem;
  text-align: left;
  font-weight: 700;
  color: #2b4363;
  font-size: 0.95rem;
}

/* 入力欄 */
.l_contact__container .wpcf7 input[type="text"],
.l_contact__container .wpcf7 input[type="email"],
.l_contact__container .wpcf7 textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: #fff;
  border: 1px solid #ccd6dd;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.6;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* テキストエリア */
.l_contact__container .wpcf7 textarea {
  min-height: 160px;
  resize: vertical;
}

/* フォーカス時 */
.l_contact__container .wpcf7 input:focus,
.l_contact__container .wpcf7 textarea:focus {
  border-color: #22bec5;
  box-shadow: 0 0 0 2px rgba(34, 190, 197, 0.15);
}

/* プレースホルダ */
.l_contact__container .wpcf7 ::placeholder {
  color: #999;
}

/* 送信ボタン */
.l_contact__container .wpcf7 input[type="submit"] {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 3rem;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(0, 166, 230, 1) 0%,
    rgba(34, 190, 197, 1) 100%
  );
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* 送信ボタン hover */
.l_contact__container .wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(34, 190, 197, 0.35);
}

/* 必須エラー */
.wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #c0392b;
}

/* エラーメッセージ全体 */
.wpcf7-response-output {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  font-size: 0.95rem;
  text-align: center;
}

/* 成功 */
.wpcf7-mail-sent-ok {
  background: #eaf8f9;
  border: 1px solid #22bec5;
  color: #007692;
}

/* 失敗 */
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background: #fdecea;
  border: 1px solid #e74c3c;
  color: #c0392b;
}

/* SP微調整 */
@media (max-width: 599px) {
  .l_contact__container .wpcf7 label {
    font-size: 0.9rem;
  }

  .l_contact__container .wpcf7 input[type="submit"] {
    width: 100%;
    padding: 0.85rem;
  }
}


/* -------------------------------------------------------------------------- 
   #company-page
----------------------------------------------------------------------------- */

.l_company__fv{
		background-image:url(/wp-content/uploads/2026/01/company_bg.jpg);
	background-position:center right 24%;
}

.l_company__message_wrap {
	background-color:#EBF5FC;
}

.company__inner {
		padding-block: calc(120 / 16 * 1rem);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.company-table th,
.company-table td {
  border: 1px solid #ccc;
  padding: 0.75rem 1rem;
  vertical-align: top;
}

.company-table th {
  width: 30%;
  background: #f7f7f7;
  font-weight: 600;
  text-align: left;
}

.company-table a {
  color: inherit;
  text-decoration: underline;
}

.ceo-message {
  max-width: 880px;
  margin-inline: auto;
  line-height: 1.9;
}

/* 見出し */
.ceo-message__title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

/* 本文 */
.ceo-message__body p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* 署名 */
.ceo-message__name {
  margin-top: 2.5rem;
  text-align: right;
  font-size: 0.95rem;
}

.ceo-message__name strong {
  font-size: 1.05rem;
  font-weight: 700;
}


/* -------------------------------------------------------------------------- 
   #business-page
----------------------------------------------------------------------------- */
.l_business__fv{
		background-image:url(/wp-content/uploads/2026/01/service-bg.jpg);
	background-position:center right 24%;
}

.service__wrap {
	background-color:#EBF5FC;
	padding-block: calc(120 / 16 * 1rem);
}

.service .common__sub_text {
  padding-top: calc(54 / 16 * 1rem);
  color: #2b4363;
  text-align: center;
}

.service h2.common__title {
  color: #2b4363;
  text-align: center;
}

.service__content {
  position: relative;
  margin-bottom: calc(60 / 16 * 1rem);
}

@media (max-width: 959px) {
  .service__content {
    margin-bottom: calc(28 / 16 * 1rem);
  }
}
.service__content img {
  width: min(70%, 623 / 16 * 1rem);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.service__marquee_wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}

.service__marquee {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 20s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.service__marquee span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: calc(135 / 16 * 1rem);
  white-space: nowrap;
  background: linear-gradient(182.8deg, rgba(63, 105, 150, 0.5) 55.13%, rgba(0, 152, 186, 0.5) 87.41%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: calc(80 / 16 * 1rem);
}

.service__content_wrap {
  background-color: #fff;
  border-radius: calc(10 / 16 * 1rem);
  box-shadow: 0 calc(6 / 16 * 1rem) 1px #2b4363;
  padding: calc(35 / 16 * 1rem) calc(39 / 16 * 1rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: calc(44 / 16 * 1rem);
}

@media (min-width: 960px) {
  .service__content_wrap:nth-of-type(2) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 959px) {
  .service__content_wrap {
    flex-direction: column;
    padding: 0;
  }
}
.service__content_wrap h3 {
  color: #2b4363;
  font-size: calc(27 / 16 * 1rem);
  font-weight: 700;
}

.service__content_wrap--01 .service__sub_text span {
  display: inline-block;
  background: linear-gradient(272.39deg, #ad3505 4.85%, #b63603 51.1%, #cd4008 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.service__content_wrap--02 .service__sub_text span {
  display: inline-block;
  background: linear-gradient(272.39deg, #b46f00 4.85%, #b46f00 45.75%, #ec9200 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.service__content_wrap--03 .service__sub_text span {
  display: inline-block;
  background: linear-gradient(272.39deg, #007237 4.85%, #00994a 51.1%, #32a469 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.service__content_wrap--01 .service__content_index {
  background: linear-gradient(272.39deg, #ad3505 4.85%, #b63603 51.1%, #cd4008 92%);
}

.service__content_wrap--02 .service__content_index {
  background: linear-gradient(272.39deg, #b46f00 4.85%, #b46f00 45.75%, #ec9200 92%);
}

.service__content_wrap--03 .service__content_index {
  background: linear-gradient(272.39deg, #007237 4.85%, #00994a 51.1%, #32a469 92%);
}

.service__content_wrap__left {
  width: 40vw;
  max-width: calc(480 / 16 * 1rem);
  position: relative;
  overflow: hidden;
}

.service__content_index {
  color: #fff;
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  border-radius: 10px 0 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  padding: calc(3 / 16 * 1rem) calc(10 / 16 * 1rem) calc(3 / 16 * 1rem) calc(31 / 16 * 1rem);
}

.service__content_wrap__left img {
  border-radius: calc(10 / 16 * 1rem);
}

.service__content_wrap__right {
  width: calc(421 / 16 * 1rem);
}

@media (max-width: 959px) {
  .service__content_wrap__left,
  .service__content_wrap__right {
    max-width: 100%;
    width: 100%;
  }
  .service__content_wrap__right {
    padding: calc(20 / 16 * 1rem) calc(14 / 16 * 1rem);
  }
}

/* ======================================================================
   下層_プライバシーポリシー
   ====================================================================== */
.l_privacyPlicy__fv{
		background-image:url(/wp-content/uploads/2026/01/privacy-bg.jpg);
	background-position:center right 24%;
}


.low__privacyPolicy__inner {
  background-color: #ecf4ff;
  border-radius: calc(70 / 16 * 1rem);
  margin: calc(85 / 16 * 1rem) calc(125 / 16 * 1rem);
  padding: calc(60 / 16 * 1rem) calc(50 / 16 * 1rem);
}

@media (max-width: 959px) {
  .low__privacyPolicy__inner {
    padding: calc(60 / 16 * 1rem) 2%;
    margin: calc(40 / 16 * 1rem) 3%;
  }
}
.low__privacyPolicy__text_wrap {
  line-height: calc(30 / 16 * 1rem);
  margin-bottom: calc(30 / 16 * 1rem);
}

.low__privacyPolicy__intro_text {
  margin-bottom: calc(30 / 16 * 1rem);
}

.low__privacyPolicy h2.common__title {
  font-size: calc(20 / 16 * 1rem);
  color: #000;
  margin-bottom: calc(10 / 16 * 1rem);
}

.low__privacyPolicy__text_wrap ol {
  padding-left: 1.5rem;
}