/* --- ベース・リセット --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fz-body);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-main);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1 {
  font-size: var(--fz-h1);
  font-family: var(--font-h1);
}
h2 {
  font-size: var(--fz-h2);
}
h3 {
  font-size: var(--fz-h3);
}

.u-small {
  font-size: var(--fz-sm);
  font-weight: 400;
}

/* --- CSS変数（デザイン数値） --- */
:root {
  /* カラーコード */
  --bg-main: #F7F7F7;
  --bg-sub: #FAFBFB;
  --text-primary: #333333;
  --text-sub: #707070;
  --accent-green: #00857D;
  --accent-orange: #E9844A;
  --accent-green-hover: #00857D;

  /* フォントサイズ（PC想定） */
  --fz-h1: 48px;
  --fz-h2: 32px;
  --fz-h3: 24px;
  --fz-body: 16px;
  --fz-sm: 12px;

  /* フォントファミリー */
  --font-h1: "Zen Kaku Gothic Antique", "Nobile", sans-serif;
  --font-en: "Nobile", sans-serif;

  /* レイアウト・余白 */
  --container-width: 1200px;
  --section-padding: 80px;
  --element-spacing: 24px;
  --border-radius: 16px;

  /* --- ボタンカラー --- */
  --btn-main-color: #E9844A;      /* 共通のオレンジ（お問い合わせ・製品等） */
  --btn-sub-color: #5da09b;
  --btn-bg-white: #F7F7F7;        /* 代理店ページ用のグリーン */
  --btn-text-white: #FAFBFB;

  /* --- 角丸 (Radius) --- */
  --btn-radius-round: 32px;        /* 基本の丸いボタン用 */
  --btn-radius-rect: 16px;         /* 角丸16pxボタン用 */

  /* --- 余白 (Padding) --- */
  --btn-pd-base: 16px 24px;        /* 基本 */
  --btn-pd-square: 24px;           /* 角丸16pxボタン用（上下左右24px） */
  --btn-pd-submit: 16px 40px;      /* 送信ボタン用 */
}

/* --- 共通ボタンコンポーネント (Component) --- */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}

/* スタイル：オレンジ塗りつぶし */
.c-btn--orange {
  border: 1px solid var(--btn-main-color);
  background: var(--btn-main-color);
  color: var(--btn-text-white); 
}

.c-btn--orange-outline {
  gap: 8px;
  border: 1px solid var(--btn-main-color);
  background: var(--btn-bg-white);
  color: var(--btn-main-color); 
}

.c-btn--green-outline {
  gap: 8px;
  border: 1px solid var(--btn-sub-color);
  background: var(--btn-bg-white);
  color: var(--btn-sub-color); 
}

.c-btn--green-outline .material-symbols-outlined {
  display: inline-block;
  transition: transform 0.2s ease-out;
}

/* 形状：丸形（32px） */
.c-btn--round {
  border-radius: var(--btn-radius-round);
  padding: var(--btn-pd-base); /* 16px 24px */
}
.c-btn--rect {
  border-radius: var(--btn-radius-rect);
  padding: var(--btn-pd-square); 
}

/* ホバー演出 */
.c-btn--orange:hover {
  color: var(--btn-main-color);
  background: var(--btn-text-white); 
}
.c-btn--orange-outline:hover {
  background: var(--btn-main-color); 
  color: var(--btn-bg-white); 
}
.c-btn--green-outline:hover {
  background: transparent;
}
.c-btn--green-outline:hover .material-symbols-outlined {
  transform: translateX(2px);
}

/* --- セクションタイトル共通パーツ --- */
.c-section-title {
  margin-bottom: 56px; /* 下のコンテンツとの余白 */
}

/* 英語タイトルとドットのグループ */
.c-section-title__en-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

/* 重なり合う2つの円 */
.c-section-title__dots {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--accent-green);
  border-radius: 50%;
}

.c-section-title__dots::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 16px;
  height: 16px;
  background-color: rgba(0, 133, 125, 0.6); 
  border-radius: 50%;
  z-index: 1;
}

/* 英語タイトル */
.c-section-title__en {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
}

/* 日本語タイトル（変数を活用） */
.c-section-title__main {
  color: var(--text-main);
}

@media (max-width: 1024px) {
  .c-section-title__en {
    font-size: 12px;
  }
  .c-section-title__dots {
    width: 12px;
    height: 12px;
  }
  
  .c-section-title__dots::before {
    left: 4px;
    width: 12px;
    height: 12px;
  }
}
/* レスポンシブ */
/* PC用：デフォルトは非表示、768px以上で表示 */
.u-pc-only {
  display: none;
}

/* スマホ用：デフォルトは表示、768px以上で非表示 */
.u-sp-only {
  display: block;
}

@media (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
  .u-sp-only {
    display: none;
  }
}

.lead-wrap {
  margin: 56px auto;
}

.company__logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 209px;
  margin: 0;
  color: #0F8682;
  font-size: 14px;
  font-weight: 700;
}

.nav-link {
  color: var(--text-primary);
  font-size: var(--fz-body);
}

.nav-link:hover {
  color: var(--accent-green);
}

/* --- ヘッダー --- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 40px;
  gap: var(--element-spacing);
}

.header__logo {
  z-index: 1000;
	flex-shrink: 1;
}

.header__logo a {
  color: var(--text-primary);
}

.header__nav {
  display: flex;
	flex-shrink: 0;
  align-items: center;
  gap: 40px; 
}

.header__nav-inner {
  display: flex;
  gap: 24px;
}

@media (max-width: 1190px) {
  .header__nav-inner {
    flex-direction: column;
	  padding-top: 100px;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--element-spacing);
}

.header__cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: var(--fz-body);
  font-weight: 700;
  color: var(--text-primary);
  background-color: var(--accent-yellow);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.header__cta-button:hover {
  background-color: var(--accent-green-hover);
}

/* ハンバーガー */
/* --- ハンバーガーボタンの基本設定 (PCでは非表示) --- */
.header__hamburger {
  display: none;
}

@media (max-width: 1190px) { 
  .header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    border-radius: 100%;
    z-index: 1000;
    cursor: pointer;
  }

  .header__hamburger-bar {
    width: 28px;
    height: 1px;
    background-color: var(--bg-main);
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
  }

  .header__hamburger.is-active .header__hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(315deg);
  }
  
  .header__hamburger.is-active .header__hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  
  .header__hamburger.is-active .header__hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-315deg);
  }

  /* スマホ用ナビ（全画面オーバーレイ） */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100%;
    height: 100vh;
    background-color: var(--bg-sub);
    transition: right 0.4s ease;
    z-index: 999;
    overflow-y: auto; 
    padding: 200px 40px 60px;
  }

  /* メニューが開いた時（JSでクラス付与） */
  .header__nav.is-active {
    right: 0;
  }

  .header__nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 36px;
    padding-left: 20px; 
  }

  .header__nav-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

/* --- PC版では非表示にするユーティリティ --- */
.u-mobile-only {
  display: none;
}

@media (max-width: 1190px) {
  .u-mobile-only {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 40px;
  }
}

/* ========================================
   メインビジュアル
   ======================================== */
.mv {
  position: relative;
  min-height: 100vh; 
  display: flex;
  flex-direction: column;
  background: url(../images/mv-bg.jpg) no-repeat center center / cover;
  padding: 40px;
  overflow: hidden;
}

.mv::before {
  content: "SWJ";
  position: absolute;
  top: 10%;
  left: -50px;
  font-family: var(--font-en);
  font-size: clamp(200px, 40vw, 500px);
  z-index: 0;
  pointer-events: none;
  color: transparent;
  -webkit-text-stroke: .5px var(--accent-green);
  opacity: var(--bg-opacity, 0);
  will-change: opacity;
}

.mv__inner {
  padding-top: 100px;
}

.mv__actions {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: var(--element-spacing);
  margin-bottom: 80px;
  z-index: 1;
}

.mv__content {
  max-width: var(--container-width);
}

.mv__main-group {
  display: grid;
  grid-template-columns: repeat(12, 1fr); 
}

.mv__copy-wrapper {
  grid-column: 1 / 11;
  grid-row: 1;
  z-index: 2;
}
.mv__copy {
  margin: 0 0 8px;
  font-weight: 700;
  font-family: var(--font-h1);
  line-height: 1;
  color: var(--accent-green);
  white-space: nowrap;
}

.mv__company-name,
.mv__main-phrase {
  display: block;
  width: fit-content;
  margin-bottom: 32px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, .4);
  pointer-events: auto; 
  visibility: visible;
}
.mv__image {
  grid-column: 7 / 13; 
  grid-row: 1;
  z-index: 1;
  width: 40vw;
  max-width: 800px; 
  justify-self: end; 
}

.mv__image img {
  width: 100%;
  height: auto;
  display: block;
}

.mv__news {
  position: absolute;
  top: 80%;
  max-width: 50%;
  margin-top: -140px;
  padding: 32px var(--element-spacing);
  border-radius: 40px;
  background: var(--bg-sub);
  z-index: 10;
}

.mv__news-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mv__news-item {
  display: flex;
  align-items: baseline;
  gap: var(--element-spacing);
}

.mv__news-date {
  flex-shrink: 0;
}

.mv__news .c-btn--news {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}

.mv__copy-wrapper {
    position: relative; 
}

.mv__event-badge {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--btn-text-white);
    padding: 0.4em 1.2em;
    border-radius: var(--border-radius);
    font-weight: bold;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0; 
    animation: fadeInUpSoft 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUpSoft {
    0% {
        opacity: 0;
        transform: translateY(15px); 
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px){
  .mv::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .mv__main-group {
    display: flex;
    flex-direction: column;
  }
  .mv__image {
    width: 100%;
    margin-inline: auto; 
  }
  .mv__copy {
    font-size: 40px;
  }
  .mv__actions {
    display: none;
  }
  .mv__news {
    position: relative;
    /* top: 80%; */
    max-width: 100%;
    margin-block: 48px;
  }
  .mv__news .c-btn--news {
    right: 40px;
    transform: translateY(50%);
  }
}
@media (max-width: 768px){
  .mv {
    padding-inline: 16px;
  }
  .mv__copy {
    font-size: 20px;
  }
  .mv__company-name,
  .mv__main-phrase {
    margin-bottom: 16px;
    padding: 8px 12px;
  }
}

/* --- セクション共通 --- */
.section {
  padding: var(--section-padding) 20px;
}

.section__inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.section__header {
  margin-bottom: var(--element-spacing);
}

.section__title {
  margin: 0;
  font-size: var(--fz-h2);
  font-weight: 700;
  color: var(--text-primary);
}

/* ========================================
   理由
   ======================================== */
.reason-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-padding);
}

.reason-section::before {
  content: "";
  position: absolute;
  top: -32%; 
  right: -120px;
  width: 466px;
  height: 736px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1; 
  pointer-events: none;
}
.reason-section::after {
  content: "";
  position: absolute;
  bottom: -48%; 
  left: -100px;
  width: 288px;
  height: 488px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1; 
  pointer-events: none;
}

.reason-section__inner {
  max-width: 664px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* --- Element: Title --- */
.reason-section__title {
  display: block;
  position: relative;
  width: fit-content;
  margin:0 auto 60px;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.reason-section__title::after {
  display: block;
  content: "";
  width: 90%;
  height: 1px;
  margin: 8px auto 0;
  border-bottom: 2px dashed rgba(0, 133, 125, 0.85);
}

.reason-section__title-highlight {
  color: var(--accent-green);
  font-size: 48px;
}

.reason-section__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px; 
  list-style: none;

  padding: 0;
}

.reason-section__item {
  width: calc(33.333% - 32px);
  display: flex;
  justify-content: center;
  opacity: 0;
  will-change: opacity, transform, filter;
}

.reason-section__circle {
  width: 200px;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-sub);
  border: 2px dashed rgba(0, 133, 125, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.reason-section__label {
  font-size: 24px;
}

/* --- Responsive: Tablet/Mobile --- */
@media (max-width: 1024px) {
  .reason-section__list {
    gap: 40px 0;
    max-width: 500px;
    margin-inline: auto;
  }

  .reason-section__item:nth-child(1) {
    width: 100%;
  }

  .reason-section__item:nth-child(2),
  .reason-section__item:nth-child(3) {
    width: 50%;
  }

  .reason-section__circle {
    width: 150px; 
  }

  .reason-section__title {
    font-size: 24px;
  }

  .reason-section__title-highlight {
    font-size: 32px;
  }

  .reason-section__label {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .reason-section__title {
    font-size: 22px;
  }

  .reason-section__title-highlight {
    font-size: 28px;
  }
}

/* ========================================
   ごあいさつ
   ======================================== */
.message {
  position: relative;
  padding-block: 100px;
}
.message__wrap {
  position: relative;
  padding: 80px 32px;
  overflow: hidden; 
}

/* 背景画像専用のレイヤー */
.message__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%; 
  height: 100%;
  background: url('../images/message-bg.jpg') no-repeat center / cover;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  z-index: -1;
}
.message__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* コンテンツの横並び設定 */
.message__container {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-inline: 24px;
}

.message__image-main {
  flex: 1;
}

.message__image-main img {
  width: 100%;
  border-radius: var(--border-radius);
}

.message__text-content {
  flex: 1;
}

.message__text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 24px;
}

/* 右上の機械画像 */
.message__image-sub {
  position: absolute;
  top: -60px;
  right: 4%;
  max-width: 400px;
  z-index: 1;
}

.message__image-sub img {
  width: 100%;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .message__container {
    flex-direction: column; 
  }
  .message__image-sub {
    width: 40%;
    max-width: 300px;
    top: -40px;
  }
}

@media (max-width: 767px) {
  .message {
    padding: 60px 0;
  }

  .message__wrap::before {
    width: 90%;
  }
}
/* ========================================
   SINSIMについて
   ======================================== */
.about-sinsim {
  position: relative;
  overflow: hidden;
}
.about-sinsim::before {
  content: "";
  position: absolute;
  top: -200px; 
  right: -100px;
  width: 600px;
  height: 900px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1; 
  pointer-events: none;
}
.about-sinsim::after {
  content: "";
  position: absolute;
  bottom: 0; 
  left: -400px;
  width: 900px;
  height: 900px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1; 
  pointer-events: none;
}
.about-sinsim__bg-drawing {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.about-sinsim__svg {
  position: absolute;
  width: 100%;
  height: 50%;
}

.about-sinsim__svg.--top {
  top: 0;
  transform: rotate(-2deg) scale(1.1);
}

.about-sinsim__svg.--bottom {
  bottom: -100px;
  transform: rotate(354deg) scale(1.2); /* 下は逆方向に少し回転 */
}

.js-bg-stitch {
  visibility: hidden;
}

.about-sinsim__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.about-sinsim__top-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px; 
}

.about-sinsim__title {
  flex: 0 1 auto;
  margin-bottom: 0;
}

.about-sinsim__video-wrapper {
  flex: 0 1 60%;
  max-width: 640px;
}

.about-sinsim__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  display: block;
}

/* 下段：紹介エリア（写真とテキストの Flexbox） */
.about-sinsim__profile {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 800px;
  margin-inline: auto;
}

.about-sinsim__image {
  position: relative;
  flex-shrink: 0;
}

.about-sinsim__image-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 133, 125, 0.8); 
  z-index: 1;
  transform: translate(12px, 12px);
}

.about-sinsim__image {
  position: relative;
  z-index: 2;
  max-width: 180px;
  height: auto;
  display: block;
}

.about-sinsim__image-caption {
  margin-top: 30px;
  text-align: center;
}

.about-sinsim__text-block {
  flex: 1;
  padding-top: 40px;
}

.about-sinsim__description {
  font-size: 16px;
  line-height: 2;
  color: var(--text-main);
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .about-sinsim__top-group,
  .about-sinsim__profile {
    flex-direction: column; /* スマホでは縦並び */
    gap: 30px;
    margin-left: 0;
  }
  .about-sinsim__text-block {
    padding-top: 0;
  }

  .about-sinsim__video-wrapper {
    flex: 1 1 auto;
    width: 100%;
  }

  .about-sinsim__image-group {
    margin-inline: auto;
  }
}
/* ========================================
   製品情報
   ======================================== */
.products {
  position: relative;
  padding-inline: 0;
  /* padding-inline: 40px 0; */
  overflow: hidden;
}
.products::before {
  content: "";
  position: absolute;
  bottom: 80px;
  left: -249px;
  width: 736px;
  height: 736px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1; 
  pointer-events: none;
}
.products::after {
  content: "";
  position: absolute;
  top: 0; 
  right: -250px;
  width: 736px;
  height: 736px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1; 
  pointer-events: none;
}

.products__inner {
  margin-inline: 5% 0;
  padding: 0 0 40px 0;
}
.products__title {
  margin: 0 auto;
  width: fit-content;
}

.products__lead-wrap {
  /* margin: 56px auto; */
  max-width: 680px;
}
.products__lead {
  margin-bottom: 16px;
}

.products__slider {
  position: relative;
  padding-top: 80px;
}

/* カードデザイン */
.products__card {
  transition: transform 0.3s ease;
}

.products__item {
  width: fit-content !important;
}

.products__image-wrapper {
  background-color: #D2E8E7;
  border-radius: var(--border-radius);
  padding: 32px 24px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 328px;
  aspect-ratio: 328 / 294;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.products__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.products__image-wrapper:hover img {
  transform: scale(1.1);
}

.products__name {
  margin-bottom: 5px;
}

.products__desc {
  margin-bottom: 24px;
}

/* タグの共通パーツ */
.products__tags {
  display: flex;
  flex-wrap:wrap;
  gap: 8px;
}

.c-tag {
  padding: 8px;
  border-radius: 4px;
}

.c-tag--orange { background-color: #E88F5C; color: #fff; }
.c-tag--green  { background-color: #00857D; color: #fff; }
.c-tag--orange-outline { border: 1px solid #E88F5C; color: #E88F5C; }
.c-tag--green-outline { border: 1px solid #00857D; color: #00857D; }
.c-tag--blue-outline { border: 1px solid #4A6FE9; color: #4A6FE9; }
.c-tag--pink-outline { border: 1px solid #E94AD6; color: #E94AD6; }

.products__footer {
  text-align: center;
  margin-block: 60px;
}

/* スライダー矢印のカスタマイズ */
.products__arrows {
  position: absolute;
  top: 0;
  right: 4%;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.products .splide__arrow {
  position: static;
  width: 60px;
  height: 60px;
  border: 1px solid var(--accent-orange);
  background: transparent;
  color: var(--accent-orange);
  opacity: 1;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products .splide__arrow:hover {
  background-color: var(--accent-orange);
  color: #fff;
}

.products .splide__arrow svg {
  fill: currentColor;
  width: 24px;
  height: 24px;
}

.products .splide__arrow:hover svg {
  fill: #fff;
}

@media (max-width: 768px) {
  .products {
    padding-inline: 16px;
  }
  .products__inner {
    padding-inline: 24px; 
  }
  
  .products__image-wrapper {
    max-width: 100%; 
    height: auto;
  }
}

/* ========================================
   ブログ
   ======================================== */
.blog {
  position: relative;
  /* 背景色はSVG側で指定するので、ここでは透明にするか、
     SVGの下端以降の色として指定します */
  background-color: transparent; 
  padding: 100px 0 140px; 
  margin-top: -80px; /* 前のセクションとの重なり調整 */
  overflow: hidden;
}

.blog::after {
  content: "";
  position: absolute;
  bottom: -250px; 
  right: -250px;
  width: 736px;
  height: 736px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1; 
  pointer-events: none;
}

/* 曲線背景をレスポンシブに固定する設定 */
.blog__bg-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.blog__bg-svg svg {
  width: 100%;
  height: 100%;
  object-fit: fill; 
}

.blog__inner {
  position: relative;
  z-index: 2; /* SVGより上に表示 */
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.blog__title {
  width: fit-content;
  margin: 40px auto;
  margin-inline: auto;
}

.blog__lead {
  width: fit-content;
  margin:0 auto 60px;
}

/* ブログ設置前の仮画像 */
.temporary-image {
  display: block;
  width: 60%;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .temporary-image {
    width: 100%;
  }
}

/* 記事グリッドレイアウト */
.blog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

/* 記事カードのデザイン */
.blog__card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog__image {
  aspect-ratio: 328 / 240;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog__card:hover .blog__image img {
  transform: scale(1.1);
}

.blog__date {
  display: block;
  font-size: var(--fz-sm);
  margin-bottom: 16px;
}

.blog__item-title {
  line-height: 1.6;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  /* 2行で省略する設定 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog__footer {
  margin-top: 56px;
  text-align: center;
}

/* レスポンシブ: 3つ縦並び */
@media (max-width: 768px) {
  .blog {
    padding: 100px 0 80px;
    clip-path: ellipse(200% 100% at 50% 100%); /* スマホ用に曲線を調整 */
  }

  .blog__list {
    grid-template-columns: 1fr; /* 縦並び */
    gap: 48px;
  }
}

/* ブログ用タグのバリエーション */
.c-tag--outline-green-blog { border: 1px solid var(--accent-green); color: #00857D; background: var(--bg-sub); padding: 5px 16px}
.c-tag--green-blog { background-color: var(--accent-green); color: var(--bg-sub); padding: 5px 16px}
.c-tag--orange-light-blog { background-color: rgba(233, 132, 74, .2); color: var(--accent-orange); padding: 5px 16px}


/* ========================================
   会社概要
   ======================================== */
.company {
  position: relative;
  overflow: hidden;
}

.company::before {
  content: "";
  position: absolute;
  bottom: 0; 
  left: -250px;
  width: 736px;
  height: 736px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1; 
  pointer-events: none;
}

.company::after {
  content: "";
  position: absolute;
  bottom: -300px; 
  right: -250px;
  width: 736px;
  height: 736px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1; 
  pointer-events: none;
}

.company__inner {
  max-width: 632px;
  margin-inline: auto;
}

.company__title {
  width: fit-content;
  margin-inline: auto;
}

/* リスト部分 */
.company__profile-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: .5px solid rgba(0, 133, 125, 0.6);
  margin: 0;
  padding: 24px 0;
}

.company__profile-label {
  width: 30%;
  font-weight: bold;
}

.company__profile-data {
  width: 70%;
  margin: 0;
  line-height: 1.6;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .company__profile-label,
  .company__profile-data {
    width: 100%;
  }
}

/* ========================================
   アクセス
   ======================================== */
.access {
  position: relative;
  overflow: hidden;
}

.access::before {
  content: "";
  position: absolute;
  bottom: -300px; 
  left: -250px;
  width: 736px;
  height: 736px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1; 
  pointer-events: none;
}

.access::after {
  content: "";
  position: absolute;
  top: -300px; 
  right: -250px;
  width: 736px;
  height: 736px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1; 
  pointer-events: none;
}

.access__inner {
  max-width: 900px;
  margin-inline: auto;
}

.access__title {
  max-width: fit-content;
  margin-inline: auto;
}

.access__content {
  margin-top: 40px;
}

/* マップ画像 */
.access__map {
  width: 100%;
  margin-bottom: 32px;
}

.access__map iframe {
  border-radius: var(--border-radius);
  width: 100%;
  object-fit: cover;
}

/* テキストボックス */
.access__info {
  background-color: var(--bg-sub);
  border: 1px solid rgba(0, 133, 125, 0.6); 
  border-radius: var(--border-radius);
  padding: 40px;
}

.access__info-group:not(:last-child) {
  margin-bottom: 30px;
}

.access__info-caption {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.access__info-caption::before {
  content: "";
  display: inline-block;
  width: 8px; 
  height: 24px; 
  background: linear-gradient(
    336deg,
    #71a49e 50%,
    #71a49e 50%,
    #00857d 50%,
    #00857d 100%
  );
  margin-right: 8px;
  vertical-align: middle;
}
.access__info-text {
  line-height: 1.8;
  padding-left: 16px; /* 縦棒と合わせるためのインデント */
}

/* モバイル対応 */
@media (max-width: 768px) {
  .access__info {
    padding: 25px 20px;
  }
  
  .access__info-text {
    padding-left: 0;
    font-size: 14px;
  }
}
/* ========================================
   代理店紹介
   ======================================== */
.distributor {
  position: relative;
  overflow: hidden;
}

.distributor::before {
  content: "";
  position: absolute;
  top: -300px; 
  left: -250px;
  width: 736px;
  height: 736px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1; 
  pointer-events: none;
}

.distributor__inner {
  width: var(--container-width);
  margin-inline: auto;
}

.distributor__title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-green);
}

.distributor__title::after {
  content: "";
  flex: 1;
  border-top: 1px dashed rgba(0, 133, 125, 0.85);
  margin-left: 20px;
}

.distributor__list {
  display: flex;
  gap: 32px;
  margin-block: 40px;
}

.distributor__item {
  display: flex;
  gap: 24px;
}

.distributor__name {
  margin-bottom: 8px;
}

.distributor__logo {
  border-radius: var(--border-radius);
}

/* ========================================
   お問い合わせ
   ======================================== */
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0; 
  right: -250px;
  width: 736px;
  height: 736px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1; 
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: 0; 
  left: -250px;
  width: 736px;
  height: 736px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1; 
  pointer-events: none;
}

.contact__inner {
  max-width: 680px;
  margin-inline: auto;
}

.contact__title {
  width: fit-content;
  margin-inline: auto;
}

.contact__lead-wrap {
  line-height: 1.8;
}

/* 上部案内ボックス */
.contact__info {
  padding: 24px 40px;
  margin-bottom: 50px;
  border: 1px solid rgba(0, 133, 125, 0.8);
  border-radius: var(--border-radius);
}

.contact__info-title {
  margin-bottom: 48px;
}

.contact__tel, .contact__mail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 24px;
  text-decoration: none;
}

.contact__time {
  margin-bottom: 32px;
}

/* フォーム本体 */
.contact__form-wrapper {
  background: var(--bg-sub);
  border-radius: var(--border-radius);
  padding: 64px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.08);
}

.contact__field {
  margin-bottom: 30px;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: #D9D9D9;
}

.contact__label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 15px;
}

.contact__label--required::after {
  content: "必須";
  display: inline-block;
  background-color: #d68e60;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
  vertical-align: middle;
}

.contact__input, .contact__textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}

.contact__textarea {
  height: 200px;
  resize: vertical;
}

/* 同意チェック */
.contact__privacy {
  text-align: center;
  margin: 40px 0;
}

.contact__privacy-text a {
  color: #2FB1BA;
  text-decoration: underline;
}

/* 送信ボタン (Figmaのオレンジ色系を再現) */
.contact__submit-wrapper {
  text-align: center;
}

.contact__submit {
  gap: 32px;
  padding: var(--btn-pd-submit);
}

/* モバイル対応 */
@media (max-width: 1024px) {
  .contact__info-title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .contact__form-wrapper {
    padding: 30px 20px;
  }
  .contact__info-title {
    margin-bottom: 24px;
    font-size: 16px;
  }
  .contact__info {
    padding: 24px;
  }
  .contact__info-title, .contact__tel, .contact__mail, .contact__tel span, .contact__mail span{
    font-size: 16px;
  }

  .contact__tel, .contact__mail {
    gap: 8px;
  }
}


/* ========================================
   フッター
   ======================================== */
.footer {
  background: url(../images/mv-bg.jpg) no-repeat center center / cover;
  padding: 100px 40px 24px;
  border-top: 1px solid rgba(0, 133, 125, 0.8);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}

.footer__inner {
  max-width: 1200px;
  margin-inline: auto;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

/* 会社情報 */
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: calc(100% / 3);
}

.footer__address {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-style: normal;
}

.footer__tel span {
  font-size: var(--fz-body);
}

.footer__hours {
  font-size: var(--fz-sm);
}

.footer__sns-list {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
}

.footer__sns-item img {
  width: 30px;
  height: auto;
}

.footer__nav {
  width: 25%;
}

.footer__nav-title {
  display: inline;
  font-weight: 500;
  color: var(--accent-green);
  border-bottom: 1px solid var(--accent-green);
  padding-bottom: 4px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 16px;
}

/* ボタンエリア */
.footer__nav-actions {
  width: calc(100% / 3);
}

.footer__nav-actions,
.footer__nav-sub-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
}

/* コピーライト */
.footer__bottom {
  text-align: center;
}

.footer__copyright {
  font-size: 12px;
}

/* モバイル対応（1カラムに変換） */
@media (max-width: 1024px) {
  footer {
    padding-top: 40px;
  }

  .footer__copyright {
    margin-top: var(--element-spacing);
  }

  .footer__content {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer__info, .footer__nav, .footer__nav-actions {
    width: 100%;
    text-align: left;
  }
}

/* --- レスポンシブ（スマホ） --- */
@media (max-width: 1190px) {
  :root {
    /* --fz-h1: 28px; */
    --fz-h2: 24px;
    --fz-h3: 18px;
    --section-padding: 40px;
    --element-spacing: 16px;
  }

  .header__inner {
    flex-wrap: wrap;
    padding: 16px 16px;
  }

  .header__nav {
    order: 3;
    width: 100%;
  }

  .header__nav-list {
    justify-content: flex-start;
  }

  .section {
    padding: var(--section-padding) 16px;
  }

  .section__title {
    font-size: var(--fz-h2);
  }
}

@media (max-width: 768px) {
  :root {
    --fz-h1: 20px;
  }
}
/* ========================================
   トップへ戻るボタン
   ======================================== */
.c-pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  width: 50px;
  border: 1px solid rgba(0, 133, 125, 0.8);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.c-pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.c-pagetop__arrow {
  font-size: 14px;
  margin-bottom: 24px;
  color: rgba(0, 133, 125, 0.8);
  transition: color 0.3s;
}

.c-pagetop__text {
  color: rgba(0, 133, 125, 0.8);
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

@media (hover: hover) {
  .c-pagetop:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .c-pagetop:hover .c-pagetop__arrow,
  .c-pagetop:hover .c-pagetop__text {
    color: rgba(233, 132, 74, .8);
  }
}
/* ========================================
   下層ページ　　
   ======================================== */

   /* ========================================
    ページヘッダー
   ======================================== */
   .page-header {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-image: url("../images/page-header-bg.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .page-header__inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 150px 40px 48px;
  }
  
  .page-header__sub-title {
    display: block;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-en);
    color: #97AAA9; 
    text-transform: uppercase;
  }
  
  .page-header__main-title {
    font-size: 48px;
    font-family: var(--fz-body);
    color: var(--accent-green);
  }
  
  .page-header__image {
    width: 42%;
  }
  .page-header__image img {
    max-width: 100%;
    height: auto;
  }
  
  /* モバイル対応 */
  @media (max-width: 1024px) {
    .page-header__image {
      width: 50%;
    }
  }

  @media (max-width: 768px) {
    .page-header {
      align-items: flex-start;
      padding-block: 135px 24px;
      min-height: 360px;
    }
    .page-header__inner {
      flex-direction: column;
      gap: 24px;
      padding-block: 0;
    }
    .page-header__main-title {
      font-size: 32px;
    }
    .page-header__sub-title {
      font-size: 16px;
    }
    .page-header__image {
      width: 80%;
      max-width: 500px;
      margin-inline: auto 0;
    }
  }
     /* ========================================
    下層ページ 共通
   ======================================== */

  .page__inner {
    padding: 64px 6% 100px;
    margin-inline: auto;
    max-width: var(--container-width);
  }

  @media (max-width: 768px) {
    .page__inner {
      padding-block: 24px 32px;
    }
  }

  /* ========================================
   製品情報ページ　　
   ======================================== */
.page-products {
  overflow: hidden;
}

   .c-section-divider {
    border: none;
    display: block;
    border-top: 1px solid rgba(0, 133, 125, 0.6);
    width: 100%;
    margin-block: 100px;
  }
  @media (max-width: 768px) {
    .c-section-divider {
      margin-block: 60px; 
      /* width: calc(100% - 40px);  */
    }
  }   
.p-products-lead {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: fit-content;
  max-width: 650px;
  margin: 36px auto 60px;
}

.p-product-item {
  position: relative;

}

.p-product-item::before {
  content: "";
  position: absolute;
  top: -8%; 
  right: -400px;
  width: 600px;
  height: 950px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1; 
  pointer-events: none;
}
.p-product-item::after {
  content: "";
  position: absolute;
  bottom: 15%; 
  left: -500px;
  width: 700px;
  height: 950px;
  background-image: url("../images/bg-blur.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1; 
  pointer-events: none;
}

.p-product-item__header {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
}

.p-product-item__lead {
  line-height: 1.8;
}

.p-products-sinsim__video-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 60px;
}

.p-products-sinsim__video-caption {
	margin-bottom: 8px;
  font-weight: 500;
  color: var(--accent-green);
}

.p-products-options__wrapper {
  max-width: 800px;
  margin-inline: auto;
}

.p-products-options__wrapper-title {
  display: flex;
  align-items: center;
  color: var(--accent-green);
  font-size: 16px;
  white-space: nowrap;
}

.p-products-options__wrapper-title::after {
  content: "";
  flex: 1;
  margin-left: 20px;
  border-top: 1px dashed rgba(0, 133, 125, 0.8);
}

.p-products-options__wrapper .p-products-sinsim__video-caption {
  color: var(--text-primary);
}

.p-products-options__contents {
  display: flex;
  gap: 40px;
  margin-block: 40px 60px;
}

.p-products-sinsim__video {
  width: 100%;
}

.p-product-item__header .p-products-sinsim__video-wrapper {
  width: 45%;
  max-width: 400px;
  margin-bottom: 0;
}

.p-product-model__wraper .p-product-item__header .p-products-sinsim__video-wrapper {
  width: 100%;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .p-product-item__header .p-products-sinsim__video-wrapper {
    width: 100%;
  }
  .p-products-options__contents {
    flex-direction: column;
    gap: 32px;
  }
  .p-products-options__contents .p-products-sinsim__video-wrapper {
    width: 100%;
    margin: 0;
  }
}

.p-product-item__lead-note {
  display: flex;
  margin-top: 8px;
}

.p-product-item__content {
  width: 55%;
}
.p-product-item__content-wide {
  width: 45%;
}

.p-product-item__visual {
  position: relative;
  width: 45%;
  padding-top: 100px;
}
.p-product-item__visual-wide {
  width: 55%;
}

.p-product-item__visual-narrow {
  width: 35%;
}

.p-product-item__download {
  margin-block: 40px;
}

.p-product-item__features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.c-badge-display {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 180px;
  height: auto;
}

.p-product-item__title {
  color: var(--accent-green);
  font-size: 48px;
}

.c-feature-icon {
  display: inline-flex;
  width: 100px;
  height: auto;
}

.c-btn-download {
  gap: 10px;
  padding: var(--btn-pd-base);
}

.p-product-item__frame {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  width: 100%;
}

.p-product-item__frame-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  text-align: center;
}

.p-product-item__frame-item img {
  width: 100%;
  aspect-ratio: 3 / 2; 
  object-fit: cover; 
  margin-bottom: 16px;
  border-radius: var(--border-radius);
}

/* テーブル全体の基本設定 */
.p-product-item__spec,
.p-product-item__spec-middle {
  margin-bottom: 40px;
}

.p-product-item__spec-middle,
.p-product-item__spec-bottom {
  display: inline-block;
}


.p-product-item__table {
  /* width: 100%; */
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(0, 133, 125, 0.6);
  border-radius: var(--border-radius);
  overflow: hidden;
  text-align: center;
}

.p-product-item__table th,
.p-product-item__table td {
  padding: 15px 10px;
  border-right: 0.5px solid rgba(0, 133, 125, 0.6);
  vertical-align: middle;
}

.p-product-item__table th:last-child,
.p-product-item__table td:last-child {
  border-right: none;
}

.p-product-item__table thead th {
  border-bottom: 0.5px solid rgba(0, 133, 125, 0.6);
  background: #DAE8E7;
  font-size: 20px;
  font-weight: 500;
}

.p-product-item__table .is-center {
  border-bottom: 0.5px solid rgba(0, 133, 125, 0.6);
}

.p-product-item__table .is-sub {
  border-right: 0.5px solid rgba(0, 133, 125, 0.6) !important;
}

/* 下段のボックスレイアウト */
.p-product-item__spec-bottom {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.p-product-item__spec-box {
  border: 1px solid rgba(0, 133, 125, 0.6);
  border-radius: var(--border-radius);
}

/* オプションボックス特有のスタイル */
.p-product-item__spec-box--option {
  flex: 1.5;
  overflow: hidden;
}

.p-product-item__spec-label {
  background: #DAE8E7;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 0.5px solid rgba(0, 133, 125, 0.6);
}

.p-product-item__spec-value {
  padding: 20px;
}

/* 本体サイズ・重量のサブテーブル */
.p-product-item__sub-table {
  width: 100%;
  border-collapse: collapse;
}

.p-product-item__sub-table th,
.p-product-item__sub-table td {
  padding: 10px 5px;
  border-right: 0.5px solid rgba(0, 133, 125, 0.6);
  text-align: center;
}

.p-product-item__sub-table th {
  background: #DAE8E7;
  border-bottom: 0.5px solid rgba(0, 133, 125, 0.6);
  line-height: 1;
}

.p-product-item__sub-table th:last-child,
.p-product-item__sub-table td:last-child {
  border-right: none;
}

.p-product-item__spec-box--size th {
  padding-block: 18px;
}

.p-product-item__spec-bottom .p-product-item__spec-box {
  overflow: hidden;
}

.PEX .p-product-item__spec-label-padding {
  padding: 42px;
}

/* --- 出し分け用ユーティリティ --- */
@media (min-width: 1025px) {
  .u-mobile-only { display: none !important; }
}
@media (max-width: 1024px) {
  .u-desktop-only { display: none !important; }
}

/* --- SP版テーブルのスタイル --- */
.p-product-item__spec-sp {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.p-product-item__sp-box {
  border: 1px solid rgba(0, 133, 125, 0.6);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.p-product-item__sp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.p-product-item__sp-table .is-sub {
  border-right: 0.5px solid rgba(0, 133, 125, 0.6) !important;
}

.p-product-item__sp-table th {
  background: #DAE8E7;
  padding: 15px 10px;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 0.5px solid rgba(0, 133, 125, 0.6);
  border-right: 0.5px solid rgba(0, 133, 125, 0.6);
}

.p-product-item__sp-table td {
  padding: 15px 5px;
  border-right: 0.5px solid rgba(0, 133, 125, 0.6);
}

.p-product-item__sp-table th:last-child,
.p-product-item__sp-table td:last-child {
  border-right: none;
}

/* セクション全体の余白 */
.p-product-item__accessories {
  margin-top: 60px;
}

/* タイトルエリア（横の点線を含む） */
.p-product-item__accessories-header {
  margin-bottom: 32px;
}

.p-product-item__accessories-title {
  display: flex;
  align-items: center;
  color: var(--accent-green);
  font-size: 24px;
  white-space: nowrap; 
}

.p-product-item__accessories-sub {
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* 点線の実装 */
.p-product-item__accessories-title::after {
  content: "";
  flex: 1;
  margin-left: 20px;
  border-top: 1px dashed rgba(0, 133, 125, 0.8);
}

.p-product-item__grid  {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 24px;
}

/* 各アイテムのスタイル */
.p-product-item__accessories-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.p-product-item__accessories-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  aspect-ratio: 1.3 / 1;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.p-product-item__accessories-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.p-product-item__accessories-name {
  text-align: center;
}

/* MCMTの仕様表 */
.p-product-item__table-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.p-product-item__table.table-style tbody tr:not(:last-child) td{
  border-bottom: 0.5px solid rgba(0, 133, 125, 0.6);
}

.p-product-item__table.table-style .is-sub-pi40 {
  padding-inline: 40px;
}

.common-spec .p-product-item__table.table-style {
  margin-bottom: 40px;
}

.common-spec__title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-green);
  font-size: 24px;
  margin-bottom: 16px;
}
.common-spec__title .material-symbols-outlined {
  color: var(--bg-main);
  font-size: 16px;
  background: var(--accent-green);
}

.u-mobile-only .p-product-item__table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* PECのレイアウト用 */
.p-product-item__title-wrap {
  margin-bottom: 40px;
}

.p-product-model__wraper {
  margin-block: 48px;
}

.p-product-model__title {
  display: inline-block;
  padding: 0 4px;
  background: linear-gradient(transparent 70%, rgba(0, 133, 125, 0.3) 70%);
  line-height: 1.4;
  margin-bottom: 20px;
}
.p-product-item__spec-option {
  display: inline-block;
  margin-top: 20px;
}

.p-product-model__wraper .p-product-item__lead-note .material-symbols-outlined{
  color: var(--accent-orange);
}

/* EDS */
.EDS .p-product-item__visual {
  padding-top: 0;
}

.EDS .p-product-item__accessories-item:nth-last-child(-n+2) {
  grid-column: span 2;
  max-height: 185px;
}

.EDS .p-product-item__accessories-image{
  aspect-ratio: auto;
  height: auto;
  min-height: 185px;
}
.EDS .p-product-item__accessories-image img {
  height: auto;
}

@media (max-width: 1024px) { 
  .EDS .p-product-item__grid {
    grid-template-columns: repeat(2, 1fr); 
  }

  .EDS .p-product-item__accessories-item:nth-last-child(-n+2) {
    grid-column: auto;
  }
  
  .EDS .p-product-item__accessories-image {
    aspect-ratio: 1.3 / 1;
    min-height: 0;
  }
}

/* 既存の bottom 部分をSPで縦に並べる調整 */
@media (max-width: 768px) {
  .p-product-item__title {
    font-size: 32px;
  }

  .p-product-item__header {
    flex-direction: column;
  }
  .p-product-item__content,
  .p-product-item__visual {
    width: 100%;
  }

  .c-feature-icon  {
    width: 90px;
  }
  .p-product-item__frame {
    flex-direction: column;
    width: 100%;
  }

  .p-product-item__spec-bottom {
    flex-direction: column;
    width: 100%;
  }

  .p-product-item__grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
  }

  .p-product-item__accessories-title {
    font-size: 20px;
  }
  .p-product-item__accessories-image {
    border-radius: 10px;
  }
  .p-product-item__sp-table th,
  .p-product-item__spec-label,
  .p-product-item__table thead th {
    font-size: 16px;
  }

  .p-product-item__table-wrap {
    gap: 20px;
  }

  .common-spec .p-product-item__table.table-style {
    margin-bottom: 20px;
  }

}


/* プライバシーポリシー */
.p-privacy__inner {
  max-width: 800px;
}

/* お知らせアーカイブ */
.a-news__inner {
  max-width: 800px;
}
.a-news__item {
  margin-bottom: 24px;
  padding-block: 24px;
  border-bottom: 1px solid rgba(0, 133, 125, 0.6);
}

.a-news__title {
  font-size: 16px;
  font-weight: 500;
}

/* ブログ */
/* 展示会（枠線） */
.c-tag--exhibition {
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  /* background: transparent; */
}

/* 刺繍のこと（緑塗り） */
.c-tag--embroidery {
  background-color: #007d75;
  color: var(--bg-sub);
}

/* 日々の出来事（薄オレンジ） */
.c-tag--blog {
  background-color: rgba(233, 132, 74, 0.2);
  color: var(--accent-orange);
}

/* ブログアーカイブ */
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.blog-card__title {
  font-size: 16px;
  font-weight: 500;
}

.blog-card__tags {
  margin-block: 16px;
}

.blog__btn-wrap,
.exhibition__btn-wrap {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/* 展示会アーカイブ */
.exhibition-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.exhibition-card__title {
  font-size: 16px;
  font-weight: 500;
}

.exhibition-card__thumb img{
	border-radius: var(--border-radius);
}


@media (max-width: 1024px) {
  .exhibition-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .exhibition-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}


/* ページナビ */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

/* 「Page 1 of 5」などは非表示でもOK */
.wp-pagenavi .pages {
  display: none;
}

/* 共通ボタン */
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .page,
.wp-pagenavi .current {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  transition: 0.25s;
}

/* hover */
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .page:hover {
  background: var(--accent-green);
  color: var(--bg-sub);
}

/* 現在ページ */
.wp-pagenavi .current {
  background: var(--accent-green);
  color: var(--bg-sub);
  font-weight: bold;
}

/* パスワード入力画面 */
.login-gate {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background: #f8f8f8;
}
.login-gate__inner {
	background: #fff;
	padding: 40px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	border-radius: var(--border-radius);
}

/* 英語表記なし */
.ppw-ppf-desc {
	display: none;
}

.ppw-ppf-field-container {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-block: 8px;
}

.ppw-ppf-field-container input {
	padding: 4px;
	border: 1px solid #333;
}

.ppw-pwd-submit-btn {
	background: #e2e6e5;
}

