@media (max-width: 991.98px) {
    .gMenu_outer {
        display: unset;
    }
}

@media (min-width: 992px) {
    .siteHeader_logo img {
        max-height: 80px;
    }
}
.siteHeader {
   background-color: #efefed; 
}
/******メインビジュアル パターンtop1*****/
.home .mainevisual {
  width: 100%;
  height: 70vh;
  overflow: hidden; 
}

/* ▼ スマホ（768px以下）の場合 ▼ */
@media (max-width: 768px) {
 .home  .mainevisual {
    height: auto;
  }

 .home  .mainevisual video {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}
/***メインビジュアル パターンtop2****/
.page-id-1331 .mainevisual {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.page-id-1331 .maintext {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  font-family: serif;
}
@media (max-width: 768px) {
 .page-id-1331 .maintext {
  bottom: unset;
  top: 50%;
  font-size: 2rem;
 }
}

/****** 3カラムブロック *****/
.info-blocks {
  display: flex;
  width: 100%;
  background: #cad5dc;
  padding: 30px;
  gap: 30px;
}

.info-item {
  flex: 1;
  display: flex;                /* ← 横並びレイアウト */
  align-items: center;          /* ← 上下中央揃え */
  justify-content: center;      /* ← 中央寄せ（必要に応じて space-around に変更可） */
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px;
  text-align: left;
  transition: opacity 0.3s ease;
}

.info-item img {
  width: 50px;                  /* アイコンサイズ調整 */
  height: auto;
  margin-right: 15px;
}

.info-text p {
  margin: 0;
  line-height: 1.4;
}

.info-text .font-ss {
  font-size: 12px;
  font-weight: normal;
  display: block;
}

.info-item:hover {
  opacity: 0.8;              /* ホバーで少し透かす */
}


/* ▼ スマホ（768px以下）で縦並びにする ▼ */
@media (max-width: 768px) {
  .info-blocks {
    flex-direction: column;
    padding: 20px;
    gap:10;
  }

  .info-item {
    justify-content: flex-start; /* 左寄せ */
    padding: 5px;
  }

  .info-item img {
    margin-right: 10px;
  }
}


/****** フッター *****/
.custom-site-footer {
  background-color: #f8f8f8;
  padding: 20px 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

/* ▼スマホ表示時（768px以下）▼ */
@media (max-width: 991px) {
  .footer-inner {
    flex-direction: column;       /* 縦並びにする */
    justify-content: center;      /* 中央寄せ */
    text-align: center;           /* テキスト中央寄せ */
    gap: 10px;                    /* 上下の間隔を少し空ける */
  }

  .footer-logo {
    height: 40px;                 /* スマホでは少し小さめに */
  }
  .custom-site-footer {
  padding: 20px;
}
}


