@charset "UTF-8";
/*!
Theme Name: wp_ts
Theme URI: http://underscores.me/
Author: ts
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wp_ts
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

wp_ts is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/* 自作テーマ用のSass入口 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;600&family=Special+Gothic+Condensed+One&family=Zen+Kaku+Gothic+New&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.6;
}

.page {
  margin: 0;
}

header, footer {
  padding: 0;
}

.container {
  width: min(1280px, 92vw);
  margin-inline: auto;
}

.breadcrumb {
  font-size: 1.4rem;
  color: #888;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: 0.85;
}

.wp-block-button {
  font-weight: 600;
}

.wp-block-button__link {
  background-color: #E4FF30;
  color: #32373c;
}

.wp-block-button__link:visited,
.wp-block-button__link:active {
  color: #32373c;
}

h1,
h2,
h3 {
  letter-spacing: 0.2rem;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.2em 3em;
  min-width: 14rem;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
}

.btn--primary {
  background: #1d2088;
  color: #fff;
}
.btn--primary:visited, .btn--primary:active {
  color: #fff;
}

.btn--contact {
  background: linear-gradient(135deg, #00bcd4 0%, #1d2088 45%, #004ba0 100%);
  color: #fff;
}
.btn--contact:visited, .btn--contact:active {
  color: #fff;
}

.icon-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #222;
  cursor: pointer;
}
@media (max-width: 600px) {
  .icon-btn {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.is-open .icon-btn {
  color: #fff;
}

.search-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: max-height 0.28s ease, opacity 0.28s ease;
  transition: max-height 0.28s ease, opacity 0.28s ease;
  padding-inline: clamp(8px, 2vw, 16px);
}

.search-panel.is-open {
  max-height: 120px;
  opacity: 1;
  padding-block: clamp(8px, 1.8vw, 12px);
}

.eyebrow {
  margin: 0;
  color: #1d2088;
  font-family: "Special Gothic Condensed One";
  font-size: 1.6rem;
  letter-spacing: 0.4rem;
  display: block;
}

.product-content__body .wp-block-columns-is-layout-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  margin-bottom: 6rem;
}
.product-content__body .wp-block-columns-is-layout-flex h2 {
  margin: 0.5rem 0 1rem 0;
}
@media (max-width: 781px) {
  .product-content__body .wp-block-columns-is-layout-flex {
    gap: 0;
  }
}

:root {
  --sb-bg: #f8fafc;
  --sb-border: #e5e7eb;
  --sb-text: #111827;
  --sb-accent: #0ea5e9;
  --sb-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

@media (prefers-color-scheme: dark) {
  :root {
    --sb-bg: #0b1220;
    --sb-border: #1f2937;
    --sb-text: #e5e7eb;
    --sb-accent: #22d3ee;
    --sb-shadow: 0 6px 18px rgba(0, 0, 0, .3);
  }
}
body > .nav-overlay {
  position: fixed !important;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease, visibility 0s 0.25s;
  transition: opacity 0.25s ease, visibility 0s 0.25s;
  z-index: 1900;
}

html.nav-open > .nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.site-header .site-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
.site-header .site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  padding: 2rem 3rem;
}

.site-header__logo img {
  height: clamp(3rem, 7.5vw, 4.8rem);
  width: auto;
  display: block;
}

.gnav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(16px, 2vw, 32px);
}
.gnav a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.gnav a:hover {
  opacity: 0.8;
}

/* スクロール後 */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.site-header.is-open .gnav a {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.menu-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  width: 4rem;
  height: 4rem;
  padding: 0;
  background: transparent;
  border: 0;
  line-height: 0;
  cursor: pointer;
  z-index: 30;
}
.menu-toggle span {
  display: block;
  width: 4rem;
  height: 3px;
  background: #303030;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.menu-toggle.is-active {
  gap: 0;
}
.menu-toggle.is-active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(4px, 0);
          transform: rotate(45deg) translate(4px, 0);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(4px, 0);
          transform: rotate(-45deg) translate(4px, 0);
}
.menu-toggle.is-active span {
  background: #fff;
}

@media (min-width: 1025px) {
  .menu-toggle {
    display: none;
  }
}
@media (max-width: 1024px) {
  .site-header__nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 20;
  }
  .site-header__nav ul.gnav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    text-align: center;
    list-style: none;
    padding: 0;
  }
  .site-header__nav a {
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
  }
  .site-header__nav.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    min-height: 100dvh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(12px, 2.5vh, 28px);
    padding: 24px 20px max(24px, env(safe-area-inset-bottom));
  }
}
.gnav-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 2vw, 16px);
  margin-left: clamp(10px, 2vw, 24px);
}
@media (max-width: 1024px) {
  .gnav-actions {
    -ms-grid-row-align: center;
        align-self: center;
    display: -ms-grid;
    display: grid;
    place-items: center;
    margin: 0;
  }
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.2rem 2rem;
  border-radius: 999px;
  border: 1px solid #d6dbe3;
  font-size: 1rem;
}

.btn--search {
  background: #0d1b7e;
  color: #fff;
  padding: 0.7em 1.2em;
  border-radius: 999px;
  border: 0;
}

.hero {
  position: relative;
  width: 100%;
  z-index: 10;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  height: 80vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.hero__content .hero__title {
  position: relative;
  z-index: 1;
  margin-left: clamp(16px, 8vw, 120px);
  margin-bottom: clamp(12rem, 20vw, 30rem);
  font-family: "Yu Mincho", "游明朝体", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", "Source Han Serif JP", serif;
  color: #fff;
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.45;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 600px) {
  .hero-slider {
    height: 60vh;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    -webkit-transition: none;
    transition: none;
  }
  .hero-slide.is-active .hero__img {
    -webkit-animation: none;
            animation: none;
  }
}
/* optional gentle motion */
.hero__img {
  -webkit-animation: hero-ken 16s ease-in-out infinite alternate;
          animation: hero-ken 16s ease-in-out infinite alternate;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@-webkit-keyframes hero-ken {
  from {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  to {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes hero-ken {
  from {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  to {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.hero-slide:nth-child(2) .hero__img {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.hero-slide:nth-child(3) .hero__img {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.hero-slide:nth-child(4) .hero__img {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.news-floating {
  position: relative;
  z-index: 15;
  margin-top: -48px;
}

@media (max-width: 600px) {
  .news-floating {
    margin-top: -24px;
  }
}
.news-card {
  background: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0 14px 40px rgba(14, 32, 76, 0.12);
          box-shadow: 0 14px 40px rgba(14, 32, 76, 0.12);
  padding-block: 3rem;
  padding-inline: clamp(3rem, 5vw, 12rem);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(2rem, 3vw, 4rem) auto;
  grid-template-columns: 1fr auto;
  -ms-grid-rows: auto clamp(1.2rem, 1.5vw, 2rem) auto;
      grid-template-areas: "head more" "list list";
  gap: clamp(1.2rem, 1.5vw, 2rem) clamp(2rem, 3vw, 4rem);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 600px) {
  .news-card {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 1.2rem auto 1.2rem auto;
        grid-template-areas: "head" "list" "more";
    gap: 1.2rem 0;
  }
}

.news-card__head {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: head;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 30px;
}

.news-card__title {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  color: #1e1e45;
}

.news-card__more:not(.btn) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: more;
  -ms-grid-column-align: end;
      justify-self: end;
  font-size: 1.4rem;
  text-decoration: none;
  color: #1d2088;
  font-weight: 600;
}
@media (max-width: 600px) {
  .news-card__more:not(.btn) {
    -ms-grid-column-align: start;
        justify-self: start;
    margin-top: 0.6rem;
  }
}

.news-card__more {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: more;
  -ms-grid-column-align: end;
      justify-self: end;
}
@media (max-width: 600px) {
  .news-card__more {
    -ms-grid-column-align: center;
        justify-self: center;
    margin-top: 0.6rem;
  }
}

.news-list {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: list;
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 0.6rem;
}

@media (max-width: 600px){
  .news-card__head {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .news-card__more:not(.btn) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .news-card__more {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .news-list {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}

.news-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 8.5rem 4rem 1fr;
  grid-template-columns: 8.5rem 1fr;
  gap: 4rem;
  padding: 0.7rem 0.4rem;
  border-radius: 0.6rem;
}
.news-list__item:hover {
  background: #f7f9fc;
}
@media (max-width: 600px) {
  .news-list__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

.news-list__date {
  color: #667;
  font-size: 1.6rem;
  white-space: nowrap;
}

.news-list__link {
  color: #111;
  text-decoration: none;
}

.news-list__item--empty {
  opacity: 0.7;
}

.scroll-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

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

.strengths__viewport {
  -ms-touch-action: pan-x pan-y;
      touch-action: pan-x pan-y;
}

.about {
  position: relative;
  z-index: 0;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f1f6fb;
  -webkit-transform: skewY(-15deg) translateY(-400px);
          transform: skewY(-15deg) translateY(-400px);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  z-index: -1;
}
.about .container {
  position: relative;
  padding-block: clamp(6rem, 10vw, 12rem);
  width: min(1200px, 92%);
}
.about h3 {
  font-size: clamp(2.6rem, 4.3vw, 4rem);
  color: #1e1e45;
  line-height: 1.7;
}
.about p {
  line-height: 1.7;
  max-width: 56rem;
}
.about .about__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr clamp(20px, 3vw, 48px) 2fr;
  grid-template-columns: 3fr 2fr;
  gap: clamp(20px, 3vw, 48px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 560px) {
  .about .about__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.strengths {
  position: relative;
  background: linear-gradient(135deg, #4ea8d5, #1b5ca9);
}
.strengths .container {
  position: relative;
}
.strengths .strengths__head {
  color: #fff;
  position: relative;
}
.strengths .strengths__head h2 {
  font-size: clamp(2.6rem, 4.3vw, 4rem);
  line-height: 1.6;
  margin: 0;
  padding: 8rem 0 3rem;
  font-weight: 600;
}
.strengths .strengths__head .eyebrow {
  margin: 0;
  font-family: "Special Gothic Condensed One";
  font-size: clamp(2rem, 7vw, 9rem);
  color: #fff;
  letter-spacing: 0.3rem;
  position: absolute;
  opacity: 0.2;
  bottom: clamp(4rem, 6.6vw, 6rem);
}
.strengths .shot {
  margin: 0;
}
.strengths .shot img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 14px 40px rgba(14, 32, 76, 0.12));
          filter: drop-shadow(0 14px 40px rgba(14, 32, 76, 0.12));
}

/* Section spacing helper */
.intro.section {
  padding-bottom: clamp(48px, 6vw, 96px);
}

.section.strengths {
  margin-bottom: 8rem;
  padding-block: clamp(4.8rem, 5.7vw, 8rem);
  background: linear-gradient(135deg, #5ebadd 0%, #0f4ea8 100%);
  color: #fff;
  z-index: 2;
}

.strengths .container {
  overflow: visible;
}

.strengths__head {
  margin-bottom: clamp(3rem, 5.7vw, 8rem);
}

.strengths__slide {
  position: relative;
}

.strengths__viewport {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  padding-inline: clamp(12px, 3vw, 24px);
}

/* Scrollbar (WebKit/Firefox) */
.strengths__slide::-webkit-scrollbar {
  height: 6px;
}

.strengths__slide::-webkit-scrollbar-track {
  background: transparent;
}

.strengths__slide::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
}

.strengths__slide::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.45);
}

.strengths__slide {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.strengths__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.strengths__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 min(100%, 1080px);
          flex: 0 0 min(100%, 1080px);
  scroll-snap-align: start;
}

.strengths__card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(320px, 520px) clamp(16px, 3vw, 40px) 1fr;
  grid-template-columns: minmax(320px, 520px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(16px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  padding: clamp(16px, 3vw, 32px);
  min-height: clamp(320px, 23vw, 420px);
}

.strengths__body h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  margin: 0 0 0.6em;
}

.strengths__body p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.9;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.strengths__cardimg .shot,
.strengths__cardimg img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
}

@media (max-width: 600px) {
  .strengths__item {
    -ms-flex-preferred-size: 88%;
        flex-basis: 88%;
  }
  .strengths__card {
    padding-block: 8rem 2rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
/* slide buttons */
.slide-btn {
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
}

.slide-btn::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #0b3a86;
  border-bottom: 2px solid #0b3a86;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.slide-btn.next {
  right: 12px;
}

.slide-btn.prev {
  left: 12px;
}

.slide-btn.prev::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.top-products {
  padding-block: 8rem;
  background: #eaf2fb;
  position: relative;
}
.top-products .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(170px, 80px) clamp(24px, 4vw, 48px) 1fr;
  grid-template-columns: minmax(170px, 80px) 1fr;
  -webkit-column-gap: clamp(24px, 4vw, 48px);
     -moz-column-gap: clamp(24px, 4vw, 48px);
          column-gap: clamp(24px, 4vw, 48px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.top-products .section__head {
  position: sticky;
  top: clamp(24px, 6vh, 96px);
}
.top-products .section__head h2 {
  margin: 0 0 2rem 0;
  font-size: clamp(2.6rem, 4.3vw, 4rem);
}
.top-products .product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 28px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}
.top-products .product-card {
  padding-inline: clamp(2rem, 2.6vw, 4rem);
  padding-block: 0;
  background: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.top-products .product-card__link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px minmax(280px, 42%);
  grid-template-columns: 1fr minmax(280px, 42%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}
.top-products .product-card__body {
  padding-block: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: clamp(1.5rem, 2.6vw, 2rem);
  max-height: 20rem;
}
.top-products .product-card__img {
  height: 100%;
  max-height: 20rem;
}
.top-products .product-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-products .product-card__title {
  margin: 0;
  line-height: 1.3;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
}
.top-products .product-card__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.top-products .product-card__cats .cat {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 1.2rem;
}
.top-products .product-card__cats .cat-automation {
  border: 1px #00a960 solid;
  color: #00a960;
}
.top-products .product-card__cats .cat-efficiency {
  border: 1px #0098d1 solid;
  color: #0098d1;
}
.top-products .product-card__cats .cat-productivity {
  border: 1px #ea5532 solid;
  color: #ea5532;
}
.top-products .product-card__cats .cat-stability {
  border: 1px #eb6d82 solid;
  color: #eb6d82;
}
.top-products .product-card__cats .cat-standardization {
  border: 1px #005fad solid;
  color: #005fad;
}
.top-products .product-card__cats .cat-ergonomics {
  border: 1px #db9000 solid;
  color: #db9000;
}
.top-products .section__cta {
  margin: 4rem auto;
  display: block;
  text-align: center;
}
@media (max-width: 600px) {
  .top-products .container {
    display: block;
  }
  .top-products .product-list {
    max-width: none;
    margin: 0;
  }
  .top-products .product-card__link {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .top-products .product-card__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    height: 14rem;
    max-height: 14rem;
  }
  .top-products .section__cta .btn {
    max-width: none;
    margin: 16px 0 0 auto;
  }
}

.featured {
  --featured-text: #0e2240;
  --featured-muted: #9fb1cc;
  --featured-primary: #1f74c9;
  --featured-primary-d: #165ea1;
  color: var(--featured-text);
  padding-block: clamp(6rem, 7vw, 14rem);
}
.featured .section__head {
  position: relative;
  text-align: center;
  margin-bottom: clamp(32px, 6vw, 56px);
}
.featured .section__head .eyebrow {
  margin: 0;
  position: absolute;
  inset: auto 0 100% 0;
  translate: 0 40%;
  text-align: center;
  font-family: "Special Gothic Condensed One";
  font-size: clamp(2rem, 3.3vw, 10rem);
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--featured-muted);
  opacity: 0.25;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.featured .section__head h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(2.6rem, 4.3vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0;
}
.featured .featured__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.25fr clamp(20px, 4vw, 48px) 0.75fr;
  grid-template-columns: 1.25fr 0.75fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(20px, 4vw, 48px);
}
.featured .featured__img {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.featured .featured__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.featured .featured__body h3 {
  font-size: clamp(18px, 2.6vw, 28px);
  line-height: 1.35;
  margin: 0 0 1em;
  font-weight: 800;
}
.featured .featured__body p {
  margin: 0 0 1.2em;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.9;
  color: color-mix(in oklab, var(--featured-text) 85%, white);
}
.featured a {
  color: inherit;
  text-decoration: underline;
}
.featured a:visited {
  color: inherit;
}
.featured a.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.2em;
  border-radius: 9999px;
  background: var(--featured-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: background-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-filter 0.15s ease;
  transition: background-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-filter 0.15s ease;
  transition: transform 0.15s ease, background-color 0.15s ease, filter 0.15s ease;
  transition: transform 0.15s ease, background-color 0.15s ease, filter 0.15s ease, -webkit-transform 0.15s ease, -webkit-filter 0.15s ease;
}
.featured a.btn:visited {
  color: #fff;
}
.featured a.btn:hover {
  background: var(--featured-primary-d);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.featured a.btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 1024px) {
  .featured .featured__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .featured .section__head .eyebrow {
    opacity: 0.18;
    translate: 0 30%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .featured a.btn {
    -webkit-transition: none;
    transition: none;
  }
}
.featured {
  /* Talk */
}
.featured .featured__talk {
  --avatar-size: clamp(8rem, 12vw, 12rem);
  --avatar-gap: 16px;
  --avatar-overlap: 20px;
  position: relative;
  margin: 0 0 1.6em;
}
.featured .talk__bubble {
  background: #eaf3ff;
  border-radius: 1rem;
  padding: 1.2em 1.4em;
  padding-bottom: clamp(5rem, 5vw, 8rem);
}
.featured .talk__avatar {
  position: absolute;
  right: clamp(8px, 2vw, 24px);
  bottom: calc(-5 * var(--avatar-overlap));
  width: var(--avatar-size);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
.featured .talk__imgwrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: #3a6bab;
}
.featured .talk__imgwrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.featured .talk__cap {
  margin-top: 0.5em;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: color-mix(in oklab, var(--featured-text, #0e2240) 90%, white);
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .featured .featured__talk {
    --avatar-size: 76px;
    --avatar-overlap: 0px;
  }
  .featured .talk__avatar {
    margin: 10px 0 0 auto;
    bottom: -7.5rem;
  }
  .featured .talk__bubble {
    padding-right: 1.2em;
  }
}

.recruit-cta {
  --bg: #eaf3fb;
  --photo: url('../img/recruit-cta.png');
  --photo-width: clamp(680px, 66vw, 1200px);
  --top-slope: 8%;
  --bottom-slope: 92%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg);
  padding-block: clamp(56px, 7vw, 120px);
}
.recruit-cta::before {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 0;
  width: 100%;
  background: var(--photo) 25% center/cover no-repeat;
  clip-path: polygon(0 var(--top-slope), 100% 0, 100% 100%, 0 var(--bottom-slope));
  z-index: -1;
}
.recruit-cta {
  /* 右カラム：3段スタック（共通） */
  --stack-w: clamp(320px, 35vw, 640px);
}
.recruit-cta .recruit-cta__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(20px, 3vw, 56px) min(var(--stack-w), 48%);
  grid-template-columns: 1fr min(var(--stack-w), 48%);
  gap: clamp(20px, 3vw, 56px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit-cta .recruit-cta__text {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  max-width: var(--stack-w);
  margin-left: auto;
  display: -ms-grid;
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  text-align: center;
}
.recruit-cta .recruit-cta__text .recruit-cta__watermark {
  font-family: "Special Gothic Condensed One";
  font-size: clamp(4rem, 6vw, 9rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  margin: 0 0 clamp(8px, 1.2vw, 12px);
}
.recruit-cta .recruit-cta__text .recruit-cta__heading {
  font-size: clamp(2.2rem, 2.2vw, 3.2rem);
  font-weight: 600;
  margin: 0 0 clamp(10px, 2vw, 16px);
  color: #0b2140;
}
.recruit-cta .recruit-cta__text .recruit-cta__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.2vw, 22px);
  width: 100%;
}
.recruit-cta .recruit-cta__text .recruit-cta__pill {
  display: -ms-grid;
  display: grid;
  place-items: center;
  max-width: 100%;
  min-height: clamp(56px, 6.2vw, 72px);
  padding: 1rem 1.6rem;
  background: #fff;
  color: #1d2088;
  border-radius: 1rem;
  -webkit-box-shadow: 0 8px 24px rgba(17, 42, 86, 0.15);
          box-shadow: 0 8px 24px rgba(17, 42, 86, 0.15);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.recruit-cta .recruit-cta__text .recruit-cta__pill .icon {
  position: absolute;
  right: 16px;
}
.recruit-cta .recruit-cta__text .recruit-cta__pill:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 12px 28px rgba(17, 42, 86, 0.2);
          box-shadow: 0 12px 28px rgba(17, 42, 86, 0.2);
}
.recruit-cta .recruit-cta__text .recruit-cta__pill:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 6px 16px rgba(17, 42, 86, 0.12);
          box-shadow: 0 6px 16px rgba(17, 42, 86, 0.12);
}
.recruit-cta .recruit-cta__text .recruit-cta__entry {
  margin-top: clamp(18px, 3vw, 28px);
  display: -ms-grid;
  display: grid;
  place-items: center;
  max-width: 100%;
  min-height: clamp(140px, 16vw, 220px);
  border-radius: 1rem;
  background: linear-gradient(135deg, #1b4fb7 0%, #00cdb4 100%);
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.recruit-cta .recruit-cta__text .recruit-cta__entry .recruit-cta__entry-en {
  position: absolute;
  inset: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-family: "Special Gothic Condensed One";
  font-size: clamp(4.6rem, 6.2vw, 9rem);
  font-weight: 600;
  letter-spacing: 1rem;
  color: rgba(255, 255, 255, 0.1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.recruit-cta .recruit-cta__text .recruit-cta__entry .recruit-cta__entry-ja {
  position: relative;
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 800;
  z-index: 1;
}
.recruit-cta .recruit-cta__text .recruit-cta__entry .icon {
  position: absolute;
  right: 18px;
  bottom: 18px;
  opacity: 0.9;
}
.recruit-cta .recruit-cta__text .recruit-cta__entry:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
          box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}
.recruit-cta .recruit-cta__text .recruit-cta__entry:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.recruit-cta {
  /* 既存の画像ブロックは背景化したため不要 */
}
.recruit-cta .recruit-cta__img {
  display: none;
}
@media (max-width: 1024px) {
  .recruit-cta {
    --photo-width: 100%;
  }
  .recruit-cta .recruit-cta__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: clamp(16px, 4vw, 28px);
  }
  .recruit-cta .recruit-cta__text {
    grid-column: 1/-1;
    margin: 0 auto;
  }
}

.home-news {
  padding: clamp(24px, 4vw, 56px) 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f9ff), to(#f4f8fc));
  background: linear-gradient(180deg, #f5f9ff 0%, #f4f8fc 100%);
}
.home-news__panel {
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: clamp(20px, 3vw, 36px);
}
.home-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(12px, 2vw, 20px);
}
.home-news__ttl {
  display: -ms-grid;
  display: grid;
  gap: 4px;
}
.home-news__ttl .ja {
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: 0.06em;
}
.home-news__ttl .en {
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: 0.2em;
  color: #2f3a8c;
}
.home-news__more {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  position: relative;
}
.home-news__list {
  display: -ms-grid;
  display: grid;
  gap: 14px;
}
.home-news__item a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 18px 1fr;
  grid-template-columns: auto 1fr;
  gap: 18px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 10px 0;
  text-decoration: none;
  color: #111;
}
.home-news__item a:hover .home-news__title {
  text-decoration: underline;
}
.home-news__date {
  color: #666;
  font-variant-numeric: tabular-nums;
}
.home-news__title {
  line-height: 1.6;
}

.home-column {
  padding: clamp(32px, 6vw, 88px) 0;
}
.home-column__ttl {
  display: -ms-grid;
  display: grid;
  gap: 4px;
  margin-bottom: clamp(16px, 2.4vw, 24px);
}
.home-column__ttl .ja {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: 0.06em;
}
.home-column__ttl .en {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: #1d2088;
}
.home-column__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) clamp(16px, 2.4vw, 28px) minmax(0, 1fr) clamp(16px, 2.4vw, 28px) minmax(0, 1fr) clamp(16px, 2.4vw, 28px) minmax(0, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}
.home-column__more {
  display: -ms-grid;
  display: grid;
  place-content: center;
  margin-top: clamp(18px, 3vw, 28px);
}
.home-column__more a {
  display: inline-block;
  text-align: center;
  color: #fff;
}
.home-column__more a:visited {
  color: #fff;
}
.home-column__empty {
  color: #666;
}

.home-column__grid {
  padding-bottom: clamp(28px, 5vw, 56px) 0;
}

.c-card {
  border-radius: 6px;
  overflow: clip;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.c-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
}
.c-card__link {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  color: inherit;
  text-decoration: none;
}
.c-card__thumb {
  margin: 0;
  aspect-ratio: 3/2;
  background: -webkit-gradient(linear, left top, left bottom, from(#eef3fb), to(#e8f0ff));
  background: linear-gradient(180deg, #eef3fb, #e8f0ff);
}
.c-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.c-card__ph {
  display: block;
  width: 100%;
  height: 100%;
}
.c-card__body {
  padding-block: clamp(12px, 2vw, 16px);
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
.c-card__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-card__excerpt {
  margin: 0;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2em;
}
.c-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.c-card__date {
  font-size: 12px;
  color: #7a7a7a;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 600px) {
  .c-card__excerpt {
    display: none;
  }
}
.c-btn {
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  border: none;
  background: #2436d1;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: -webkit-filter 0.2s ease, -webkit-transform 0.2s ease;
  transition: -webkit-filter 0.2s ease, -webkit-transform 0.2s ease;
  transition: filter 0.2s ease, transform 0.2s ease;
  transition: filter 0.2s ease, transform 0.2s ease, -webkit-filter 0.2s ease, -webkit-transform 0.2s ease;
}
.c-btn__icon {
  display: inline-block;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.c-btn:hover {
  -webkit-filter: brightness(1.07);
          filter: brightness(1.07);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .home-column__grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .home-news__item a {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.contact-cta {
  color: #fff;
  --contact-left: #0e66b6;
  --contact-right: #1d2088;
}

.contact-cta__grid {
  width: 100%;
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.contact-cta__block {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  gap: clamp(8px, 1.8vw, 16px);
  padding: clamp(32px, 6vw, 88px) clamp(16px, 5vw, 56px);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
.contact-cta__block:focus-visible {
  -webkit-box-shadow: inset 0 0 0 3px #fff, 0 0 0 4px rgba(255, 255, 255, 0.35);
          box-shadow: inset 0 0 0 3px #fff, 0 0 0 4px rgba(255, 255, 255, 0.35);
}
.contact-cta__block:hover {
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.contact-cta__block--tel {
  background: var(--contact-left);
}

.contact-cta__block--form {
  background: var(--contact-right);
}

.contact-cta .eyebrow {
  margin: 0;
  font-size: clamp(12px, 0.9vw, 16px);
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #fff;
  opacity: 0.9;
}

.contact-cta__block--tel .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(12px, 1.6vw, 18px);
  line-height: 1;
  margin: 0.2em 0 0.6em;
}

.contact-cta__block--tel .tel::before {
  content: "";
  width: clamp(26px, 3.2vw, 40px);
  height: clamp(26px, 3.2vw, 40px);
  background: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M6.62 10.79a15.46 15.46 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V21a1 1 0 01-1 1C10.85 22 2 13.15 2 2a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58.12.34.04.72-.24 1.01l-2.2 2.2z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.contact-cta__block--tel .tel {
  font-family: "Special Gothic Condensed One";
  font-weight: 600;
  letter-spacing: 1rem;
  -webkit-font-feature-settings: "tnum";
          font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-size: clamp(3rem, 4.5vw, 7rem);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.contact-cta__block--tel small {
  display: block;
  font-size: clamp(12px, 1.2vw, 16px);
  opacity: 0.95;
  letter-spacing: 0.06em;
}

.contact-cta__block--form h2 {
  margin: 0.3em 0 0.6em;
  font-size: clamp(3rem, 4.5vw, 7rem);
  font-family: "Special Gothic Condensed One";
  font-weight: 600;
  letter-spacing: 1rem;
}

.contact-cta__arrow {
  -ms-grid-column-align: center;
      justify-self: center;
  margin-top: clamp(6px, 1.6vw, 12px);
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  width: clamp(44px, 5vw, 56px);
  height: clamp(44px, 5vw, 56px);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.contact-cta__arrow::before {
  content: "";
  width: 40%;
  height: 40%;
  background: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.contact-cta__block--form:hover .contact-cta__arrow {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  border-color: #fff;
}

@media (max-width: 1024px) {
  .contact-cta__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .contact-cta__block {
    min-height: auto;
  }
}
.map iframe {
  width: 100%;
}

.map-section__access {
  padding: 2rem 0;
  border-bottom: 1px solid #ccc;
}

.map-access {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 12px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 768px) {
  .map-access {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.map-access__item {
  padding: 14px 16px;
  background: #fff;
}
.map-access__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 600;
  margin: 0 0 6px;
  color: rgba(0, 0, 0, 0.85);
  letter-spacing: 0.04em;
}
.map-access__heading::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.map-access__heading--car::before {
  background: rgba(0, 0, 0, 0.18);
}
.map-access__heading--train::before {
  background: rgba(0, 0, 0, 0.12);
}
.map-access__text {
  margin: 0;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

.site-footer {
  background: #fff;
  color: #222;
}

.site-footer__upper {
  padding-block: clamp(48px, 7vw, 120px);
}

.site-footer__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(24px, 5vw, 96px) 1.5fr;
  grid-template-columns: 1fr 1.5fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(24px, 5vw, 96px);
}

.site-footer__logo {
  grid-area: logo;
}

.site-footer__logo img {
  width: clamp(28rem, 18vw, 36rem);
  height: auto;
}

.site-footer__logo-fallback {
  display: inline-block;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 28px);
}

.site-footer__info {
  grid-area: info;
}

.site-footer__addr,
.site-footer__telfax {
  margin: 0.6em 0 0;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.9;
  color: #3a3a3a;
}

.site-footer__telfax a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.site-footer__telfax a:hover {
  border-color: currentColor;
}

.site-footer__telfax .sep {
  opacity: 0.6;
  margin-inline: 0.6em;
}

.site-footer__nav {
  -ms-grid-column-align: end;
      justify-self: end;
}

.foot-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(16px, 3.8vw, 4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.foot-menu > li > a {
  display: inline-block;
  text-decoration: none;
  color: #222;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: clamp(14px, 1.3vw, 16px);
  position: relative;
}
.foot-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  opacity: 0.75;
}
.foot-menu > li > a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.site-footer__lower {
  background: #e9f0f6;
  padding-block: clamp(14px, 2.2vw, 20px);
  color: #546575;
}

.site-footer__copy {
  margin: 0;
  text-align: center;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .site-footer__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 36px);
  }
  .site-footer__brand {
    text-align: center;
  }
  .site-footer__nav {
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .site-footer__nav .foot-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
  }
}
.blog-header,
.archive-header,
.page-header {
  min-height: clamp(20rem, 20vw, 40rem);
  background: #dce3eb;
  position: relative;
}

.blog-h-title,
.archive-title,
.page-title {
  margin: 0;
  padding: 2rem 0;
  position: absolute;
  bottom: clamp(2rem, 3vw, 8rem);
  font-family: "Special Gothic Condensed One";
  font-size: clamp(2.6rem, 3.3vw, 3.6rem);
  letter-spacing: 0.05em;
  color: #1d2088;
}

.blog-loop {
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  list-style: none;
}

.breadcrumb {
  margin: 0 auto;
  padding: 3rem 0;
}

.cat-nav {
  margin: 0;
  padding: 4rem 0;
}

.cat-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  /* ★ nowrap を必ず外す */
  white-space: normal;
}

.cat-nav__list > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.cat-nav__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.cat-nav__link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 9999px;
  border: 1px solid #d8dbe2;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  color: #333;
  background: #fff;
}

.cat-nav__item.is-active .cat-nav__link {
  color: #fff;
  background: #243b97;
  border-color: #243b97;
}

.cat-nav__link:hover {
  opacity: 0.9;
}

/* blog-card */
.blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  border-bottom: 1px solid #e5e7eb;
  padding: 3rem 0;
}
.blog-card .blog-card__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
}
.blog-card .blog-card__thumb a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog-card .blog-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-card .blog-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
}
.blog-card .blog-card__body .blog-card__title {
  margin: 0;
  font-size: clamp(1.6rem, 1.2vw + 1rem, 2.2rem);
  line-height: 1.5;
  font-weight: 700;
  color: #1f2a44;
}
.blog-card .blog-card__body .blog-card__title a {
  color: inherit;
  text-decoration: none;
}
.blog-card .blog-card__body .blog-card__title a:hover {
  text-decoration: underline;
}
.blog-card .blog-card__body .blog-card__meta {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 1.4rem;
  color: #4b5563;
}
.blog-card .blog-card__body .blog-card__meta time {
  display: block;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}
.blog-card .blog-card__body .blog-card__meta .blog-card__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-card .blog-card__body .blog-card__meta .blog-card__cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3em 0.9em;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.blog-card .blog-card__body .blog-card__meta .blog-card__cat:hover {
  background: #e5e7eb;
}

.pagination {
  padding: 4rem 0 12rem;
}

@media (max-width: 980px) {
  .blog-card {
    gap: 1.5rem;
  }
  .blog-card .blog-card__thumb {
    -ms-flex-preferred-size: 260px;
        flex-basis: 260px;
  }
}
@media (max-width: 720px) {
  .blog-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-card .blog-card__thumb {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    width: 100%;
  }
  .blog-card .blog-card__meta {
    gap: 0.75rem;
  }
}
/* accessibility */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* WP pagination */
.navigation.pagination {
  margin-top: 3rem;
}
.navigation.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
}
.navigation.pagination .page-numbers {
  --fg: #334155;
  --bg: #f1f5f9;
  --bd: #e2e8f0;
  --bg-hover: #e2e8f0;
  --fg-hover: #0f172a;
  --ring: #93c5fd;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2.4rem;
  height: 2.8rem;
  padding: 0 0.95rem;
  border-radius: 9999px;
  border: 1px solid var(--bd);
  background: var(--bg);
  color: var(--fg);
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.06s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.06s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.06s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.06s ease, -webkit-transform 0.06s ease;
}
.navigation.pagination .page-numbers svg {
  display: block;
}
.navigation.pagination .page-numbers:not(.current):not(.dots):hover {
  background: var(--bg-hover);
  color: var(--fg-hover);
  border-color: var(--bg-hover);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.navigation.pagination .page-numbers:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px var(--ring);
          box-shadow: 0 0 0 3px var(--ring);
}
.navigation.pagination .page-numbers.current {
  --bg: #0ea5e9;
  --bd: #0ea5e9;
  --fg: white;
  background: var(--bg);
  border-color: var(--bd);
  color: var(--fg);
  font-weight: 700;
  cursor: default;
}
.navigation.pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  color: #94a3b8;
  cursor: default;
  padding: 0 0.2rem;
  min-width: auto;
}
.navigation.pagination .page-numbers.prev, .navigation.pagination .page-numbers.next {
  padding: 0 0.9rem;
  min-width: 2.8rem;
}

@media (max-width: 640px) {
  .navigation.pagination .page-numbers {
    height: 2.6rem;
    min-width: 2.2rem;
    padding: 0 0.8rem;
    font-size: 1.4rem;
  }
}
.single-info {
  padding-top: clamp(8rem, 10.4vw, 20rem);
}
.single-info figure {
  max-width: 100%;
}
.single-info .breadcrumb {
  margin-bottom: 2rem;
}
.single-info .breadcrumb a {
  color: #555;
  text-decoration: none;
}
.single-info .breadcrumb a:hover {
  text-decoration: underline;
}
.single-info .info-title {
  font-size: clamp(2.2rem, 2.8vw, 3.6rem);
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.single-info .info-meta {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
  font-size: 1.6rem;
  color: #555;
}
.single-info .info-meta time {
  margin-right: 1rem;
  display: inline-block;
}
.single-info .info-meta .cat-label,
.single-info .info-meta .tag-label {
  margin-bottom: 0.6rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 1.4rem;
  white-space: nowrap;
  display: inline-block;
  word-break: keep-all;
}
.single-info .info-meta .cat-label {
  background: #f2f2f2;
}
.single-info .info-meta .tag-label {
  background: #fff;
  border: solid 1px #ccc;
}
.single-info .info-thumb {
  margin-bottom: 2rem;
}
.single-info .info-thumb img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.single-info .info-content {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}
.single-info .info-content p {
  margin-bottom: 1.5rem;
}
.single-info .info-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 3rem 0;
}
.single-info .info-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.single-info .info-nav a:hover {
  text-decoration: underline;
}
.single-info .info-nav .all-posts a {
  background: #f2f2f2;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 1.4rem;
}
.single-info .l-2col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 260px 8rem 1fr;
  grid-template-columns: 260px 1fr;
  gap: 8rem;
}
@media (max-width: 960px) {
  .single-info .l-2col {
    grid-auto-flow: row-reverse;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.single-info .l-main {
  min-width: 0;
}
.single-info .info-sidebar {
  position: sticky;
  top: 10rem;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}
@media (max-width: 960px) {
  .single-info .info-sidebar {
    position: relative;
    top: 2rem;
  }
}
.single-info .info-sidebar .info-sidebox {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 1rem 1rem 0.5rem;
  margin-bottom: 1rem;
}
.single-info .info-sidebar .info-cat-list,
.single-info .info-sidebar .info-archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.single-info .info-sidebar .info-cat-list li,
.single-info .info-sidebar .info-archive-list li {
  border-bottom: 1px solid #f1f5f9;
}
.single-info .info-sidebar .info-cat-list li a,
.single-info .info-sidebar .info-archive-list li a {
  display: block;
  padding: 0.6rem 0.25rem;
  text-decoration: none;
  color: #334155;
  font-size: 0.9rem;
}
.single-info .info-sidebar .info-cat-list li a:hover,
.single-info .info-sidebar .info-archive-list li a:hover {
  text-decoration: underline;
}
.single-info .info-sidebar .info-cat-list li:last-child,
.single-info .info-sidebar .info-archive-list li:last-child {
  border-bottom: 0;
}
.single-info .info-sidebar .current-cat > a {
  font-weight: 700;
}
.single-info .info-sidebar .wp-block-categories-list {
  padding: 0;
}
.single-info .info-sidebar .wp-block-latest-posts__list li,
.single-info .info-sidebar .wp-block-categories-list li {
  list-style: none;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
}
.single-info .widget_block {
  margin-bottom: 6rem;
}
.single-info .widget_block .wp-block-heading {
  padding: 1rem;
  font-size: 1.4rem;
  border: solid 1px #cdcdcd;
}

/* Sidebar Toggle – 960px以下 */
@media (max-width: 960px) {
  .sidebar-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.95rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--sb-border);
    background: radial-gradient(120% 200% at 0% 0%, rgba(14, 165, 233, 0.08), transparent 35%), -webkit-gradient(linear, left top, left bottom, from(var(--sb-bg)), to(color-mix(in oklab, var(--sb-bg) 92%, #fff 8%)));
    background: radial-gradient(120% 200% at 0% 0%, rgba(14, 165, 233, 0.08), transparent 35%), linear-gradient(180deg, var(--sb-bg), color-mix(in oklab, var(--sb-bg) 92%, #fff 8%));
    color: var(--sb-text);
    font: 500 0.95rem/1.2 system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
    letter-spacing: 0.02em;
    -webkit-box-shadow: var(--sb-shadow);
            box-shadow: var(--sb-shadow);
    cursor: pointer;
    position: relative;
    -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
    transition: background-color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.2s ease, border-color 0.2s ease;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
    margin: 0.25rem 0 0.6rem;
  }
  .sidebar-toggle:hover {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
    -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    border-color: color-mix(in oklab, var(--sb-border) 60%, var(--sb-accent) 40%);
  }
  .sidebar-toggle:active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-shadow: var(--sb-shadow);
            box-shadow: var(--sb-shadow);
  }
  .sidebar-toggle:focus-visible {
    outline: 3px solid color-mix(in oklab, var(--sb-accent) 45%, transparent);
    outline-offset: 2px;
  }
  .sidebar-toggle::before {
    content: "";
    inline-size: 1rem;
    block-size: 1.15rem;
    border-radius: 6px 6px 2px 2px;
    background: -webkit-gradient(linear, left top, left bottom, from(color-mix(in oklab, var(--sb-accent) 92%, #fff 8%)), to(var(--sb-accent)));
    background: linear-gradient(180deg, color-mix(in oklab, var(--sb-accent) 92%, #fff 8%), var(--sb-accent));
    -webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 rgba(0, 0, 0, 0.06);
            box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 rgba(0, 0, 0, 0.06);
  }
  .sidebar-toggle::after {
    --chev: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'><path d='M15.3 7.3a1 1 0 0 0-1.4 0L10 11.17 6.1 7.3A1 1 0 1 0 4.7 8.7l4.6 4.6a1 1 0 0 0 1.4 0l4.6-4.6a1 1 0 0 0 0-1.4z'/></svg>");
    content: "";
    inline-size: 1.15rem;
    block-size: 1.15rem;
    -webkit-mask: var(--chev) center/contain no-repeat;
    mask: var(--chev) center/contain no-repeat;
    background: currentColor;
    opacity: 0.9;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: -webkit-transform 0.22s ease;
    transition: -webkit-transform 0.22s ease;
    transition: transform 0.22s ease;
    transition: transform 0.22s ease, -webkit-transform 0.22s ease;
  }
  .sidebar-toggle[aria-expanded=true] {
    border-color: color-mix(in oklab, var(--sb-border) 30%, var(--sb-accent) 70%);
  }
  .sidebar-toggle[aria-expanded=true]::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .sidebar-panels {
    overflow: clip;
    max-height: 0;
    -webkit-transition: max-height 0.28s ease, opacity 0.2s ease;
    transition: max-height 0.28s ease, opacity 0.2s ease;
    opacity: 0;
    will-change: max-height;
    margin-top: 0;
  }
  .sidebar-panels.is-open {
    max-height: 100%;
    opacity: 1;
    margin-top: 0.5rem;
  }
  .cat-accordion-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 0.8rem;
    margin-top: 0.65rem;
    border-radius: 12px;
    border: 1px solid var(--sb-border);
    background: -webkit-gradient(linear, left top, left bottom, from(var(--sb-bg)), to(color-mix(in oklab, var(--sb-bg) 88%, #fff 12%)));
    background: linear-gradient(180deg, var(--sb-bg), color-mix(in oklab, var(--sb-bg) 88%, #fff 12%));
    color: var(--sb-text);
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.18s ease;
    transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.18s ease;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.18s ease;
    font: 500 0.92rem/1.2 system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  }
  .cat-accordion-btn:hover {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
    border-color: color-mix(in oklab, var(--sb-border) 55%, var(--sb-accent) 45%);
    -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  }
  .cat-accordion-btn:focus-visible {
    outline: 3px solid color-mix(in oklab, var(--sb-accent) 40%, transparent);
    outline-offset: 2px;
  }
  .cat-accordion-panel {
    overflow: clip;
    max-height: 0;
    opacity: 0;
    -webkit-transition: max-height 0.26s ease, opacity 0.2s ease;
    transition: max-height 0.26s ease, opacity 0.2s ease;
    padding-left: 0.2rem;
  }
  .cat-accordion-panel.is-open {
    max-height: 60vh;
    opacity: 1;
    margin-top: 0.4rem;
  }
  .info-sidebar {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media (min-width: 961px) {
  .sidebar-toggle {
    display: none !important;
  }
  .sidebar-panels {
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    margin-top: 0 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sidebar-toggle,
  .sidebar-toggle::after,
  .sidebar-panels,
  .cat-accordion-panel {
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/* 商品一覧ページ */
/* ===== Products Archive ===== */
.products-archive {
  /* 上部：フィルタタブ */
}
.products-archive .prod-filter {
  margin: clamp(16px, 3vw, 28px) 0 clamp(20px, 4vw, 36px);
}
.products-archive .prod-filter .prod-tabs {
  display: -ms-inline-grid;
  display: inline-grid;
  grid-auto-flow: column;
  gap: 6px;
  background: #eef3fb;
  padding: 6px;
  border-radius: 12px;
}
.products-archive .prod-filter .prod-tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  font-weight: 700;
  color: #1d2088;
  cursor: pointer;
  -webkit-transition: background 0.15s ease, color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease;
}
.products-archive .prod-filter .prod-tab.is-active {
  background: #fff;
  color: #1d2088;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.products-archive .prod-filter {
  /* カテゴリ横スクロール */
}
.products-archive .prod-filter .cat-filter {
  margin-top: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.products-archive .prod-filter .cat-filter__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  padding: 8px 2px;
  margin: 0;
  list-style: none;
  white-space: nowrap;
}
.products-archive .prod-filter .cat-filter__link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 9999px;
  border: 1px solid #d8dbe2;
  background: #fff;
  color: #2a2a2a;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  -webkit-transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.products-archive .prod-filter .cat-filter__item.is-active .cat-filter__link,
.products-archive .prod-filter .cat-filter__link:hover {
  background: #243b97;
  /* コーポレート濃ブルー */
  border-color: #243b97;
  color: #fff;
}
.products-archive .prod-filter {
  /* キーワード検索タブ */
}
.products-archive .prod-filter .prod-panel {
  display: block;
}
.products-archive .prod-filter .prod-panel:not(.is-active) {
  display: none;
}
.products-archive .prod-filter .prod-search {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px auto;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 720px;
}
.products-archive .prod-filter .prod-search__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d6dbe3;
  border-radius: 999px;
  font-size: 1rem;
}
.products-archive .prod-filter .prod-search__btn {
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  background: #1d2088;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.products-archive .prod-section-title {
  margin: clamp(12px, 2vw, 20px) 0;
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 800;
  color: #1e1e45;
}
.products-archive {
  /* カードグリッド */
}
.products-archive .product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) clamp(16px, 2.2vw, 28px) minmax(0, 1fr) clamp(16px, 2.2vw, 28px) minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}
@media (max-width: 1024px) {
  .products-archive .product-grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .products-archive .product-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.products-archive {
  /* カード */
}
.products-archive .product-card {
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 6px 18px rgba(14, 32, 76, 0.08);
          box-shadow: 0 6px 18px rgba(14, 32, 76, 0.08);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
}
.products-archive .product-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 28px rgba(14, 32, 76, 0.12);
          box-shadow: 0 12px 28px rgba(14, 32, 76, 0.12);
}
.products-archive .product-card__link {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  color: inherit;
  text-decoration: none;
}
.products-archive .product-card__img {
  margin: 0;
  aspect-ratio: 4/3;
  /* スクショの比率に近づける */
  background: -webkit-gradient(linear, left top, left bottom, from(#eef4fb), to(#e9f2ff));
  background: linear-gradient(180deg, #eef4fb, #e9f2ff);
}
.products-archive .product-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.products-archive .product-card__body {
  padding: clamp(14px, 1.8vw, 18px) clamp(14px, 1.8vw, 18px) clamp(18px, 2vw, 22px);
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.products-archive .product-card__title {
  margin: 0;
  font-size: clamp(1.5rem, 1.1vw + 1rem, 1.8rem);
  line-height: 1.5;
  font-weight: 700;
  color: #1f2a44;
}
.products-archive .product-card__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.products-archive {
  /* ピル（カテゴリ） */
}
.products-archive .pill:hover {
  background: #eaf2ff;
  border-color: #7aa4ff;
  color: #1d2088;
}

/* =========================================
   Single: products
   ======================================= */
:root {
  --pr-accent: #1d2088;
  /* ピル/アクセント */
  --pr-accent-d: #143c95;
  --pr-muted: #6b7280;
  --pr-border: #e5e7eb;
  --pr-pale: #f5f9ff;
}

/* 汎用ピル（カテゴリ/バッジで共用） */
.pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
  padding: 0.35em 0.75em;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
  color: #1d2088;
  text-decoration: none;
  background: #fff;
  white-space: nowrap;
}
.pill:hover {
  opacity: 0.9;
}

.pill--badge {
  color: #1d2088;
  border-color: color-mix(in oklab, var(--pr-accent) 45%, #fff);
  background: color-mix(in oklab, var(--pr-accent) 12%, #fff);
}

/* ===== ページ全体 ===== */
/* ===== Hero ===== */
.product-hero {
  padding-top: 8rem;
  padding-bottom: clamp(28px, 5vw, 8rem);
  background-color: #f1f6fb;
}
.product-hero__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.1fr clamp(16px, 4vw, 48px) 0.9fr;
  grid-template-columns: 1.1fr 0.9fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(16px, 4vw, 48px);
}
.product-hero__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.product-hero__title {
  margin: 1.5rem 0;
  font-size: clamp(2.6rem, 3.4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #0b2140;
}
.product-hero__lead {
  margin: 3rem 0 0;
  color: #334155;
  line-height: 1.9;
}
.product-hero__art {
  margin: 0;
  -ms-grid-column-align: end;
      justify-self: end;
  max-width: min(560px, 92%);
  border-radius: 10px;
  overflow: hidden;
}
.product-hero__art img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 960px) {
  .product-hero__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .product-hero__art {
    -ms-grid-column-align: start;
        justify-self: start;
    max-width: 100%;
  }
}

/* 横長ビジュアル */
.product-wide-visual {
  margin: clamp(20px, 4vw, 40px) auto;
  aspect-ratio: 2/1;
}
.product-wide-visual img {
  display: block;
  border-radius: 6px;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* ===== 共通セクション見出し ===== */
.prod-section {
  padding: clamp(28px, 5vw, 56px) 0;
}

.prod-h2 {
  margin: 0 0 clamp(1.5rem, 2vw, 4rem);
  font-size: clamp(2.6rem, 3.3vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.prod-h2 small {
  margin-left: 0.5rem;
  font-family: "Special Gothic Condensed One";
  font-size: 2rem;
  font-weight: 300;
  color: #1d2088;
  display: block;
  letter-spacing: 0.3rem;
}

/* ===== 特徴（3枠） ===== */
.features__head {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(180px, 1fr) clamp(12px, 2vw, 28px) 3fr;
  grid-template-columns: minmax(180px, 1fr) 3fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(12px, 2vw, 28px);
}
.features__lead {
  color: #333;
  line-height: 1.8;
}
.features__lead p {
  margin: 0 0 1em;
}
.features__rule {
  margin: clamp(16px, 2.5vw, 28px) 0;
  border: 0;
  border-top: 1px solid #fff;
}
.features__list {
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(260px, 1fr) clamp(20px, 4vw, 48px) minmax(260px, 1fr) clamp(20px, 4vw, 48px) minmax(260px, 1fr);
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: clamp(18px, 3vw, 36px) clamp(20px, 4vw, 48px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.features__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: clamp(10px, 1.6vw, 18px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.features__icon {
  text-align: center;
}
.features__icon img {
  width: 144px;
  height: 144px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.features__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06) inset, 0 2px 6px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06) inset, 0 2px 6px rgba(0, 0, 0, 0.04);
}
.features__title {
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 0.4em;
}
.features__text {
  margin: 0;
  line-height: 1.8;
  color: #444;
}

/* レスポンシブ：モバイルで縦積み */
@media (max-width: 768px) {
  .features__head {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .features__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/* ===== 仕様 ===== */
.specs {
  background: #F6F6F6;
}
.specs__table {
  margin: 0;
  display: -ms-grid;
  display: grid;
  overflow: hidden;
}
.specs__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 3fr;
  grid-template-columns: 1fr 3fr;
  gap: 0;
  border-bottom: 1px solid #e2e7e9;
  background-color: #fff;
}
.specs__row:last-child {
  border-bottom: 0;
}
.specs__th, .specs__td {
  margin: 0;
  padding: 12px 14px;
  font-size: 1.5rem;
  line-height: 1.7;
}
.specs__th {
  background: #FFFFFF;
  font-weight: 600;
  color: #0b2140;
}
.specs__td {
  color: #334155;
}
@media (max-width: 640px) {
  .specs__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .specs__th {
    border-bottom: 1px solid var(--pr-border);
  }
}

/* === cases === */
.product-single .cases {
  border-top: 1px solid #e2e7e9;
}

/* ===== Flow（横スクロール） ===== */
.flow__viewport {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.5rem, 2vw, 3rem);
  padding: 0;
  margin: 0;
  list-style: none;
}
.flow__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 min(88%, 320px);
          flex: 0 0 min(88%, 320px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
}
.flow__img {
  margin: 0 0 0.8rem;
  border-radius: 8px;
  overflow: hidden;
}
.flow__img img {
  width: 100%;
  height: auto;
  display: block;
}
.flow__title {
  margin: 0 0 0.4rem;
  font-weight: 700;
  font-size: 1.6rem;
}
.flow__text {
  margin: 0;
  color: #334155;
  font-size: 1.5rem;
  line-height: 1.8;
}

/* ===== Case（1件カード） ===== */
.case-single {
  background: #efefef;
}
.case-single__card .wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(16px, 3vw, 32px) 2fr;
  grid-template-columns: 1fr 2fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(12px, 2vw, 16px);
}
.case-single__thumb {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
.case-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.case-single__title {
  margin: 0 0 0.4rem;
  font-weight: 800;
}
.case-single__text {
  color: #334155;
  line-height: 1.9;
}
.case-single__more {
  margin-top: 0.8rem;
}
@media (max-width: 960px) {
  .case-single__card .wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ（details） ===== */
.faq {
  background: #748185;
}
.faq .prod-h2,
.faq small {
  color: #fff;
}
.faq__list {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.faq__item {
  border: 1px solid var(--pr-border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.faq__item summary {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
  /* Safari 対策 */
  font-weight: 700;
  position: relative;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary {
  /* + アイコン */
}
.faq__item summary::after {
  content: "";
  inline-size: 18px;
  block-size: 18px;
  border-radius: 999px;
  border: 1.5px solid var(--pr-muted);
  background: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor)) center/10px 1.5px no-repeat, -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor)) center/1.5px 10px no-repeat;
  background: linear-gradient(currentColor, currentColor) center/10px 1.5px no-repeat, linear-gradient(currentColor, currentColor) center/1.5px 10px no-repeat;
  color: var(--pr-muted);
}
.faq__item {
  /* 開いたら × に近い見た目（縦線を消す） */
}
.faq__item[open] summary::after {
  background: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor)) center/10px 1.5px no-repeat;
  background: linear-gradient(currentColor, currentColor) center/10px 1.5px no-repeat;
}
.faq__item .faq__a {
  padding: 0 14px 12px;
  color: #334155;
  line-height: 1.9;
}

/* ===== 前後ナビ ===== */
.product-nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(8px, 1.5vw, 16px) auto clamp(8px, 1.5vw, 16px) 1fr;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(8px, 1.5vw, 16px);
  padding: 20px 0;
}
@media (max-width: 600px) {
  .product-nav {
    display: block;
  }
}

/* 左右リンクの整列 */
.product-nav .prev {
  -ms-grid-column-align: start;
      justify-self: start;
}

.product-nav .next {
  -ms-grid-column-align: end;
      justify-self: end;
}

.product-nav .prev a,
.product-nav .next a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.product-nav .prev a:hover,
.product-nav .next a:hover {
  opacity: 0.75;
}

/* 中央ボタン */
.product-nav .all-posts {
  text-align: center;
}

.product-nav .btn {
  display: inline-block;
  padding: 1.2em 3em;
  border-radius: 9999px;
  background: #1d2088;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.product-nav .btn:hover {
  -webkit-filter: brightness(1.03);
          filter: brightness(1.03);
}

/* 前後リンクが出ない（divが空）場合の高さ崩れ防止（任意） */
.product-nav .prev:empty::before,
.product-nav .next:empty::before {
  content: "";
  display: block;
  min-width: 6em;
  height: 1em;
}

.product-nav .prev a,
.product-nav .next a {
  padding: 8px 14px;
  border-radius: 9999px;
  background: #eef3fb;
}

/* ===== Case voice (message + avatar) ===== */
.case-voice {
  --avatar: clamp(64px, 8vw, 96px);
  position: relative;
  margin-top: clamp(16px, 3vw, 24px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: var(--avatar) clamp(12px, 3vw, 20px) 1fr;
  grid-template-columns: var(--avatar) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(12px, 3vw, 20px);
}
.case-voice__avatar {
  margin: 0;
  width: var(--avatar);
  height: var(--avatar);
  border-radius: 50%;
  overflow: hidden;
  background: #eef2f7;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.case-voice__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.case-voice__ph {
  inline-size: 60%;
  block-size: 60%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#e5eefb), to(#dfe9f9));
  background: linear-gradient(180deg, #e5eefb, #dfe9f9);
}
.case-voice__bubble {
  position: relative;
  padding: clamp(12px, 2.4vw, 16px) clamp(14px, 3vw, 20px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.case-voice__bubble p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
}
.case-voice__bubble .case-voice__from {
  display: block;
  margin-top: 0.8rem;
  text-align: right;
  color: #6b7280;
  font-style: normal;
}
.case-voice__bubble .case-voice__from .role {
  margin-right: 0.6em;
}
.case-voice__bubble .case-voice__from .name {
  font-weight: 700;
  color: #111827;
}
.case-voice__bubble {
  /* 左に小さなノッチ（吹き出し） */
}
.case-voice__bubble::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 18px;
  width: 16px;
  height: 16px;
  background: inherit;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 640px) {
  .case-voice {
    -ms-grid-columns: var(--avatar) 1fr;
    grid-template-columns: var(--avatar) 1fr;
  }
}

/* 既存 case-single の微調整（バブルとの間隔） */
.case-single__card {
  margin-bottom: clamp(12px, 3vw, 16px);
}

/* フィルターピル */
.prod-filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.prod-filter__item .pill .count {
  margin-left: 0.45em;
  font-size: 0.85em;
  opacity: 0.7;
}

.prod-filter__item.is-active .pill {
  background: var(--pr-accent, #1d2088);
  color: #fff;
  border-color: var(--pr-accent, #1d2088);
}

.product-card__cats {
  display: -ms-grid;
  display: grid;
  gap: 0.6rem 1rem;
}

.cats__group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0.8rem 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0.4rem 0.8rem;
}

.cats__label {
  font-size: 1.2rem;
  color: #666;
  white-space: nowrap;
}

.cats__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
}

/* anout */
.about-heading {
  font-size: 3.6rem;
  margin-bottom: 1em;
}

.about-greeting {
  padding-bottom: 8rem;
}

.about-greeting__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.about-greeting__inner .about-greeting__img img {
  width: 240px;
  border-radius: 8px;
}
.about-greeting__inner .about-greeting__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.8;
}
.about-greeting__inner .about-greeting__name {
  text-align: right;
  font-weight: bold;
  margin-top: 1em;
}

.about-table {
  display: -ms-grid;
  display: grid;
  gap: 0;
}
.about-table div {
  padding: 3rem 1rem;
  border-bottom: solid 1px #e2e7e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-table div dt {
  width: clamp(4em, 10vw, 8em);
  font-weight: 600;
}
.about-table div dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about-history {
  padding: 4rem 0;
  background: #f8f8f8;
}

.about-history__list {
  list-style: none;
  padding: 0;
  -ms-grid-column: 2;
  grid-column: 2;
}
.about-history__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid #e2e7e9;
  padding: 1rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-history__list li .year {
  width: 6em;
  font-weight: 600;
}
.about-history__list li .desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about-greeting__sign {
  margin-top: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end; /* 水平方向中央 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直方向中央 */
  gap: 1rem;
}
.about-greeting__sign .about-greeting__title {
  margin: 0 1rem 0 0;
  font-size: 1.4rem;
  display: inline-block;
}
.about-greeting__sign img {
  height: 48px;
  width: auto;
}

.about-greeting__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 3fr;
  grid-template-columns: 1fr 1fr 3fr;
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.about-greeting__grid .about-greeting__img {
  -ms-grid-column: 2;
  grid-column: 2;
}
.about-greeting__grid .about-greeting__img img {
  width: 100%;
  max-width: 240px;
  border-radius: 8px;
}
.about-greeting__grid .about-greeting__text {
  -ms-grid-column: 3;
  grid-column: 3;
  line-height: 1.8;
  font-size: 1.8rem;
}

.about-company {
  padding-bottom: 8rem;
}

.about-company__grid,
.about-history__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 4fr;
  grid-template-columns: 1fr 4fr;
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.about-company__grid .about-table,
.about-history__grid .about-table {
  font-size: 1.8rem;
  -ms-grid-column: 2;
  grid-column: 2;
}

@media (max-width: 768px) {
  .about-greeting__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .about-greeting__grid .about-greeting__img,
  .about-greeting__grid .about-greeting__text {
    grid-column: auto;
  }
  .about-company__grid,
  .about-history__grid {
    display: block;
  }
}
.client-list {
  padding: 0;
}

.client-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
  line-height: 1.6;
}
.client-table td {
  padding: 6px 8px;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.75);
  word-break: break-word;
}
.client-table tr:last-child td {
  border-bottom: none;
}

/* PC：3列 */
@media (min-width: 1024px) {
  .client-table td {
    width: 33.33%;
  }
}
/* Mobile：1列 */
@media (max-width: 600px) {
  .client-table,
  .client-table tr,
  .client-table td {
    display: block;
    width: 100%;
  }
  .client-table td {
    padding-left: 0;
  }
}
.client-note {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.55);
}

/* =========================
   トップページ用 About セクション
   ========================= */
.about__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.about {
  /* 左側のテキストブロック */
}
.about__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about {
  /* 右側の画像ブロック（中身の2枚も横並び） */
}
.about__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.about__img .shot {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.about__img .shot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* スマホなど小さい画面では縦並びにする */
@media (max-width: 768px) {
  .about__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__img {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
/* 画像2枚の斜めラインをそろえる調整 */
.about__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* 左右のパネル位置をずらして一本の斜めラインにする */
.about__img .shot:nth-child(1) {
  margin-top: 40px;
}

.about__img .shot:nth-child(2) {
  margin-top: 0;
}

/* ================================
   Contact Page
   — WordPress + Contact Form 7 (CF7)
   — まるっと貼り付けOK、HTML改変なしでデザイン適用
   ================================ */
/* ブランドカラー仮（サイトに合わせて調整推奨） */
/* アクセシビリティ重視のフォーカスリング */
/* ===== メイン：フォームカード ===== */
/* 記事コンテナの不要な余白を抑える */
.article .content {
  /* ===== カード（フォーム） ===== */
}
.article .content .wpcf7 {
  display: block;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: clamp(20px, 4vw, 40px);
  margin: 0 auto;
  /* 状態メッセージ（成功/失敗/情報） */
}
.article .content .wpcf7 .wpcf7-response-output {
  margin-top: 16px;
  border-radius: 0.5rem;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid #e2e8f0;
  background: #f9fafb;
  color: #334155;
}
.article .content .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #86efac;
  background: #f0fdf4;
  color: #14532d;
}
.article .content .wpcf7 .wpcf7-response-output.wpcf7-validation-errors, .article .content .wpcf7 .wpcf7-response-output.wpcf7-acceptance-missing {
  border-color: #fecaca;
  background: #fef2f2;
  color: #7f1d1d;
}
.article .content .wpcf7 {
  /* 画面リーダー領域のデフォルト余白をリセット */
}
.article .content .wpcf7 .screen-reader-response {
  margin: 0;
}
.article .content .wpcf7 {
  /* 余計な hidden fieldset は視覚的に非表示 */
}
.article .content .wpcf7 .hidden-fields-container {
  display: none;
}
.article .content .wpcf7 {
  /* ===== グリッド：ラベル + 入力 ===== */
}
.article .content .wpcf7 form.wpcf7-form {
  display: -ms-grid;
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  /* 各フォームブロック（CF7は<p>で区切られる） */
}
.article .content .wpcf7 form.wpcf7-form > p {
  margin: 0;
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
.article .content .wpcf7 form.wpcf7-form {
  /* ラベル */
}
.article .content .wpcf7 form.wpcf7-form label {
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.02em;
}
.article .content .wpcf7 form.wpcf7-form {
  /* 入力系共通 */
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-text,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-email,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-tel,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-number,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-date,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-select,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  width: 90%;
  min-height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  background: #fff;
  color: #0f172a;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.5;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-text::-webkit-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-email::-webkit-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-tel::-webkit-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-number::-webkit-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-date::-webkit-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-select::-webkit-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-textarea::-webkit-input-placeholder {
  color: #94a3b8;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-text::-moz-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-email::-moz-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-tel::-moz-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-number::-moz-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-date::-moz-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-select::-moz-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-textarea::-moz-placeholder {
  color: #94a3b8;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-text:-ms-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-email:-ms-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-tel:-ms-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-number:-ms-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-date:-ms-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-select:-ms-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-textarea:-ms-input-placeholder {
  color: #94a3b8;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-text::-ms-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-email::-ms-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-tel::-ms-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-number::-ms-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-date::-ms-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-select::-ms-input-placeholder, .article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-textarea::-ms-input-placeholder {
  color: #94a3b8;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-text::placeholder,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-email::placeholder,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-tel::placeholder,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-number::placeholder,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-date::placeholder,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-select::placeholder,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #94a3b8;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-text:hover,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-email:hover,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-tel:hover,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-number:hover,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-date:hover,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-select:hover,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-textarea:hover {
  border-color: color-mix(in srgb, #0f6fef 18%, #e2e8f0);
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-text:focus-visible,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-email:focus-visible,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-tel:focus-visible,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-number:focus-visible,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-date:focus-visible,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-select:focus-visible,
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-textarea:focus-visible {
  border-color: #0f6fef;
  -webkit-box-shadow: 0 0 0 4px color-mix(in srgb, #0f6fef 15%, white);
          box-shadow: 0 0 0 4px color-mix(in srgb, #0f6fef 15%, white);
  outline: none;
}
.article .content .wpcf7 form.wpcf7-form {
  /* テキストエリア */
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  min-height: clamp(160px, 24vh, 260px);
  resize: vertical;
}
.article .content .wpcf7 form.wpcf7-form {
  /* バリデーション（CF7 の not-valid クラス） */
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-not-valid {
  border-color: #ef4444 !important;
  background: #fff7f7;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
  color: #991b1b;
}
.article .content .wpcf7 form.wpcf7-form {
  /* チェックボックス群をピル状のトグルに */
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  margin: 0; /* CF7のデフォルト余白を打消し */
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-checkbox .wpcf7-list-item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 500;
  color: #334155;
  background: #fff;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #64748b;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:checked {
  border-color: #0f6fef;
  background: #0f6fef;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  inset: 2px 4px 4px 2px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:focus-visible {
  outline: 3px solid color-mix(in srgb, #0f6fef 40%, white);
  outline-offset: 2px;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-checkbox .wpcf7-list-item label:has(input[type=checkbox]:checked) {
  background: color-mix(in srgb, #0f6fef 8%, white);
  border-color: color-mix(in srgb, #0f6fef 40%, #e2e8f0);
  -webkit-box-shadow: 0 0 0 4px color-mix(in srgb, #0f6fef 12%, white);
          box-shadow: 0 0 0 4px color-mix(in srgb, #0f6fef 12%, white);
  color: #0f172a;
}
.article .content .wpcf7 form.wpcf7-form {
  /* 送信ボタン */
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: clamp(180px, 40%, 280px);
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid color-mix(in srgb, #0f6fef 40%, #0a58ca);
  border-radius: 9999px;
  background: -webkit-gradient(linear, left top, left bottom, from(#0f6fef), to(color-mix(in srgb, #0f6fef 78%, #0a58ca)));
  background: linear-gradient(180deg, #0f6fef, color-mix(in srgb, #0f6fef 78%, #0a58ca));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-transform 0.06s ease, -webkit-filter 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.06s ease, -webkit-filter 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.06s ease, filter 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.06s ease, filter 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.06s ease, -webkit-filter 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-submit:hover {
  -webkit-filter: brightness(1.03);
          filter: brightness(1.03);
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-submit:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.article .content .wpcf7 form.wpcf7-form .wpcf7-submit:focus-visible {
  outline: 3px solid color-mix(in srgb, #3b82f6 40%, white);
  outline-offset: 2px;
}
.article .content .wpcf7 form.wpcf7-form {
  /* ローディングスピナー（CF7のhas-spinner） */
}
.article .content .wpcf7 form.wpcf7-form .has-spinner {
  position: relative;
}
.article .content .wpcf7 form.wpcf7-form .has-spinner::after {
  content: "";
  position: absolute;
  inset: auto 14px 50% auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: rgb(255, 255, 255);
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.article .content .wpcf7 form.wpcf7-form .submitting .has-spinner::after {
  opacity: 1;
}

.wpcf7-form-control-wrap .wpcf7-list-item-label a {
  text-decoration: underline;
}

/* キーフレーム */
@-webkit-keyframes spin {
  to {
    -webkit-transform: translateY(50%) rotate(360deg);
            transform: translateY(50%) rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: translateY(50%) rotate(360deg);
            transform: translateY(50%) rotate(360deg);
  }
}
/* ===== ダークモード（任意） ===== */
@media (prefers-color-scheme: dark) {
  .wpcf7 {
    background: #0f1324;
    border-color: #1f2940;
  }
  .wpcf7 .wpcf7-form-control.wpcf7-text,
  .wpcf7 .wpcf7-form-control.wpcf7-email,
  .wpcf7 .wpcf7-form-control.wpcf7-tel,
  .wpcf7 .wpcf7-form-control.wpcf7-number,
  .wpcf7 .wpcf7-form-control.wpcf7-date,
  .wpcf7 .wpcf7-form-control.wpcf7-select,
  .wpcf7 .wpcf7-form-control.wpcf7-textarea {
    background: #0b0f1d;
    border-color: #22304a;
    color: #e5e7eb;
  }
  .wpcf7 .wpcf7-form-control.wpcf7-text::-webkit-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-email::-webkit-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-tel::-webkit-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-number::-webkit-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-date::-webkit-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-select::-webkit-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-textarea::-webkit-input-placeholder {
    color: #6b7280;
  }
  .wpcf7 .wpcf7-form-control.wpcf7-text::-moz-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-email::-moz-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-tel::-moz-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-number::-moz-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-date::-moz-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-select::-moz-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-textarea::-moz-placeholder {
    color: #6b7280;
  }
  .wpcf7 .wpcf7-form-control.wpcf7-text:-ms-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-email:-ms-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-tel:-ms-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-number:-ms-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-date:-ms-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-select:-ms-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-textarea:-ms-input-placeholder {
    color: #6b7280;
  }
  .wpcf7 .wpcf7-form-control.wpcf7-text::-ms-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-email::-ms-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-tel::-ms-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-number::-ms-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-date::-ms-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-select::-ms-input-placeholder, .wpcf7 .wpcf7-form-control.wpcf7-textarea::-ms-input-placeholder {
    color: #6b7280;
  }
  .wpcf7 .wpcf7-form-control.wpcf7-text::placeholder,
  .wpcf7 .wpcf7-form-control.wpcf7-email::placeholder,
  .wpcf7 .wpcf7-form-control.wpcf7-tel::placeholder,
  .wpcf7 .wpcf7-form-control.wpcf7-number::placeholder,
  .wpcf7 .wpcf7-form-control.wpcf7-date::placeholder,
  .wpcf7 .wpcf7-form-control.wpcf7-select::placeholder,
  .wpcf7 .wpcf7-form-control.wpcf7-textarea::placeholder {
    color: #6b7280;
  }
  .wpcf7 .wpcf7-checkbox label {
    border-color: #22304a;
    background: #0b0f1d;
    color: #cbd5e1;
  }
  .wpcf7 .wpcf7-submit {
    border-color: color-mix(in srgb, #0f6fef 40%, #072d6b);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
/* ===== 採用情報 ===== */
.recruit-page .recruit-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin: 4rem auto 6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.recruit-page .recruit-nav__btn {
  display: inline-block;
  background: #1c2580;
  color: #fff;
  padding: 1.1rem 2.2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.recruit-page .recruit-nav__btn:hover {
  background: #303fa0;
}
.recruit-page .recruit-nav__btn.is-active {
  background: #000d4f;
}
.recruit-page .recruit-section {
  margin-bottom: 8rem;
}
.recruit-page .recruit-title {
  padding-bottom: 1.5rem;
  font-size: 3.6rem;
  margin-bottom: 1em;
  font-weight: 600;
  border-bottom: 2px solid #eee;
}
.recruit-page .recruit-list div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding: 1.2rem 0;
}
.recruit-page .recruit-list dt {
  width: 25%;
  font-weight: 600;
  color: #111;
}
.recruit-page .recruit-list dd {
  width: 75%;
  margin: 0;
  color: #333;
}
@media (max-width: 768px) {
  .recruit-page .recruit-list div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit-page .recruit-list dt,
  .recruit-page .recruit-list dd {
    width: 100%;
  }
  .recruit-page .recruit-list dt {
    margin-bottom: 0.3rem;
  }
}

.recruit-page .recruit-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 2.4rem 0 1.2rem;
}

/* ドロップダウン（ホバーで表示、フォーカスにも対応） */
.gnav .menu-item {
  position: relative;
  list-style: none;
}
.gnav .menu-item.menu-item-has-children > a {
  position: relative;
  padding-right: 1.2em;
}
.gnav .menu-item.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0.4em;
  top: 50%;
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg); /* ▼風の矢印 */
}
.gnav .menu-item {
  /* サブメニューの初期状態は非表示 */
}
.gnav .menu-item .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 12rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  display: none;
  z-index: 1000;
}
.gnav .menu-item .sub-menu > li > a {
  display: block;
  padding: 0.6rem 1rem;
  white-space: nowrap;
  line-height: 1.4;
}
.gnav .menu-item .sub-menu > li > a:hover,
.gnav .menu-item .sub-menu > li > a:focus {
  background: #f5f7fb;
}
.gnav .menu-item {
  /* ホバーとキーボードフォーカスで開く */
}
.gnav .menu-item:hover > .sub-menu, .gnav .menu-item:focus-within > .sub-menu {
  display: block;
}

/* スマホ（例）：メニューを縦積みで全開にするなら別途JS or 開閉UIに合わせて調整 */
@media (max-width: 768px) {
  .gnav .menu-item .sub-menu {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 0;
    display: none; /* ハンバーガー開閉に合わせて切替 */
  }
  .gnav .menu-item .sub-menu > li > a {
    color: #333;
  }
}
/* --- グリッド --- */
.materials-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
@media (max-width: 600px) {
  .materials-grid {
    display: block;
  }
  .materials-grid .material-card {
    margin-bottom: 24px;
  }
}

/* --- カード --- */
.material-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  background: #fff;
}
@media (max-width: 600px) {
  .material-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .material-card .material-card__action {
    margin-top: 12px;
  }
}

/* --- 左側（タイトル＋概要） --- */
.material-card__body {
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .material-card__body {
    margin-right: 0;
  }
}

/* タイトル */
.material-card__title {
  margin: 0 0 1.5rem 0;
  font-size: 1.8rem;
  font-weight: 600;
}

/* 概要 */
.material-card__desc {
  font-size: 1.6rem;
  line-height: 1.7;
  margin: 0;
}

/* --- 右側（ボタン） --- */
.material-card__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ボタン */
.material-card__button {
  display: inline-block;
  padding: 1.5rem 3rem;
  background: #0e66b6;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1.2;
}

/* =======================================
   Blog Card Meta（カテゴリ＋タグ）
======================================= */
.blog-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.75rem;
}
.blog-card__meta time {
  font-size: 1.2rem;
  color: #666;
}

/* カテゴリー（既存に寄せる） */
.blog-card__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
}

.blog-card__cat {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  font-size: 0.75rem;
  background: #f0f0f0;
  color: #333;
  border-radius: 3px;
  text-decoration: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.blog-card__cat:hover {
  background: #e3e3e3;
}

/* ===============================
   ▼ 追加：タグ
=============================== */
.blog-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
}

.blog-card__tag {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  font-size: 1.2rem;
  background: #e9f4ff;
  color: #005a9e;
  border-radius: 3px;
  text-decoration: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.blog-card__tag:hover {
  background: #d6ebff;
}

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

.mt-2 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-12 {
  margin-bottom: 12rem;
}