@charset "UTF-8";
/* CSS Document */

.listtype-006 {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
}

.listtype-006 li {
    margin-bottom: 20px;
    position: relative;
    background-color: #FDFDFA;
    float: left;
}

/* ボタン本体 */
.listtype-006 a {
  display: inline-block;
  position: relative;
  padding: 14px 18px 14px 44px; /* 矢印分の左余白 */
  background: #fff;
  border: 2px solid #000; /* 黒い枠線 */
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s ease, transform 0.15s ease;
  z-index: 1; /* 影より前に */
}

/* 影画像を後ろに配置 */
.listtype-006 a::after {
  content: "";
  position: absolute;
  right: -8px;  /* 影を右にずらす */
  bottom: -8px; /* 影を下にずらす */
  width: 100%;
  height: 100%;
  background: url("https://hiroshima-jimyoin.com/wp/wp-content/uploads/2025/09/btn_shadow.png")
              no-repeat right bottom;
  background-size: 100% auto;
  z-index: -1; /* ボタンの後ろに配置 */
}

/* 矢印アイコン */
.listtype-006 a::before {
  content: "▶";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #000;
}

/* hover効果 */
.listtype-006 a:hover {
  background-color: #f9f9f9;
  transform: translateY(-2px);
}

/* モバイル対応 */
@media (max-width: 480px) {
  .listtype-006 a {
    font-size: 15px;
    padding: 12px 14px 12px 40px;
  }
  .listtype-006 a::before {
    left: 12px;
    font-size: 13px;
  }
}


.listtype-005 {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
}

.listtype-005 li {
  margin-bottom: 24px;
  position: relative;
}

/* ボタン本体 */
.listtype-005 a {
  display: inline-block;
  position: relative;
  width: 100%;   /* ボタン本体の幅を固定 */
  height: 60px;   /* ボタン本体の高さを固定 */
  line-height: 60px;
  padding-left: 44px; /* 矢印分の余白 */
  background: #fff;
  border: 2px solid #000;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  box-sizing: border-box;
  z-index: 1;
  text-align: left;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

/* 固定サイズの影画像 */
.listtype-005 a::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 220px;   /* 影も固定サイズ */
  height: 60px;
  background: url("https://hiroshima-jimyoin.com/wp/wp-content/uploads/2025/09/btn_shadow.png")
              no-repeat right bottom;
  background-size: cover;
  z-index: -1;
}

/* 矢印アイコン */
.listtype-005 a::before {
  content: "▶";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #000;
}

/* hover効果 */
.listtype-005 a:hover {
  background-color: #f9f9f9;
  transform: translateY(-2px);
}



.listtype-007 {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
    text-align: left;
}

.listtype-007 li {
    margin-bottom: 24px;
    float: left;
    margin-right: 10px;
    margin-left: 10px;
}

.btn-wrap {
  display: inline-block;
  position: relative;
}

/* ボタン本体 */
.btn-wrap a {
  display: inline-block;
  position: relative;
  padding: 14px 18px 14px 44px; /* 左に矢印用スペース */
  background: #fff;
  border: 2px solid #000;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  box-sizing: border-box;
  z-index: 2; /* 影より前に */
  transition: background-color 0.2s ease, transform 0.15s ease;
}

/* 矢印アイコン */
.btn-wrap a::before {
  content: "▶";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #000;
}

/* 影（ボタンと同じサイズに合わせる） */
.btn-shadow {
  position: absolute;
  top: 6px;   /* 下にずらす */
  left: 6px;  /* 右にずらす */
  width: 100%;
  height: 100%;
  background: url("https://hiroshima-jimyoin.com/wp/wp-content/uploads/2025/09/btn_shadow04.jpg")
              no-repeat center center;
  background-size: 331px auto;
  z-index: 1; /* ボタンより後ろ */
  pointer-events: none; /* クリックに影響しない */
}

/* hover効果 */
.btn-wrap a:hover {
  background-color: #f9f9f9;
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .listtype-007 {
    grid-template-columns: 1fr; /* スマホは1列 */
    gap: 16px;
    float: left;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
}
