@charset "UTF-8";

/* =====================================================
   ①・③ バナー共通＆個別スタイル (.c-tiger-env-banner)
===================================================== */
.c-tiger-env-banner {
    width: 100%;
    min-height: clamp(300px, 40vw, 480px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://www.tiger-corporation.com/wp-content/uploads/2026/05/soc-th.avif');
    background-size: cover;
    background-position: center;
    padding: clamp(2rem, 5vw, 4rem) 1.25rem;
    text-align: center;
    /* シンプルなフェードインアニメーション */
    animation: c-tiger-env-fade-in 1.2s ease-out forwards;
    opacity: 0;
}

.c-tiger-env-banner2 {
    width: 100%;
    min-height: clamp(300px, 40vw, 480px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://www.tiger-corporation.com/wp-content/uploads/2026/05/emp-th.avif');
    background-size: cover;
    background-position: center;
    padding: clamp(2rem, 5vw, 4rem) 1.25rem;
    text-align: center;
    /* シンプルなフェードインアニメーション */
    animation: c-tiger-env-fade-in 1.2s ease-out forwards;
    opacity: 0;
}

.c-tiger-env-banner__text {
    color: #ffffff;
    font-size: clamp(1.125rem, 1rem + 1.2vw, 1.75rem);
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin: 0;
}

.c-tiger-env-br-pc {
    display: none;
}

@media (min-width: 768px) {
    .c-tiger-env-br-pc {
        display: block;
    }
}

@keyframes c-tiger-env-fade-in {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   ② トリプルバナー (.c-triple-banner)
===================================================== */
/* セクション全体 */
.c-triple-banner {
  display: grid;
  /* PCでは3カラム（1:1:1） */
  grid-template-columns: repeat(2, 1fr);
  /* 中央の境界線として機能する隙間 */
  gap: 0.2rem;
  width: 100%;
  background-color: #fff;
}

/* 各リンクアイテム */
.c-triple-banner__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 20rem; /* PC版の高さ */
  background-color: #333; /* 画像読み込み前のフォールバック */
}

/* 背景画像レイヤー */
.c-triple-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  /* 文字を読みやすくするための暗いフィルター */
  filter: brightness(0.6);
}

/* 個別背景画像（本番環境のURLに変更してください） */
.c-triple-banner__bg--env {
  background-image: url('https://www.tiger-corporation.com/wp-content/uploads/2024/12/onlinestore_bnr-d8938ada9153824d572120c20b3b3c30.jpg');
}

.c-triple-banner__bg--soc {
  background-image: url('https://www.tiger-corporation.com/wp-content/uploads/2026/05/emp-th.avif');
}

/* テキスト・ボタンを含むコンテンツエリア */
.c-triple-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: #fff;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* タイトル */
.c-triple-banner__title {
  margin: 0 0 1rem 0; /* ボタンとの間の余白 */
  font-size: 1.5rem; /* 3列で狭くなるため少し小さめに調整 */
  font-weight: normal;
  letter-spacing: 0.1em;
  text-align: center;
}

/* 詳しく見るボタン */
.c-triple-banner__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%; /* コンテナに対する幅 */
  max-width: 16rem;
  padding: 0.8rem 1rem;
  border: 1px solid #fff;
  background-color: transparent;
  box-sizing: border-box;
}

/* ボタンのテキスト */
.c-triple-banner__btn-text {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}

/* ボタンの矢印アイコン */
.c-triple-banner__btn-icon {
  position: absolute;
  right: 1rem; /* 右端からの位置 */
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/* スマホ版（SP）のレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .c-triple-banner {
    /* SPでは縦1カラムに変更 */
    grid-template-columns: 1fr;
  }
  
  .c-triple-banner__item {
    min-height: 15rem; /* SP版の高さ */
  }

  .c-triple-banner__title {
    font-size: 1.5rem;
  }

  .c-triple-banner__btn {
    width: 80%;
    max-width: 20rem;
    padding: 0.6rem 1rem;
  }

  .c-triple-banner__btn-text {
    font-size: 0.875rem;
  }
}

/* =====================================================
   ④ シンプルバナー (.c-simple-banner)
===================================================== */
/* セクション全体 */
.c-simple-banner {
  display: grid;
  /* PCでは2カラム（1:1） */
  grid-template-columns: 1fr 1fr;
  /* 中央の境界線として機能する隙間 */
  gap: 0.2rem;
  width: 100%;
  background-color: #fff;
}

/* 各リンクアイテム */
.c-simple-banner__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 20rem; /* PC版の高さ */
  background-color: #333; /* 画像読み込み前のフォールバック */
}

/* 背景画像レイヤー */
.c-simple-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  /* 文字を読みやすくするための暗いフィルター */
  filter: brightness(0.6);
}

/* 個別背景画像（本番環境のURLに変更してください） */
.c-simple-banner__bg--env {
  background-image: url('https://www.tiger-corporation.com/wp-content/uploads/2026/05/env-th.avif');
}

.c-simple-banner__bg--soc {
  background-image: url('https://www.tiger-corporation.com/wp-content/uploads/2026/05/soc-th.avif');
}

/* テキスト・ボタンを含むコンテンツエリア */
.c-simple-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: #fff;
}

/* タイトル */
.c-simple-banner__title {
  margin: 0 0 1rem 0; /* ボタンとの間の余白 */
  font-size: 1.75rem;
  font-weight: normal;
  letter-spacing: 0.1em;
}

/* 詳しく見るボタン */
.c-simple-banner__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%; /* コンテナに対する幅 */
  max-width: 20rem;
  padding: 0.8rem 1rem;
  border: 1px solid #fff;
  background-color: transparent;
}

/* ボタンのテキスト */
.c-simple-banner__btn-text {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ボタンの矢印アイコン */
.c-simple-banner__btn-icon {
  position: absolute;
  right: 1.5rem; /* 右端からの位置 */
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/* スマホ版（SP）のレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .c-simple-banner {
    /* SPでは縦1カラムに変更 */
    grid-template-columns: 1fr;
  }
  
  .c-simple-banner__item {
    min-height: 15rem; /* SP版の高さ */
  }

  .c-simple-banner__title {
    font-size: 1.5rem;
  }

  .c-simple-banner__btn {
    width: 80%;
    padding: 0.6rem 1rem;
  }

  .c-simple-banner__btn-text {
    font-size: 0.875rem;
  }
}