*,
*::before,
*::after {
  box-sizing: border-box;
}
a{
  transition: all 0.3s ease; 
}
a:hover{
  opacity: 0.8;
}
html {
  font-size: 62.5%;
}
html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  background: #F1F1F1;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
/* モーダルが開いているときのbodyスクロール無効 */
body.modal-open {
  overflow: hidden;
}
img{
  width: auto;
  max-width: 100%;
  height: auto;
}
.main-visual {
  background: linear-gradient(135deg, #ff9800 60%, #ffb300 100%);
  background-image: url("../img/bg.webp");
  background-repeat: repeat-x;
  background-position: left top;
  background-size: auto 100%;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 8px 32px #0001;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fv-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  display: block;
  padding: 0 20px;
}
.uij-logo {
  /* position: absolute;
  left: 252px;
  top: -5px; */
  width: 50%;
  max-width: 150px;
  z-index: 2;

}
.mv-catch {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  z-index: 2;
  text-shadow: 2px 2px 6px #c60a0a33;
  text-align: left;
  display: inline-block;
  text-align: center;
}
.mv-catch .kuma {
  font-size: 70px;
  font-size: clamp(50px, 18.67vw, 70px);
  display: inline;
  letter-spacing: -0.2em;
}
.mv-catch .de {
  font-size: 55px;
  font-size: clamp(35px, 14.67vw, 55px);
  letter-spacing: -0.2em;
  padding-left: 5px;
}
.mv-catch .hatarako {
  font-size: 105px;
  font-size: clamp(70px, 28vw, 105px);
  display: block;
  line-height: 1;
  letter-spacing: -0.05em;
}
.mv-illust {
  position: absolute;
  right: 300px;
  bottom: 62px;
  width: 250px;
  z-index: 1;

}
.balloon {
  position: absolute;
  right: 340px;
  top: 66px;
  background: #fff;
  color: #ff7700;
  font-weight: bold;
  font-size: 20px;
  border-radius: 12px;
  box-shadow: 3px 3px 0 #c60a0a, 0 4px 16px #0001;
  padding: 10px 24px 10px 20px;
  z-index: 3;
  border: 3px solid #fff;
  transform: rotate(-4deg);
}
.mv-bg-text {
  position: absolute;
  color: #fff2;
  font-size: 180px;
  font-weight: 900;
  letter-spacing: -0.08em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  left: 0;
  bottom: -2%;
  width: 100vw;                          /* ビューポート幅 */
  margin-inline: calc(50% - 50vw);       /* 中央寄せ */
  overflow: hidden;                      /* はみ出し隠す */
  white-space: nowrap;                   /* 改行抑制 */
  display: flex;                         /* 横並び */
}
.mv-bg-text span {
  display: inline-block;
  animation: moveLeft 12s linear infinite;
  flex-shrink: 0;                        /* 縮まない */
  white-space: nowrap;
  font-size: 200px;                      /* 調整可 */
  font-size: clamp(150px, 23.44vw, 300px);
  padding-right: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
/* 3. アニメーション設定 */
.mv-bg-text span:nth-child(odd) {
  animation: MoveLeft 24s -12s infinite linear;
}
.mv-bg-text span:nth-child(even) {
  animation: MoveLeft2 24s infinite linear;
}
/* keyframes は２種用意 */
@keyframes MoveLeft {
  from { transform: translateX(100%);  }
  to   { transform: translateX(-100%); }
}
@keyframes MoveLeft2 {
  from { transform: translateX(0);     }
  to   { transform: translateX(-200%); }
}
@media screen and (min-width: 751px) {
  .main-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 700px;
    min-height: clamp(400px, 53.13vw, 700px);
    margin: 20px;
    overflow: hidden;
  }
  .uij-logo-wrap {
    font-size: 0;
    padding-left: 96px;
    padding-left: clamp(30px, 5vw, 96px);
    margin-bottom: clamp(10px,2.34vw,30px);
}
  .uij-logo {
    width: 37%;
    max-width: 396px;
  }
  .mv-catch {
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: 56px;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.4em;
    z-index: 2;
    text-shadow: 2px 2px 6px #c60a0a33;
  }
  .mv-catch span {
    font-size: 64px;
    display: block;
  }
  .mv-catch .kuma {
    font-size: clamp(90px, 10.55vw, 145px);
  }
  .mv-catch .de {
    font-size: 102px;
    font-size: clamp(70px, 7.42vw, 102px);
    display: inline;
    margin: 0 8px;
  }
  .mv-catch .hatarako {
    font-size: clamp(110px, 15vw, 192px);
    display: block;
    line-height: 1.05;
  }
  .mv-illust {
    position: absolute;
    right: 30px;
    top: auto;
    bottom: 0;
    margin: auto;
    width: 34%;
    max-width: 390px;
    z-index: 2;
  }
}
@media screen and (max-width: 750px) {
  .main-visual {
    margin: 0 0 clamp(10px, 20vw, 100px);
    height: 80vh;
    max-height: 580px;
    border-radius: 0 0 20px 20px;
    overflow: visible;
  }
  .fv-inner {
    padding: 0 15px 15px;
    text-align: center;
  }
  .mv-illust {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -12%;
    width: clamp(100px, 50.67vw, 220px);
    margin: 20px auto 0 auto;
  }
  .mv-catch {
    text-align: center;
    margin-bottom: 20px;
  }
  .uij-logo-wrap {
    text-align: center;
    margin-bottom: 20px;
  }
}

/* メインコンテンツ */

.inner{
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  padding: 0 15px;
}
.desc-wrap {
  margin: 15px auto 45px;
}
.desc {
  font-size: clamp(1.3rem, 4vw, 2.4rem);
  text-align: center;
  color: #333333;
  z-index: 10;
  position: relative;
  font-weight: bold;
  line-height: 1.7;
}

.event-section .catch {
  text-align: center;
  font-size: clamp(1.3rem, 5.33vw, 3.4rem);
  color: #333333;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
  margin-bottom: clamp(10px, 4vw, 20px);
}
.event-section .tags {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.event-section .tags span {
  border: 1px solid #333333;
  background: #fff;
  border-radius: 25px;
  border-radius: clamp(15px, 6.67vw, 50px);
  padding: 10px 12px;
  padding: clamp(8px, 2.67vw, 20px) clamp(10px, 3.2vw, 30px);
  font-size: 14px;
  font-size: clamp(1.3rem, 3.73vw, 2.2rem);
  color: #333333;
  white-space: nowrap;
  line-height: 1;
  cursor:default;
}
.event-section .attention {
  text-align: center;
  font-size: 25px;
  font-size: clamp(1.3rem, 6.67vw, 4.6rem);
  font-weight: bold;
  margin: 15px 0 60px 0;
  color: #333333;
  margin-bottom: 60px;
}
.event-section .attention .orange {
  color: #ff8800;
}
.schedule-main-title{
  text-align: center;
}
.schedule-main-title img{
  width: 80%;
  max-width: 512px;
  display: inline-block;
}
.event-section .schedule-title-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.event-section .schedule-title {
  background: #fff;
  border: 2.5px solid #333333;
  border-radius: 24px;
  font-size: 23px;
  font-weight: bold;
  color: #333333;
  padding: 8px 34px;
  position: relative;
  letter-spacing: 0.07em;
  z-index: 2;
  display: inline-block;
  margin-bottom: 0;
}
.event-section .schedule-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 36px;
  width: 70%;
  height: 7px;
  background: #ff8800;
  border-radius: 5px;
  z-index: -1;
}
.event-cards {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  margin: 0 auto;
}
.event-card {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  margin: 0 0 18px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1.5px solid #eee;
}
.card-info {
  padding: 15px 30px;

}
.card-tag {
  background: #2639A6;
  color: #fff;
  font-size: 15px;
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: bold;
  padding: 6px 18px;
  border-radius: 0 0 16px 0px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  letter-spacing: 0.04em;
}
.card-desc {
  font-size: 22px;
  font-size: clamp(1.3rem, 5.33vw, 2.2rem);
  text-align: left;
  color: #333333;
  letter-spacing: 0.02em;
  z-index: 10;
  position: relative;
  font-weight: bold;
  margin: 20px 0 30px;
}
.event-card .card-img {
  width: 100%;
  height: 100%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 10px 10px 0 0;
}
.event-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-info {
  padding: 14px 15px 30px;
}
.event-card .date {
  font-size: 35px;
  font-size: clamp(2.4rem, 9.33vw, 5rem);
  font-weight: bold;
  color: #333333;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: left;
}
.event-card .date span {
  font-size: 18px;
  font-size: clamp(1.3rem, 4.8vw, 2rem);
  font-weight: bold;
  margin-left: -15px;
}
.event-card .desc {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 0;
  line-height: 1.45;
  text-align: left;
  line-height: 1.6;
}

.hash-tag {
  display: inline-block;
  background: #FFD900;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  border-radius: 16px;
  padding: 5px 18px 4px 18px;
  letter-spacing: 0.03em;
}
.event-card .card-bottom {
}
.event-card .btn {
  display: block;
  width: 100%;
  background: #F87A11;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s;
  box-shadow: 0 1px 6px #ff770022;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.event-card .btn:hover {
  background: #ee6000;
}
.event-card .btn.preparing {
  background: #ccc;
  cursor: not-allowed;
}
.event-card .btn.preparing:hover {
  background: #ccc;
}
.balloon-title {
  display: inline-block;
  position: relative;
  background: #fff;
  border: 2.5px solid #333333;
  border-radius: 30px;
  font-size: 19px;
  padding: 11px 32px 9px 32px;
  color: #333333;
  font-weight: 500;
  box-shadow: 8px 8px 0 #ff8800;
  letter-spacing: 0.08em;
  z-index: 2;
  margin-bottom: 60px;
}
.balloon-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
  border-width: 13px 8px 0 8px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
  z-index: 2;
}
.balloon-title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -22px;
  border-width: 14px 9px 0 9px;
  border-style: solid;
  border-color: #ff8800 transparent transparent transparent;
  z-index: 1;
}
.card-tag-modal {
  background: #2639A6;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
}

@media screen and (min-width: 751px) {
  .event-section .tags {
    max-width: 800px;
}
  .event-section .tags span{
    padding: 20px 32px;
    border-radius: 50px;
  }
  .event-cards{
    display: flex;
   gap: 20px 10px;
  }
  .event-card {
    width: calc((100% - 20px) / 3);
  }
  .event-card .date{
    font-size: 50px;
    font-size: clamp(2.4rem, 3.91vw, 5rem);
  }
  .event-card .date span{
    font-size: 20px;
    font-size: clamp(1.3rem, 1.56vw, 2rem);
  }
  .card-info {
    padding: 15px 30px;
    padding: clamp(10px, 1.17vw, 15px) clamp(15px, 2.34vw, 30px) 30px;

  }
  .card-desc{
    margin: 20px 0 30px;
    margin: clamp(10px, 1.56vw, 20px) 0 clamp(20px, 2.34vw, 30px) 0;

  }
}
@media screen and (min-width: 900px) {
  .event-card {
    width: calc((100% - 20px) / 3);
  }
}
.banner-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  margin: 40px auto 100px;
}
.banner-row a {
  display: block;
  width: 100%;
}
.banner-row img {
  width: 100%;
  height: auto;

}
.footer {
  background: #F87A11;
  color: #fff;
  padding: 48px 0 0 0;
  margin: 0 20px;
  border-radius: 10px 10px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 0 auto;
  padding-bottom: 32px;
}
.footer-block {
  min-width: 320px;
  text-align: left;
}
.footer-title {
  font-size: clamp(1.6rem, 5.33vw, 2rem);
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.footer-content{
  font-size: clamp(1.3rem, 4.27vw, 1.6rem);
}
.footer-copyright {
  text-align: center;
  color: #fff8;
  font-size: 14px;
  padding: 18px 0 12px 0;

}
@media screen and (min-width: 751px) {

}
@media screen and (max-width: 750px) {
  .banner-row {
    flex-direction: column;
    gap: 18px;
    padding: 18px 0 40px 0;
    max-width: 90%;
  }
  .banner-row img {
 
  }
  .footer{
    margin: 0;
  }
  .footer-inner {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding: 18px 15px;
  }
  .footer-block {
    min-width: 0;
    width: 100%;
    text-align: left;
  }
}

/* 以下モーダル */
.event-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.event-modal.open {
  display: flex;
}
.event-modal-wrapper {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1000px;
}
.event-modal-content {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 120px);
}
.event-modal-content-inner {
  overflow-y: auto;
  flex: 1;
  min-height: 0;

}
/* カスタムスクロールバー */
.event-modal-content-inner::-webkit-scrollbar {
  width: 6px;
}
.event-modal-content-inner::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.event-modal-content-inner::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 3px;
}
.event-modal-content-inner::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}
.event-modal-close {
  position: absolute;
  right: 0;
  top: -50px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: all 0.2s ease;
  line-height: 1;
}
.event-modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.event-modal-header {
  display: flex;
  gap: 24px;
  /* align-items: flex-start; */
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
}
.event-modal-header > div {
  position: relative;
  flex: 1;
}
.event-modal-img {
  width: 300px;
  height: auto;
  object-fit: cover;
  background: #f8f9fa;
  flex-shrink: 0;
  aspect-ratio: 9 / 5;
}
.event-modal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px 0;
  font-size: 15px;
  border-radius: 8px;
  overflow: hidden;
}
.event-modal-header .card-desc{
  margin-top: 0;
}
.event-modal-table th,
.event-modal-table td {
  border: 1px solid #e5e7eb;
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
.event-modal-table th {
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
  width: 160px;
  font-weight: bold;
  color: #374151;
  font-size: 14px;
}
.event-modal-table td {
  background: #fff;
  color: #111827;
}
.event-modal-table tr:nth-child(even) td {
  background: #fafbfc;
}
.event-modal-btn {
  display: block;
  width: 90%;
  max-width: 500px;
  background: #F87A11;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 12px;
  padding: 18px 32px;
  text-decoration: none;
  margin: 32px auto 0;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.event-modal-btn:active {
  transform: translateY(0);
}
.event-modal .date {
  font-size: 50px;
  font-size: clamp(2.4rem, 3.91vw, 5rem);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(255, 136, 0, 0.1);
}
.event-modal .date span {
  font-size: 20px;
  font-size: clamp(1.3rem, 1.56vw, 2rem);
  font-weight: bold;
  margin-left: -8px;
  color: #666;
}

  /* モーダルのレスポンシブ対応 */
  @media screen and (max-width: 750px) {
    .event-modal {
      padding: 15px;
    }
    .event-modal-wrapper {
      width:100%;
    }
    .event-modal-content {
      width: 100%;
      padding: 24px 15px;
      border-radius: 12px;
      max-height: calc(100vh - 100px);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .event-modal-content-inner {
      padding-right: 2px;
      margin-right: -2px;
      flex: 1;
      min-height: 0;
    }
    .event-modal-close {
      right: 0;
      top: -6.5%;
      width: 30px;
      height: 30px;
    }
    .event-modal-header {
      flex-direction: column;
      gap: 16px;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    .event-modal-img {
      width: 100%;
      height: 180px;
    }
    .event-modal .date {
      font-size: 32px;
    }
    .event-modal .date span {
      font-size: 18px;
    }
    .event-modal-table th {
      width: 100px;
      font-size: 13px;
      padding: 12px 16px;
    }
    .event-modal-table td {
      padding: 12px 16px;
      font-size: 14px;
    }
    .event-modal-btn {
      width: 100%;
      padding: 16px 24px;
      font-size: 16px;
      font-size: clamp(1.3rem, 4.27vw, 1.6rem);
    }
    .event-modal-header .card-desc{
      margin-bottom: 20px;
    }
  }

  /* ナビゲーション */
.main-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  margin-bottom: 20px;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  height: 40px;
  width: auto;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background 0.2s;
}
.nav-menu a:hover {
  background: #f5f5f5;
}
.page-title {
  text-align: center;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #333;
  margin: 40px 0;
  font-weight: bold;
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
  デバイス表示非表示
  /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
  @media screen and (min-width:751px) {
    .sp {
      display: none !important;
    }
    a[href*="tel:"] {
      pointer-events: none;
      cursor: default;
      text-decoration: none;
    }
  }
  @media screen and (max-width: 750px) {
    .pc {
      display: none !important;
    }
  }

/* news-list スタイル */
.other-section {
  margin-top: 110px;
  margin-bottom: 60px;
}
.other-main-title {
  text-align: center;
  margin-bottom: 40px;
}
.other-main-title img {
  width: 35%;
  max-width: 350px;
  display: inline-block;
}

/* other-btn-wrap とother-btnのスタイル */
.other-btn-wrap {
  text-align: right;
  margin-top: 45px;
}

.other-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #F87A11;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-size: clamp(1.2rem, 1.09vw, 1.4rem);
  font-weight: bold;
  padding: 12px 50px 12px 30px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  position: relative;

}
.other-btn::after {
  content: '';
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  right: 10px;
}

.other-btn::before {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #F87A11;
  border-right: 2px solid #F87A11;
  z-index: 2;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.news-list-item {
  border-bottom: 1px solid #CCCCCC;
}
.news-list-item a {
  display: flex;
  padding: 18px 0;
  text-decoration: none;
  gap: 40px;
}

.news-list-info {
  width: 110px;
}
.news-list-date {
  font-size: 18px;
  font-size: clamp(1.2rem, 1.41vw, 1.8rem);
  color: #F87A11;
  font-weight: bold;
}

.news-list-title {
  font-size: 18px;
  font-size: clamp(1.2rem, 1.41vw, 1.8rem);
  color: #333;
  line-height: 1.5;
  /* 49文字程度で省略表示 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* フォールバック：古いブラウザ対応 */
  max-height: 3em;
  word-wrap: break-word;
  width: calc(100% - 40px - 110px);
    text-align: left;
    position: relative;
    padding-right: 40px;
}
.news-list-title::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #F87A11;
  border-right: 2px solid #F87A11;
  transform: rotate(45deg);
  box-sizing: border-box;
}
/* レスポンシブ対応 */
@media screen and (max-width: 750px) {
  .other-section {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .other-main-title {
    margin-bottom: 10px;
}
  .other-main-title img {
    width: 60%;
  }
  .other-btn-wrap {
    margin-top: 20px;
  }
  .other-btn {
    font-size: 14px;
    gap: 10px;
  }

  .news-list-info {
    width: 100%;
  }
  .news-list-item a {
    padding: 15px;
    flex-direction: column;
    gap: 10px;
    position: relative;
  }
  .news-list-date {
    font-size: 15px;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    padding-right: 15px;
}
.news-list-item a ::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #F87A11;
  border-right: 2px solid #F87A11;
  transform: rotate(45deg);
  box-sizing: border-box;
}
  .news-list-title {
    font-size: 15px;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    -webkit-line-clamp: 3;
    max-height: 4.5em;
    width: 100%;
  }
  .news-list-title::after{
    display: none;
  }

}

