@charset "UTF-8";
/* Scss Document */

html {
  scroll-behavior: smooth;
}
a:focus{
  outline: none;
}

@media screen and (min-width: 767px) {
.none_pc {
  display: none;
}
}
@media screen and (max-width: 767px) {
  .none_sp {
    display: none;
  }
}

/* ヘッダー全体 */
.site-header {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 0;
  height: 80px;
}

/* ロゴ */
.header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.header-logo a:hover {
  opacity: 0.8;
}
.header-logo a:focus {
  outline: none;
}

.header-logo img {
  height: 35.2px;
  width: auto;
  display: block;
}

/* ハンバーガーボタン（PC時は非表示） */
.sp-menu-btn {
  display: none;
}

/* ナビゲーション（PC時） */
.header-nav {
  height: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  height: 100%;
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

/* 通常ナビリンク */
.nav-link {
  display: inline-block;
  position: relative;
  padding: 0 24px;
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 80px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  height: 2px;
  background-color: #333333;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* お問い合わせボタン */
.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    padding: 0 32px;
    /* 左から右へ #333 -> #888 -> #333 のグラデーションを設定 */
    background: linear-gradient(to right, #333333, #888888, #333333);
    /* 横幅を200%にしてアニメーション可能な状態にする */
    background-size: 200% 100%;
    background-position: left center;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    /* background-position の変化をアニメーション化 */
    transition: background-position 0.3s ease;
}

.btn-contact:hover {
    /* ホバー時に右側へスライドさせてグラデーションの向きを逆転 */
    background-position: right center;
    color: #ffffff;
}
.icon-mail {
  width: 20px;
  height: 20px;
}

.btn-contact:focus {
  color: #fff;
  outline: none;
}


/* ==========================================
   SP対応（画面幅 768px 以下）
   ========================================== */
@media screen and (max-width: 768px) {
  .header-inner {
    height: 60px;
    padding-right: 20px; /* SP時は右側も余白をつける */
  }

  .header-logo img {
    height: 30px;
  }

  /* ハンバーガーボタンを表示 */
  .sp-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
  }

  .sp-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333333;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* SP用ドロワーメニュー設定 */
  .header-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  /* メニュー展開時（JavaScript等で .is-active 付与時） */
  .header-nav.is-active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }

  .nav-item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link {
    width: 100%;
    padding: 16px 20px;
    line-height: 1.5;
  }

  .nav-link::after {
    display: none; /* SP時は下線アニメーションを無効化 */
  }

  .nav-item-btn {
    border-bottom: none;
    padding: 20px;
  }

  .btn-contact {
    width: 100%;
    height: 50px;
    border-radius: 4px;
  }

  /* ハンバーガーボタンのアニメーション（is-active 付与時） */
  .sp-menu-btn.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .sp-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
  }
  .sp-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}











/* 親要素 */
.mv-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* 画像の共通設定 */
.mv-image {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

/* 表示切り替えの初期設定 */
.pc-only { display: block; }
.sp-only { display: none; }

/* 1. 透明ボタンの基本設定 */
.mv-container a {
  position: absolute;
  display: block;
  cursor: pointer;
  border: none !important;
  outline: none;
  transition: 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0);
}
.mv-container a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.mv-container a:focus {
  outline: none;
}

/* -------------------------------------------------- */
/* PC用のボタン位置（横並び） */
/* -------------------------------------------------- */
.btn-left {
  top: 68.5%;
  left: 15.78%;
  width: 20.6%;
  height: 11.5%;
}

.btn-right {
  top: 68.5%;
  left: 38.1%;
  width: 20.6%;
  height: 11.3%;
}

/* -------------------------------------------------- */
/* SP用設定（画面幅 768px 以下の場合） */
/* -------------------------------------------------- */
@media screen and (max-width: 768px) {
  /* 画像の切り替え */
  .pc-only { display: none; }
  .sp-only { display: block; }

  .mv-container{
      z-index: 0;
      margin-top: 0;
  }
  /* ★SP用のボタン共通スタイル（色・角丸・文字色の自動調整） */
  .mv-container a {
    border-radius: 8px; /* SP画像のボタン形状に合わせて角丸を追加 */
  }

  /* 上側のボタン：「ウォーターフライヤーとは」 */
  .btn-left {
    top: 73.5%;
    left: 7.2%;
    width: 85.6%;
    height: 7.8%;
  }

  /* 下側のボタン：「商品一覧へ」の背景色をPCと同じ白に統一 */
  .btn-right {
    top: 82.8%;
    left: 7.2%;
    width: 85.6%;
    height: 7.8%;
    /* くすんだ色をPCと同等の明るい白背景で上書き補正 */
    background-color: rgba(255, 255, 255, 0.85); 
    /* 下側の文字「商品一覧へ →」をクッキリ見せる処理 */
    mix-blend-mode: multiply; 
  }

  /* SPホバー・タップ時：白く明るく光らせる */
  .mv-container a:hover,
  .mv-container a:active {
    background-color: rgba(255, 255, 255, 0.4) !important;
  }

  .btn-right:hover,
  .btn-right:active {
    background-color: #ffffff !important; /* タップ時に完全な白にしてPCと同じホバー感に */
    mix-blend-mode: normal;
  }
}












.midashi1{
  width: auto;
  height: 90px;
}
.m_border{
  width: 100%;
  height: auto;
  margin-top: -20px;
  margin-bottom: 80px;
}
.m_border2{
  width: 100%;
  height: auto;
  margin: 80px 0;
}
.merit{
  width: auto;
  height: 100px;
}
.aomaru{
  color: #0064d6;
}

.back_gray{
  background-color: #f0f0f2;
  padding: 40px 4% 100px;
}
.mizu{
  display: block;
  margin: 0 auto;
  margin-top: -70px;
  width: 35px;
  height: auto;
}

.back_blue{
  background-color: #012874;
  padding: 60px 0 100px;
}

.heading-container {
  text-align: center; /* 全体を中央寄せ */
  padding: 20px;
}

/* メイン見出し（TVで紹介されました！） */
.heading-tv {
  position: relative;
  display: inline-block;
  color: #f1ca00; /* 黄色文字 */
  font-weight: bold;
  padding: 0 1.2em;
  margin: 0 0 8px 0; /* 下のテキストとの間に余白を設定 */
}

/* 左側のスラッシュ（\） */
.heading-tv::before {
  content: '';
  position: absolute;
  left: 0.2em;
  top: 50%;
  width: 3px;
  height: 1.1em;
  background-color: #f1ca00;
  transform: translateY(-50%) rotate(-25deg);
}

/* 右側のスラッシュ（/） */
.heading-tv::after {
  content: '';
  position: absolute;
  right: 0.2em;
  top: 50%;
  width: 3px;
  height: 1.1em;
  background-color: #f1ca00;
  transform: translateY(-50%) rotate(25deg);
}

/* サブテキスト（是非、ウォーターフライヤーの魅力をご覧下さい。） */
.heading-sub {
  color: #ffffff; /* 白文字 */
  font-size: 14px; /* 少し小さな文字 */
  margin: 0;
  letter-spacing: 0.05em;
}

.hyou{
  border: 2px solid gray;
  padding: 40px 6%;
  text-align: center;
}

.back_yellow{
  background-color: #FDE17C;
  padding: 40px 0 100px;
}

.h2_border span{
  border-bottom: 4px solid #002B66;
}

.youtube iframe{
  width: 100%;          /* 横幅は親要素（画面幅）いっぱいに広げる */
  height: auto;         /* ここでheightをautoに指定する */
  aspect-ratio: 16 / 9; /* 横縦の比率を 16:9 に固定する */
}




.product-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}



/* セクションタイトル */
.section-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #004098;
  margin-top: 8px;
}



/* 2列レイアウトグリッド */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* 各カード枠 */
.product-card {
  border: 1px solid gray;
  padding: 30px 25px;
  background-color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* 画像領域 */
.product-image {
  text-align: center;
  margin-bottom: 20px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* タイトル・価格 */
.product-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.product-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #004098;
}

.product-price {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  color: #004098;
}

.product-price span {
  font-size: 11px;
}

.product-note {
  font-size: 11px;
  color: #666;
  margin: 0 0 12px 0;
}

/* スペックリスト */
.product-specs {
  display: grid;
  grid-template-columns: 75px 1fr;
  row-gap: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin: 0 0 20px 0;
}

.product-specs dt {
  margin: 0;
  font-weight: normal;
}

.product-specs dt::after {
  content: "：";
}

.product-specs dd {
  margin: 0;
}

/* 承認図を見るボタン */
.product-btn-wrap {
  margin-top: auto;
  text-align: center;
  padding-top: 15px; /* 上部との余白確保 */
}

.btn-approval {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0064d6;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 32px;
  cursor: pointer; /* マウスカーソルを指マークに */
  transition: background-color 0.2s ease, opacity 0.2s ease; /* 滑らかな変化 */
  box-sizing: border-box;
}

/* ホバー時の設定 */
.btn-approval:hover {
  background-color: #004098; /* 濃い青へ変化 */
  color: #ffffff;
  opacity: 0.9; /* わずかに透過させて反応を強調 */
  text-decoration: none;
}

/* レスポンシブ対応 (スマホ表示) */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.blue{
  color: #004098;
}

/* 全体共通・レイアウト */
.container960 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.lineup-section {
  padding: 40px 0;
  color: #333;
}

/* タイトル */
.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #00338d;
}

/* 注記テキスト */
.section-note {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin-top: 20px;
  margin-bottom: 24px;
}

/* 凡例（凡例のGas/Denki表記） */
.legend-area {
  display: flex;
  gap: 20px;
  font-size: 13px;
  margin-bottom: 12px;
}

.legend-item {
  display: flex;
  align-items: center;
}

/* アイコン共通設定 */
.icon {
  height: 18px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin-right: 8px;
  flex-shrink: 0; /* スマホ表示時にアイコンが押しつぶされるのを防止 */
}

/* テーブルデザイン */
.table-wrapper {
  width: 100%;
}

.lineup-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 13px;
  border: 1px solid #ccc;
  
}

.lineup-table th {
  background-color: #002B66;
  color: #fff;
  padding: 15px 8px;
  font-weight: normal;
  border-right: 1px solid #1a417a;
  white-space: nowrap;
  text-align: center;
  font-weight: bold;
}

.lineup-table th:last-child {
  border-right: none;
}

.lineup-table tr:nth-child(even) {
  background-color: #f2f7fd;
}

/* 表のセル基本設定 */
.lineup-table td {
  padding: 15px 8px;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  color: #444;
  white-space: nowrap;
  text-align: center; /* 2列目以降は中央揃え */
}

/* 1列目（機種名）の調整 */
.lineup-table td:first-child {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* ★余白を広げてさらに中央寄りに移動（お好みで 50px〜70px 程度に調整してください） */
  padding-left: 60px;
}

.lineup-table tr:last-child td {
  border-bottom: none;
}

/* スマホ対応（SP設定） */
@media screen and max-width: 768px {
  .section-title {
    font-size: px;
  }

  .section-note {
    text-align: left;
    font-size: 12px;
  }

  /* 表が崩れないよう横スクロールを可能にする */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lineup-table th,
  .lineup-table td {
    padding: 8px 6px;
    font-size: 12px;
  }

  .lineup-table td:first-child,
  .lineup-table th:first-child {
    padding-left: 16px; /* スマホでは画面幅に合わせて小さめに調整 */
  }
}






/* 全体レイアウトの設定 */
.achievements {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: sans-serif;
  color: #333;
}

/* タイトル設定 */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background-color: #0064d6; /* 下線の青色 */
}

/* テーブルスタイル設定 */
.table-wrapper {
}

.achievements-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  background-color: #fff;
}

.achievements-table tr {
  border-bottom: 1px solid #ccc;
}

/* 偶数行の背景色（うすい青・グレー） */
.achievements-table tr:nth-child(even) {
  background-color: #f2f7fd;
}

.achievements-table td {
  padding: 14px 16px;
  font-size: 14px;
  vertical-align: middle;
}

/* カラムごとのスタイル */
.achievements-table .pref {
  width: 25%;
  text-align: center;
  color: #555;
}

.achievements-table .city {
  width: 25%;
  text-align: center;
  color: #777;
}

.achievements-table .company {
  width: 50%;
  font-weight: bold;
  color: #222;
}

/* 注記 */
.achievements.note {
  text-align: right;
  font-size: 13px;
  color: #666;
  margin-top: 12px;
}

/* -----------------------------------
 * スマートフォン対応（768px以下）
 * ----------------------------------- */
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 22px;
  }

  .achievements-table td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .achievements-table .pref {
    width: 28%;
  }

  .achievements-table .city {
    width: 28%;
  }

  .achievements-table .company {
    width: 44%;
  }
}







/* ベースセクションのスタイル */
.contact-section {
  background-color: #002B6D; /* 濃い青背景 */
  padding: 40px 20px 60px;
  text-align: center;
  box-sizing: border-box;
}

/* しずくアイコン */
.contact-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.drop-shape {
  width: 24px;
  height: 32px;
  background: linear-gradient(180deg, #FAD961 0%, #00A2FF 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(-45deg);
}

/* セクションタイトル */
.contact-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 0 0 40px 0;
}

/* ボタンコンテナ */
.contact-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* ボタン共通スタイル */
.btn-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  height: 80px;
  padding: 0 40px 0 20px;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

/* ボタン内のテキスト整列 */
.btn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 1. TELボタン（青グラデーション・白枠） */
.btn-tel {
  background: linear-gradient(180deg, #0064d6 0%, #003f9a 100%);
  border: 1.5px solid #ffffff;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn-tel:focus{
  color: #fff;
}

.btn-tel .btn-main-text {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.btn-tel .tel-num {
  font-size: 22px;
  letter-spacing: 0.08em;
}

.btn-tel .btn-sub-text {
  font-size: 13px;
  margin-top: 4px;
  opacity: 0.9;
  letter-spacing: 0.05em;
}

/* TELホバー： 少し明るく鮮やかな青に */
.btn-tel:hover {
  background: linear-gradient(180deg, #006DFF 0%, #0053D6 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 2. メールボタン（白地グラデーション） */
.btn-mail {
  background: linear-gradient(180deg, #ffffff 0%, #E6F0FA 100%);
  border: 1.5px solid #ffffff;
  color: #0052C6; /* 文字色を青に固定 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-mail .btn-main-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* メールSVGアイコン */
.mail-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor; /* 親要素の文字色(青)を継承 */
}

.btn-mail .btn-sub-text {
  font-size: 13px;
  margin-top: 4px;
  color: inherit; /* 親要素の文字色(青)を継承 */
  font-weight: bold;
  letter-spacing: 0.02em;
}

/* メールホバー： 文字色は青を保持しつつ、背景のみ淡い水色に変化 */
.btn-mail:hover {
  background: linear-gradient(180deg, #F2F7FC 0%, #D5E6F7 100%);
  color: #0052C6; /* ホバー時も黒にならず青色を維持 */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 右側の矢印アイコン */
.btn-arrow {
  position: absolute;
  right: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

/* ----------------------------------
   SP（スマートフォン）対応
---------------------------------- */
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 40px 16px;
  }

  .contact-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .contact-buttons {
    flex-direction: column; /* 縦並び */
    gap: 16px;
  }

  .btn-item {
    max-width: 100%;
    height: 76px;
  }

  .btn-tel .btn-main-text,
  .btn-mail .btn-main-text {
    font-size: 18px;
  }

  .btn-tel .tel-num {
    font-size: 19px;
  }

  .btn-tel .btn-sub-text,
  .btn-mail .btn-sub-text {
    font-size: 13px;
  }
}







/* ベースリセット（必要に応じて既存のCSSと統合してください） */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
  color: #333333;
}

/* フッター全体設定 */
.footer {
  background-color: #f0f0f2;
  padding: 60px 20px;
  width: 100%;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* 会社情報ブロック */
.footer__logo {
  max-width: 220px;
  margin-bottom: 24px;
}

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

.footer__address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.footer__address p {
  margin: 0;
}

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

/* ナビゲーション */
.footer__menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__item a {
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: opacity 0.3s;
}

.footer__item a:hover {
  opacity: 0.7;
}

/* スマートフォン対応 (768px以下) */
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer__inner {
    flex-direction: column-reverse; /* スマホ時にナビゲーションを上、会社情報を下に配置したい場合は変更可 */
    gap: 32px;
  }

  .footer__menu {
    flex-direction: column;
    gap: 16px;
  }

  .footer__logo {
    max-width: 180px;
    display: block;
    margin: 0 auto;
    margin-bottom: 16px;
  }

  .footer__address {
    font-size: 13px;
    line-height: 1.7;
  }

  .footer__nav{
    width: 100%;
  }
  .footer__item{
    border-bottom: 1px solid #bdbbbb;
    padding-bottom: 10px;
    text-align: center;
  }
  .footer__company{
    width: 100%;
    text-align: center;
  }
}
.gazou11{
  width: 100%;
  height: auto;
}

.ctopgazou{
  background-image: url(../images/c1.jpg);
  background-position: 50% 0;
  background-size: cover;
  max-width: 1920px;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.ctopgazou p{
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .ctopgazou{
  background-image: url(../images/c1.jpg);
  background-position: 50% 0;
  background-size: cover;
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.ctopgazou p{
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

}








/* テーブル基本スタイル */
.sp-table {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 1px solid #c8d1d9;
  font-family: sans-serif;
  color: #1a2538;
}

.sp-table th,
.sp-table td {
  border: 1px solid #c8d1d9;
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.8;
  vertical-align: middle;
}

/* 見出し（左側） */
.sp-table th {
  width: 24%;
  background-color: #f2f7fd;
  color: #012874;
  font-weight: bold;
  text-align: center;
}

/* データ（右側） */
.sp-table td {
  background-color: #ffffff;
  text-align: left;
}

/* 取引先リストのレイアウト */
.client-list-container {
  display: flex;
  gap: 30px;
}

.client-list {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 2.2;
}

.client-list .note {
  margin-top: 4px;
}

/* スマホ表示（画面幅600px以下） */
@media screen and (max-width: 600px) {
  .sp-table,
  .sp-table tbody,
  .sp-table tr,
  .sp-table th,
  .sp-table td {
    display: block;
    width: 100% !important;
  }

  .sp-table th {
    text-align: left;
    padding: 10px 16px;
  }

  .sp-table td {
    padding: 14px 16px;
  }

  .client-list-container {
    flex-direction: column;
    gap: 0;
  }
}









.swipe_guide{
  display: none;
}

@media screen and (max-width: 768px) {
/* `.hyou` の内部だけにスタイルを限定して競合を防止 */
.hyou {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* iOSでの滑らかなスクロール */
  box-sizing: border-box;
  margin-bottom: 1em;
  padding: 20px 6%;
}

/* スクロールバーの非表示（デザインを崩さないため） */
.hyou::-webkit-scrollbar {
  display: none;
}
.hyou {
  -ms-overflow-style: none;  /* IE / Edge */
  scrollbar-width: none;  /* Firefox */
}

/* 画像の崩れを防ぐ設定 */
.hyou .gazou11 {
  display: block;
  max-width: none; /* 横幅いっぱいにスクロールさせるため拡大表示を許可 */
  height: auto;
  pointer-events: none; /* ドラッグ操作との競合を防止 */
  width: 500px;
}

/* スワイプガイドの調整 */
.hyou .swipe_guide {
  position: sticky;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #666;
  padding-top: 10px;
  pointer-events: none; /* ガイド文字が操作の邪魔にならないように設定 */
  transition: opacity 0.3s ease;
  display: block;

  /* アニメーションの追加 */
  animation: sway 2s ease-in-out infinite;
}

/* 左右にゆらゆら揺らすアニメーション定義（共通で使用可能） */
@keyframes sway {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px); /* 左へ移動 */
  }
  75% {
    transform: translateX(5px);  /* 右へ移動 */
  }
}

/* スクロール完了時にガイドを消すための用クラス */
.hyou .swipe_guide.is-hidden {
  opacity: 0;
}
}









.swipe_guide2{
  display: none;
}
.achievements .note{
  text-align: right;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {

.table-wrapper{
  width: 100%;
  overflow-x: scroll;
}
.lineup-table{
  width: 600px;
}
/* `.table-wrapper` 内部のみに適用して競合を回避 */
.table-wrapper {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* iOSでのスムーズスクロール */
  box-sizing: border-box;
}

/* スクロールバーの非表示化 */
.table-wrapper::-webkit-scrollbar {
  display: none;
}
.table-wrapper {
  -ms-overflow-style: none;  /* IE / Edge */
  scrollbar-width: none;  /* Firefox */
}

/* スワイプガイドの設定 */
.table-wrapper .swipe_guide2 {
  position: sticky;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #666;
  padding-bottom: 10px;
  pointer-events: none; /* タッチやドラッグの妨げにならないように */
  transition: opacity 0.3s ease;
  display: block;

  /* アニメーションの追加 */
  animation: sway 2s ease-in-out infinite;
}

/* 左右にゆらゆら揺らすアニメーション定義 */
@keyframes sway {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px); /* 左へ移動 */
  }
  75% {
    transform: translateX(5px);  /* 右へ移動 */
  }
}

/* スクロール時にガイドを消す用クラス */
.table-wrapper .swipe_guide2.is-hidden {
  opacity: 0;
}

/* テーブルが縮まないように折り返しを防止 */
.table-wrapper .lineup-table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap; /* テキストの意図しない改行を防ぐ */
}

/* テーブル内のアイコン画像の表示崩れを防止 */
.table-wrapper .lineup-table img.icon {
  vertical-align: middle;
  margin-right: 6px;
  pointer-events: none; /* ドラッグ操作との干渉を防止 */
}

}

#topcontrol span{
  display: none;
}














@media screen and (max-width: 768px) {
.midashi1 {
    max-width: 600px;
    width: 90%;
    height: auto;
    margin-top: 2px;
}
.merit {
    width: auto;
    height: 78px;
}
.m_border {
    width: 100%;
    height: 5px;
    margin-top: -10px;
    margin-bottom: 30px;
}
.m_border2 {
    width: 100%;
    height: 1vw;
    margin: 40px 0;
}
.order1{
  order: 2;
}
.order2{
  order: 1;
}
.txt_indent{
  padding-left: 20px;
  text-indent: -20px;
}
.back_gray,.back_yellow{
  padding: 40px 0 60px;
}
.back_blue{
  padding: 20px 0 70px;
}

.midashi11{
  height: 30px;
  width: auto;
}
.achievements{
  padding-top: 20px;
}
.lineup-table td:first-child {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
}
.mizu {
    display: block;
    margin: 0 auto;
    margin-top: -65px;
    width: 30px;
    height: auto;
}

}




