@charset "UTF-8";

/* ベース設定 */
body {
    margin: 0; padding: 0;
    color: #222;
    line-height: 1.8;
    color:#fff !important;

  }
  .fonttext {
    font-family: 'M PLUS 1p', sans-serif;
  }
  .textcolor {
    color:#34495d ;
  }
.honbun {
  font-size: clamp(14px, 2vw + 1rem, 15px);
}
  
  a { color: #0073e6; text-decoration: none; }
  h1, h2 { margin: 1.5rem 0 1rem; }

    .section {
    margin-bottom:15vw;
  }
  img {
    border-radius: 20px;
  }
  
  /* ヘッダー風の帯 */
  .header-band {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 55px;
    background-color: #39414d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    
  }
  
  /* ハンバーガーメニュー */
  .hamburger-menu {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    background-color: #34495d !important;
  }

  .hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #f3f3f3 !important;
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 2px;
  }
  
  .hamburger-menu.active span {
    background-color: #0073e6;
  }

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-8px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-8px, -6px);
}

/* ナビゲーション */
.navigation {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: #111;
  color: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 80px 20px 20px;
}
.navtext {
    color :#fff !important;
}
.navigation.show {
  right: 0;
}

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

.navigation li {
  margin: 20px 0;
}

.navigation a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #333;
  transition: color 0.3s;
}

.navigation a:hover {
  color: #0073e6;
}

/* オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

  .overlay.show {
    display: block;
  }
.site-header .logo a { 
    font-size: 1.4rem; color: #fff;
 }
 .services {
  background-color: #ffffff;
  border-radius: 20px;
  color: crimson;
 }
 .sub-title {
  width: 100%;
  font-size: clamp(16px, 6vw, 24px);
  margin-bottom: 25px; 
  text-align: center;
}
#form {
  margin-top: 20px;
}

/* カードとフェードイン */
.card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow:-8px 13px 17px 0px rgb(255 255 255 / 50%);
  padding: 32px 24px;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}
.card-image {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
}
.card-title {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem); /* 約16px〜24px */
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111111;
  margin-bottom: 12px;
}
.card-text {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem); /* 約14px〜17.6px */
  color: #333333;
  line-height: 1.7;
}
.fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s ease, transform 1.5s ease;
  margin-bottom: 30px;
}

.fadein.visible {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 30px;
}

/* 会社概要 */
.company-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
}

.company-card-header {
  background-color: #2c3e50;
  padding: 24px;
  text-align: center;
}

.company-card-header h2 {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0;
}

.company-card-body {
  padding: 24px;
  background-color: #ffffff;
}

.company-row + .company-row {
  margin-top: 24px;
  border-top: 1px solid #eee;
  padding-top: 24px;
}

.company-label {
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 8px;
  color: #333;
}

.company-value {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: #333;
  line-height: 1.6;
}


/* アクセス */
.access-section {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius:20px;
}

.access-container {
  max-width: 800px;
  margin: 0 auto;
}

.access-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: bold;
  margin-bottom: 20px;
}

.access-address {
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: 30px;
  color: #e0e6ec;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: -10px 9px 24px 6px rgb(255 255 255 / 20%);
}


  /* レスポ
  
  
  ンシブ対応 */
  @media screen and (max-width: 750px) {
    .fv {
      background-image: url('assets/images/img1.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    
    .fv-title {
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-size: 1.5rem;
    }
    
    .fv-button {
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }
    .fvtitle {
        position: absolute;
        transform: translateX(-50%);
        left: 50%;
        top: 24vw;
        width: 95%;
        z-index: 2;
        color: #fff;
        font-weight: bold;
        text-align: center;
    }
    .fvcontent {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 25vh;
        font-size: 1rem;
        width: 100%;
    }
    .line {
      border-top: 2px solid gray;
      margin-top: 20px;
      line-height: 25px;
      font-size: 4vw;
     }
     .company-card {
      max-width: 480px;
    }

  }


  @media screen and (min-width: 751px) {
    .fv {
        background-image: url('assets/images/img2.png');
        background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      margin-top: 9% !important;
    }
    
    .fv-title {
        text-align: center;
        font-size: 30px;
        font-weight: bold;
        position: absolute;
        transform: translateX(-50%) !important;
        left: 50%;
        top: 70px;
        width: 80%;
        z-index: 2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7)
    }
    .fv-button {
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }
    .fvcontent {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 200px;
    }
    .line {
      border-top: 2px solid gray;
      margin-top: 20px;
      line-height: 30px;
      font-size: 17px;
     }
     .services-content {
      display: flex;
      flex-wrap: wrap;

     }
  }




  .global-nav a { margin-left: 1.2rem; color: #fff; font-size: 0.95rem; }
  
  /* ヒーローセクション */
  .hero {
    padding: 2rem; background: #f5f5f5;
    text-align: center;
  }
  .hero h1 {
    font-size: 2rem; margin-bottom: 0.5rem;
  }
  .updated-date {
    color: #666; font-size: 0.9rem;
  }
  
  /* 本文エリア */
  .fv {
    height: 50vh;
    position: relative;
  }


 .fv-button {
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
 } 
 .fv-button-text{
    background: #888;         /* グレー背景 */
    color: #fff;             /* 文字色は白 */
    border-radius: 30px;     /* まる角 */
    padding: 5px 20px;    /* 余白でボタン感を出す */
    display: inline-block;   /* インラインボタン化 */
    font-weight: bold;       /* 文字を太く */
    font-size: 1.1rem;       /* 文字サイズ調整 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* ほんのり影 */
    border: none;            /* 枠線なし */
    transition: background 0.2s;
}
.fv-button-text:hover {
    background: #666;         /* ホバー時に少し濃く */
}
  .content {
    max-width: 800px; margin: 0 auto; padding: 2rem;
  }
  .article h2 {
    border-bottom: 2px solid #0073e6;
    padding-bottom: 0.3rem; font-size: 1.4rem;
  }
  .article ul, .article ol {
    margin-left: 1.2rem;
  }
  .article strong { color: #111; }
  
  /* フッター */
  .site-footer {
    background: #ffffff; color: #232323;
    text-align: center; padding: 1rem 2rem;
    font-size: 0.85rem;
  }

  .footer-nav { margin-top: 0.5rem; }


  
.kaishagaiyou-table {
  width: 100%;
  max-width: 1000px;
  margin: 25px auto 0 auto;
  border-collapse: collapse;
  background: #fff;
  font-size: 1.05rem;
  border: 1px solid gray;
}

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

.span-strong {
  font-weight: bolder;
  font-size: 3.5vw;
  border-bottom: 1px solid gray;
}

.subtitlenone {
  margin-bottom:0;
}
}

  

  