@charset "UTF-8";
/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --color-main: #104F89; /* 色1：メインカラー（紺） */
  --color-bg: #FFFFFF; /* 色2：背景カラー（白） */
  --color-text: #1A2433; /* 色3：テキストカラー（青みがかったダークグレー） */
  --color-link: #F9700E; /* 色4：テキストリンクカラー（オレンジ） */
  --color-btn: #84BC1B; /* 色5：ボタンリンクカラー（黄緑） */
  --color-box1: #EFF5FF; /* 色6：ボックス背景カラー1（薄水色） */
  --color-box2: #E5EFFF; /* 色7：ボックス背景カラー2（薄水色少し濃い） */
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Oswald', sans-serif;
  --fade-duration: 0.8s;
  --container-max-width: 1200px;
}

/* Common Hover Animation */
/* Radius Variables */
/* メインコンテンツ・カード等の大角丸 */
/* ボタン・パーツ等の小角丸 */
/* Gutter / Side Padding Variables */
/* Keyframe Animations */
@keyframes shineSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
/* Typography Variables */
/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-jp);
  color: var(--color-text);
  background-color: var(--color-bg);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: opacity 0.3s ease, -webkit-text-decoration 0.3s ease;
  transition: opacity 0.3s ease, text-decoration 0.3s ease;
  transition: opacity 0.3s ease, text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Display Utilities */
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  span.sp, br.sp {
    display: inline !important;
  }
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 5vw;
  }
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--fade-duration) ease-out, transform var(--fade-duration) ease-out;
}

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

/* 人の動き（右版・左版） */
@keyframes walkRight {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(100px, -58px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes walkLeft {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-100px, -58px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes shineSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
.person-walk-right {
  animation: walkRight 20s infinite ease-in-out;
}

.person-walk-left {
  animation: walkLeft 20s infinite ease-in-out;
}

.bg-shape {
  position: absolute;
  border-radius: 20px;
  z-index: 0;
  --parallax-y: 0px;
  transform: translateY(var(--parallax-y));
}
.bg-shape.fade-in-target {
  transform: translateY(calc(30px + var(--parallax-y)));
  transition: opacity var(--fade-duration) ease-out, transform var(--fade-duration) ease-out;
}
.bg-shape.fade-in-target.is-visible {
  opacity: 1;
  transform: translateY(var(--parallax-y));
  transition: opacity var(--fade-duration) ease-out, transform 0s;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0;
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
  height: auto;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 40px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .site-header .header-inner {
    padding: 0 5vw;
  }
}
.site-header .site-logo .logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  .site-header .site-logo .logo-wrap {
    gap: 10px;
  }
}
.site-header .site-logo .logo-wrap img {
  height: 33px;
}
@media screen and (max-width: 768px) {
  .site-header .site-logo .logo-wrap img {
    height: 28px;
  }
}
.site-header .site-logo .logo-wrap .logo-text {
  display: flex;
  flex-direction: column;
  color: var(--color-main);
  padding-top: 2px;
  white-space: nowrap;
}
.site-header .site-logo .logo-wrap .logo-text .logo-title {
  font-size: 14px; /* Adjusted to balance */
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .site-header .site-logo .logo-wrap .logo-text .logo-title {
    font-size: 12px;
  }
}
.site-header .site-logo .logo-wrap .logo-text .logo-desc {
  font-size: 10px;
  color: #666;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .site-header .site-logo .logo-wrap .logo-text .logo-desc {
    font-size: 8px;
  }
}
.site-header {
  /* PC Menu */
}
.site-header .header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
  gap: 5px 0;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .site-header .header-nav {
    display: none; /* スマホではハンバーガーメニューにする */
  }
}
.site-header .header-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.site-header .header-nav ul li {
  cursor: pointer;
  padding: 5px 0;
  margin: -5px 0;
}
.site-header .header-nav ul li:hover > a, .site-header .header-nav ul li.is-active > a {
  transform: translateY(-2px);
}
.site-header .header-nav ul li:hover > a::after, .site-header .header-nav ul li.is-active > a::after {
  opacity: 1;
  transform: translateY(0);
}
.site-header .header-nav ul li a {
  display: inline-block;
  position: relative;
  text-decoration: none !important;
  transition: transform 0.3s ease;
  opacity: 1;
}
.site-header .header-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--color-link);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.site-header .header-nav ul li a {
  font-family: var(--font-en);
  font-size: 16px;
}
.site-header .header-nav .header-action {
  display: flex;
  margin-left: 30px;
  align-items: stretch;
  white-space: nowrap;
  width: 280px;
}
.site-header .header-nav .header-action .contact-label {
  border: 2px solid var(--color-main);
  border-right: none;
  background-color: var(--color-bg);
  color: var(--color-main);
  font-size: 12px;
  padding: 1px 12px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 0 0 8px;
  font-weight: bold;
  margin: 0;
  flex: 1;
}
.site-header .header-nav .header-action .btn-contact {
  border: 2px solid var(--color-main);
  background-color: var(--color-main);
  color: var(--color-bg);
  line-height: 1;
  padding: 6px 12px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 8px 8px 0;
  font-family: var(--font-en);
  font-weight: bold;
  text-decoration: none !important;
  font-size: 15px;
  margin: 0;
  flex: 1;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
.site-header .header-nav .header-action .btn-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}
.site-header .header-nav .header-action .btn-contact .btn-text {
  position: relative;
  z-index: 2; /* 光のラインより上に表示 */
  transition: transform 0.3s ease;
}
.site-header .header-nav .header-action .btn-contact:hover {
  background-color: color-mix(in srgb, var(--color-main) 90%, black);
}
.site-header .header-nav .header-action .btn-contact:hover::before {
  animation: shineSweep 1s ease-in;
}
.site-header .header-nav .header-action .btn-contact:hover .btn-text {
  transform: translateY(-2px);
}
.site-header {
  /* Hamburger Button */
}
.site-header .hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .site-header .hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transform: translateX(10px);
  }
  .site-header .hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: 0.3s;
  }
  .site-header .hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .site-header .hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.site-header {
  /* SP Menu Panel */
}
.site-header .sp-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .site-header .sp-nav {
    display: flex; /* SPでは常にflexにしておき、visibilityで隠す（transitionを効かせるため） */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    padding-top: 80px;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(20px); /* 右から少しずらす */
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  }
  .site-header .sp-nav.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0); /* 元の位置へスライド */
  }
  .site-header .sp-nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }
  .site-header .sp-nav ul li {
    margin: 20px 0;
  }
  .site-header .sp-nav ul li a {
    font-family: var(--font-en);
    font-size: 24px;
  }
  .site-header .sp-nav .sp-action {
    margin-top: 30px;
  }
  .site-header .sp-nav .sp-action .btn-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-main);
    color: var(--color-bg);
    padding: 15px 40px;
    border-radius: 12px;
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: bold;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
  }
  .site-header .sp-nav .sp-action .btn-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
  }
  .site-header .sp-nav .sp-action .btn-contact .btn-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
  }
  .site-header .sp-nav .sp-action .btn-contact:hover::before {
    animation: shineSweep 1s ease-in;
  }
  .site-header .sp-nav .sp-action .btn-contact:hover .btn-text {
    transform: translateY(-2px);
  }
  .site-header .sp-nav .sp-action .btn-contact .contact-label {
    font-family: var(--font-jp);
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 5px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #ffffff;
  color: var(--color-text);
  padding: 0 0 30px 0;
  text-align: center;
  font-family: var(--font-en);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 0 0 20px 0;
  }
}
.site-footer .footer-visual {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-visual {
    margin-bottom: 20px;
  }
}
.site-footer .footer-visual img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.site-footer .footer-copyright p {
  margin: 0;
  font-size: 14px;
  color: #8A96A8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-copyright p {
    font-size: 11px;
  }
}

/* ==========================================================================
   reCAPTCHA Badge (トップページ以外では非表示)
   ========================================================================== */
body:not(.home):not(.front-page) .grecaptcha-badge,
body:not(.home):not(.front-page) .rc-anchor {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/*# sourceMappingURL=common.css.map */