@charset "UTF-8";



/* =====================================

  Format CSS with CSS Variables

  画面幅 1024px以下 タブレット:var(--for-tab)

  画面幅 767px以下 スマホ:var(--for-mp)

   ===================================== */



/* ルートにデザイン用変数を定義 */

:root {

  /* レスポンシブサイズ設定の基準 @media (max-width: px)

  tab-size: 1024px;

  mp-size: 767px; */



  /* カラー設定 */

  --color-text: #333222;

  --color-background: #f9f9f9;

  --color-link: #0066cc;

  --color-link-hover: #004080;

  --color-accent: #ff6600;



  --color-header-bg: #ffffff;

  --color-footer-bg: #f5f5f5;

  --color-border: #dddddd;



  /* 投稿一覧リスト等用 */

  --fg: #1a1a1a;

  --muted: #666;

  --line: #e6e6e6;

  --chip-bg: #f3f4f6;

  --chip-fg: #333;

  --link: #0a66c2;



  /* フォント設定 */

  --font-base: 'Noto Sans JP', sans-serif;

  --font-size-base: 16px;

  --font-size-small: 0.875rem;

  --font-size-large: 1.25rem;

}



/* =====================

   ベーススタイル

   ===================== */



body {

  font-family: var(--font-base);

  font-size: var(--font-size-base);

  line-height: 1.6;

  color: var(--color-text);

  background-color: var(--color-background);

}



/* =====================

   見出し

   ===================== */

h1,

h2,

h3,

h4,

h5,

h6 {

  font-weight: bold;

  color: var(--color-text);

  margin: 1em 0 0.5em;

}



h1 {

  font-size: 2rem;

}



h2 {

  font-size: 1.75rem;

}



h3 {

  font-size: 1.5rem;

}



h4 {

  font-size: 1.25rem;

}



h5 {

  font-size: 1rem;

}



h6 {

  font-size: var(--font-size-small);

}



/* =====================

   リンク

   ===================== */

a {

  color: var(--color-link);

  text-decoration: none;

  transition: color 0.2s;

}



a:hover {

  color: var(--color-link-hover);

}



/* =====================

   ボタン

   ===================== */

button,

input[type="submit"],

input[type="button"] {

  background-color: var(--color-link);

  color: #fff;

  padding: 0.6em 1.2em;

  border-radius: 4px;

  cursor: pointer;

  transition: background-color 0.3s;

}



button:hover,

input[type="submit"]:hover,

input[type="button"]:hover {

  background-color: var(--color-link-hover);

}



/* =====================

   コンテナ

   ===================== */

.container {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;

}



/* =====================

   フォーム

   ===================== */

input,

textarea,

select {

  font: inherit;

  width: 100%;

  padding: 0.5em;

  margin-bottom: 1em;

  border: 1px solid var(--color-border);

  border-radius: 4px;

}



/* =====================

   ヘッダー・フッター

   ===================== */

   header {
    position: fixed;
    /* background: var(--color-header-bg); */
    padding: 20px 0;
    /* border-bottom: 1px solid var(--color-border); */
}



footer {

  background: var(--color-footer-bg);

  text-align: center;

  padding: 20px;

  font-size: var(--font-size-small);

  color: var(--color-text);

  border-top: 1px solid var(--color-border);

}



/* =====================

   404ページ用

   ===================== */

.button {

  display: inline-block;

  background: var(--color-link);

  color: #fff;

  padding: 10px 20px;

  border-radius: 4px;

  text-decoration: none;

  transition: background 0.3s;

}



.button:hover {

  background: var(--color-link-hover);

}



/* =====================

   mp-onlyとpc-only

   ===================== */

.mp-only {

  display: none;

}



@media (max-width: 767px) {

  .mp-only {

    display: block;

  }



  .pc-only {

    display: none;

  }

}
/* ------------------------------------------------------------------- */
/* EIKOーSANGYO */
/* 基本スタイルとカスタム変数 */
:root {
  --primary-color: #005A9C;
  /* 深い青 */
  --secondary-color: #00BFFF;
  /* 明るい青 */
  --accent-color: #F5F5F5;
  /* 明るいグレー */
  --text-dark: #1a202c;
  --text-light: #f7fafc;
}

/* リセットと基本設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #f8fafc;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

/* 汎用クラス */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-bg-white {
  background-color: white;
}

.section-bg-gray {
  background-color: #f8fafc;
}

.text-center {
  text-align: center;
}

/* ヘッダー */
#main-header {
  position: fixed;
  width: 100%;
  z-index: 50;
  top: 0;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#main-header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

#desktop-nav {
  display: none;
}

#desktop-nav a {
  color: #e5e7eb;
  transition: color 0.2s;
}

#desktop-nav a:hover {
  color: white;
}

#desktop-nav .contact-button {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  transition: background-color 0.3s;
}

#desktop-nav .contact-button:hover {
  background-color: var(--secondary-color);
}

/* モバイルメニュー */
#mobile-nav-container {
  display: block;
}

#menu-toggle {
  display: none;
}

#mobile-menu-button {
  font-size: 1.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

#mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

#menu-toggle:checked~#mobile-menu {
  display: block;
}

#mobile-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: #1f2937;
}

#mobile-menu a:hover {
  background-color: #f3f4f6;
}

