    body {
      margin: 0;
      font-family: "Helvetica", "Arial", sans-serif;
      background-color: #ffffff;
      padding: 20px;
    }

    .wrap {
      position: relative;
      width: 100%;
      height: 500px;
      overflow: hidden;
    }

    .background-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .background-layer img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .background-layer img.active {
      opacity: 1;
    }

    .foreground-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    .foreground-layer img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 200px;
    }

    .daimei p {
      font-size: 20px;
      text-align: center;
    }


.flow-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .step {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      width: 180px;
      padding: 15px;
      text-align: left;
    }
    .step img {
      width: 100%;
      height: 111.88px;
      border-radius: 4px;
      margin-bottom: 10px;
    }
    .step h3 {
      font-size: 2.1em;
      margin: 10px 0 5px;
    }
    .step p {
      font-size: 1.5em;
      color: #555;
    }

    /* 固定ヘッダー */
    .fixed-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 70px;
      background-color: #333;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    /* コンテンツ領域 */
    .content {
      max-width: 1080px;
      margin: 0 auto;
      padding-top: 0px; /* ヘッダーの高さ + 余白 */
    }

 .header-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 70px;
      background-color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      border-bottom: 1px solid #ccc;
    }

    .header-inner {
      width: 1080px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      height: 50px;
    }

    .contact-area {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-area img {
      height: 24px;
    }

    .phone-number {
      font-size: 16px;
      color: #333;
      font-weight: bold;
    }

    body {
      margin: 0;
      padding-top: 90px; /* ヘッダーの高さ + 余白 */
      font-family: sans-serif;
    }







      .container {
      width: 1080px;
      margin: 0 auto;
    }

    .row {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .text-block {
      flex: 1;
      padding: 20px;
    }

    .text-block h2 {
      margin: 0 0 10px;
      font-size: 28px;
    }

    .text-block p {
      margin: 0;
      font-size: 20px;
      color: #555;
    }

    .image-block {
      flex: 1;
      padding: 20px;
    }

    .image-block img {
      max-width: 300px;
      height: auto;
      display: block;
    margin: 0 auto;
    }

    /* 2行目だけ左右逆転 */
    .row.reverse {
      flex-direction: row-reverse;
    }


/* ------------------------------
 sa-bis  ni
------------------------------ */


.container2 {
  width: 1080px;
  margin: 0 auto; /* 中央配置 */
  padding: 20px;
}

.ni {
  display: inline-block;
  font-size: 36px;         /* 自由に変更OK */
  color: #333;             /* 自由に変更OK */
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  text-align: right;       /* 枠内で右寄せ */
}

.ni::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;             /* 文字の長さに合わせて自動調整 */
  height: 2px;
  background-color: #FF5126; /* アンダーラインの色 */
}





/* ------------------------------
   会社情報レイアウト
------------------------------ */
.company-section {
  width: 1080px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: "Helvetica", sans-serif;
}

/* ------------------------------
   タイトル
------------------------------ */
.company-title {
  display: inline-block;
  font-size: 28px;
  color: #2c3e50;
  font-weight: bold;
  position: relative;
  padding-bottom: 6px;
  float: left;
  text-align: left;
}

.company-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}

/* ------------------------------
   情報表示
------------------------------ */
.company-details {
  clear: both;
  margin-top: 60px;
}

.company-details dt {
  font-weight: bold;
  margin-top: 20px;
font-size: 24px;
}

.company-details dd {
  margin-left: 0;
  margin-bottom: 10px;
font-size: 24px;
}


/* ------------------------------
   POPUP
------------------------------ */


    .ubea-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .ubea-card-item {
      flex: 1 1 calc(33.333% - 16px);
      box-sizing: border-box;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .ubea-card-item:hover {
      transform: scale(1.02);
    }

    .image-popup img {
      display: block;
      width: 100%;
      height: auto;
      cursor: pointer;
    }


