body {
    background-color: #EEEEEE;
    font-family: 'meiryo', sans-serif;
    font-weight: bold;
    color: #575757;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
    position: relative;
}

/* ====== フォント読み込み ====== */
@font-face {
  font-family: 'NikkyouSans';
  src: url('../fonts/NikkyouSans-mLKax.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'meiryo';
  font-weight: bold;
  font-style: normal;
}

.h1 {
  display: block;
  text-align: center;
  letter-spacing: 1px;
  color: #575757;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'NikkyouSans', sans-serif;
}

.newsPage {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 60px; 
  box-sizing: border-box;
}

/* ====== 絞り込みタブ ====== */
.newsFilterBox {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.newsFilterBox input[type="radio"] {
  display: none;
}

.newsFilterBox label {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #575757;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.25s ease;
}

.newsFilterBox label:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.newsFilterBox input[type="radio"]:checked + label {
  background: #3D9EBF;
  color: #fff;
  border-color: #3D9EBF;
  box-shadow: 0 4px 14px rgba(61,158,191,0.35);
}
/* ====== PC3列 ====== */
.newsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

/* ====== カード ====== */
.newsCard {
  display: block;
  text-decoration: none;
  color: #575757;
  transition: transform 0.25s ease, opacity 0.3s ease;
}

.newsCard:hover {
  transform: translateY(-4px);
}

.newsCardImg {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
}

.newsCardImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.newsDate {
  font-size: 12px;
  color: #aaa;
  margin: 0 0 6px;
}

.newsTitle {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsTag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: bold;
}

.tag-work         { background: rgba(61,158,191,0.15); color: #3D9EBF; }
.tag-notice       { background: rgba(150,150,150,0.15); color: #888; }
.tag-announcement { background: rgba(220,90,90,0.12); color: #c85c5c; }


/* ====== フィルターで非表示 ====== */
.newsCard.is-hide {
  display: none;
}

/* ====== COMMISSIONセクション ====== */
.commission-img {
    width: 290px !important;
    height: auto;
    display: block;
    margin-top: 120px;
    margin-left: 180px;
    position: relative;
    z-index: 10;
}

/* ====== CONTACTセクション ====== */
.contactSection {
    max-width: 1000px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}

.mailBox {
    background-color: #a9a9a9 !important;
    color: #ffffff;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mailLabel {
    font-size: 14px;
    letter-spacing: 0.1em;
    margin: 0;
    opacity: 0.8;
}

.mailAddress {
    font-size: 20px;
    margin: 5px 0 0;
    font-weight: bold;
}

.contactButtons {
    display: flex;
    justify-content: center;
    gap: 190px;
    flex-wrap: wrap;
}

.glassBtn {
    text-decoration: none;
    color: #575757;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 380px;
    padding: 25px 10px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.glassBtn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.btnMain {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.btnSub {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: lowercase;
    opacity: 0.7;
}

/* ====== READ MOREボタン ====== */
.newsReadMoreBtn {
  display: block;
  margin: 30px auto 0;
  padding: 12px 40px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #575757;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.newsReadMoreBtn:hover {
  background: #3D9EBF;
  color: #fff;
  border-color: #3D9EBF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(61,158,191,0.3);
}

.copyright { text-align: center; font-size: 11px; margin: 20px 0; }

/* ====== スマホ：2列 ====== */
@media screen and (max-width: 768px) {
  .newsPage {
    padding: 24px 16px 40px;
  }
  .newsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }
  .newsTitle {
    font-size: 12px;
  }
  .newsFilterBox label {
    padding: 6px 14px;
    font-size: 12px;
  }
}

/* ====== 左右柱画像 ====== */
.left1-img,
.left2-img,
.left3-img,
.right1-img,
.right2-img,
.right3-img {
  height: auto;
  position: absolute;
  z-index: 100;
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 0.9s ease, transform 0.15s ease-out;
  pointer-events: none;
}

.left1-img  { width: 160px; top: 80px; left: 60px; }
.left2-img  { width: 250px; top: 2600px; left: 0; z-index: 0; }
.right1-img { width: 180px; top: 540px; right: 60px; }
.right2-img { width: 380px; top: 2790px; right: 0; z-index: 0; }
.left3-img  { width: 280px; top: 4300px; left: 0; }
.right3-img { width: 140px; top: 4200px; right: 60px; }

/* 表示状態 */
.left1-img.is-show,
.left2-img.is-show,
.left3-img.is-show,
.right1-img.is-show,
.right2-img.is-show,
.right3-img.is-show {
  opacity: 1;
}

@media screen and (max-width: 1300px) {
  .left1-img,
  .left2-img,
  .left3-img,
  .right1-img,
  .right2-img,
  .right3-img {
    display: none !important;
  }
}