/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/* Header */
.header {
  background-color: #fff;
  border-bottom: 3px solid #f5f5f5 !important;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* Logo */
.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Navigation and Right Group Container */
.nav-and-right {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

/* Navigation */
.nav {
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0066cc;
}

/* Right group */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 999;
}

.lock-icon img {
  height: 30px;
  width: auto;
}

/* Login dropdown */
.login-dropdown {
  position: relative;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f9e6e8;
  color: #C00000;
  border: 2px solid #C00000;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 44px;
}

.login-btn:hover {
  background-color: #C00000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 0, 0, 0.3);
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  list-style: none;
  min-width: 150px;
  margin-top: 0;
  padding-top: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

.login-dropdown:hover .dropdown-menu,
.login-dropdown.active .dropdown-menu {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpStagger {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpElastic {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: #f5f5f5;
  color: #C00000;
}


/* ==============================
   LPページ
============================== */

/* FV Section */
.fv {
  background-color: #fff;
  padding: 10px 0;
}

.lp-fv-sec {}

.lead-text-area {
  background-color: transparent;
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

.results-text {
  margin-bottom: 0px !important;
  padding-bottom: 20px;
  padding-top: 20px;
}

.fv-subtitle {
  font-size: 2.1rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 800;
  background-color: rgba(192, 0, 0, 0.1);
  padding: 10px 15px;
  display: inline-block;

}

.fv-title {
  font-size: 3.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}



/* FV Text */
.fv-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  font-weight: 800;
}



.lp-2nd-sec {
  text-align: center !important;
}



.lp-2nd-sec_h2 {
  text-align: center !important;
  border-left: none !important;
  color: #333 !important;
  font-size: 2.1rem !important;
  padding-top: 0px !important;
  margin-bottom: 20px !important;
}

.lp-3nd-sec_h2 {
  text-align: center !important;
  text-align: center !important;
  border-left: none !important;
  color: #333 !important;
  font-size: 4rem !important;
  margin-top: 10px;
  margin-bottom: 30px !important;
}


/* Issue Section */
.issue {
  background-color: #f5f5f5;
  padding: 30px 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.issue-container {
  width: 1200px;
  margin: 0 auto;
}

/* 3カラム構成 */
.issue-columns {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  justify-content: space-between;
}

/* カード */
.issue-card {
  background-color: white;
  border-radius: 8px;
  padding: 32px 60px;
  width: 33%;
  position: relative;
  min-height: 310px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* タイトル */
.issue-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #333;
}

/* リスト */
.issue-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.issue-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
  text-align: left;
}

.issue-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: bold;
}

/* イラスト */
.issue-image {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 150px;
  z-index: 10;
}

.issue-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ナビゲーション帯 */
.issue-nav {
  padding: 30px 0;
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: 5%;
  margin-right: 5%;
}

.issue-nav-item {
  background-color: #d9d9d9;
  border: none;
  padding: 12px 24px;
  flex: 1;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-align: center;
  font-weight: 600;
}



/* 説明文 */
.issue-description {
  text-align: center;
  font-size: 1rem;

  color: #333;
  line-height: 1.8;
  margin-top: 30px;
  font-weight: 400;
  background-color: #d9d9d9;
  padding: 30px;
  font-weight: 600;
}



/* ==============Game Change Section =========================*/
.change-game {

  padding-bottom: 0px;
  font-family: 'Noto Sans JP', sans-serif;
}

.change-game-container {
  width: 1200px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom, transparent 200px, rgba(192, 0, 0, 0.1) 1px);
}

/* Game Change Title */
.change-game-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  color: #C00000;
  margin-bottom: 10px;
}

.change-game-txt {
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Change Cards */
.change-cards {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  margin-right: 50px;
  margin-left: 50px;
  justify-content: space-between;
}

.change-card {
  flex: 1;
  border: 2px solid #C00000;

  padding: 24px;
  background-color: #fff;
  position: relative;
  min-height: 180px;
  text-align: center;
  overflow: hidden;
}

.change-ribbon {
  position: absolute;
  top: 45%;
  left: -20px;
  background-color: #C00000;
  color: white;
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  transform: rotate(-45deg);
  transform-origin: top left;
  height: 30px;
  width: 150px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.change-card p {
  font-size: 1rem;
  color: #333;
  font-weight: 700;
  line-height: 1.6;
}

.change-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem !important;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  margin-top: 20px;
}

.change-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Change Sections */
.change-section {
  margin-bottom: 0px;
  position: relative;

  padding: 40px;
  border-radius: 8px;
}

.change-number {
  position: absolute;
  left: 100px;
  top: -22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}

.change-number_2 {
  position: absolute;
  left: 120px;
  top: -50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;

}

.change-content {
  position: relative;
  z-index: 2;
}

.change-subtitle {
  font-size: 2.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.5;
  text-align: center;
}

.change-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.change-diagram {
  margin: 30px auto;
  text-align: center;
  background-color: #fff;
  width: 1000px;
  padding: 10px 20px;
}

.change-diagram img {
  width: 100%;
  max-width: 1000px;
  padding-top: 50px;
  padding-bottom: 50px;

  height: auto;
  display: inline-block;
}

/* Feature Blocks */
.change-features {
  display: flex;
  gap: 30px;

  justify-content: space-between;
}

.change-feature-block {
  flex: 1;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  background-color: #fff;
}

.change-feature-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  border: 2px solid #C00000;
  width: 200px;
  border-radius: 45px;
  margin: 0 auto 12px;
  /* Centers the block horizontally and sets bottom margin */
}

.change-feature-block p {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  font-weight: 700;
}


/*========== FLOWセクション =============*/

.flow-section {
  background-color: #fff;
  width: 1200px;
  padding-bottom: 40px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
}

.flow-container {
  width: 1200px;
  margin: 0 auto;
}

.flow-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #333;
  margin-bottom: 15px;
}

.flow-description {
  text-align: center;
  font-size: 1rem;
  color: #333;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.flow-images {
  max-width: 100%;
  width: 83%;
  margin: 10px auto;
  padding: 10px 10px;
  text-align: center;

}

.back-gray {
  background-color: #f2f2f2;
}

.flow-images img {
  width: 100%;
  height: auto;
  display: block;

}

/*============ sdgsセクション  ===========*/
.sdgs-container {
  width: 100%;
  margin-bottom: 0px;
  /* height: 50vh; を削除して以下に変更 */
  height: auto; 
  padding-top: 60px;    /* 上に余白を作る */
  padding-bottom: 60px; /* 下に余白を作り、ニュースとの重なりを物理的に防ぐ */
  background-color: #fff;
}

.sdgs-inner {
  width: 1200px;
  margin: 0 auto;

  z-index: 1;
}

.sdgs-line {
  width: 100%;
}

.sdgs-title {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
  margin-top: 20px;
}

.sdgs-content {
  display: flex;
  margin-left: 30px;
  margin-right: 30px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin: 20px 50px;
}

.sdgs-left {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sdgs-mockup {
  width: 400px;
  flex-shrink: 0;
}

.sdgs-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.sdgs-icons {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sdgs-icon-item {
  width: 100px;
  flex-shrink: 0;
}

/* モバイル：SDGs アイコンを横並びに */
@media (max-width: 768px) {
  .sdgs-icons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .sdgs-icon-item {
    width: 80px;
  }
}

.sdgs-icon-item img {
  width: 100%;
  height: auto;
  display: block;
}

.sdgs-right {
  flex: 1;
  padding-top: 10px;
  text-align: left;
}

.sdgs-summary {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
}

.sdgs-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.sdgs-description p {
  margin: 0 0 12px 0;
}

.sdgs-description p:last-child {
  margin-bottom: 0;
}




.abc-section {
  margin-top: 2rem;
  padding-top: 0px;

}

.abc-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #333;
  margin-bottom: 40px;
  background-color: #fff3f3;
  padding: 15px;
  border: 2px solid #C00000;
  border-radius: 8px;
}

.features-grid {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  margin-right: 20px;
  margin-left: 20px;
}

.feature-item {
  flex: 1;
  border: 4.59px solid #C00000;
  border-radius: 50px;
  padding: 10px 20px 10px 20px;
  background-color: #fff;

}

.feature-title {
  width: 220px;
  background-color: #FAE9EA;
  padding: 10px 12px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  border-radius: 25px;
  margin: 10px auto;
}

.feature-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-small {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

/* FV Section */
.fv {
  background-color: #fff;
  padding: 60px 0;
}

.fv-container {
  width: 1200px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* FV Left */
.fv-left {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fv-subtitle {
  font-size: 2.1rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 800;
  background-color: rgba(192, 0, 0, 0.1);
  padding: 10px 15px;
  display: inline-block;

}

.fv-title {
  font-size: 3.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* FV Icons */
.fv-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.fv-icon {
  width: 140px;
  height: auto;
  overflow: hidden;
}

.fv-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FV Text */
.fv-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  font-weight: 800;
}

/* FV Right */
.fv-right {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-right img {
  max-width: 100%;
  height: auto;
  padding-top: 100px;
}








/* ================= Hamburger Menu & Mobile Menu ================= */

/* ハンバーガーメニューボタン */
.hamburger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 6px;
  z-index: 1100;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ハンバーガーボタンがアクティブな時 */
.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* モーダルメニュー */
.mobile-menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.0);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.mobile-menu-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-content {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-color: white;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  z-index: 1051;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  opacity: 0;
  box-sizing: border-box;
}

.mobile-menu-modal.active .mobile-menu-content {
  animation: slideUpElastic 0.5s ease-out forwards;
}

.mobile-menu-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 16px 20px;
  border-bottom: none;
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1052;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.3s ease;
  font-weight: 300;
}

.modal-close:hover {
  color: #C00000;
}

.mobile-menu-nav {
  width: 100%;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-nav-link:active,
.mobile-nav-link:hover {
  background-color: #f5f5f5;
  color: #C00000;
}

.mobile-menu-login {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.mobile-login-dropdown {
  position: relative;
  display: inline-block;
}

.mobile-login-btn {
  background-color: #f9e6e8;
  color: #C00000;
  border: 2px solid #C00000;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 44px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-login-btn:hover,
.mobile-login-btn:active {
  background-color: #C00000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 0, 0, 0.3);
}

.mobile-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  list-style: none;
  min-width: 200px;
  padding: 8px 0 0 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  width: fit-content;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-dropdown-menu li {
  border-bottom: 1px solid #f0f0f0;
  opacity: 0;
}

.mobile-dropdown-menu li:last-child {
  border-bottom: none;
}

.mobile-dropdown-menu.active li {
  animation: slideUpStagger 0.4s ease forwards;
}

.mobile-dropdown-menu.active li:nth-child(1) {
  animation-delay: 0.05s;
}

.mobile-dropdown-menu.active li:nth-child(2) {
  animation-delay: 0.1s;
}

.mobile-dropdown-menu.active li:nth-child(3) {
  animation-delay: 0.15s;
}

.mobile-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.mobile-dropdown-menu a:hover {
  background-color: #f5f5f5;
  color: #C00000;
}

.mobile-dropdown-menu i.material-icons {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.news-filter {
  text-align: center;
  max-width: 1000px;
  margin: 1rem auto;
  padding-bottom: 50px;
  background-color: #fff;
}

.year-tabs,
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.category-tabs {
  border-bottom: 8px solid #4472C4;
  width: 100%;

}

.cat-tab {
  flex: 1;
  /* 均等に幅を取る */
  padding: 12px 0;
  border: none;
  background: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-right: 1px solid #333;
  /* タブの区切り線 */
}


.year-tab,
.cat-tab {
  border: none;
  background: #ffff;
  padding: 0.5rem 1rem;

  cursor: pointer;
  transition: all .2s ease;
}

.year-tab.active,
.cat-tab.active {
  background: #f2f2f2;
  color: #333;
}

.year-tab {
  border-right: 1px solid #333;
}


.custom_new-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin: 0 50px;
  text-align: left;
}

.news-item {
  border-bottom: 1px solid #eee;
  padding: 0.8rem 0;

  width: 100%;
}

.news-item a {
  display: flex !important;
  /* 横並びにする */
  align-items: center;
  /* 垂直方向の中央揃え */
  gap: 10px;
  /* 要素間の余白 */
  text-decoration: none;
  /* 下線消す */
  color: inherit;
  font-size: 1.1rem !important;
  margin-left: 50px;
  margin-right: 50px;

}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: #333;
}

.news-date {
  color: #333;
  margin-right: 50px;
  font-size: 1rem;
  font-weight: 500 !important;
}

.news-cat {
  display: inline-block;
  font-size: 0.75rem;
  color: #333;
  background: #f2f2f2;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  margin-right: 50px;
  width: 110px;
  font-weight: 500;
}

/* --- ニュースカテゴリの色分け --- */
.news-cat.press {
  background: #DEEBF7;
  color: #000;
}

.news-cat.info {
  background: #BDD7EE;
  color: #000;
}

.news-cat.media {
  background: #9DC3E6;
  color: #000;
}

.news-cat.event {
  background: #2E75B6;
  color: #fff;
}


.news-title {
  font-size: 1.1rem !important;
  font-weight: 500;
  color: #222;
  transition: color 0.2s ease;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.news-item:hover {
  color: #0073aa;
}





/* =======================LPフッター================== */

.lp-footer {
  background-color: #c00000;
  /* 赤背景 */
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  font-size: 0.9rem;
}

.lp-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2rem;
  margin: 0 0 1rem;
  padding: 0;
  padding-bottom: 100px;
  list-style: none;
}

.lp-footer__nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.lp-footer__nav a:hover {
  text-decoration: underline;
}

.lp-footer__copy {
  font-weight: 600;
  margin: 0;
}



.sp-br {
  display: none;
}









/* ==========================================




レスポンシブ対応 




=============================================== */



/* -----------------------------------*
タブレット表示

---------------*/

/* タブレット・スマホ表示 */
@media (max-width: 768px) {

  .sp-br {
    display: block !important;
  }

  .header-container {
    width: 100% !important;
    padding: 12px 16px;

    gap: 16px;
  }

  /* ナビゲーション非表示 */
  .nav-and-right {
    display: none !important;
  }

  /* ハンバーガーメニュー表示 */
  .hamburger-menu {
    display: flex;
  }

  .logo img {
    height: 40px;
  }

  /* モーダルメニューのサイズ調整 */
  .mobile-menu-content {
    width: 100%;
    max-width: 100%;
  }


  /* ==============================
   LPページ
============================== */

  /* FV Section */
  .fv {
    background-color: #fff;
    padding: 10px 0;
  }

  .lp-fv-sec {
    padding-top: 0px !important;
    padding-bottom: 20px !important;
  }

  .fv-container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    align-items: center;
    justify-content: space-between !important;
  }

  /* FV Left */
  .fv-left {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .fv-subtitle {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 800;
    background-color: rgba(192, 0, 0, 0.1);
    padding: 10px 15px;
    display: inline-block;

  }

  .fv-title {
    font-size: 3.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  /* FV Icons */
  .fv-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }

  .fv-icon {
    width: 140px;
    height: auto;
    overflow: hidden;
  }

  .fv-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* FV Text */
  .fv-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    font-weight: 400;
  }

  /* FV Right */
  .fv-right {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fv-right img {
    max-width: 100%;
    padding-top: 50px;
    height: auto;
  }

  .lp-2nd-sec {
    text-align: center !important;
  }

  .lp-2nd-sec_h2 {
    text-align: center !important;
    border-left: none !important;
    color: #333 !important;
    font-size: 4rem !important;
  }

  .case_h2 {
    font-size: 3rem !important;
  }




  /* Issue Section */
  .issue {
    background-color: #f5f5f5;
    padding: 30px 0;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .issue-container {
    width: 100%;
    margin: 0 auto;
  }

  /* 3カラム構成 */
  .issue-columns {
    display: block;
    align-items: center;
    /* ← 中央寄せ */
    margin-bottom: 50px;
    justify-self: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  /* カード */
  .issue-card {
    background-color: white;
    border-radius: 8px;
    padding: 32px 60px;
    width: 100%;
    position: relative;
    min-height: 310px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
  }

  /* タイトル */
  .issue-title {

    font-size: 2rem;

  }

  /* リスト */
  .issue-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .issue-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
    text-align: left;
  }

  .issue-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
  }

  /* イラスト */
  .issue-image {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 150px;
    z-index: 10;
  }

  .issue-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* ナビゲーション帯 */
  .issue-nav {
    padding: 30px 0;
    margin-top: 50px;
    display: block;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 5%;
    margin-right: 5%;
  }

  .issue-nav-item {
    background-color: #d9d9d9;
    border: none;
    padding: 12px 24px;
    margin-bottom: 10px;
    flex: 1;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;

  }



  /* 説明文 */
  .issue-description {
    text-align: left;
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-top: 30px;
    font-weight: 400;
    background-color: #d9d9d9;
    padding: 30px;
    font-weight: 600;
  }



  /* ==============Game Change Section =========================*/
  .change-game {

    padding-bottom: 0px;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .change-game-container {
    width: 100%;

  }

  /* Game Change Title */
  .change-game-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    color: #C00000;
    margin-bottom: 10px;
  }

  .change-game-txt {
    text-align: left;
    font-weight: 700;
    margin-bottom: 40px;
    margin-left: 15px;
    margin-right: 15px;
  }

  /* Change Cards */
  .change-cards {
    display: block;
    gap: 30px;
    margin-bottom: 60px;
    margin-right: 50px;
    margin-left: 50px;
    justify-content: space-between;
  }

  .change-card {
    flex: 1;
    border: 2px solid #C00000;

    padding: 24px;
    background-color: #fff;
    position: relative;
    min-height: 180px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .change-ribbon {
    position: absolute;
    top: 45%;
    left: -20px;
    background-color: #C00000;
    color: white;
    padding: 0;
    font-size: 1rem;

    height: 30px;
    width: 180px;

  }

  .change-card p {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
  }

  .change-card-title {
    font-size: 2rem !important;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 20px;
  }

  .change-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }

  /* Change Sections */
  .change-section {
    margin-bottom: 0px;
    position: relative;

    padding: 40px;
    border-radius: 8px;
  }

  .change-number {
    position: absolute;
    left: 100px;
    top: -22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14rem;
    font-weight: 700;
    color: #fff;
    z-index: 1;
  }

  .change-number_2 {
    position: absolute;
    left: 120px;
    top: -50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14rem;
    font-weight: 700;
    color: #fff;
    z-index: 1;

  }

  .change-content {
    position: relative;
    z-index: 2;
  }

  .change-subtitle {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .change-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
  }

  .change-diagram {
    margin: 30px auto;
    text-align: center;
    background-color: #fff;
    width: 100%;
    padding: 10px 20px;
  }

  .change-diagram img {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;

    height: auto;
    display: inline-block;
  }

  /* Feature Blocks */
  .change-features {
    display: block;
    gap: 30px;

    justify-content: space-between;
  }

  .change-feature-block {
    flex: 1;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    background-color: #fff;
  }

  .change-feature-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    border: 2px solid #C00000;
    width: 100%;
    border-radius: 45px;
    margin: 0 auto 12px;
    /* Centers the block horizontally and sets bottom margin */
  }

  .change-feature-block p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-weight: 700;
    text-align: left;
  }


  /*========== FLOWセクション =============*/

  .flow-section {
    background-color: #fff;
    width: 100%;
    padding-bottom: 80px;
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .flow-container {
    width: 100%;
    margin: 0 auto;
  }

  .flow-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 15px;
  }

  .flow-description {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }

  .flow-images {
    width: 100%;
    margin: 10px auto;
    padding: 10px 10px;
    text-align: center;

  }

  .back-gray {
    background-color: #f2f2f2;
  }

  .flow-images img {
    width: 100%;
    height: auto;
    display: block;

  }

  /*============ sdgsセクション  ===========*/

  .sdgs-inner {
    width: 100%;
    margin: 0 auto;

    z-index: 1;
  }

  .sdgs-line {
    width: 100%;
  }

  .sdgs-title {
    font-size: 3rem;
    margin-bottom: 40px;
    margin-top: 20px;
  }

/* 親コンテナの高さ制限を完全に解除し、中身に合わせる */
.sdgs-container {
    height: auto !important;
	width:100%;
    min-height: 0 !important;
    display: block !important;
    overflow: visible !important; /* はみ出しを許容せず、枠を広げる */
	padding-top:10px;
    padding-bottom: 10px !important; /* 下に安全な余白を作る */
}

/* 中身のレイアウトを強制的に正常化 */
.sdgs-content {
    display: block !important;
	width:90%;
	margin:0 auto;
    flex-wrap: wrap !important; /* 縦幅が狭くなった時に要素を逃がす */
    height: auto !important;
}

/* 画像（ノートPC等）が下のブロックを突き抜けないようにする */
.sdgs-left, .sdgs-mockup {
    height: auto !important;
    position: relative !important; /* 浮かないように固定 */
}

/* ニュースセクションとの間に強制的に距離を作る */
.sdgs-container + * {
    clear: both !important;
    margin-top: 10px !important;
}

  .sdgs-mockup {
    width: 100%;
    flex-shrink: 0;
  }

  .sdgs-mockup img {
    width: 100%;
    height: auto;
    display: block;
  }

  .sdgs-icons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .sdgs-icon-item {
    width: 40%;
    flex-shrink: 0;
  }



  .sdgs-icon-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  .sdgs-right {
    flex: 1;
    padding-top: 10px;
    text-align: left;
  }

  .sdgs-summary {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .sdgs-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    letter-spacing: 0.5px;
  }

  .sdgs-description p {
    margin: 0 0 12px 0;
  }

  .sdgs-description p:last-child {
    margin-bottom: 0;
  }




  .abc-section {
    margin-top: 0px;
    padding-top: 0px;

  }

  .abc-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    background-color: #fff3f3;
    padding: 15px;
    border: 2px solid #C00000;
    border-radius: 8px;
  }

  .features-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    margin-right: 20px;
    margin-left: 20px;
  }

  .feature-item {
    flex: 1;
    border: 4.59px solid #C00000;
    border-radius: 50px;
    padding: 10px 20px 10px 20px;
    background-color: #fff;

  }

  .feature-title {
    width: 220px;
    background-color: #FAE9EA;
    padding: 10px 12px;
    font-size: 1.375rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    border-radius: 25px;
    margin: 20px auto;
  }

  .feature-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .feature-small {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
  }

  /* FV Section */
  .fv {
    background-color: #fff;

  }















  /* ================= Hamburger Menu & Mobile Menu ================= */

  /* ハンバーガーメニューボタン */


  .hamburger-line {
    width: 24px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* ハンバーガーボタンがアクティブな時 */
  .hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* モーダルメニュー */
  .mobile-menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.0);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
  }

  .mobile-menu-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-content {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background-color: white;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    z-index: 1051;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    opacity: 0;
    box-sizing: border-box;
  }

  .mobile-menu-modal.active .mobile-menu-content {
    animation: slideUpElastic 0.5s ease-out forwards;
  }

  .mobile-menu-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 16px 20px;
    border-bottom: none;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1052;
  }

  .modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.3s ease;
    font-weight: 300;
  }

  .modal-close:hover {
    color: #C00000;
  }

  .mobile-menu-nav {
    width: 100%;
  }

  .mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .mobile-nav-link {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .mobile-nav-link:active,
  .mobile-nav-link:hover {
    background-color: #f5f5f5;
    color: #C00000;
  }

  .mobile-menu-login {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .mobile-login-dropdown {
    position: relative;
    display: inline-block;
  }

  .mobile-login-btn {
    background-color: #f9e6e8;
    color: #C00000;
    border: 2px solid #C00000;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 44px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-login-btn:hover,
  .mobile-login-btn:active {
    background-color: #C00000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 0, 0, 0.3);
  }

  .mobile-dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    list-style: none;
    min-width: 200px;
    padding: 8px 0 0 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    width: fit-content;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
    opacity: 0;
  }

  .mobile-dropdown-menu li:last-child {
    border-bottom: none;
  }

  .mobile-dropdown-menu.active li {
    animation: slideUpStagger 0.4s ease forwards;
  }

  .mobile-dropdown-menu.active li:nth-child(1) {
    animation-delay: 0.05s;
  }

  .mobile-dropdown-menu.active li:nth-child(2) {
    animation-delay: 0.1s;
  }

  .mobile-dropdown-menu.active li:nth-child(3) {
    animation-delay: 0.15s;
  }

  .mobile-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }

  .mobile-dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #C00000;
  }

  .mobile-dropdown-menu i.material-icons {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }




  /* =======================LPフッター================== */

  .lp-footer {
    background-color: #c00000;
    /* 赤背景 */
    color: #fff;
    text-align: center;
    padding: 2rem 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .lp-footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem 2rem;
    margin: 0 0 1rem;
    padding: 0;
    padding-bottom: 50px;
    list-style: none;
  }

  .lp-footer__nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }

  .lp-footer__nav a:hover {
    text-decoration: underline;
  }

  .lp-footer__copy {
    font-weight: 600;
    margin: 0;
  }

  /*=============================

ニュースページ

===============================*/

  .news-filter {
    text-align: center;
    max-width: 100%;
    margin: 2rem auto;
    background-color: #fff;
    margin-left: 15px;
    margin-right: 15px;
  }

  .year-tabs,
  .category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .category-tabs {
    border-bottom: 8px solid #4472C4;
    width: 100%;

  }

  .cat-tab {
    flex: 1;
    /* 均等に幅を取る */
    padding: 1px 0;
    border: none;
    background: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    border-right: 1px solid #333;
    /* タブの区切り線 */
  }


  .year-tab,
  .cat-tab {
    border: none;
    background: #ffff;
    padding: 0.5rem 0rem;

    cursor: pointer;
    transition: all .2s ease;
  }

  .year-tab.active,
  .cat-tab.active {
    background: #f2f2f2;
    color: #333;
  }

  .year-tab {
    border-right: 1px solid #333;
  }


  .custom_new-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin: 0 50px;
    text-align: left;
  }

  .news-item {
    border-bottom: 1px solid #eee;
    padding: 0.8rem 0;

    width: 100%;
  }

  .news-item a {
    display: block !important;
    /* 横並びにする */
    align-items: center;
    /* 垂直方向の中央揃え */
    gap: 10px;
    /* 要素間の余白 */
    text-decoration: none;
    /* 下線消す */
    color: inherit;
    font-size: 1.1rem !important;
    margin-left: 5px;
    margin-right: 5px;

  }

  .news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #333;
    width: 300px;
  }

  .news-date {
    color: #333;
    margin-right: 5px;
    font-size: 0.8rem;
    font-weight: 500 !important;
  }

  .news-cat {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    margin-right: 5px;
    width: 120px;
    font-weight: 500;
  }

  .news-title {
    font-size: 0.9rem !important;
    font-weight: 500;
    color: #222;
    transition: color 0.2s ease;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    text-align: left;
  }

  .news-item:hover {
    color: #0073aa;
  }




}
















/* スマートフォン（小） */
@media (max-width: 480px) {
  .header-container {
    padding: 10px 12px;
  }

  .logo img {
    height: 35px;
  }

  .mobile-menu-content {
    font-size: 14px;
  }

  .mobile-nav-link {
    padding: 14px 16px;
    font-size: 14px;
  }

  .modal-close {
    font-size: 28px;
  }

  .change-ribbon {
    position: absolute;
    top: 45%;
    left: -30px;
    background-color: #C00000;
    color: white;
    padding: 0;
    font-size: 1rem;

    height: 30px;
    width: 150px;

  }

  .change-cards {
    display: block;
    gap: 30px;
    margin-bottom: 60px;
    margin-right: 15px;
    margin-left: 15px;
    justify-content: space-between;
  }


  .change-subtitle {
    font-size: 1.7rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.5;
    text-align: center;
  }




  .change-section {
    margin-bottom: 0px;
    position: relative;
    padding: 15px;
    border-radius: 8px;
  }











}