@charset "utf-8";
/* CSS Document */
#TopMain {
  position: relative;
}
#TopMain #MainTopText {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0));
  pointer-events: none; /* 背景クリック透過 */
  z-index: 2;
}
#TopMain #MainTopText img {
  max-width: 70%;
}
/* 親：中央下部に固定 */
.arrow-wrapper {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 40px;
  height: 80px;
  pointer-events: none;
}
/* CSS矢印 */
.arrow-down {
  position: relative;
  width: 2px;
  height: 70px;
  margin: 0 auto;
  background-color: white;
  animation: floatArrow 2s ease-in-out infinite;
}
.arrow-down::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  transform-origin: left bottom;
}
/* 上下にふわふわ動く */
@keyframes floatArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
#TopAboutUs {
  display: flex;
  height: 600px;
  position: relative;
  overflow: hidden;
  background-color: #065EC4;
}
/* 左側の背景画像 */
#TopAboutUs .left-image {
  flex: 0 0 70%;
  background: url('https://kitano-club.com/w/wp-content/uploads/2025/07/top_pict1.jpg') no-repeat center center;
  background-size: cover;
}
/* 右側のグラデーション */
#TopAboutUs .right-gradient {
  flex: 0 0 30%;
  background: linear-gradient(to right, #00A4EA, #065EC4);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  left: -10%;
}
/* ########### 1299px以下 ＞xl ########### */
@media (max-width: 1299px) {}
/* ########### 991px以下 ＞lg ########### */
@media (max-width: 991px) {}
/* ########### 767px以下 ＞md ########### */
@media (max-width: 767px) {
  #TopAboutUs .left-image {
    flex: 0 0 80%;
  }
  #TopAboutUs .right-gradient {
    flex: 0 0 20%;
    left: -5%;
  }
}
/* ########### 575px(sm)以下 ########### */
@media (max-width: 575px) {
  #TopAboutUs {
    height: 400px;
  }
  #TopAboutUs .left-image {
    flex: 0 0 90%;
  }
  #TopAboutUs .right-gradient {
    flex: 0 0 10%;
  }
}
#TopNews {
  background-image:
    url('https://kitano-club.com/w/wp-content/uploads/2025/07/illu6.svg'), linear-gradient(135deg, #001a48 0%, #06229f 100%);
  background-repeat: no-repeat;
  background-position: 97% 97%;
}
#FeedBox {}
#FeedBox, #FeedBox a {
  color: #ffffff;
}
#FeedBox .border-bottom {
  border-bottom-style: dotted !important;
}
#FeedBox .date {
  line-height: 1.0;
    position: relative;
}
#FeedBox span.badge {
    position: absolute;
    top: -23px;
    left: 20%;
    font-size: 70%;
}
#FeedBox span.badge::after {
  content: "";
  position: absolute;
  top: 100%; /* バッジの真下 */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #dc3545; /* バッジと同じ色 */
}
#TopPageCalender{
  position: relative;
  background-image: url('https://kitano-club.com/w/wp-content/uploads/2025/07/illu1.svg'), url('https://kitano-club.com/w/wp-content/uploads/2025/07/illu3.svg');
  background-repeat: no-repeat, no-repeat;
  background-position: 3% 97%, 97% 3%;
  background-size: 200px auto, 200px auto; /* サイズ調整 */
}
#TopPageAccessMap{
    background-image: url(https://kitano-club.com/w/wp-content/uploads/2025/07/top_graybg.gif);
    background-position: top left;
    background-repeat: repeat-x;
}

/* ########### 1299px以下 ＞xl ########### */
@media (max-width: 1299px) {}
/* ########### 991px以下 ＞lg ########### */
@media (max-width: 991px) {
    
#TopPageAccessMap iframe{
    height: 400px
}
}
/* ########### 767px以下 ＞md ########### */
@media (max-width: 767px) {}
/* ########### 575px(sm)以下 ########### */
@media (max-width: 575px) {
#TopPageCalender{
  position: relative;
  background-image: none;
}
}
/*トップページ用 設定 OnlyTop*/