@charset "UTF-8";
/**
 * foundation.scssここから
 */
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* resetここまで */
@font-face {
  font-family: "Roboto Digits";
  src: local("Roboto Regular"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2) format("woff2");
  unicode-range: U+0030-0039;
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "Oswald", "Roboto", "Noto Sans JP", Helvetica, Arial, Verdana, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333333;
  letter-spacing: 0.05em;
  line-height: 1.8;
  background-color: #ffffff;
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

a[href] {
  cursor: pointer !important;
}

/**
 * foundation.scssここまで
 */
/**
 * layout.scssここから
 */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  height: auto;
  transition: top 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: stretch;
}
.l-header .l-header__inner {
  max-width: 1920px;
  margin-inline: auto;
}
.l-header {
  /* nav と並列にした contact ボタン */
}
.l-header > .c-contact__btn--menu {
  flex-shrink: 0;
}
.l-header {
  /* フッターまでスクロールしたとき（transform を使わず top で制御し、Safari で fixed 子要素が正しく表示されるようにする） */
}
.l-header.is-hidden {
  top: -100vh;
  /* モバイル: contact ボタンは画面一番上に移動（fixed のまま top のみ変更で Safari も考慮） */
}
.l-header.is-hidden > .c-contact__btn--menu {
  top: 0;
}
@media (width >= 1025px) {
  .l-header.is-hidden > .c-contact__btn--menu {
    top: auto;
  }
}
.l-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.l-header {
  /* スクロール時は擬似要素を非表示（フェードアウト） */
}
.l-header.is-scroll::after {
  opacity: 0;
  pointer-events: none;
}

.l-main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  width: 100vw;
  min-height: 100vh;
  position: relative;
}
.l-main .l-section + .l-section {
  padding-top: 40px;
}

.l-footer {
  background-color: #003399;
}

/* フッターラッパー（ベース = モバイル：縦並び） */
.l-footer__wrapper {
  padding-block: 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  color: #ffffff;
}
.l-footer__wrapper > * {
  width: 100%;
}

@media (width >= 1025px) {
  .l-footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2em;
  }
  .l-footer__wrapper > * {
    width: 50%;
  }
}
.l-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* グローバルナビ共通（border-bottom は .l-nav のみで .c-contact__btn--menu の下には伸ばさない） */
.l-nav {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  z-index: 900;
  border-bottom: 1px solid #e0e0e0;
  min-height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
}
.l-nav .c-logo {
  border-right: 1px solid #e0e0e0;
  align-self: stretch;
}
.l-nav .c-logo a:hover {
  color: #ffffff;
  background-color: #1a1a1a;
}
.l-nav .c-logo a:hover svg .cls-1 {
  fill: #ffffff;
}

.l-nav__box {
  display: flex;
  align-items: center;
}

/* メニューリスト（ベース = モバイル：ドロワー） */
.l-menu-list {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  transform: translateX(150%);
  transition: transform 0.5s ease;
  color: #ffffff;
  z-index: 1010;
}
.l-menu-list li {
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
}
.l-menu-list li a {
  text-transform: uppercase;
  display: block;
  font-weight: bold;
  padding-block: 16px;
  padding-left: 16px;
  color: #ffffff;
  border-right: none;
  transition: all 0.3s;
}

.l-menu-list li + li {
  margin-top: 1rem;
}

/* ハンバーガーアイコン（ベース = モバイルで表示） */
.l-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  position: fixed;
  right: 24px;
  top: 24px;
  z-index: 1100;
}

.l-hamburger .l-hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #555;
  transition: transform 0.3s ease, opacity 0.2s ease;
  border-radius: 1px;
}

/* 開いた状態のハンバーガー */
.l-hamburger.is-open .l-hamburger__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: #ffffff;
}

.l-hamburger.is-open .l-hamburger__bar:nth-child(2) {
  opacity: 0;
}

.l-hamburger.is-open .l-hamburger__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: #ffffff;
}

/* 1024px以上：デスクトップ用のスタイル */
@media (width >= 1025px) {
  .l-menu-list {
    position: relative;
    width: auto;
    max-width: none;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    transform: none;
    color: inherit;
    z-index: 1000;
  }
  .l-menu-list li {
    width: auto;
    border-bottom: none;
  }
  .l-menu-list li a {
    border-left: 1px solid #e0e0e0;
    padding: 24px;
    color: inherit;
  }
  .l-menu-list li a:hover {
    background-color: #e0e0e0;
  }
  .l-menu-list li a {
    /* 現在のページのタブ（1024px以上） */
  }
  .l-menu-list li a.is-current {
    background-color: #1a1a1a;
    color: #ffffff;
    pointer-events: none;
    border-bottom: 1px solid #1a1a1a;
  }
  .l-menu-list li {
    /* WordPress メニュー：現在のページ（.current-menu-item）にも同じスタイル */
  }
  .l-menu-list li.current-menu-item a {
    background-color: #1a1a1a;
    color: #ffffff;
    pointer-events: none;
    border-bottom: 1px solid #1a1a1a;
  }
  .l-menu-list li + li {
    margin-top: 0;
  }
  .l-hamburger {
    display: none;
  }
}
.l-menu-list--footer {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5em;
}
.l-menu-list--footer li a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9em;
  transition: all 0.3s;
}
.l-menu-list--footer li a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.l-menu-list--footer li::after {
  content: "/";
  margin-left: 0.5em;
}
.l-menu-list--footer li:last-child::after {
  display: none;
}

/* オーバーレイ */
.l-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: -1;
}

/* 開いたときの状態 */
.l-menu-list.is-open {
  transform: translateX(0);
}

.l-overlay.is-open {
  opacity: 1;
  pointer-events: all;
  z-index: 800;
}

/**
 * layout.scssここまで
 */
/**
 * object.scssここから
 */
.c-button01 {
  position: relative;
  margin: 1em auto;
}
.c-button01 a {
  display: block;
  width: 200px;
  padding: 0.4em 1em;
  text-align: center;
  color: #003399;
  background-color: #ffffff;
  border: 2px solid #003399;
  font-weight: bold;
  font-size: 1.1em;
  font-style: normal;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  text-decoration: none;
}
.c-button01 a::before {
  content: "";
  background: #003399;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-button01 a:hover {
  color: #ffffff;
}
.c-button01 a:hover::before {
  transform: scale(1, 1);
}
.c-button01--large a {
  width: 300px;
}
.c-button01--center {
  display: flex;
  justify-content: center;
}

/* お問い合わせボタン（ベース = モバイル：縦書き・固定） */
.c-contact__btn--menu {
  flex-shrink: 0;
  box-sizing: border-box;
  position: fixed;
  right: 0;
  top: 60px;
  z-index: 800;
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* ヘッダー隠れ時の移動をスムーズに */
  /* ハンバーガーよりは下、メインよりは上 */
  width: 3em;
  /* 縦書きボタンの「横幅」を明示的に指定 */
  box-sizing: border-box;
}
.c-contact__btn--menu a {
  text-transform: uppercase;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 0.9em;
  background-color: #003399;
  border: 1px solid #003399;
  text-shadow: 2px 2px 14px rgba(0, 0, 0, 0.4);
  height: 120px;
  width: 100%;
  /* 親の3emいっぱいに広げる */
  padding: 4px;
  writing-mode: vertical-lr;
  display: flex;
  /* Safari対策：中身を中央寄せにするため */
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-sizing: border-box;
}
.c-contact__btn--menu a:hover {
  background-color: #ffffff;
  color: #003399;
  text-shadow: none;
}

/* 1024px以上：デスクトップ用（横書き・フロー内） */
@media (width >= 1025px) {
  .c-contact__btn--menu {
    position: relative;
    right: auto;
    top: auto;
    z-index: 100;
    width: auto;
  }
  .c-contact__btn--menu a {
    font-size: inherit;
    height: auto;
    width: auto;
    padding: 24px;
    writing-mode: horizontal-tb;
    display: block;
  }
}
.c-panel-heading__sub {
  text-transform: capitalize;
  font-size: clamp(1rem, 0.902rem + 0.43vw, 1.25rem);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #003399;
}
.c-panel-heading__title {
  font-size: clamp(1.25rem, 0.962rem + 1.28vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #003399;
}
.c-panel-heading--white .c-panel-heading__sub,
.c-panel-heading--white .c-panel-heading__title {
  color: #ffffff;
}

.c-h1heading {
  font-size: clamp(2rem, 1.472rem + 2.25vw, 3.5rem);
  font-weight: 700;
  font-style: normal;
  color: #003399;
  line-height: 1.4;
  white-space: nowrap;
}

.c-h2heading {
  display: inline-block;
  padding: 8px;
  position: relative;
}
.c-h2heading span {
  font-size: clamp(1.5rem, 1.148rem + 1.5vw, 2.5rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  white-space: nowrap;
  position: relative;
  z-index: 5;
  color: #333333;
  margin-left: 0.75em;
}
.c-h2heading::after {
  content: "";
  position: absolute;
  bottom: -0.1em;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom, #003399 0%, rgba(0, 51, 153, 0.2) 100%);
}

.c-h3heading {
  font-size: clamp(1.5rem, 1.141rem + 1.53vw, 1.875rem);
  font-weight: bold;
  color: #003399;
  letter-spacing: 0.05em;
}
@media (width >= 768px) {
  .c-h3heading {
    font-size: clamp(1.875rem, 0.458rem + 2.95vw, 4rem);
  }
}

.c-h4heading {
  font-size: clamp(1.25rem, 0.962rem + 1.28vw, 2.5rem);
  font-weight: bold;
  color: #003399;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.c-h4heading--white {
  color: #ffffff;
}

.c-heading-back {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  background-color: #1a1a1a;
  display: block;
  width: 20%;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.25rem;
  text-transform: uppercase;
  padding: 0.4em 0.4em;
  font-size: clamp(0.7rem, 0.524rem + 0.75vw, 1.2rem);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease-out;
}
.c-heading-back.is-visible {
  transform: translateX(0);
}
.c-heading-back > span {
  background-color: #1a1a1a;
  padding: 0.4em 0.4em;
  position: relative;
  z-index: 2;
}
.c-heading-back::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 30%;
  background-color: #ffffff;
}

.c-heading-back--large {
  position: absolute;
  top: 3vw;
  left: -7%;
  z-index: 0;
  font-size: clamp(2.5rem, -0.141rem + 11.27vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.c-heading__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1em 0;
}
.c-heading__wrapper--center {
  align-items: center;
  justify-content: center;
  padding: 4vw 0 0;
}

.c-heading-with-marquee {
  position: relative;
  overflow: visible;
  min-height: clamp(5rem, 1.359rem + 15.53vw, 20rem);
}
.c-heading-with-marquee .c-heading__wrapper > p,
.c-heading-with-marquee .c-heading__wrapper > .c-h1heading {
  position: relative;
  z-index: 1;
}

.c-page-heading-marquee {
  position: absolute;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(5rem, 1.359rem + 15.53vw, 20rem);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.c-page-heading-marquee__inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  height: 100%;
  animation: page-heading-marquee 20s linear infinite;
  text-transform: uppercase;
  will-change: transform;
}
.c-page-heading-marquee__text {
  font-size: clamp(5rem, 1.359rem + 15.53vw, 20rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.14);
  margin-inline: 0.4em;
  flex-shrink: 0;
}

@keyframes page-heading-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-12.5%);
  }
}
.c-sub-heading {
  font-size: clamp(1rem, 0.902rem + 0.43vw, 1.25rem);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #003399;
  text-transform: uppercase;
}

/* ロゴ（ベース = モバイル） */
.c-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
}
.c-logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  transition: all 0.3s;
}
.c-logo a svg {
  width: min(100%, 200px);
  height: 100%;
  margin-inline: auto;
  transition: fill 0.3s;
}
.c-logo a svg .logo-fill {
  fill: #039;
}
.c-logo a svg path {
  transition: fill 0.3s;
}
.c-logo a svg rect {
  transition: fill 0.3s;
}
.c-logo a:hover svg path {
  fill: #ffffff !important;
}
.c-logo a:hover svg rect {
  fill: #ffffff !important;
}
.c-logo--footer {
  margin-bottom: 1em;
  justify-content: flex-start;
}
.c-logo--footer a {
  justify-content: flex-start;
}
.c-logo--footer a svg {
  margin-inline: 0;
}
.c-logo--footer a svg .logo-fill {
  fill: #ffffff !important;
}
.c-logo--footer a svg path {
  fill: #ffffff !important;
}
.c-logo--footer a svg rect {
  fill: #ffffff !important;
}
.c-logo--footer a:hover svg path {
  fill: #f4f4f4 !important;
}
.c-logo--footer a:hover svg rect {
  fill: #f4f4f4 !important;
}

.c-icon--phone {
  padding-left: 1.4em;
  position: relative;
}
.c-icon--phone::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f095";
  position: absolute;
  left: 0;
}

.c-icon--email {
  padding-left: 1.4em;
  position: relative;
}
.c-icon--email::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  position: absolute;
  left: 0;
}

@media (width >= 1025px) {
  .c-logo {
    width: 250px;
  }
  .c-logo a {
    padding: 0;
  }
}
.c-inner-1280 {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}

.c-inner-1920 {
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 768px) {
  .c-inner-1280,
  .c-inner-1920 {
    padding-inline: 48px;
  }
}
.c-scroll-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: #003399;
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s;
}
.c-scroll-top.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.c-scroll-top:hover {
  background-color: #333e48;
}

.c-list--disc {
  list-style: disc;
  margin-left: 2em;
}
.c-list--disc--flex {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3em;
}

.c-list--num {
  list-style: decimal;
  margin-left: 2em;
}

.c-list--asterisk {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.c-list--asterisk li::before {
  content: "※";
  margin-right: 0.2em;
  position: relative;
  bottom: 1px;
}
.c-list--asterisk.en li::before {
  content: "*";
  margin-right: 0.2em;
  position: relative;
  bottom: 1px;
}

.c-breadcrumbs {
  display: flex;
  position: relative;
  padding-left: 1.2em;
  margin-top: 2em;
  color: #003399;
  text-transform: uppercase;
  font-size: 0.9em;
}
.c-breadcrumbs::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
}
.c-breadcrumbs span:nth-child(2),
.c-breadcrumbs span:nth-child(3) {
  white-space: nowrap;
  margin-left: 0.5em;
  padding-left: 1em;
  position: relative;
}
.c-breadcrumbs span:nth-child(2)::before,
.c-breadcrumbs span:nth-child(3)::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8em;
  position: absolute;
  bottom: 0.1em;
  left: 0;
}

.p-privacy__wrapper {
  padding: 1em;
}
@media (width >= 768px) {
  .p-privacy__wrapper {
    padding: 2em;
  }
}
.p-privacy__wrapper p,
.p-privacy__wrapper ol,
.p-privacy__wrapper ul {
  font-size: clamp(0.875rem, 0.755rem + 0.51vw, 1rem);
}

.p-blog__wrapper {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}
.p-blog__header {
  padding: 12vw 4vw 6vw;
}
@media (width >= 768px) {
  .p-blog__header {
    padding: 6vw 4vw 4vw;
  }
}
.p-blog__header h2 {
  position: relative;
  z-index: 1;
}
.p-blog__card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-blog__card-list--archive {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (width >= 768px) {
  .p-blog__card-list--archive {
    gap: 1.75rem;
  }
}
@media (width >= 1025px) {
  .p-blog__card-list--archive {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.p-blog__cards-static .p-blog__card-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (width >= 768px) {
  .p-blog__cards-static .p-blog__card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}
@media (width >= 1025px) {
  .p-blog__cards-static .p-blog__card-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.p-blog__archive-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 80px;
}
@media (width >= 1025px) {
  .p-blog__archive-layout {
    grid-template-columns: 1fr 280px;
  }
}
.p-blog__archive-main {
  padding-bottom: 40px;
}
@media (width >= 1025px) {
  .p-blog__archive-main {
    min-width: 0;
  }
}
.p-blog__sidebar-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e0e0e0;
}
.p-blog__sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-blog__sidebar-list li {
  margin: 0 0 0.5rem;
}
.p-blog__sidebar-widget--tags .p-blog__sidebar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.p-blog__sidebar-widget--tags .p-blog__sidebar-list li {
  margin: 0;
}
.p-blog__sidebar-widget--tags .p-blog__sidebar-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.8125rem;
  background-color: #f4f4f4;
  color: #333333;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.p-blog__sidebar-widget--tags .p-blog__sidebar-list a:hover {
  background-color: #003399;
  color: #ffffff;
}
.p-blog__sidebar-widget--tags .p-blog__sidebar-list a:hover .p-blog__sidebar-count {
  color: #ffffff;
}
.p-blog__sidebar-widget--tags .p-blog__sidebar-list .p-blog__sidebar-count {
  margin-left: 0.25rem;
  font-size: 0.75rem;
  color: #666;
  transition: color 0.3s ease-in-out;
}
.p-blog__card {
  margin: 0;
}
.p-blog__card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.p-blog__card-link:hover {
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.1);
}
.p-blog__card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.p-blog__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.p-blog__card-link:hover .p-blog__card-thumb img {
  transform: scale(1.05);
}
.p-blog__card-category {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 4px 10px;
  font-size: clamp(0.563rem, 0.517rem + 0.19vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  z-index: 1;
}
@media (width >= 768px) {
  .p-blog__card-category {
    left: 12px;
    bottom: 12px;
  }
}
.p-blog__card--news .p-blog__card-category {
  background-color: #003399;
  color: #ffffff;
}
.p-blog__card--blog .p-blog__card-category {
  background-color: #fbc02d;
  color: #333333;
}
.p-blog__card--uncategorized .p-blog__card-category {
  background-color: #888888;
  color: #ffffff;
}
.p-blog__card-body {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem;
}
@media (width >= 768px) {
  .p-blog__card-body {
    padding: 1.5rem 1.25rem;
  }
}
.p-blog__card-body {
  /* reset: dt/dd のデフォルトマージンを打ち消し（_reset では dl: margin 0, dd: margin-left 0 のみ） */
}
.p-blog__card-body dt,
.p-blog__card-body dd {
  margin: 0;
}
.p-blog__card-date {
  order: 1;
  display: block;
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.p-blog__card-title {
  order: 2;
  font-family: "Roboto Digits", "Oswald", "Roboto", "Noto Sans JP", sans-serif;
  font-size: clamp(0.9375rem, 0.85rem + 0.35vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-blog__card-excerpt {
  order: 3;
  font-family: "Roboto Digits", "Oswald", "Roboto", "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
  padding-top: 1em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-blog__footer {
  margin-top: 2.5rem;
  padding-bottom: 4vw;
  display: flex;
  justify-content: center;
}
@media (width >= 768px) {
  .p-blog__footer {
    margin-top: 3rem;
  }
}
.p-blog__empty-message {
  text-align: center;
  padding: 2rem 1rem 4vw;
  color: #333333;
  font-size: 1rem;
}
.p-blog__splide {
  position: relative;
}
.p-blog__splide .splide__arrow {
  width: 32px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  color: #333333;
  opacity: 1;
  border-radius: 0;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
@media (width >= 1025px) {
  .p-blog__splide .splide__arrow {
    width: 48px;
    height: 72px;
  }
}
.p-blog__splide .splide__arrow svg {
  fill: #003399;
  width: 88%;
  height: 88%;
  max-width: 1.25rem;
  max-height: 1.5rem;
}
@media (width >= 1025px) {
  .p-blog__splide .splide__arrow svg {
    max-width: 2rem;
    max-height: 2.5rem;
  }
}
.p-blog__splide .splide__arrow--prev {
  left: 0;
}
.p-blog__splide .splide__arrow--next {
  right: 0;
}
.p-blog__splide .splide__arrow:hover:not(:disabled) {
  background-color: #f4f4f4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.p-blog__splide .splide__arrow:disabled {
  opacity: 0.3;
}
.p-blog__splide .splide__pagination {
  margin-top: 1.5rem;
  bottom: -2.5rem;
}
.p-blog__splide .splide__pagination__page {
  background-color: #e0e0e0;
}
.p-blog__splide .splide__pagination__page.is-active {
  background-color: #003399;
  transform: scale(1);
}
.p-blog__pagination {
  margin-top: 3rem;
}
.p-blog__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-blog__pagination .nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  color: #333333;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.p-blog__pagination .nav-links .page-numbers:hover:not(.current) {
  background-color: #888888;
  color: #ffffff;
}
.p-blog__pagination .nav-links .page-numbers.current {
  background-color: #003399;
  color: #ffffff;
  font-weight: 600;
  pointer-events: none;
}
.p-blog__pagination .nav-links .page-numbers:not([href]) {
  cursor: not-allowed;
  pointer-events: none;
}
.p-blog__pagination-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.p-blog__pagination-item {
  margin: 0;
}
.p-blog__pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  color: #333333;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.p-blog__pagination-link:hover:not(.p-blog__pagination-link--disabled):not(.p-blog__pagination-link--current) {
  background-color: #e0e0e0;
  color: #ffffff;
}
.p-blog__pagination-link--current {
  background-color: #003399;
  color: #ffffff;
  font-weight: 600;
  pointer-events: none;
}
.p-blog__pagination-link--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.p-blog__single {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3rem;
}
.p-blog__single-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 2rem;
}
.p-blog__single-meta {
  font-size: 0.875rem;
  color: #333333;
  margin-top: 2rem;
}
.p-blog__single-meta time {
  margin-right: 0.5em;
}
.p-blog__single-meta .p-blog__single-cat::before {
  content: "\f07b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.25em;
}
.p-blog__single-title {
  font-family: "Roboto Digits", "Roboto", "Noto Sans JP", sans-serif;
  font-size: clamp(1.5rem, 0.922rem + 2.47vw, 2.5rem);
  font-weight: 700;
  font-style: normal;
  color: #003399;
  line-height: 1.4;
  white-space: nowrap;
}
.p-blog__single-thumb {
  margin: 1.5rem 0 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.p-blog__single-thumb img,
.p-blog__single-thumb picture {
  display: block;
  width: 100%;
  height: auto;
}
.p-blog__single-content.entry-content {
  font-family: "Roboto Digits", "Oswald", "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #333333;
}
.p-blog__single-content.entry-content > * + * {
  margin-top: 1.25em;
}
.p-blog__single-content.entry-content p {
  margin: 0 0 1em;
}
.p-blog__single-content.entry-content h2 {
  display: inline-block;
  padding: 8px;
  position: relative;
  font-size: 1.275rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  white-space: nowrap;
  position: relative;
  z-index: 5;
  color: #333333;
  padding-left: 0.75em;
  margin-bottom: 1em;
}
.p-blog__single-content.entry-content h2::after {
  content: "";
  position: absolute;
  bottom: -0.1em;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom, #003399 0%, rgba(0, 51, 153, 0.2) 100%);
}
.p-blog__single-content.entry-content h2:first-child {
  margin-top: 0;
}
.p-blog__single-content.entry-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1.75em 0 0.5em;
  color: #1a1a1a;
  line-height: 1.4;
}
.p-blog__single-content.entry-content h3:first-child {
  margin-top: 0;
}
.p-blog__single-content.entry-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5em 0 0.5em;
  color: #333333;
  line-height: 1.4;
}
.p-blog__single-content.entry-content ul,
.p-blog__single-content.entry-content ol {
  margin: 0;
  padding-left: 1.5em;
}
.p-blog__single-content.entry-content ul li,
.p-blog__single-content.entry-content ol li {
  margin-bottom: 0.35em;
}
.p-blog__single-content.entry-content blockquote {
  margin: 1.5em 0;
  padding: 1em 1.25em;
  border-left: 4px solid #003399;
  background-color: #f4f4f4;
  color: #333333;
  font-style: normal;
}
.p-blog__single-content.entry-content blockquote p:last-child {
  margin-bottom: 0;
}
.p-blog__single-content.entry-content a {
  color: #003399;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-blog__single-content.entry-content a:hover {
  text-decoration: none;
}
.p-blog__single-content.entry-content img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 6px;
}
.p-blog__single-content.entry-content figure {
  margin: 1.5em 0;
}
.p-blog__single-content.entry-content figure img {
  display: block;
  width: 100%;
}
.p-blog__single-content.entry-content figcaption {
  margin-top: 0.5em;
  font-size: 0.875rem;
  color: #666;
  text-align: left;
}
.p-blog__single-content.entry-content strong {
  font-weight: 700;
}

.l-sidebar__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-family: "Roboto Digits", "Roboto", "Noto Sans JP", sans-serif;
}

.search-submit {
  background-color: #003399;
  color: #ffffff;
  border: none;
  padding: 0.3rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.search-submit:hover {
  filter: brightness(85%) contrast(120%);
}

.p-blog__sidebar-widget--archives a,
.p-blog__sidebar-widget--categories a {
  position: relative;
  padding-bottom: 0.2em;
}
.p-blog__sidebar-widget--archives a::before,
.p-blog__sidebar-widget--categories a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #003399;
  transition: all 0.3s ease-in-out;
}
.p-blog__sidebar-widget--archives a:hover::before,
.p-blog__sidebar-widget--categories a:hover::before {
  width: 100%;
}

.p-service__wrapper {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}
@media (width >= 1025px) {
  .p-service__wrapper {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
}
.p-service__header {
  position: relative;
  padding: 12vw 4vw 6vw;
  border-bottom: 1px solid #e0e0e0;
}
@media (width >= 1025px) {
  .p-service__header {
    grid-column: 1/2;
    grid-row: 1/4;
    border-right: 1px solid #e0e0e0;
    border-bottom: none;
    padding: 6vw 4vw 4vw;
  }
}
.p-service__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.p-service__header h3 {
  position: relative;
  z-index: 1;
}
.p-service__section {
  display: block;
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
  height: max(10vw, 200px);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
@media (width >= 1025px) {
  .p-service__section {
    height: max(14vw, 250px);
  }
}
.p-service__section:last-child {
  border-bottom: none;
}
.p-service__section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: filter 0.3s ease-in-out, transform 0.3s ease-out;
  z-index: 0;
}
@media (width >= 1025px) {
  .p-service__section::before {
    filter: grayscale(100%);
  }
}
.p-service__section:hover::before {
  filter: grayscale(0);
  transform: scale(1.05);
}
.p-service__section--refrigeration::before {
  background-image: image-set(url(../img/service_img01.webp) type("image/webp"), url(../img/service_img01.jpg) type("image/jpeg"));
}
.p-service__section--air-conditioning::before {
  background-image: image-set(url(../img/service_img02.webp) type("image/webp"), url(../img/service_img02.jpg) type("image/jpeg"));
}
.p-service__section--maintenance::before {
  background-image: image-set(url(../img/service_img03.webp) type("image/webp"), url(../img/service_img03.png) type("image/png"));
}
.p-service__box {
  background: rgba(0, 51, 153, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  padding: 1em 1.2em;
  min-width: 50%;
  z-index: 1;
}
.p-service__box > .c-h4heading {
  color: #ffffff;
}
.p-service__box--reverse {
  left: auto;
  right: 0;
}

.p-service-detail {
  background-color: #ffffff;
  overflow: hidden;
}
.p-service-detail__intro {
  font-size: clamp(1rem, 0.636rem + 1.55vw, 2.5rem);
  color: #003399;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-top: 40px;
  text-align: justify;
}
.p-service-detail__item {
  position: relative;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 80px;
}
@media (width >= 1025px) {
  .p-service-detail__item {
    min-height: 400px;
    grid-template-columns: 1fr 1fr;
  }
}
.p-service-detail__item + .p-service-detail__item {
  margin-top: 1em;
}
@media (width >= 1025px) {
  .p-service-detail__item + .p-service-detail__item {
    margin-top: 2em;
  }
}
@media (width >= 1025px) {
  .p-service-detail__item--left .p-service-detail__image-wrapper {
    grid-column: 1;
    grid-row: 1;
  }
  .p-service-detail__item--left .p-service-detail__content {
    grid-column: 2;
  }
}
@media (width >= 1025px) {
  .p-service-detail__item--right .p-service-detail__image-wrapper {
    grid-column: 2;
    grid-row: 1;
  }
  .p-service-detail__item--right .p-service-detail__content {
    grid-column: 1;
  }
}
.p-service-detail__item--highlight .p-service-detail__content {
  background: linear-gradient(135deg, #1a1a1a 0%, rgba(0, 51, 153, 0.9) 100%);
}
.p-service-detail__item--highlight .p-service-detail__content .p-service-detail__list li {
  color: #ffffff;
}
.p-service-detail__item--highlight .p-service-detail__content .p-service-detail__list li::before {
  background-color: #ffffff;
}
.p-service-detail__item--highlight .p-service-detail__content .p-service-detail__list li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.p-service-detail__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
}
@media (width >= 1025px) {
  .p-service-detail__image-wrapper {
    height: 100%;
    min-height: max(400px, 100%);
    min-width: 0;
  }
}
.p-service-detail__image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 1;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.7s ease-out;
}
.p-service-detail__image-wrapper.is-visible::before {
  transform: translateY(-100%);
}
.p-service-detail__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease-out;
}
.p-service-detail__item:hover .p-service-detail__image {
  transform: scale(1.1);
}
.p-service-detail__item--refrigeration .p-service-detail__image {
  background-image: image-set(url("../img/service_img01.webp") type("image/webp"), url("../img/service_img01.jpg") type("image/jpeg"));
}
.p-service-detail__item--air-conditioning .p-service-detail__image {
  background-image: image-set(url("../img/service_img02.webp") type("image/webp"), url("../img/service_img02.jpg") type("image/jpeg"));
}
.p-service-detail__item--maintenance .p-service-detail__image {
  background-image: image-set(url("../img/service_img03.webp") type("image/webp"), url("../img/service_img03.png") type("image/png"));
}
.p-service-detail__content {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 3rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (width >= 1025px) {
  .p-service-detail__content {
    padding: 3rem 4rem;
    min-width: 0;
    overflow: hidden;
  }
}
.p-service-detail__content .c-panel-heading {
  margin-bottom: 2rem;
}
.p-service-detail__number {
  font-size: clamp(5rem, 1.359rem + 15.53vw, 20rem);
  font-weight: 700;
  color: rgba(0, 51, 153, 0.1);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: "Oswald", sans-serif;
}
.p-service-detail__item--highlight .p-service-detail__number {
  color: rgba(255, 255, 255, 0.15);
}
.p-service-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-service-detail__list li {
  padding: 0.875rem 0 0.875rem 1.5rem;
  position: relative;
  color: #333333;
  font-size: clamp(0.9375rem, 0.85rem + 0.35vw, 1.0625rem);
  line-height: 1.6;
  border-bottom: 1px solid rgba(224, 224, 224, 0.3);
}
.p-service-detail__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #003399;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.p-service-detail__badge02 {
  width: 100px;
  margin-top: auto;
  align-self: flex-end;
}
@media (width >= 1025px) {
  .p-service-detail__badge02 {
    width: 140px;
  }
}
.p-service-detail__badge02 img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.2));
}

.p-service-detail__badge-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0 1rem;
}
@media (width >= 1025px) {
  .p-service-detail__badge-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.p-recruit__wrapper {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: stretch;
}
@media (width >= 1025px) {
  .p-recruit__wrapper {
    grid-template-columns: 0.5fr 1fr;
  }
}
.p-recruit__header {
  position: relative;
  padding: 12vw 4vw 6vw;
  border-bottom: 1px solid #e0e0e0;
}
@media (width >= 1025px) {
  .p-recruit__header {
    grid-column: 1/2;
    grid-row: 1/4;
    border-right: 1px solid #e0e0e0;
    border-bottom: none;
    padding: 6vw 4vw 4vw;
  }
}
.p-recruit__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.p-recruit__section {
  position: relative;
  overflow: hidden;
}
.p-recruit__section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: image-set(url(../img/recruit_img01.webp) type("image/webp"), url(../img/recruit_img01.jpg) type("image/jpeg"));
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 0.3s ease-out;
}
@media (width >= 1025px) {
  .p-recruit__section::before {
    filter: grayscale(100%);
  }
}
.p-recruit__section:hover::before {
  filter: grayscale(0);
  transform: scale(1.05);
}
.p-recruit__link {
  display: block;
  height: 100%;
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 4vw 6vw 12vw;
  background-color: transparent;
  background-image: linear-gradient(110deg, rgba(0, 51, 153, 0.7) 0, rgba(0, 51, 153, 0.7) 80%, transparent 80%, transparent 100%);
}
@media (width >= 1025px) {
  .p-recruit__link {
    padding: 2vw 4vw;
    background-image: linear-gradient(110deg, rgba(0, 51, 153, 0.7) 0, rgba(0, 51, 153, 0.7) 62%, transparent 62%, transparent 100%);
  }
}
.p-recruit__link__text {
  font-size: clamp(1rem, 0.558rem + 1.97vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 700;
  color: #ffffff;
}
.p-recruit__link .u-text-underline-arrow {
  position: absolute;
  right: 4vw;
  bottom: 1rem;
}
@media (width >= 1025px) {
  .p-recruit__link .u-text-underline-arrow {
    bottom: 2rem;
  }
}

.p-recruit-page__requirements {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (width >= 1025px) {
  .p-recruit-page__requirements {
    grid-template-columns: 0.5fr 1fr;
  }
}
.p-recruit-page__heading {
  position: relative;
  overflow: hidden;
  padding: 0.75em 1em;
  z-index: 1;
}
@media (width >= 1025px) {
  .p-recruit-page__heading {
    padding: 1.5em 2em;
  }
}
.p-recruit-page__heading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, rgba(0, 51, 153, 0.9) 100%);
  z-index: -1;
}
.p-recruit-page__heading {
  /* カーテン（下から上に開く）※ animation.js で is-visible を付与 */
}
.p-recruit-page__heading::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  z-index: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.7s ease-out;
}
.p-recruit-page__heading.is-visible::after {
  transform: translateY(-100%);
}
.p-recruit-page__heading > .c-panel-heading {
  position: relative;
  z-index: 1;
}
.p-recruit-page__logo {
  position: absolute;
  bottom: 1em;
  right: 1em;
  width: clamp(7.5rem, 6.286rem + 5.18vw, 12.5rem);
  z-index: 1;
  opacity: 0.2;
}
.p-recruit-page__logo img {
  width: 100%;
  height: auto;
}
.p-recruit-page__requirement-card {
  background-color: #ffffff;
  padding: 1.5rem;
}
@media (width >= 1025px) {
  .p-recruit-page__requirement-card {
    padding: 2rem;
  }
}
@media (width >= 1025px) {
  .p-recruit-page__requirement-card--full {
    grid-column: 1/-1;
  }
}
.p-recruit-page__card-title {
  font-size: clamp(1rem, 0.522rem + 2.04vw, 1.5rem);
  font-weight: 700;
  color: #003399;
  margin-bottom: 1em;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #003399;
}
.p-recruit-page__card-list {
  margin: 0;
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  line-height: 1.7;
}
.p-recruit-page__card-list dt {
  font-weight: 700;
  color: #003399;
  padding-bottom: 0.25em;
  margin-top: 1.25em;
}
.p-recruit-page__card-list dt:first-child {
  margin-top: 0;
}
.p-recruit-page__card-list dd {
  padding-bottom: 0.75em;
  color: #333333;
  border-bottom: 1px solid #e0e0e0;
  font-family: "Noto Sans JP", sans-serif;
}
.p-recruit-page__card-list dd span {
  display: inline-block;
  padding: 0.25rem 1rem;
}
.p-recruit-page__benefits-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  line-height: 1.8;
  color: #333333;
}
@media (width >= 1025px) {
  .p-recruit-page__form-section .p-contact__wrapper {
    border-left: none;
  }
}
@media (width >= 1025px) {
  .p-recruit-page__form-section .p-contact__body {
    border-left: none;
    padding-left: 0;
  }
}
.p-recruit-page__form-section {
  /* フォーム全体を折り返し可能に（チェックボックス複数 wrap を横並びにするため） */
}
.p-recruit-page__form-section .p-contact__form {
  flex-wrap: wrap;
}
.p-recruit-page__form-section {
  /* チェックボックスだけを含む行は内容幅で横に並べる（保有資格など） */
}
.p-recruit-page__form-section .wpcf7-form-control-wrap:has(input[type=checkbox]) {
  width: auto;
  flex: 0 1 auto;
  min-width: 0;
}
.p-recruit-page__form-section .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: max-content;
  width: auto;
}
.p-recruit-page__form-section {
  /* 応募フォーム内の checkbox / radio を表示（reset の appearance: none を上書き） */
}
.p-recruit-page__form-section input[type=checkbox] {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  accent-color: #003399;
  cursor: pointer;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
.p-recruit-page__form-section input[type=radio] {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  accent-color: #003399;
  cursor: pointer;
  -webkit-appearance: radio;
  appearance: radio;
}
.p-recruit-page__form-section .wpcf7-form-control-wrap[data-name=experience_years] {
  width: fit-content;
}

.p-contact__wrapper {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}
@media (width >= 1025px) {
  .p-contact__wrapper {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: 1fr;
    align-items: stretch;
    padding: 0;
    gap: 2rem;
  }
}
.p-contact__header {
  position: relative;
  text-align: center;
  padding: 12vw 4vw 6vw;
}
@media (width >= 1025px) {
  .p-contact__header {
    grid-column: 1/2;
    grid-row: 1;
    padding: 6vw 4vw 4vw;
    margin-bottom: 0;
    border-bottom: none;
    text-align: left;
    position: sticky;
    top: 0;
    align-self: start;
  }
}
.p-contact__header .c-h3heading {
  margin-bottom: 16px;
}
.p-contact__body {
  max-width: 640px;
  margin-inline: auto;
  padding: 4vw 24px 8vw;
}
@media (width >= 1025px) {
  .p-contact__body {
    grid-column: 2/3;
    grid-row: 1;
    max-width: none;
    margin-inline: 0;
    padding: 2vw 8vw 8vw;
    border-left: 1px solid #e0e0e0;
  }
}
.p-contact__form-panel {
  padding-top: 2rem;
}
.p-contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-contact {
  /* 各フィールド行（autop 無効時は p がなく .wpcf7-form-control-wrap が直下に並ぶ） */
}
.p-contact__field p, .p-contact__field,
.p-contact .wpcf7-form-control-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact__field p .p-contact__label, .p-contact__field .p-contact__label,
.p-contact .wpcf7-form-control-wrap .p-contact__label {
  flex: 0 0 auto;
  line-height: 1.5;
}
.p-contact__field p .p-contact__required, .p-contact__field .p-contact__required,
.p-contact .wpcf7-form-control-wrap .p-contact__required {
  font-size: 0.75em;
  font-weight: bold;
  line-height: 1.5;
  color: #ffffff;
  background-color: #e00;
  padding: 2px 6px 3px;
}
.p-contact__field p[hidden], .p-contact__field[hidden],
.p-contact .wpcf7-form-control-wrap[hidden] {
  display: none !important;
}
.p-contact__label {
  font-size: clamp(0.875rem, 0.802rem + 0.38vw, 1rem);
  font-weight: bold;
  color: #333333;
  letter-spacing: 0.02em;
}
.p-contact__field--radio {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.p-contact__field--radio .p-contact__label,
.p-contact__field--radio .p-contact__required {
  flex: 0 0 auto;
  line-height: 1.5;
}
.p-contact__radio-group {
  flex: 1 1 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.p-contact__radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  cursor: pointer;
}
.p-contact__radio {
  display: flex;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  accent-color: #003399;
  cursor: pointer;
  -webkit-appearance: radio;
  appearance: radio;
}
.p-contact__field--experience-years .p-contact__input {
  flex: 0 1 auto;
  width: auto;
  max-width: 8em;
}
.p-contact__field--checkboxes {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px 0;
}
.p-contact__checkbox-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
.p-contact {
  /* チェックボックスグループ内側の span を flex にし、.wpcf7-list-item を横並びに（保有資格など） */
}
.p-contact__checkbox-group .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.p-contact__checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  cursor: pointer;
}
.p-contact__select {
  flex: 1 1 100%;
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  color: #333333;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  transition: border-color 0.3s ease-in-out;
  cursor: pointer;
  appearance: auto;
}
.p-contact__select:focus {
  outline: none;
  border-color: #003399;
}
.p-contact__input, .p-contact__textarea {
  flex: 1 1 100%;
  width: 100%;
  padding: 4px 8px;
  font-size: 1rem;
  color: #333333;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  transition: border-color 0.3s ease-in-out;
}
.p-contact__input::placeholder, .p-contact__textarea::placeholder {
  color: #c3c3c3;
}
.p-contact__input:focus, .p-contact__textarea:focus {
  outline: none;
  border-color: #003399;
}
.p-contact__textarea {
  min-height: 160px;
  resize: vertical;
}
.p-contact__field--agree {
  align-items: center;
  flex-direction: row;
  justify-content: center;
  text-align: center;
}
.p-contact__field--agree .wpcf7-form-control-wrap {
  justify-content: center;
}
.p-contact__checkbox input[type=checkbox], .p-contact__field--agree input[type=checkbox] {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  accent-color: #003399;
  cursor: pointer;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
.p-contact__label--agree {
  flex: 1 1 auto;
  font-weight: normal;
  cursor: pointer;
}
.p-contact__label--agree a {
  color: #003399;
  text-decoration: underline;
  transition: opacity 0.3s ease-in-out;
}
.p-contact__label--agree a:hover {
  opacity: 0.8;
}
.p-contact__submit {
  text-align: center;
}
.p-contact__submit .c-button01--submit {
  display: inline-block;
  width: min(100%, 300px);
  padding: 0.6em 2em;
  font-size: 1.1rem;
  font-weight: bold;
  color: #003399;
  background-color: #ffffff;
  border: 2px solid #003399;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  position: relative;
  overflow: hidden;
}
.p-contact__submit .c-button01--submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #003399;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 0;
}
.p-contact__submit .c-button01--submit .c-button01--submit__text {
  position: relative;
  z-index: 1;
}
.p-contact__submit .c-button01--submit:hover {
  color: #ffffff;
}
.p-contact__submit .c-button01--submit:hover::before {
  transform: scale(1, 1);
}
.p-contact__submit .c-button01--submit:disabled {
  color: rgba(0, 51, 153, 0.4);
  border-color: #e0e0e0;
  background-color: #f4f4f4;
  cursor: not-allowed;
}
.p-contact__submit .c-button01--submit:disabled::before {
  display: none;
}
.p-contact__submit .c-button01--submit:disabled:hover {
  color: rgba(0, 51, 153, 0.4);
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.p-company__wrapper {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}
@media (width >= 1025px) {
  .p-company__wrapper {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    grid-template-rows: 1fr;
    align-items: stretch;
  }
}
.p-company__header {
  position: relative;
  padding: 12vw 4vw 6vw;
  border-bottom: 1px solid #e0e0e0;
}
@media (width >= 1025px) {
  .p-company__header {
    grid-column: 2/3;
    grid-row: 1;
    border-left: 1px solid #e0e0e0;
    border-bottom: none;
    padding: 6vw 4vw 4vw;
  }
}
.p-company__header h3 {
  z-index: 1;
}
.p-company__section {
  grid-column: 1/2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}
.p-company__card-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.p-company__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  position: relative;
  z-index: 1;
  min-height: 150px;
  padding: 1em 4vw;
  box-sizing: border-box;
  background-color: #f4f4f4;
  border-bottom: 1px solid #e0e0e0;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.p-company__card .u-text-underline-arrow {
  position: absolute;
  bottom: 1em;
  right: 4vw;
}
.p-company__card--message {
  position: relative;
  overflow: hidden;
}
.p-company__card--message::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: image-set(url(../img/company_president.webp) type("image/webp"), url(../img/company_president.jpg) type("image/jpeg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  filter: grayscale(70%);
}
@media (width >= 1025px) {
  .p-company__card--message::before {
    filter: blur(4px) grayscale(100%);
  }
}
.p-company__card--message:hover::before {
  filter: blur(0) grayscale(70%);
  transform: scale(1.05);
}
.p-company__card--history {
  position: relative;
  overflow: hidden;
}
.p-company__card--history::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: image-set(url(../img/company_history.webp) type("image/webp"), url(../img/company_history.jpg) type("image/jpeg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  filter: grayscale(70%);
}
@media (width >= 1025px) {
  .p-company__card--history::before {
    filter: blur(4px) grayscale(100%);
  }
}
.p-company__card--history:hover::before {
  filter: blur(0) grayscale(70%);
  transform: scale(1.05);
}
.p-company__card--overview {
  position: relative;
  overflow: hidden;
}
.p-company__card--overview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: image-set(url(../img/honsha3.webp) type("image/webp"), url(../img/honsha3.jpg) type("image/jpeg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  filter: grayscale(70%);
}
@media (width >= 1025px) {
  .p-company__card--overview::before {
    filter: blur(4px) grayscale(100%);
  }
}
.p-company__card--overview:hover::before {
  filter: blur(0) grayscale(70%);
  transform: scale(1.05);
}
.p-company__card:last-child {
  border-bottom: none;
}
@media (width >= 1025px) {
  .p-company__card {
    min-height: 200px;
  }
}

.p-company-content__wrapper .p-company-content__item + .p-company-content__item {
  margin-top: 2em;
}
@media (width >= 1025px) {
  .p-company-content__wrapper .p-company-content__item + .p-company-content__item {
    margin-top: 4em;
  }
}

.p-company-history {
  position: relative;
  overflow: hidden;
}
.p-company-history__body {
  position: relative;
  z-index: 1;
}
.p-company-history__body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../img/icon_faitech.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  opacity: 0.06;
  pointer-events: none;
}
@media (width >= 1025px) {
  .p-company-history__body::before {
    background-size: 60%;
  }
}
.p-company-history__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-company-history__header > .c-panel-heading {
  background-color: #ffffff;
  padding-right: 1em;
  position: relative;
  z-index: 1;
}
@media (width >= 1025px) {
  .p-company-history {
    margin: 0 0 1rem;
  }
}
.p-company-history__text {
  align-items: baseline;
  gap: 0.3em;
  padding-left: 1rem;
  font-size: clamp(1.5rem, 0.893rem + 2.59vw, 4rem);
  font-weight: 700;
  line-height: 1.3;
  color: rgba(0, 51, 153, 0.2);
  letter-spacing: 0.05em;
  position: relative;
}
.p-company-history__text::before {
  content: "";
  width: 100%;
  background: rgba(0, 51, 153, 0.2);
  height: 1px;
  position: absolute;
  bottom: 38%;
  left: -100%;
  z-index: -1;
}
.p-company-history__text span {
  display: block;
  background-color: #ffffff;
  font-size: 1.5em;
  padding: 0 0 0 0.3em;
}
.p-company-history__content {
  margin-top: 2.5rem;
  padding: 0;
  list-style: none;
  border-left: 3px solid rgba(0, 51, 153, 0.25);
  padding-left: 1rem;
}
@media (width >= 1025px) {
  .p-company-history__content {
    margin-top: 3rem;
    padding-left: 2rem;
  }
}
.p-company-history__row {
  display: grid;
  grid-template-columns: 6.5em 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e0e0e0;
  margin: 0;
}
.p-company-history__row:last-child {
  border-bottom: none;
}
@media (width >= 1025px) {
  .p-company-history__row {
    grid-template-columns: 8.5em 1fr;
    gap: 1.25rem 2rem;
    padding: 1.5rem 0;
  }
}
.p-company-history__year {
  font-size: clamp(0.875rem, 0.755rem + 0.51vw, 1rem);
  font-weight: 700;
  color: #003399;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin: 0;
  flex-shrink: 0;
}
.p-company-history__event {
  font-size: clamp(0.875rem, 0.755rem + 0.51vw, 1rem);
  line-height: 1.7;
  color: #333333;
  margin: 0;
}

.p-company-message__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
@media (width >= 1025px) {
  .p-company-message__body {
    grid-template-columns: 0.5fr 1fr;
    gap: 2em;
  }
}
.p-company-message__title {
  position: relative;
  overflow: hidden;
  padding: 0.75em 1em;
  z-index: 1;
}
@media (width >= 1025px) {
  .p-company-message__title {
    padding: 1.5em 2em;
    grid-column: 1/2;
    grid-row: 1;
  }
}
.p-company-message__title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, rgba(0, 51, 153, 0.9) 100%);
  z-index: -1;
  padding: 1.5em 2em;
}
.p-company-message__title::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  z-index: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.7s ease-out;
}
.p-company-message__title.is-visible::after {
  transform: translateY(-100%);
}
.p-company-message__title > * {
  position: relative;
  z-index: 1;
}
.p-company-message__logo {
  position: absolute;
  bottom: 1em;
  right: 1em;
  width: clamp(7.5rem, 6.286rem + 5.18vw, 12.5rem);
  z-index: 1;
  opacity: 0.2;
}
.p-company-message__logo img {
  width: 100%;
  height: auto;
}
.p-company-message__content {
  padding: 1em;
  background-color: rgba(0, 51, 153, 0.05);
}
@media (width >= 1025px) {
  .p-company-message__content {
    padding: 1.5em 2em;
  }
}
.p-company-message__president {
  text-align: right;
  margin-top: 1.5em;
}

.p-company-overview {
  padding: 2rem 0 4rem;
  background-color: #ffffff;
}
@media (width >= 1025px) {
  .p-company-overview {
    padding: 3rem 0 6rem;
  }
}
.p-company-overview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (width >= 1025px) {
  .p-company-overview__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: start;
  }
}
.p-company-overview__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
}
.p-company-overview__image::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 1;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.7s ease-out;
}
.p-company-overview__image.is-visible::before {
  transform: translateY(-100%);
}
.p-company-overview__image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.p-company-overview__body {
  padding: 0;
}
.p-company-overview__title {
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  font-weight: 600;
  color: #003399;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.p-company-overview__list {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}
.p-company-overview__row {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (width >= 1025px) {
  .p-company-overview__row {
    grid-template-columns: 8em 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.25rem 0;
  }
}
.p-company-overview__row dt {
  font-size: clamp(0.875rem, 0.755rem + 0.51vw, 1rem);
  font-weight: 700;
  color: #003399;
}
.p-company-overview__row dd {
  margin: 0;
  font-size: clamp(0.875rem, 0.755rem + 0.51vw, 1rem);
  line-height: 1.7;
  color: #333333;
}
.p-company-overview__row dd a {
  color: #003399;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}
.p-company-overview__row dd a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.p-company-overview__map {
  margin-block: 2em;
}
@media (width >= 1025px) {
  .p-company-overview__map {
    margin-block: 80px 2em;
  }
}
.p-company-overview__map iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}
.p-company-overview__address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-company-overview__address-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (width >= 1025px) {
  .p-company-overview__address-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
    align-items: end;
  }
}

.p-footer__company-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.p-footer__company-summary {
  font-size: 0.875rem;
  line-height: 1.7;
}
.p-footer__company-summary__tel, .p-footer__company-summary__fax {
  text-transform: uppercase;
  display: flex;
}
.p-footer__company-summary__tel > span:first-child, .p-footer__company-summary__fax > span:first-child {
  width: 2em;
}

.p-footer__company-name {
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 0.1 em;
}

.p-footer__copy {
  font-size: 0.8em;
  line-height: 2.4;
  background-color: #1a1a1a;
  color: #ffffff;
  display: flex;
  justify-content: center;
}

.p-hero {
  height: 500px;
  position: relative;
  overflow: hidden;
}
@media (width >= 768px) {
  .p-hero {
    height: 100vh;
  }
}

.p-hero__splide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.p-hero__splide .splide__track {
  height: 100%;
}
.p-hero__splide .splide__list {
  height: 100%;
}
.p-hero__splide .splide__slide {
  height: 100%;
}
.p-hero__splide .splide__slide img {
  width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.p-hero.is-fixed .p-hero__splide {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
}
@media (width >= 1025px) {
  .p-hero.is-fixed .p-hero__splide {
    height: 100vh;
  }
}

.p-hero.is-bg-hidden .p-hero__splide {
  visibility: hidden;
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* 背景画像は #image-slider のスライダー画像に移行 */
}

.p-hero__content {
  position: absolute;
  top: 20%;
  padding: 24px 24px 24px 0;
}

.p-hero__title {
  display: inline-block;
  font-size: clamp(2.25rem, 0.981rem + 5.64vw, 7.75rem);
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #ffffff;
  position: relative;
  z-index: 5;
  line-height: 1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 16px rgba(255, 255, 255, 0.6), 0 0 24px rgba(255, 255, 255, 0.4);
}
.p-hero__title-line {
  display: block;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-hero__title-line:nth-of-type(1) {
  transition-delay: 0.1s;
}
.p-hero__title-line:nth-of-type(2) {
  transition-delay: 0.5s;
}
.p-hero__title-line > span {
  display: inline-block;
  background: #003399;
  background: linear-gradient(45deg, #003399 78%, rgba(0, 51, 153, 0.4));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0 0.2em;
  line-height: 1.2;
  margin-bottom: 0.2em;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
.p-hero__title-line__separator {
  font-size: 0.8em;
}

.p-hero__content.is-loaded .p-hero__title-line {
  clip-path: inset(0 0 0 0);
}

.p-hero__text-wrap {
  overflow: hidden;
}

.p-hero__text {
  font-size: clamp(0.875rem, 0.723rem + 0.65vw, 1.5rem);
  line-height: 1.6;
  font-weight: bold;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2), 0 0 4px rgb(255, 255, 255), 0 0 8px rgba(255, 255, 255, 0.9), 0 0 16px rgba(255, 255, 255, 0.7), 0 0 24px rgba(255, 255, 255, 0.5);
  transform: translateY(calc(100% + 4px));
  opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.05s ease-out;
  transition-delay: 1s;
  padding: 0.5em;
  width: fit-content;
  color: #1a1a1a;
}
@media (width >= 768px) {
  .p-hero__text {
    padding: 0.5em 1em;
  }
}

.p-hero__content.is-loaded .p-hero__text {
  transform: translateY(0);
  opacity: 1;
}

.p-hero__img {
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}
.p-hero__img img {
  width: 100%;
  height: auto;
}

/* マーキー：右から左へ無限ループ */
.p-hero__marquee {
  position: absolute;
  right: -20%;
  bottom: 0;
  overflow: hidden;
  background-color: #1a1a1a;
  padding-block: 0.75em;
  width: 100%;
  font-size: clamp(1.25rem, 0.962rem + 1.28vw, 2.5rem);
  line-height: 1;
  padding: 0.5em;
  /* 左側を斜めにカット */
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%);
}
.p-hero__marquee__inner {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  text-transform: uppercase;
}
.p-hero__marquee__item {
  font-weight: 900;
  font-size: 1em;
  margin-inline: 1rem;
  color: #ffffff;
}
.p-hero__marquee__item--stroke {
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  paint-order: stroke fill;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes u-text-underline-arrow-rotate {
  0% {
    transform: translateY(0) rotateX(0deg);
  }
  12.5% {
    transform: translateY(-50%) rotateX(-45deg);
  }
  25% {
    transform: translateY(-100%) rotateX(-90deg);
  }
  37.5% {
    transform: translateY(-100%) rotateX(-135deg);
  }
  50% {
    transform: translateY(-100%) rotateX(-180deg);
  }
  62.5% {
    transform: translateY(-50%) rotateX(-225deg);
  }
  75% {
    transform: translateY(0) rotateX(-270deg);
  }
  87.5% {
    transform: translateY(0) rotateX(-315deg);
  }
  100% {
    transform: translateY(0) rotateX(-360deg);
  }
}
.u-text-underline-arrow {
  display: inline-block;
  position: relative;
  padding-right: 1.6em;
  font-size: clamp(0.8rem, 0.458rem + 1.48vw, 1rem);
  font-weight: 400;
  color: inherit;
  /* 奥行きを深めにして、回転時の文字の歪みを防ぐ */
  perspective: 1000px;
}
.u-text-underline-arrow__inner {
  display: inline-flex;
  overflow: hidden;
  /* ここで上下の余分な文字を隠す */
  vertical-align: bottom;
  height: 1.6em;
  /* 1文字分の高さに固定 */
}
.u-text-underline-arrow__inner .char-unit {
  display: inline-block;
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
  /* 0.5sで「スッ」と動く速度に調整 */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--char-index) * 0.03s);
}
.u-text-underline-arrow__inner .char-front,
.u-text-underline-arrow__inner .char-back {
  display: flex;
  align-items: center;
  height: 1.6em;
  line-height: 1.6;
  backface-visibility: hidden;
  white-space: pre;
}
.u-text-underline-arrow__inner {
  /* 表面：初期位置 */
}
.u-text-underline-arrow__inner .char-front {
  position: relative;
}
.u-text-underline-arrow__inner {
  /* 裏面：表面の「真下」にぴったり配置 */
}
.u-text-underline-arrow__inner .char-back {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: currentColor;
  /* ここが重要：最初は回転させず、ただ下に置いておく */
  transform: rotateX(0deg);
}
.u-text-underline-arrow {
  /* ホバー時：全体を「真上に100%」スライドさせる */
}
.u-text-underline-arrow:hover .u-text-underline-arrow__inner .char-unit {
  /* 上に1文字分上げることで、下にいた裏面がちょうど枠内に入る */
  transform: translateY(-100%);
}
.u-text-underline-arrow {
  /* --- 矢印（維持） --- */
}
.u-text-underline-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.u-text-underline-arrow::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 16px;
  height: 1px;
  background-color: currentColor;
  transform: rotate(-135deg);
  transform-origin: left center;
  transition: left 0.3s ease;
}
.u-text-underline-arrow:hover::before {
  width: 110%;
}
.u-text-underline-arrow:hover::after {
  left: 110%;
}

.u-large-text {
  font-size: clamp(1rem, 0.902rem + 0.43vw, 1.25rem);
}

.u-main-text {
  font-size: clamp(0.875rem, 0.755rem + 0.51vw, 1rem);
}

.u-small-text {
  font-size: clamp(0.75rem, 0.63rem + 0.51vw, 0.875rem);
}

.u-white-text {
  color: #ffffff;
}

.u-bold-text {
  font-weight: bold;
}

.u-justify-text {
  text-align: justify;
}

.u-nowrap-text {
  white-space: nowrap;
}

.u-link-text {
  text-decoration: underline;
  color: #0000ff;
  transition: all 0.3s;
}
.u-link-text:hover {
  text-decoration: none;
  opacity: 0.6;
}

.u-center-text {
  text-align: center;
}

.card {
  transition: transform 0.6s;
  transform-style: preserve-3d;
  /* 3Dっぽさを出すおまじない */
}

.card:hover {
  transform: rotateX(180deg);
  /* マウスホバーでX軸に180度回転 */
}

/* 外枠の設定 */
.flip-container {
  width: 200px;
  height: 50px;
  perspective: 1000px;
  /* 立体感を出すための奥行き */
  font-family: sans-serif;
  font-weight: bold;
}

/* 回転する中身 */
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* スロットらしい動き */
  transform-style: preserve-3d;
  transform-origin: center bottom;
  /* 下端を軸に回転 */
}

/* ホバー時に回転 */
.flip-container:hover .flip-inner {
  transform: translateY(-100%) rotateX(-90deg);
}

/* 前面と背面の共通設定 */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

/* 前面（初期状態） */
.flip-front {
  background-color: #333;
  z-index: 2;
}

/* 背面（下側に隠しておく） */
.flip-back {
  background-color: #ff3e00;
  transform: rotateX(90deg);
  transform-origin: center top;
  top: 100%;
  /* 親要素のすぐ下に配置 */
}

.u-mb8 {
  margin-bottom: 8px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb24 {
  margin-bottom: 24px;
}

.u-mb32 {
  margin-bottom: 32px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb160 {
  margin-bottom: 160px;
}

.u-mt8 {
  margin-top: 8px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-mt24 {
  margin-top: 24px;
}

.u-mt32 {
  margin-top: 32px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt160 {
  margin-top: 160px;
}

.u-mr8 {
  margin-right: 8px;
}

.u-mr16 {
  margin-right: 16px;
}

.u-mr24 {
  margin-right: 24px;
}

.u-mr32 {
  margin-right: 32px;
}

.u-mr40 {
  margin-right: 40px;
}

.u-mr48 {
  margin-right: 48px;
}

.u-mr80 {
  margin-right: 80px;
}

.u-mr160 {
  margin-right: 160px;
}

.u-ml8 {
  margin-left: 8px;
}

.u-ml16 {
  margin-left: 16px;
}

.u-ml24 {
  margin-left: 24px;
}

.u-ml32 {
  margin-left: 32px;
}

.u-ml40 {
  margin-left: 40px;
}

.u-ml80 {
  margin-left: 80px;
}

.u-ml160 {
  margin-left: 160px;
}

.u-pb8 {
  padding-bottom: 8px;
}

.u-pb16 {
  padding-bottom: 16px;
}

.u-pb24 {
  padding-bottom: 24px;
}

.u-pb32 {
  padding-bottom: 32px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pb80 {
  padding-bottom: 80px;
}

.u-pb160 {
  padding-bottom: 160px;
}

.u-pt8 {
  padding-top: 8px;
}

.u-pt16 {
  padding-top: 16px;
}

.u-pt24 {
  padding-top: 24px;
}

.u-pt32 {
  padding-top: 32px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt80 {
  padding-top: 80px;
}

.u-pt160 {
  padding-top: 160px;
}

.u-pr8 {
  padding-right: 8px;
}

.u-pr16 {
  padding-right: 16px;
}

.u-pr24 {
  padding-right: 24px;
}

.u-pr32 {
  padding-right: 32px;
}

.u-pr40 {
  padding-right: 40px;
}

.u-pr80 {
  padding-right: 80px;
}

.u-pr160 {
  padding-right: 160px;
}

.u-pl8 {
  padding-left: 8px;
}

.u-pl16 {
  padding-left: 16px;
}

.u-pl24 {
  padding-left: 24px;
}

.u-pl32 {
  padding-left: 32px;
}

.u-pl40 {
  padding-left: 40px;
}

.u-pl80 {
  padding-left: 80px;
}

.u-pl160 {
  padding-left: 160px;
}

/* ベース = モバイルで非表示、1024px以上で表示 */
.u-pc-only {
  display: none;
}
@media (width >= 1025px) {
  .u-pc-only {
    display: block;
  }
}

/* ベース = モバイルで表示、1024px以上で非表示 */
.u-sp-only {
  display: block;
}
@media (width >= 1025px) {
  .u-sp-only {
    display: none;
  }
}

.u-reveal-bottom {
  overflow: hidden;
  display: flex;
  min-height: 0;
}

.u-reveal-bottom__inner {
  display: block;
  transform: translateY(calc(100% + 4px));
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out, clip-path 0.4s ease-out;
}
.is-visible .u-reveal-bottom__inner {
  transform: translateY(0);
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.u-reveal-left {
  position: relative;
  display: block;
  min-height: 0;
}
.u-reveal-left::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 1;
  pointer-events: none;
  transform: translateX(0);
  transition: transform 0.7s ease-out;
}
.u-reveal-left.is-visible::before {
  transform: translateX(100%);
}
.u-reveal-left--main::after {
  content: "";
  position: absolute;
  inset: 0;
  top: -1px;
  width: 100%;
  height: 105%;
  background-color: #ffffff;
  z-index: 2;
  pointer-events: none;
  transform: translateX(0);
  transition: transform 0.5s;
}
.u-reveal-left--main.is-visible::after {
  transform: translateX(100%);
}
.u-reveal-left--main::before {
  background-color: #003399;
  transition: transform 0.7s ease-out 0.4s;
}

.u-reveal-left__inner {
  display: block;
  position: relative;
  z-index: 0;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/**
 * object.scssここまで
 */

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