@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

/***** common style *****/
@media (max-width: 1279px) {
  .pc-visibility {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .tb-visibility {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .tb-visibility {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-tb-visibility {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .tb-sp-visibility {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp-visibility {
    display: none !important;
  }
}
body {
  color: #333;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}

a {
  color: inherit;
  text-decoration: none;
}

.btn-arrow-white {
  display: inline-flex;
  width: auto;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  border: 2px solid #C8000D;
  border-radius: 62px;
  background-color: #FFFFFF;
  color: #C8000D;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-arrow-white::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("/assets/image/common/arrow-red.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.btn-arrow-white:hover {
  background-color: #C8000D;
  color: #FFFFFF;
}
.btn-arrow-white:hover::before {
  background-image: url("/assets/image/common/arrow-white.svg");
}
@media (max-width: 767px) {
  .btn-arrow-white {
    padding: 14px 28px;
    min-width: auto;
    width: auto;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .btn-arrow-white::before {
    width: 16px;
    height: 16px;
  }
}

.btn-arrow-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 40px;
  min-width: 240px;
  background-color: #C8000D;
  color: #fff;
  border-radius: 52px;
  border: none;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}
.btn-arrow-primary::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("/assets/image/common/arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .btn-arrow-primary {
    padding: 16px 28px;
    min-width: auto;
    width: auto;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .btn-arrow-primary::before {
    width: 16px;
    height: 16px;
  }
}
.btn-arrow-primary:hover {
  opacity: 0.8;
}

#header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
#header .header-content {
  height: 120px;
  margin: 0 auto;
  position: relative;
  width: 1240px;
}
@media (max-width: 1440px) {
  #header .header-content {
    height: 8.3333333333vw;
    width: 86.1111111111vw;
  }
}
@media (max-width: 767px) {
  #header .header-content {
    height: 72px;
    width: 100%;
  }
}
#header .logo-area {
  height: 55px;
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 0;
  margin: auto 0;
}
@media (max-width: 1440px) {
  #header .logo-area {
    height: 3.8194444444vw;
    top: 0.9722222222vw;
  }
}
@media (max-width: 767px) {
  #header .logo-area {
    bottom: auto;
    height: auto;
    left: 20px;
    top: 14px;
  }
}
#header .logo-area .logo-main {
  display: block;
  width: 320px;
}
@media (max-width: 1440px) {
  #header .logo-area .logo-main {
    width: 22.2222222222vw;
  }
}
@media (max-width: 767px) {
  #header .logo-area .logo-main {
    width: 244px;
  }
}
#header .logo-area .logo-main img {
  vertical-align: top;
  width: 100%;
}
#header .btn-nav {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
#header .btn-nav.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
#header .btn-nav.is-open span:nth-child(2) {
  opacity: 0;
}
#header .btn-nav.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
#header .btn-nav.is-open + .nav-content {
  opacity: 1;
  visibility: visible;
}
#header .btn-nav span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #0C438A;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}
@media (max-width: 767px) {
  #header .nav-content {
    background: #fff;
    bottom: 0;
    overflow: scroll;
    position: fixed;
    left: 0;
    right: 0;
    top: 72px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    margin: auto 0;
    z-index: 1;
  }
}
#header .nav-area {
  position: absolute;
  right: 0;
  bottom: 20px;
}
@media (max-width: 1440px) {
  #header .nav-area {
    bottom: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #header .nav-area {
    position: static;
  }
}
#header .nav-area .nav-list {
  display: flex;
  gap: 28px;
}
@media (max-width: 1440px) {
  #header .nav-area .nav-list {
    gap: 1.9444444444vw;
  }
}
@media (max-width: 767px) {
  #header .nav-area .nav-list {
    display: block;
  }
}
#header .nav-area .nav-list > li {
  color: var(--black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
}
@media (max-width: 1440px) {
  #header .nav-area .nav-list > li {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  #header .nav-area .nav-list > li {
    border-top: 1px solid #ccc;
    color: var(--ogc-main, #0C438A);
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 22.4px */
    letter-spacing: 0.56px;
    text-align: left;
  }
}
#header .nav-area .nav-list > li > a {
  position: relative;
  transition: all 0.3s ease;
}
#header .nav-area .nav-list > li > a .icon-arrow {
  display: none;
}
@media (max-width: 767px) {
  #header .nav-area .nav-list > li > a {
    display: block;
    padding: 16px 20px;
  }
  #header .nav-area .nav-list > li > a .icon-arrow {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
  }
}
#header .nav-area .nav-list > li > a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
#header .nav-area .nav-list .detail-list {
  padding-left: 40px;
  display: flex;
  flex-wrap: wrap;
}
#header .nav-area .nav-list .detail-list > li {
  width: 50%;
}
#header .nav-area .nav-list .detail-list > li > a {
  color: var(--ogc-main, #0C438A);
  display: block;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.56px;
  padding: 14px 20px 14px 0;
}
#header .btn-area {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  #header .btn-area {
    border-top: 1px solid #ccc;
    position: static;
  }
}
#header .btn-area .btn-list {
  align-items: top;
  display: flex;
  gap: 20px;
}
@media (max-width: 1440px) {
  #header .btn-area .btn-list {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #header .btn-area .btn-list {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }
}
#header .btn-area .btn-list > li a {
  align-items: center;
  justify-content: center;
  border-radius: 0 0 8px 8px;
  display: inline-flex;
  padding: 12px 20px;
  gap: 10px;
  color: var(--white, #FFF);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.64px;
  transition: all 0.3s ease;
}
#header .btn-area .btn-list > li a:hover {
  opacity: 0.8;
}
@media (max-width: 1440px) {
  #header .btn-area .btn-list > li a {
    font-size: 1.1111111111vw;
    padding: 0.8333333333vw 1.3888888889vw;
    gap: 0.6944444444vw;
  }
}
@media (max-width: 767px) {
  #header .btn-area .btn-list > li a {
    border-radius: 8px;
    box-sizing: border-box;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.64px;
    padding: 16px 20px;
    width: 100%;
  }
}
@media (max-width: 1440px) {
  #header .btn-area .btn-list > li a svg {
    width: 1.6666666667vw !important;
    height: 1.6666666667vw !important;
  }
}
@media (max-width: 767px) {
  #header .btn-area .btn-list > li a svg {
    width: 24px !important;
    height: 24px !important;
  }
}
#header .btn-area .btn-list > li .btn-entry {
  background: #C8000D;
}
#header .btn-area .btn-list > li .btn-login {
  background: #0C438A;
}
#header .btn-area .btn-list > li .btn-contact {
  background: #333;
}

#page-top {
  padding-top: 120px;
}
@media (max-width: 1440px) {
  #page-top {
    padding-top: 8.3333333333vw;
  }
}
@media (max-width: 767px) {
  #page-top {
    padding-top: 72px;
  }
}

#page-news {
  padding-top: 120px;
}
@media (max-width: 1440px) {
  #page-news {
    padding-top: 8.3333333333vw;
  }
}
@media (max-width: 767px) {
  #page-news {
    padding-top: 72px;
  }
}

#main-visual {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  #main-visual {
    height: 43.0555555556vw;
  }
}
@media (max-width: 767px) {
  #main-visual {
    height: auto;
    min-height: 400px;
  }
}
#main-visual .main-visual-content {
  background-image: url("/wp-content/themes/ogc-theme/assets/image/top/bg-main.jpg");
  background-size: 1440px;
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  #main-visual .main-visual-content {
    background-size: 100%;
  }
}
@media (max-width: 767px) {
  #main-visual .main-visual-content {
    background-image: url("/wp-content/themes/ogc-theme/assets/image/top/bg-main-sp.png");
    background-size: cover;
    background-position: center;
    min-height: 123.0769230769vw;
  }
}
#main-visual .main-visual-text {
  position: absolute;
  left: 914px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 462px;
}
@media (max-width: 1440px) {
  #main-visual .main-visual-text {
    left: 63.4722222222vw;
    width: 32.0833333333vw;
    gap: 3.3333333333vw;
  }
}
@media (max-width: 767px) {
  #main-visual .main-visual-text {
    position: relative;
    left: 50%;
    top: 40px;
    transform: translateX(-50%) translateY(-50%);
    width: calc(100% - 32px);
    gap: 20px;
    text-align: center;
  }
}
#main-visual .main-visual-text .main-visual-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1.2;
  color: #0C438A;
  letter-spacing: 2.56px;
  margin: 0;
}
@media (max-width: 1440px) {
  #main-visual .main-visual-text .main-visual-title {
    font-size: 4.4444444444vw;
    letter-spacing: 0.1777777778vw;
  }
}
@media (max-width: 1279px) {
  #main-visual .main-visual-text .main-visual-title {
    font-size: 48px;
    letter-spacing: 1.92px;
  }
}
@media (max-width: 767px) {
  #main-visual .main-visual-text .main-visual-title {
    font-size: 36px;
    letter-spacing: 1.44px;
    line-height: 1.6;
  }
}
#main-visual .main-visual-text .main-visual-title span {
  display: block;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #main-visual .main-visual-text .main-visual-title span {
    white-space: normal;
  }
}
#main-visual .main-visual-text .main-visual-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.6;
  color: #333333;
  letter-spacing: 1.28px;
  margin: 0;
}
@media (max-width: 1440px) {
  #main-visual .main-visual-text .main-visual-subtitle {
    font-size: 2.2222222222vw;
    letter-spacing: 0.0888888889vw;
  }
}
@media (max-width: 1279px) {
  #main-visual .main-visual-text .main-visual-subtitle {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}
@media (max-width: 767px) {
  #main-visual .main-visual-text .main-visual-subtitle {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}
#main-visual .main-visual-text .main-visual-subtitle span {
  display: block;
}

#news {
  background-color: #F1F3F5;
  padding: 100px 0;
  width: 100%;
}
@media (max-width: 1440px) {
  #news {
    padding: 6.9444444444vw 0;
  }
}
@media (max-width: 767px) {
  #news {
    padding: 40px 0;
  }
}
#news .news-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: 0 100px;
}
@media (max-width: 1440px) {
  #news .news-content {
    max-width: 100vw;
    gap: 5.5555555556vw;
    padding: 0 6.9444444444vw;
  }
}
@media (max-width: 767px) {
  #news .news-content {
    flex-direction: column;
    gap: 40px;
    display: block;
    align-items: center;
    padding: 0 16px;
  }
}
#news .news-header {
  flex-shrink: 0;
}
#news .news-title-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 1440px) {
  #news .news-title-section {
    gap: 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #news .news-title-section {
    width: 100%;
    display: block;
    margin-bottom: 40px;
  }
}
#news .section-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1;
  margin: 0;
}
@media (max-width: 1440px) {
  #news .section-title {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #news .section-title {
    gap: 8px;
    width: 100%;
  }
}
#news .section-title .section-title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #333333;
  letter-spacing: 1.92px;
}
@media (max-width: 1440px) {
  #news .section-title .section-title-ja {
    font-size: 3.3333333333vw;
    letter-spacing: 0.1333333333vw;
  }
}
@media (max-width: 1279px) {
  #news .section-title .section-title-ja {
    font-size: 36px;
    letter-spacing: 1.44px;
  }
}
@media (max-width: 767px) {
  #news .section-title .section-title-ja {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}
#news .section-title .section-title-en {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #C8000D;
  letter-spacing: 0.96px;
}
@media (max-width: 1440px) {
  #news .section-title .section-title-en {
    font-size: 1.6666666667vw;
    letter-spacing: 0.0666666667vw;
  }
}
@media (max-width: 1279px) {
  #news .section-title .section-title-en {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}
@media (max-width: 767px) {
  #news .section-title .section-title-en {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
#news .btn-more {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid #C8000D;
  border-radius: 52px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 197px;
}
@media (max-width: 1440px) {
  #news .btn-more {
    padding: 0.8333333333vw 1.3888888889vw;
    border-radius: 3.6111111111vw;
    gap: 0.6944444444vw;
    width: 13.6805555556vw;
  }
}
@media (max-width: 767px) {
  #news .btn-more {
    box-sizing: border-box;
    padding: 16px 28px;
    border-radius: 54px;
    gap: 10px;
    display: flex;
    width: auto;
    margin: 40px auto 0;
    width: 164px;
    white-space: nowrap;
  }
}
#news .btn-more .icon-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #news .btn-more .icon-arrow {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
@media (max-width: 767px) {
  #news .btn-more .icon-arrow {
    width: 20px;
    height: 20px;
  }
}
#news .btn-more span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #C8000D;
  letter-spacing: 0.72px;
}
@media (max-width: 1440px) {
  #news .btn-more span {
    font-size: 1.25vw;
    letter-spacing: 0.05vw;
  }
}
@media (max-width: 1279px) {
  #news .btn-more span {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
@media (max-width: 767px) {
  #news .btn-more span {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#news .btn-more:hover {
  background-color: #C8000D;
}
#news .btn-more:hover span {
  color: #FFFFFF;
}
#news .btn-more:hover .icon-arrow path {
  fill: #FFFFFF;
}
#news .news-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}
@media (max-width: 1440px) {
  #news .news-list {
    gap: 1.9444444444vw;
  }
}
@media (max-width: 767px) {
  #news .news-list {
    width: 100%;
    gap: 20px;
  }
}
#news a {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 971px;
}
@media (max-width: 1440px) {
  #news a {
    gap: 1.3888888889vw;
    width: 67.4305555556vw;
  }
}
@media (max-width: 767px) {
  #news a {
    display: block;
    width: 100%;
  }
}
#news a:hover .news-date, #news a:hover .news-text {
  color: #0C438A;
}
#news .news-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.56px;
  white-space: nowrap;
  flex-shrink: 0;
  width: 120px;
}
@media (max-width: 767px) {
  #news .news-category {
    width: 108px;
    font-size: 14px;
    letter-spacing: 0.56px;
    padding: 2px 8px;
  }
}
#news .news-category.news-category-announce {
  background-color: #C8000D;
}
#news .news-category.news-category-press {
  background-color: #0C438A;
}
#news .news-date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.64px;
  white-space: nowrap;
  flex-shrink: 0;
  width: 140px;
}
@media (max-width: 767px) {
  #news .news-date {
    width: auto;
    font-size: 14px;
    letter-spacing: 0.56px;
    margin-left: 20px;
  }
}
#news .news-content-wrapper {
  flex: 1;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  min-width: 0;
}
@media (max-width: 1440px) {
  #news .news-content-wrapper {
    gap: 0.5555555556vw;
  }
}
@media (max-width: 767px) {
  #news .news-content-wrapper {
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
    width: 100%;
  }
}
#news .news-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background-color: #C8000D;
  border-radius: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #news .news-badge {
    padding: 0.2777777778vw 0.5555555556vw;
    font-size: 0.9027777778vw;
    letter-spacing: 0.0361111111vw;
  }
}
@media (max-width: 767px) {
  #news .news-badge {
    padding: 4px 8px;
    font-size: 13px;
    border-radius: 25px;
    margin-left: 20px;
  }
}
#news .news-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.64px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 48px;
}
@media (max-width: 767px) {
  #news .news-text {
    font-size: 14px;
    letter-spacing: 0.56px;
    line-height: 1.6;
    display: block;
  }
}
#news .news-text.news-text-blue {
  color: #0C438A;
}

#about {
  background-color: #FFFFFF;
  padding: 100px 0;
  width: 100%;
}
@media (max-width: 1440px) {
  #about {
    padding: 6.9444444444vw 0;
  }
}
@media (max-width: 1279px) {
  #about {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  #about {
    padding: 40px 0;
  }
}
#about .about-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  padding: 0 100px;
}
@media (max-width: 1440px) {
  #about .about-content {
    max-width: 100vw;
    gap: 4.1666666667vw;
    padding: 0 6.9444444444vw;
  }
}
@media (max-width: 1279px) {
  #about .about-content {
    padding: 0 40px;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  #about .about-content {
    padding: 0 16px;
    gap: 40px;
  }
}
#about .section-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1;
  margin: 0;
  text-align: center;
}
@media (max-width: 1440px) {
  #about .section-title {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #about .section-title {
    gap: 8px;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
}
#about .section-title .section-title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #333333;
  letter-spacing: 1.92px;
}
@media (max-width: 1440px) {
  #about .section-title .section-title-ja {
    font-size: 3.3333333333vw;
    letter-spacing: 0.1333333333vw;
  }
}
@media (max-width: 1279px) {
  #about .section-title .section-title-ja {
    font-size: 36px;
    letter-spacing: 1.44px;
  }
}
@media (max-width: 767px) {
  #about .section-title .section-title-ja {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}
#about .section-title .section-title-en {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #C8000D;
  letter-spacing: 0.96px;
}
@media (max-width: 1440px) {
  #about .section-title .section-title-en {
    font-size: 1.6666666667vw;
    letter-spacing: 0.0666666667vw;
  }
}
@media (max-width: 1279px) {
  #about .section-title .section-title-en {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}
@media (max-width: 767px) {
  #about .section-title .section-title-en {
    font-size: 16px;
    letter-spacing: 0.64px;
    line-height: 1.2;
  }
}
#about .section-desc {
  text-align: center;
}
@media (max-width: 767px) {
  #about .section-desc {
    text-align: left;
  }
}
#about .section-desc p {
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
}
@media (max-width: 767px) {
  #about .section-desc p {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
#about .about-cards {
  display: flex;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 1440px) {
  #about .about-cards {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #about .about-cards {
    padding: 0 12px;
    flex-direction: column;
    gap: 20px;
  }
}
#about .about-card {
  flex: 1;
  background-color: #F1F3F5;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (max-width: 1440px) {
  #about .about-card {
    padding: 1.9444444444vw;
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #about .about-card {
    box-sizing: border-box;
    flex: 1;
    width: 100%;
    max-width: none;
    padding: 28px 16px;
    gap: 16px;
  }
}
#about .about-card-icon {
  width: 100%;
  display: flex;
  justify-content: center;
}
#about .about-icon-wrapper {
  width: 188px;
  height: 188px;
  background-color: #FFFFFF;
  border-radius: 200px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1440px) {
  #about .about-icon-wrapper {
    width: 13.0555555556vw;
    height: 13.0555555556vw;
    padding: 2.2222222222vw;
  }
}
@media (max-width: 767px) {
  #about .about-icon-wrapper {
    width: 148px;
    height: 145px;
    padding: 32px;
  }
}
#about .about-icon-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#about .about-card-title {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.72px;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  #about .about-card-title {
    font-size: 1.25vw;
    letter-spacing: 0.05vw;
  }
}
@media (max-width: 767px) {
  #about .about-card-title {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}
#about .about-card-title span {
  display: block;
}
#about .about-buttons {
  display: flex;
  gap: 40px;
  width: 100%;
  justify-content: center;
}
@media (max-width: 1440px) {
  #about .about-buttons {
    gap: 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #about .about-buttons {
    flex-wrap: wrap;
    gap: 20px 12px;
  }
}
#about .about-btn {
  width: 280px;
  background-color: #333333;
  border-radius: 8px;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  #about .about-btn {
    padding: 1.9444444444vw 0;
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #about .about-btn {
    width: calc(50% - 6px);
    height: 62px;
  }
}
#about .about-btn .about-btn-icon {
  width: 28px;
  height: 28px;
  background-color: #FFFFFF;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #about .about-btn .about-btn-icon {
    width: 1.9444444444vw;
    height: 1.9444444444vw;
  }
}
@media (max-width: 767px) {
  #about .about-btn .about-btn-icon {
    width: 20px;
    height: 20px;
  }
}
#about .about-btn .about-btn-icon svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 1440px) {
  #about .about-btn .about-btn-icon svg {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}
@media (max-width: 767px) {
  #about .about-btn .about-btn-icon svg {
    width: 12px;
    height: 12px;
  }
}
#about .about-btn span:not(.about-btn-icon) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.8px;
}
@media (max-width: 1440px) {
  #about .about-btn span:not(.about-btn-icon) {
    font-size: 1.3888888889vw;
    letter-spacing: 0.0555555556vw;
  }
}
@media (max-width: 767px) {
  #about .about-btn span:not(.about-btn-icon) {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#about .about-btn:hover {
  opacity: 0.9;
}
#about .btn-more-white {
  background-color: #FFFFFF;
  border: 2px solid #C8000D;
  border-radius: 52px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  #about .btn-more-white {
    padding: 1.1111111111vw 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #about .btn-more-white {
    padding: 16px 28px;
    gap: 10px;
  }
}
#about .btn-more-white .icon-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #about .btn-more-white .icon-arrow {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
@media (max-width: 767px) {
  #about .btn-more-white .icon-arrow {
    width: 20px;
    height: 20px;
  }
}
#about .btn-more-white span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #C8000D;
  letter-spacing: 0.8px;
}
@media (max-width: 1440px) {
  #about .btn-more-white span {
    font-size: 1.3888888889vw;
    letter-spacing: 0.0555555556vw;
  }
}
@media (max-width: 767px) {
  #about .btn-more-white span {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#about .btn-more-white:hover {
  background-color: #C8000D;
}
#about .btn-more-white:hover span {
  color: #FFFFFF;
}
#about .btn-more-white:hover .icon-arrow path {
  fill: #FFFFFF;
}

#subcommittees {
  background-color: #F1F3F5;
  width: 100%;
}
#subcommittees .subcommittees-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #subcommittees .subcommittees-content {
    flex-direction: column;
  }
}
#subcommittees .subcommittees-text {
  box-sizing: border-box;
  flex: 0 0 820px;
  padding: 100px 60px 100px 100px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 1440px) {
  #subcommittees .subcommittees-text {
    flex: 0 0 56.9444444444vw;
    padding: 6.9444444444vw 4.1666666667vw 6.9444444444vw 6.9444444444vw;
    gap: 4.1666666667vw;
  }
}
@media (max-width: 1279px) {
  #subcommittees .subcommittees-text {
    flex: 1;
    padding: 60px 40px;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  #subcommittees .subcommittees-text {
    flex: 1;
    padding: 40px 16px;
    gap: 40px;
    width: 100%;
  }
}
#subcommittees .section-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1;
  margin: 0;
  text-align: left;
}
@media (max-width: 1440px) {
  #subcommittees .section-title {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #subcommittees .section-title {
    gap: 8px;
    width: 100%;
  }
}
#subcommittees .section-title .section-title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #333333;
  letter-spacing: 1.92px;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  #subcommittees .section-title .section-title-ja {
    font-size: 3.3333333333vw;
    letter-spacing: 0.1333333333vw;
  }
}
@media (max-width: 1279px) {
  #subcommittees .section-title .section-title-ja {
    font-size: 36px;
    letter-spacing: 1.44px;
    white-space: normal;
  }
}
@media (max-width: 767px) {
  #subcommittees .section-title .section-title-ja {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}
#subcommittees .section-title .section-title-en {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #C8000D;
  letter-spacing: 0.96px;
}
@media (max-width: 1440px) {
  #subcommittees .section-title .section-title-en {
    font-size: 1.6666666667vw;
    letter-spacing: 0.0666666667vw;
  }
}
@media (max-width: 1279px) {
  #subcommittees .section-title .section-title-en {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}
@media (max-width: 767px) {
  #subcommittees .section-title .section-title-en {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
#subcommittees .subcommittees-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.72px;
  margin: 0;
  width: 590px;
}
@media (max-width: 1440px) {
  #subcommittees .subcommittees-description {
    width: 40.9722222222vw;
  }
}
@media (max-width: 1279px) {
  #subcommittees .subcommittees-description {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #subcommittees .subcommittees-description {
    font-size: 16px;
    letter-spacing: 0.64px;
    line-height: 1.8;
    width: 100%;
  }
}
#subcommittees .btn-more-white {
  background-color: #FFFFFF;
  border: 2px solid #C8000D;
  border-radius: 52px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  #subcommittees .btn-more-white {
    padding: 1.1111111111vw 2.7777777778vw;
    gap: 0.6944444444vw;
  }
}
@media (max-width: 767px) {
  #subcommittees .btn-more-white {
    padding: 16px 28px;
    gap: 10px;
    width: auto;
    margin: 0 auto;
  }
}
#subcommittees .btn-more-white .icon-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #subcommittees .btn-more-white .icon-arrow {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
@media (max-width: 767px) {
  #subcommittees .btn-more-white .icon-arrow {
    width: 20px;
    height: 20px;
  }
}
#subcommittees .btn-more-white span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #C8000D;
  letter-spacing: 0.8px;
}
@media (max-width: 1440px) {
  #subcommittees .btn-more-white span {
    font-size: 1.3888888889vw;
    letter-spacing: 0.0555555556vw;
  }
}
@media (max-width: 767px) {
  #subcommittees .btn-more-white span {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#subcommittees .btn-more-white:hover {
  background-color: #C8000D;
}
#subcommittees .btn-more-white:hover span {
  color: #FFFFFF;
}
#subcommittees .btn-more-white:hover .icon-arrow path {
  fill: #FFFFFF;
}
#subcommittees .subcommittees-image {
  flex: 0 0 620px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1440px) {
  #subcommittees .subcommittees-image {
    flex: 0 0 43.0555555556vw;
  }
}
@media (max-width: 1279px) {
  #subcommittees .subcommittees-image {
    flex: 1;
  }
}
@media (max-width: 767px) {
  #subcommittees .subcommittees-image {
    flex: 1;
    width: 100%;
  }
}
#subcommittees .subcommittees-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 613px;
}
@media (max-width: 1440px) {
  #subcommittees .subcommittees-image-wrapper {
    min-height: 42.5694444444vw;
  }
}
@media (max-width: 767px) {
  #subcommittees .subcommittees-image-wrapper {
    min-height: 200px;
  }
}
#subcommittees .subcommittees-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

#events {
  background-color: #f1f3f5;
  padding: 100px 0;
  width: 100%;
}
@media (max-width: 1440px) {
  #events {
    padding: 6.9444444444vw 0;
  }
}
@media (max-width: 767px) {
  #events {
    padding: 40px 0;
  }
}
#events .events-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  padding: 0 100px;
}
@media (max-width: 1440px) {
  #events .events-content {
    max-width: 100vw;
    gap: 4.1666666667vw;
    padding: 0 6.9444444444vw;
  }
}
@media (max-width: 1279px) {
  #events .events-content {
    padding: 0 40px;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  #events .events-content {
    padding: 0 16px;
    gap: 40px;
  }
}
#events .section-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1;
  margin: 0;
  text-align: center;
}
@media (max-width: 1440px) {
  #events .section-title {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #events .section-title {
    gap: 8px;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
}
#events .section-title .section-title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #333333;
  letter-spacing: 1.92px;
}
@media (max-width: 1440px) {
  #events .section-title .section-title-ja {
    font-size: 3.3333333333vw;
    letter-spacing: 0.1333333333vw;
  }
}
@media (max-width: 1279px) {
  #events .section-title .section-title-ja {
    font-size: 36px;
    letter-spacing: 1.44px;
  }
}
@media (max-width: 767px) {
  #events .section-title .section-title-ja {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}
#events .section-title .section-title-en {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #C8000D;
  letter-spacing: 0.96px;
}
@media (max-width: 1440px) {
  #events .section-title .section-title-en {
    font-size: 1.6666666667vw;
    letter-spacing: 0.0666666667vw;
  }
}
@media (max-width: 1279px) {
  #events .section-title .section-title-en {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}
@media (max-width: 767px) {
  #events .section-title .section-title-en {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
#events .events-list {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1440px) {
  #events .events-list {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #events .events-list {
    flex-direction: column;
    gap: 20px;
  }
}
#events .event-card {
  flex: 1;
  max-width: 295px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  #events .event-card {
    max-width: 100%;
    width: 100%;
  }
}
#events .event-card a {
  width: 100%;
}
#events .event-card a:hover .event-image::after {
  opacity: 1;
}
#events .event-card a:hover .event-title {
  text-decoration: underline;
}
#events .event-image {
  position: relative;
  width: 100%;
  height: 221px;
  overflow: hidden;
  border-radius: 0;
}
@media (max-width: 1440px) {
  #events .event-image {
    height: 15.3472222222vw;
  }
}
@media (max-width: 767px) {
  #events .event-image {
    height: 200px;
  }
}
#events .event-image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease;
}
#events .event-image .event-image-placeholder {
  position: absolute;
  inset: 0;
  background-color: #D9D9D9;
  z-index: 1;
}
#events .event-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 2;
}
#events .event-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 3;
  pointer-events: none;
}
#events .event-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #C8000D;
  border-radius: 25px;
  padding: 4px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
  z-index: 4;
}
@media (max-width: 1440px) {
  #events .event-badge {
    font-size: 0.9027777778vw;
    padding: 0.2777777778vw 0.5555555556vw;
    letter-spacing: 0.0361111111vw;
    border-radius: 1.7361111111vw;
    top: 0.5555555556vw;
    right: 0.5555555556vw;
  }
}
#events .event-detail {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 1440px) {
  #events .event-detail {
    padding: 1.3888888889vw 0;
    gap: 0.8333333333vw;
  }
}
@media (max-width: 767px) {
  #events .event-detail {
    padding: 12px 0;
    gap: 12px;
  }
}
#events .event-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background-color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.56px;
  white-space: nowrap;
}
#events .event-label.bg-blue {
  background-color: #0C438A;
}
#events .event-label.bg-red {
  background-color: #C8000D;
}
#events .event-label.bg-green {
  background-color: #2BB757;
}
@media (max-width: 767px) {
  #events .event-label {
    padding: 2px 8px;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#events .event-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.72px;
  margin: 0;
  width: 100%;
}
@media (max-width: 767px) {
  #events .event-title {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#events .btn-more-white {
  background-color: #FFFFFF;
  border: 2px solid #C8000D;
  border-radius: 52px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  #events .btn-more-white {
    padding: 1.1111111111vw 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #events .btn-more-white {
    padding: 16px 28px;
    gap: 10px;
    width: auto;
    margin: 0 auto;
  }
}
#events .btn-more-white .icon-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #events .btn-more-white .icon-arrow {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
@media (max-width: 767px) {
  #events .btn-more-white .icon-arrow {
    width: 20px;
    height: 20px;
  }
}
#events .btn-more-white span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #C8000D;
  letter-spacing: 0.8px;
}
@media (max-width: 1440px) {
  #events .btn-more-white span {
    font-size: 1.3888888889vw;
    letter-spacing: 0.0555555556vw;
  }
}
@media (max-width: 767px) {
  #events .btn-more-white span {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#events .btn-more-white:hover {
  background-color: #C8000D;
}
#events .btn-more-white:hover span {
  color: #FFFFFF;
}
#events .btn-more-white:hover .icon-arrow path {
  fill: #FFFFFF;
}

#proposal {
  background-color: #ffffff;
  padding: 100px 0;
  width: 100%;
}
@media (max-width: 1440px) {
  #proposal {
    padding: 6.9444444444vw 0;
  }
}
@media (max-width: 767px) {
  #proposal {
    padding: 40px 0;
  }
}
#proposal .proposal-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  padding: 0 100px;
}
@media (max-width: 1440px) {
  #proposal .proposal-content {
    max-width: 100vw;
    gap: 4.1666666667vw;
    padding: 0 6.9444444444vw;
  }
}
@media (max-width: 1279px) {
  #proposal .proposal-content {
    padding: 0 40px;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  #proposal .proposal-content {
    padding: 0 16px;
    gap: 40px;
  }
}
#proposal .section-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1;
  margin: 0;
  text-align: center;
}
@media (max-width: 1440px) {
  #proposal .section-title {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #proposal .section-title {
    gap: 8px;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
}
#proposal .section-title .section-title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #333333;
  letter-spacing: 1.92px;
}
@media (max-width: 1440px) {
  #proposal .section-title .section-title-ja {
    font-size: 3.3333333333vw;
    letter-spacing: 0.1333333333vw;
  }
}
@media (max-width: 1279px) {
  #proposal .section-title .section-title-ja {
    font-size: 36px;
    letter-spacing: 1.44px;
  }
}
@media (max-width: 767px) {
  #proposal .section-title .section-title-ja {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}
#proposal .section-title .section-title-en {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #C8000D;
  letter-spacing: 0.96px;
}
@media (max-width: 1440px) {
  #proposal .section-title .section-title-en {
    font-size: 1.6666666667vw;
    letter-spacing: 0.0666666667vw;
  }
}
@media (max-width: 1279px) {
  #proposal .section-title .section-title-en {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}
@media (max-width: 767px) {
  #proposal .section-title .section-title-en {
    font-size: 16px;
    letter-spacing: 0.64px;
    line-height: 1.2;
  }
}
#proposal .proposal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  justify-content: center;
}
@media (max-width: 1440px) {
  #proposal .proposal-list {
    gap: 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #proposal .proposal-list {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  #proposal .proposal-item {
    width: 100%;
  }
}
#proposal .proposal-item a {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 600px;
}
@media (max-width: 1440px) {
  #proposal .proposal-item a {
    width: 41.6666666667vw;
  }
}
@media (max-width: 767px) {
  #proposal .proposal-item a {
    gap: 12px;
    width: 100%;
  }
}
#proposal .proposal-item a .proposal-title, #proposal .proposal-item a .proposal-description {
  transition: all 0.3s ease;
}
#proposal .proposal-item a:hover .proposal-title, #proposal .proposal-item a:hover .proposal-description {
  text-decoration: underline;
  opacity: 0.8;
}
#proposal .proposal-image {
  position: relative;
  width: 160px;
  height: 120px;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 1440px) {
  #proposal .proposal-image {
    width: 11.1111111111vw;
    height: 8.3333333333vw;
  }
}
@media (max-width: 767px) {
  #proposal .proposal-image {
    width: 100px;
    height: 75px;
  }
}
#proposal .proposal-image .proposal-image-placeholder {
  position: absolute;
  inset: 0;
  background-color: #D9D9D9;
  z-index: 1;
}
#proposal .proposal-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 2;
}
#proposal .proposal-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 3;
  pointer-events: none;
}
#proposal .proposal-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}
@media (max-width: 1440px) {
  #proposal .proposal-detail {
    gap: 0.8333333333vw;
  }
}
@media (max-width: 767px) {
  #proposal .proposal-detail {
    gap: 8px;
  }
}
#proposal .proposal-labels {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1440px) {
  #proposal .proposal-labels {
    gap: 0.8333333333vw;
  }
}
@media (max-width: 767px) {
  #proposal .proposal-labels {
    gap: 8px;
  }
}
#proposal .proposal-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background-color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.56px;
  white-space: nowrap;
}
#proposal .proposal-label.bg-blue {
  background-color: #0C438A;
}
#proposal .proposal-label.bg-red {
  background-color: #C8000D;
}
@media (max-width: 767px) {
  #proposal .proposal-label {
    font-size: 14px;
    letter-spacing: 0.56px;
    padding: 2px 8px;
  }
}
#proposal .proposal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background-color: #C8000D;
  border-radius: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #proposal .proposal-badge {
    font-size: 13px;
    letter-spacing: 0.52px;
    padding: 4px 8px;
  }
}
#proposal .proposal-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.72px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 56px;
  width: 100%;
}
@media (max-width: 767px) {
  #proposal .proposal-title {
    font-size: 14px;
    letter-spacing: 0.56px;
    -webkit-line-clamp: 3;
    max-height: 76px;
  }
}
#proposal .btn-more-white {
  background-color: #FFFFFF;
  border: 2px solid #C8000D;
  border-radius: 52px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  #proposal .btn-more-white {
    padding: 1.1111111111vw 2.7777777778vw;
    gap: 0.6944444444vw;
  }
}
@media (max-width: 767px) {
  #proposal .btn-more-white {
    padding: 16px 28px;
    gap: 10px;
  }
}
#proposal .btn-more-white .icon-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #proposal .btn-more-white .icon-arrow {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
@media (max-width: 767px) {
  #proposal .btn-more-white .icon-arrow {
    width: 20px;
    height: 20px;
  }
}
#proposal .btn-more-white span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #C8000D;
  letter-spacing: 0.8px;
}
@media (max-width: 1440px) {
  #proposal .btn-more-white span {
    font-size: 1.3888888889vw;
    letter-spacing: 0.0555555556vw;
  }
}
@media (max-width: 767px) {
  #proposal .btn-more-white span {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#proposal .btn-more-white:hover {
  background-color: #C8000D;
}
#proposal .btn-more-white:hover span {
  color: #FFFFFF;
}
#proposal .btn-more-white:hover .icon-arrow path {
  fill: #FFFFFF;
}

#join-us {
  background-color: #FDFDFF;
  box-sizing: border-box;
  padding: 100px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url("/wp-content/themes/ogc-theme/assets/image/top/join-us.jpg");
  background-size: 1440px;
  background-position: left center;
  background-repeat: no-repeat;
}
@media (max-width: 1440px) {
  #join-us {
    background-size: 100%;
    padding: 6.9444444444vw 0;
  }
}
@media (max-width: 767px) {
  #join-us {
    padding: 40px 0;
    background-size: cover;
    background-position: center;
  }
}
#join-us .join-us-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 100px;
}
@media (max-width: 1440px) {
  #join-us .join-us-content {
    max-width: 100vw;
    gap: 2.7777777778vw;
    padding: 0 6.9444444444vw;
  }
}
@media (max-width: 767px) {
  #join-us .join-us-content {
    padding: 0 16px;
    gap: 16px;
    margin: 0 0 0 auto;
    width: 295px;
  }
}
#join-us .join-us-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: #333333;
  letter-spacing: 2.56px;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
@media (max-width: 1440px) {
  #join-us .join-us-title {
    font-size: 4.4444444444vw;
    letter-spacing: 0.1777777778vw;
  }
}
@media (max-width: 767px) {
  #join-us .join-us-title {
    font-size: 36px;
    letter-spacing: 1.44px;
    white-space: normal;
  }
}
#join-us .join-us-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #333333;
  letter-spacing: 0.96px;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
@media (max-width: 1440px) {
  #join-us .join-us-subtitle {
    font-size: 1.6666666667vw;
    letter-spacing: 0.0666666667vw;
  }
}
@media (max-width: 767px) {
  #join-us .join-us-subtitle {
    font-size: 15px;
    letter-spacing: 0.72px;
    text-align: left;
    white-space: nowrap;
  }
}
#join-us .join-us-description {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
#join-us .join-us-description p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  letter-spacing: 0.64px;
  text-align: center;
  margin: 0;
}
@media (max-width: 767px) {
  #join-us .join-us-description p {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.52px;
    text-align: left;
  }
}
#join-us .join-us-description p:not(:last-child) {
  margin-bottom: 0;
}
#join-us .btn-join {
  background-color: #C8000D;
  border-radius: 52px;
  padding: 20px 40px;
  min-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
@media (max-width: 1440px) {
  #join-us .btn-join {
    padding: 1.3888888889vw 2.7777777778vw;
    min-width: 16.6666666667vw;
  }
}
@media (max-width: 767px) {
  #join-us .btn-join {
    padding: 16px 28px;
    min-width: auto;
    width: auto;
  }
}
#join-us .btn-join .icon-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #join-us .btn-join .icon-arrow {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
@media (max-width: 767px) {
  #join-us .btn-join .icon-arrow {
    width: 20px;
    height: 20px;
  }
}
#join-us .btn-join span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0.8px;
}
@media (max-width: 1440px) {
  #join-us .btn-join span {
    font-size: 1.3888888889vw;
    letter-spacing: 0.0555555556vw;
  }
}
@media (max-width: 767px) {
  #join-us .btn-join span {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#join-us .btn-join:hover {
  opacity: 0.8;
}

#contact {
  background-color: #F1F3F5;
  box-sizing: border-box;
  padding: 100px 200px;
  width: 100%;
}
@media (max-width: 1440px) {
  #contact {
    padding: 6.9444444444vw 13.8888888889vw;
  }
}
@media (max-width: 1279px) {
  #contact {
    padding: 60px 40px;
  }
}
@media (max-width: 767px) {
  #contact {
    padding: 40px 16px;
  }
}
#contact .contact-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1440px) {
  #contact .contact-content {
    max-width: 100vw;
    gap: 4.1666666667vw;
  }
}
@media (max-width: 767px) {
  #contact .contact-content {
    gap: 40px;
  }
}
#contact .section-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1;
  margin: 0;
  text-align: center;
}
@media (max-width: 1440px) {
  #contact .section-title {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #contact .section-title {
    gap: 8px;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
}
#contact .section-title .section-title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #333333;
  letter-spacing: 1.92px;
}
@media (max-width: 1440px) {
  #contact .section-title .section-title-ja {
    font-size: 3.3333333333vw;
    letter-spacing: 0.1333333333vw;
  }
}
@media (max-width: 1279px) {
  #contact .section-title .section-title-ja {
    font-size: 36px;
    letter-spacing: 1.44px;
  }
}
@media (max-width: 767px) {
  #contact .section-title .section-title-ja {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}
#contact .section-title .section-title-en {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #C8000D;
  letter-spacing: 0.96px;
}
@media (max-width: 1440px) {
  #contact .section-title .section-title-en {
    font-size: 1.6666666667vw;
    letter-spacing: 0.0666666667vw;
  }
}
@media (max-width: 1279px) {
  #contact .section-title .section-title-en {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}
@media (max-width: 767px) {
  #contact .section-title .section-title-en {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
#contact .contact-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}
@media (max-width: 1440px) {
  #contact .contact-body {
    gap: 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #contact .contact-body {
    gap: 40px;
  }
}
#contact .contact-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  letter-spacing: 0.64px;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #contact .contact-text {
    font-size: 14px;
    letter-spacing: 0.56px;
    white-space: normal;
    text-align: left;
  }
}
#contact .btn-contact {
  background-color: #333333;
  border-radius: 52px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  #contact .btn-contact {
    border-radius: 3.6111111111vw;
    padding: 1.3888888889vw 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #contact .btn-contact {
    padding: 16px 28px;
    border-radius: 54px;
    width: auto;
  }
}
#contact .btn-contact .icon-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #contact .btn-contact .icon-arrow {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
@media (max-width: 767px) {
  #contact .btn-contact .icon-arrow {
    width: 20px;
    height: 20px;
  }
}
#contact .btn-contact span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0.8px;
}
@media (max-width: 1440px) {
  #contact .btn-contact span {
    font-size: 1.3888888889vw;
    letter-spacing: 0.0555555556vw;
  }
}
@media (max-width: 767px) {
  #contact .btn-contact span {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#contact .btn-contact:hover {
  opacity: 0.9;
}

#company-logos {
  background-color: #FFFFFF;
  padding: 80px 0;
  width: 100%;
}
@media (max-width: 1440px) {
  #company-logos {
    padding: 5.5555555556vw 0;
  }
}
@media (max-width: 767px) {
  #company-logos {
    padding: 40px 0;
  }
}
#company-logos .company-logos-content {
  margin: 0 auto;
  padding: 0;
}
#company-logos .company-logos-swiper {
  width: 100%;
  overflow: hidden;
  transition-timing-function: linear !important;
}
#company-logos .company-logos-list {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important;
}
#company-logos .company-logo-item {
  width: 125px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #company-logos .company-logo-item {
    width: 8.6805555556vw;
    height: 6.1111111111vw;
  }
}
@media (max-width: 767px) {
  #company-logos .company-logo-item {
    width: 100px;
    height: 70px;
  }
}
#company-logos .company-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#footer {
  background-color: #C8000D;
  box-sizing: border-box;
  padding: 80px 100px 20px;
  width: 100%;
}
@media (max-width: 1440px) {
  #footer {
    padding: 5.5555555556vw 6.9444444444vw 1.3888888889vw;
  }
}
@media (max-width: 1279px) {
  #footer {
    padding: 40px 40px 20px;
  }
}
@media (max-width: 767px) {
  #footer {
    padding: 40px 16px 20px;
  }
}
#footer .footer-content {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  #footer .footer-content {
    max-width: 86.1111111111vw;
    gap: 4.1666666667vw;
    margin-bottom: 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-content {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
#footer .footer-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 417px;
}
@media (max-width: 1440px) {
  #footer .footer-left {
    gap: 1.3888888889vw;
    max-width: 28.9583333333vw;
  }
}
@media (max-width: 1279px) {
  #footer .footer-left {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  #footer .footer-left {
    gap: 20px;
  }
}
#footer .footer-logo {
  background-color: #FFFFFF;
  width: 288px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (max-width: 1440px) {
  #footer .footer-logo {
    width: 20vw;
    height: 5vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-logo {
    width: 100%;
    max-width: 288px;
    height: 72px;
  }
}
#footer .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#footer .footer-address {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#footer .footer-address-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.64px;
  margin: 0 0 0 0;
}
@media (max-width: 1440px) {
  #footer .footer-address-title {
    font-size: 1.1111111111vw;
    letter-spacing: 0.0444444444vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-address-title {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#footer .footer-address-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.64px;
  margin: 0;
  white-space: pre-wrap;
}
@media (max-width: 1440px) {
  #footer .footer-address-text {
    font-size: 1.1111111111vw;
    letter-spacing: 0.0444444444vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-address-text {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#footer .footer-map-link {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 1440px) {
  #footer .footer-map-link {
    gap: 0.5555555556vw;
  }
}
#footer .footer-map-link a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.64px;
  text-decoration: none;
}
@media (max-width: 1440px) {
  #footer .footer-map-link a {
    font-size: 1.1111111111vw;
    letter-spacing: 0.0444444444vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-map-link a {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#footer .footer-map-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #footer .footer-map-link svg {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-map-link svg {
    width: 12px;
    height: 12px;
  }
}
#footer .footer-nav {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 1440px) {
  #footer .footer-nav {
    gap: 4.1666666667vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-nav {
    gap: 5.1282051282vw;
  }
}
#footer .footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  min-width: 160px;
}
@media (max-width: 1440px) {
  #footer .footer-nav-column {
    gap: 1.1111111111vw;
    min-width: 11.1111111111vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-nav-column {
    min-width: auto;
    gap: 4.1025641026vw;
  }
}
#footer .footer-nav-column a {
  transition: all 0.3s ease;
}
#footer .footer-nav-column a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
#footer .footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
@media (max-width: 1440px) {
  #footer .footer-nav-group {
    gap: 0.5555555556vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-nav-group {
    gap: 2.0512820513vw;
  }
}
#footer .footer-nav-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.6px;
  text-decoration: none;
}
@media (max-width: 1440px) {
  #footer .footer-nav-title {
    font-size: 1.0416666667vw;
    letter-spacing: 0.0416666667vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-nav-title {
    font-size: 3.5897435897vw;
    letter-spacing: 0.1435897436vw;
  }
}
#footer .footer-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding-left: 20px;
}
@media (max-width: 1440px) {
  #footer .footer-nav-sub {
    gap: 0.6944444444vw;
    padding-left: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-nav-sub {
    padding-left: 0;
    gap: 2.0512820513vw;
  }
}
#footer .footer-nav-sub a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.6px;
  text-decoration: none;
}
@media (max-width: 1440px) {
  #footer .footer-nav-sub a {
    font-size: 1.0416666667vw;
    letter-spacing: 0.0416666667vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-nav-sub a {
    font-size: 3.5897435897vw;
    letter-spacing: 0.1435897436vw;
  }
}
#footer .footer-nav-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.6px;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  #footer .footer-nav-item {
    font-size: 1.0416666667vw;
    letter-spacing: 0.0416666667vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-nav-item {
    font-size: 3.5897435897vw;
    letter-spacing: 0.56px;
    white-space: normal;
  }
}
#footer .footer-copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.48px;
  text-align: center;
  margin: 0;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  #footer .footer-copyright {
    font-size: 0.8333333333vw;
    letter-spacing: 0.0333333333vw;
  }
}
@media (max-width: 767px) {
  #footer .footer-copyright {
    box-sizing: border-box;
    font-size: 12px;
    letter-spacing: 0.48px;
    padding: 0 16px;
  }
}

#breadcrumbs {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 0;
  background-color: #FFFFFF;
  box-sizing: border-box;
}
@media (max-width: 1240px) {
  #breadcrumbs {
    max-width: 1240px;
    padding: 12px 40px;
  }
}
@media (max-width: 767px) {
  #breadcrumbs {
    padding: 8px 20px;
  }
}
#breadcrumbs .breadcrumbs-content {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  #breadcrumbs .breadcrumbs-content {
    max-width: 100vw;
  }
}
@media (max-width: 767px) {
  #breadcrumbs .breadcrumbs-content {
    max-width: 100%;
    gap: 8px;
  }
}
#breadcrumbs .breadcrumbs-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #0C438A;
  letter-spacing: 0.64px;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  #breadcrumbs .breadcrumbs-link {
    font-size: 1.1111111111vw;
    letter-spacing: 0.0444444444vw;
  }
}
@media (max-width: 767px) {
  #breadcrumbs .breadcrumbs-link {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.48px;
  }
}
#breadcrumbs .breadcrumbs-link:hover {
  text-decoration: underline;
}
#breadcrumbs .breadcrumbs-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
@media (max-width: 1440px) {
  #breadcrumbs .breadcrumbs-icon {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}
@media (max-width: 767px) {
  #breadcrumbs .breadcrumbs-icon {
    width: 12px;
    height: 12px;
  }
}
#breadcrumbs .breadcrumbs-current {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.64px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 1440px) {
  #breadcrumbs .breadcrumbs-current {
    font-size: 1.1111111111vw;
    letter-spacing: 0.0444444444vw;
  }
}
@media (max-width: 767px) {
  #breadcrumbs .breadcrumbs-current {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.48px;
  }
}

#page-title {
  background-color: #F1F3F5;
  box-sizing: border-box;
  padding: 40px 0;
  width: 100%;
}
@media (max-width: 767px) {
  #page-title {
    padding: 28px 20px;
  }
}
#page-title .page-title-content {
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  #page-title .page-title-content {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  #page-title .page-title-content {
    max-width: 100%;
  }
}
#page-title .page-title-text {
  border-left: 4px solid #C8000D;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1440px) {
  #page-title .page-title-text {
    padding-left: 2.7777777778vw;
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #page-title .page-title-text {
    padding-left: 20px;
    gap: 8px;
  }
}
#page-title .page-title-en {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #C8000D;
  letter-spacing: 0.04em;
  margin: 0;
}
@media (max-width: 767px) {
  #page-title .page-title-en {
    font-size: 16px;
  }
}
#page-title .page-title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  margin: 0;
}
@media (max-width: 767px) {
  #page-title .page-title-ja {
    font-size: 22px;
  }
}

.page-under {
  padding-top: 120px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .page-under {
    padding-top: 72px;
  }
}
.page-under h3 {
  position: relative;
  margin-bottom: 60px;
  padding-top: 16px;
  border-top: 1px solid #CCCCCC;
  font-size: 28px;
  font-weight: bold;
}
.page-under h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #C8000D;
}
@media (max-width: 767px) {
  .page-under h3 {
    margin-bottom: 40px;
    padding-top: 12px;
    font-size: 20px;
  }
  .page-under h3::before {
    width: 40px;
  }
}
.page-under h4 {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-under h4 {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.container-L {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 0 100px;
}
@media (max-width: 1240px) {
  .container-L {
    max-width: 1240px;
    padding: 60px 40px 100px;
  }
}
@media (max-width: 767px) {
  .container-L {
    padding: 40px 16px 60px;
  }
}

.container-S {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 0 100px;
}
@media (max-width: 960px) {
  .container-S {
    padding: 60px 40px 100px;
  }
}
@media (max-width: 767px) {
  .container-S {
    padding: 40px 16px 60px;
  }
}

.page-description {
  margin-bottom: 60px;
  text-align: center;
}
.page-description p {
  line-height: 1.8;
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-description {
    margin-bottom: 40px;
  }
  .page-description p {
    margin-bottom: 40px;
    text-align: left;
    font-size: 16px;
  }
}

#news-list {
  background-color: #FFFFFF;
  box-sizing: border-box;
  width: 100%;
  padding: 60px 0 100px;
}
@media (max-width: 960px) {
  #news-list {
    padding: 60px 40px 100px;
  }
}
@media (max-width: 767px) {
  #news-list {
    padding: 40px 16px 80px;
  }
}
#news-list .news-list-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 767px) {
  #news-list .news-list-content {
    max-width: 100%;
    gap: 20px;
  }
}
#news-list .news-list-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 1440px) {
  #news-list .news-list-item {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #news-list .news-list-item {
    display: block;
    width: 100%;
  }
}
#news-list .news-list-item .news-date, #news-list .news-list-item .news-text {
  transition: all 0.3s ease;
}
#news-list .news-list-item:hover .news-date, #news-list .news-list-item:hover .news-text {
  color: #0C438A;
}
#news-list .news-list-item:hover .news-text {
  text-decoration: underline;
}
#news-list .news-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.56px;
  white-space: nowrap;
  flex-shrink: 0;
  width: 120px;
}
@media (max-width: 767px) {
  #news-list .news-category {
    width: 108px;
    font-size: 14px;
    letter-spacing: 0.56px;
    padding: 2px 8px;
  }
}
#news-list .news-category.news-category-announce {
  background-color: #C8000D;
}
#news-list .news-category.news-category-press {
  background-color: #0C438A;
}
#news-list .news-date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.64px;
  white-space: nowrap;
  flex-shrink: 0;
  width: 120px;
}
@media (max-width: 767px) {
  #news-list .news-date {
    width: auto;
    font-size: 14px;
    letter-spacing: 0.56px;
    margin-left: 20px;
  }
}
#news-list .news-content-wrapper {
  flex: 1;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  min-width: 0;
}
@media (max-width: 1440px) {
  #news-list .news-content-wrapper {
    gap: 0.5555555556vw;
  }
}
@media (max-width: 767px) {
  #news-list .news-content-wrapper {
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
    width: 100%;
  }
}
#news-list .news-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background-color: #C8000D;
  border-radius: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  #news-list .news-badge {
    padding: 4px 8px;
    font-size: 13px;
    border-radius: 25px;
    margin-left: 20px;
  }
}
#news-list .news-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.64px;
  margin: 0;
  flex: 1;
  word-break: break-all;
}
@media (max-width: 767px) {
  #news-list .news-text {
    font-size: 14px;
    letter-spacing: 0.56px;
    line-height: 1.6;
    display: block;
  }
}

#pagination {
  background-color: #FFFFFF;
  padding: 40px 0 100px;
  width: 100%;
}
@media (max-width: 1440px) {
  #pagination {
    padding: 2.7777777778vw 0 6.9444444444vw;
  }
}
@media (max-width: 767px) {
  #pagination {
    padding: 40px 0 40px;
  }
}
#pagination .pagination-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
@media (max-width: 1440px) {
  #pagination .pagination-content {
    max-width: 100vw;
  }
}
@media (max-width: 767px) {
  #pagination .pagination-content {
    max-width: 100%;
    padding: 0 3px;
  }
}
#pagination .pagination-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #pagination .pagination-btn {
    width: 2.2222222222vw;
    height: 2.2222222222vw;
  }
}
@media (max-width: 767px) {
  #pagination .pagination-btn {
    width: 32px;
    height: 32px;
  }
}
#pagination .pagination-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
#pagination .pagination-btn svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 1440px) {
  #pagination .pagination-btn svg {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
@media (max-width: 767px) {
  #pagination .pagination-btn svg {
    width: 24px;
    height: 24px;
  }
}
#pagination .pagination-number {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #333333;
  letter-spacing: 0.64px;
  border-radius: 100px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  #pagination .pagination-number {
    width: 2.2222222222vw;
    height: 2.2222222222vw;
    font-size: 1.1111111111vw;
    letter-spacing: 0.0444444444vw;
  }
}
@media (max-width: 767px) {
  #pagination .pagination-number {
    width: 32px;
    height: 32px;
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
#pagination .pagination-number:hover {
  background-color: rgba(200, 0, 13, 0.1);
}
#pagination .pagination-number.pagination-number-active {
  background-color: #C8000D;
  color: #FFFFFF;
}

#article-content {
  background-color: #FFFFFF;
  box-sizing: border-box;
  width: 100%;
  padding: 60px 0 100px;
}
@media (max-width: 960px) {
  #article-content {
    padding: 60px 40px 100px;
  }
}
@media (max-width: 767px) {
  #article-content {
    padding: 40px 16px 80px;
  }
}
#article-content .article-content-wrapper {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (max-width: 767px) {
  #article-content .article-content-wrapper {
    max-width: 100%;
  }
}
#article-content .article-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  color: #333333;
  margin: 0;
  width: 100%;
}
@media (max-width: 767px) {
  #article-content .article-title {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.8px;
    text-align: left;
  }
}
#article-content .article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}
@media (max-width: 1440px) {
  #article-content .article-meta {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #article-content .article-meta {
    gap: 20px;
  }
}
#article-content .article-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.56px;
  white-space: nowrap;
  flex-shrink: 0;
  width: 120px;
}
@media (max-width: 767px) {
  #article-content .article-category {
    display: flex;
    width: 108px;
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 20.8px */
    letter-spacing: 0.52px;
  }
}
#article-content .article-category.article-category-announce {
  background-color: #C8000D;
}
#article-content .article-category.article-category-press {
  background-color: #0C438A;
}
#article-content .article-date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.64px;
  flex: 1;
}
@media (max-width: 767px) {
  #article-content .article-date {
    font-size: 16px;
    line-height: 140%; /* 22.4px */
    letter-spacing: 0.64px;
  }
}
#article-content .article-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#article-content .article-text {
  width: 100%;
  padding-bottom: 40px;
}
@media (max-width: 1440px) {
  #article-content .article-text {
    padding-bottom: 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #article-content .article-text {
    padding-bottom: 20px;
  }
}
#article-content .article-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  letter-spacing: 0.64px;
  margin: 0 0 1em 0;
}
@media (max-width: 767px) {
  #article-content .article-text p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.56px;
  }
}
#article-content .article-text p:last-child {
  margin-bottom: 0;
}
#article-content .article-text .article-link {
  margin-top: 1em;
}
#article-content .article-text .article-link a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #0C438A;
  letter-spacing: 0.64px;
  text-decoration: none;
}
@media (max-width: 1440px) {
  #article-content .article-text .article-link a {
    font-size: 1.1111111111vw;
    letter-spacing: 0.0444444444vw;
  }
}
@media (max-width: 767px) {
  #article-content .article-text .article-link a {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.56px;
  }
}
#article-content .article-text .article-link a:hover {
  text-decoration: underline;
}
#article-content .article-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  color: #333333;
  letter-spacing: 0.96px;
  margin: 0;
  padding-bottom: 20px;
  width: 100%;
}
@media (max-width: 1440px) {
  #article-content .article-subtitle {
    font-size: 1.6666666667vw;
    letter-spacing: 0.0666666667vw;
    padding-bottom: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #article-content .article-subtitle {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.8px;
    padding-bottom: 1cqw;
  }
}
#article-content .article-image-area {
  width: 100%;
  padding-bottom: 40px;
}
@media (max-width: 1440px) {
  #article-content .article-image-area {
    padding-bottom: 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #article-content .article-image-area {
    padding-bottom: 20px;
  }
}
#article-content .article-image {
  width: 100%;
  height: 540px;
  position: relative;
  max-width: 960px;
}
@media (max-width: 1440px) {
  #article-content .article-image {
    height: 37.5vw;
  }
}
@media (max-width: 767px) {
  #article-content .article-image {
    height: 200px;
  }
}
#article-content .article-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #E0EAF8;
  display: flex;
  align-items: center;
  justify-content: center;
}
#article-content .article-image-placeholder span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  letter-spacing: 0.64px;
}
@media (max-width: 1440px) {
  #article-content .article-image-placeholder span {
    font-size: 1.1111111111vw;
    letter-spacing: 0.0444444444vw;
  }
}
@media (max-width: 767px) {
  #article-content .article-image-placeholder span {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
#article-content .btn-back-to-list {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border: 2px solid #C8000D;
  border-radius: 52px;
  background-color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #article-content .btn-back-to-list {
    padding: 1.1111111111vw 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #article-content .btn-back-to-list {
    padding: 16px 28px;
  }
}
#article-content .btn-back-to-list .icon-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #article-content .btn-back-to-list .icon-arrow {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
@media (max-width: 767px) {
  #article-content .btn-back-to-list .icon-arrow {
    width: 20px;
    height: 20px;
  }
}
#article-content .btn-back-to-list span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #C8000D;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  #article-content .btn-back-to-list span {
    font-size: 1.3888888889vw;
    letter-spacing: 0.0555555556vw;
  }
}
@media (max-width: 767px) {
  #article-content .btn-back-to-list span {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#article-content .btn-back-to-list:hover {
  background-color: #C8000D;
}
#article-content .btn-back-to-list:hover span {
  color: #FFFFFF;
}
#article-content .btn-back-to-list:hover .icon-arrow path {
  fill: #FFFFFF;
}

#page-admission {
  padding-top: 120px; /* Header height */
  background-color: #FFF;
}
@media (max-width: 767px) {
  #page-admission {
    padding-top: 72px;
  }
}
#page-admission #admission {
  padding-bottom: 80px;
}
#page-admission #admission .admission-content {
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  #page-admission #admission .admission-content {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  #page-admission #admission .admission-content {
    padding: 0 16px;
  }
}
#page-admission #admission .admission-intro {
  margin: 60px 0;
}
#page-admission #admission .admission-intro p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
  color: #333;
}
@media (max-width: 767px) {
  #page-admission #admission .admission-intro p {
    text-align: left;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #page-admission #admission .pc-visibility {
    display: none;
  }
}
#page-admission .admission-section {
  margin-bottom: 80px;
}
#page-admission .admission-section.admission-section-small-margin {
  margin-bottom: 30px;
}
#page-admission .admission-section .section-header {
  margin-bottom: 40px;
  border-bottom: none;
  padding-bottom: 0;
  display: block;
}
#page-admission .admission-section .section-header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  border-top: 1px solid #CCC;
  padding-top: 16px;
  margin: 0;
  position: relative;
}
#page-admission .admission-section .section-header h2::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #C8000D;
  position: absolute;
  top: -1.5px;
  left: 0;
}
#page-admission .admission-section .section-sub-header {
  margin-bottom: 30px;
  margin-top: 40px;
  padding-bottom: 10px;
}
#page-admission .admission-section .section-sub-header h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
#page-admission .admission-section .sub-header-small {
  margin-bottom: 20px;
  margin-top: 40px;
  padding-bottom: 8px;
}
#page-admission .admission-section .sub-header-small h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
#page-admission .admission-section .admission-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
  margin: 0;
}
#page-admission .flow-steps {
  display: flex;
  flex-direction: row;
  gap: 20px;
  background-color: #F1F3F5;
  padding: 40px;
}
@media (max-width: 767px) {
  #page-admission .flow-steps {
    flex-direction: column;
    padding: 16px;
    gap: 20px;
  }
}
#page-admission .flow-step {
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 0;
  gap: 8px;
  flex: 1;
}
@media (max-width: 767px) {
  #page-admission .flow-step {
    flex-direction: row;
    padding: 0;
    gap: 8px;
    align-items: stretch;
  }
}
#page-admission .step-left {
  height: 40px;
  background: #0C438A;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(0% 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 0% 100%);
  padding-right: 20px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  #page-admission .step-left {
    width: 60px;
    height: auto;
    background: transparent;
    clip-path: none;
    padding: 0;
    flex-direction: column;
    justify-content: flex-start;
  }
}
#page-admission .step-box {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  background: transparent;
  color: #FFF;
  width: auto;
  padding: 0;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 767px) {
  #page-admission .step-box {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 5px;
    gap: 4px;
    background: #0C438A;
    flex: 1;
  }
}
#page-admission .step-label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  #page-admission .step-label {
    font-size: 18px;
    letter-spacing: 0;
  }
}
#page-admission .step-number {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  #page-admission .step-number {
    font-size: 22px;
    letter-spacing: 0;
  }
}
#page-admission .step-triangle {
  display: none;
}
@media (max-width: 767px) {
  #page-admission .step-triangle {
    display: block;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid #0C438A;
  }
}
#page-admission .step-right {
  height: 196px;
  background: #FFF;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  #page-admission .step-right {
    width: auto;
    height: 170px;
    flex: 1;
    padding: 20px;
    gap: 12px;
  }
}
#page-admission .step-right h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 767px) {
  #page-admission .step-right h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}
#page-admission .step-right p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}
#page-admission .membership-types {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media (max-width: 767px) {
  #page-admission .membership-types {
    flex-direction: column;
    gap: 20px;
  }
}
#page-admission .membership-card {
  flex: 1;
  background: #F1F3F5;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: none;
  border-radius: 0;
}
@media (max-width: 767px) {
  #page-admission .membership-card {
    gap: 20px;
    padding: 20px;
  }
}
#page-admission .membership-card .card-header {
  background: transparent;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#page-admission .membership-card .card-header h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-align: center;
  letter-spacing: 0.04em;
}
#page-admission .membership-card .card-header::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #C8000D;
}
#page-admission .membership-card .card-body {
  padding: 0;
  display: block;
}
#page-admission .membership-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: left;
}
@media (max-width: 767px) {
  #page-admission .membership-text {
    font-size: 14px;
  }
}
#page-admission .method-note {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}
#page-admission .method-note span {
  font-weight: 700;
}
#page-admission .method-boxes {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  #page-admission .method-boxes {
    flex-direction: column;
    gap: 20px;
  }
}
#page-admission .method-box {
  flex: 1;
  border: 1px solid #C8000D;
  border-radius: 0;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
  background-color: #FFFFFF;
}
@media (max-width: 767px) {
  #page-admission .method-box {
    padding: 20px;
    gap: 20px;
  }
}
#page-admission .method-box .box-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#page-admission .method-box .box-header::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #C8000D;
}
#page-admission .method-box .box-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
}
#page-admission .method-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  flex-grow: 1;
  margin: 0;
}
@media (max-width: 767px) {
  #page-admission .method-box p {
    font-size: 14px;
  }
}
#page-admission .btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 40px;
  background: #C8000D;
  color: #FFF;
  border-radius: 52px;
  font-weight: 700;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 767px) {
  #page-admission .btn-apply {
    padding: 16px 28px;
    font-size: 14px;
  }
}
#page-admission .btn-apply:hover {
  background: #a0000a;
  opacity: 1;
}
#page-admission .btn-apply svg path {
  fill: #FFF;
  stroke: none;
}
#page-admission .pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0C438A;
  font-size: 16px;
  text-decoration: none;
}
#page-admission .pdf-icon {
  width: 32px;
  height: 32px;
  vertical-align: middle;
}
#page-admission .document-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
}

#page-about {
  padding-top: 120px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  #page-about {
    padding-top: 72px;
  }
}
#page-about #about-nav {
  padding: 60px 0 40px;
}
#page-about #about-nav .about-nav-content {
  margin: 0 auto;
}
#page-about #about-nav .about-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
@media (max-width: 1440px) {
  #page-about #about-nav .about-nav-links {
    max-width: 1440px;
    padding: 0 6.9444444444vw;
  }
}
@media (max-width: 1279px) {
  #page-about #about-nav .about-nav-links {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  #page-about #about-nav .about-nav-links {
    gap: 8px;
    padding: 0 16px;
  }
}
#page-about #about-nav .about-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid #333;
  border-radius: 54px;
  background: #FFF;
  color: #333;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
#page-about #about-nav .about-nav-link svg path {
  fill: #333;
}
#page-about #about-nav .about-nav-link:hover {
  background: #333;
  color: #FFF;
}
#page-about #about-nav .about-nav-link:hover svg path {
  fill: #FFF;
}
@media (max-width: 767px) {
  #page-about #about-nav .about-nav-link {
    padding: 12px 16px;
    gap: 4px;
    font-size: 13px;
  }
}
#page-about .about-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 0 100px;
  scroll-margin-top: 140px;
}
@media (max-width: 1440px) {
  #page-about .about-section {
    max-width: 1440px;
    padding: 0 6.9444444444vw;
    gap: 4.1666666667vw;
  }
}
@media (max-width: 1279px) {
  #page-about .about-section {
    padding: 0 40px;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  #page-about .about-section {
    padding: 0 16px;
    gap: 40px;
    scroll-margin-top: 90px;
  }
}
#page-about .about-section .section-header {
  margin-bottom: 40px;
}
#page-about .about-section .section-header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  border-top: 1px solid #CCC;
  padding-top: 16px;
  margin: 0;
  position: relative;
}
#page-about .about-section .section-header h2::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #C8000D;
  position: absolute;
  top: -1.5px;
  left: 0;
}
#page-about .about-section .section-intro {
  margin-bottom: 60px;
}
#page-about .about-section .section-intro p {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  #page-about .about-section .section-intro p {
    text-align: left;
    font-size: 16px;
  }
}
#page-about .about-cards {
  margin-bottom: 60px;
}
#page-about .about-desc {
  max-width: 960px;
  margin: 0 auto 60px;
}
#page-about .about-desc p {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  #page-about .about-desc p {
    margin-bottom: 40px;
    font-size: 14px;
  }
}
#page-about .about-desc img {
  width: 100%;
}
#page-about .outline-table {
  max-width: 960px;
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  #page-about .outline-table {
    margin-bottom: 40px;
  }
}
#page-about .outline-table dl {
  display: flex;
  margin: 0;
  gap: 28px;
}
#page-about .outline-table dl dt {
  width: 200px;
  font-weight: 700;
  padding: 20px 12px;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  border-bottom: 1px solid #CCCCCC;
}
#page-about .outline-table dl dd {
  flex: 1;
  padding: 20px 12px;
  margin: 0;
  line-height: 1.6;
  border-bottom: 1px solid #CCCCCC;
}
#page-about .outline-table dl dd .list-disc {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
#page-about .outline-table dl dd .list-disc li::before {
  content: "- ";
}
#page-about .outline-table dl dd a {
  color: #0C438A;
  text-decoration: none;
}
#page-about .outline-table dl dd a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  #page-about .outline-table dl {
    gap: 12px;
  }
  #page-about .outline-table dl dt {
    width: 88px;
    padding: 16px 4px;
    border-bottom: 1px solid #CCCCCC;
    font-size: 14px;
  }
  #page-about .outline-table dl dd {
    padding: 16px 4px;
    padding-top: 16px;
    border-bottom: 1px solid #CCCCCC;
    font-size: 14px;
  }
}
#page-about .greeting-content {
  max-width: 960px;
  display: flex;
  gap: 6.25%;
  align-items: flex-start;
  margin: 0 auto 60px;
}
#page-about .greeting-content .greeting-img {
  width: 360px;
  flex-shrink: 0;
}
#page-about .greeting-content .greeting-img .img-box {
  width: 100%;
  height: 480px;
  background: #D9D9D9;
}
#page-about .greeting-content .greeting-text {
  flex: 1;
}
#page-about .greeting-content .greeting-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}
#page-about .greeting-content .greeting-text .greeting-name {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
}
@media (max-width: 767px) {
  #page-about .greeting-content {
    flex-direction: column;
    margin-bottom: 40px;
  }
  #page-about .greeting-content .greeting-img {
    width: 100%;
    margin-bottom: 20px;
  }
  #page-about .greeting-content .greeting-img .img-box {
    height: 480px;
  }
  #page-about .greeting-content .greeting-text {
    font-size: 14px;
  }
  #page-about .greeting-content .greeting-text .greeting-name {
    font-size: 16px;
  }
}
#page-about .members-table {
  max-width: 960px;
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  #page-about .members-table {
    margin-bottom: 40px;
  }
}
#page-about .members-table table {
  width: 100%;
  border-collapse: collapse;
}
#page-about .members-table table tr {
  border-bottom: 1px solid #CCCCCC;
}
#page-about .members-table table th, #page-about .members-table table td {
  padding: 20px 12px;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
#page-about .members-table table th {
  width: 160px;
  font-weight: 700;
}
#page-about .members-table table .name {
  width: 150px;
  font-weight: 400;
}
#page-about .members-table table .position {
  font-weight: 400;
}
@media (max-width: 767px) {
  #page-about .members-table table {
    display: block;
  }
  #page-about .members-table table tr {
    display: flex;
    flex-direction: row;
    padding: 0;
  }
  #page-about .members-table table th {
    width: 80px;
    padding: 16px 4px;
    border-bottom: none;
    font-size: 14px;
  }
  #page-about .members-table table .name {
    width: auto;
    flex: 1;
    padding: 16px 4px;
    font-size: 14px;
  }
  #page-about .members-table table .position {
    flex: 2;
    padding: 16px 4px;
    font-size: 14px;
  }
}
#page-about .member-group {
  max-width: 960px;
  margin: 0 auto 60px;
}
#page-about .member-group .note {
  margin-bottom: 20px;
  text-align: right;
}
@media (max-width: 767px) {
  #page-about .member-group .note {
    font-size: 14px;
  }
}
#page-about .member-group h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
#page-about .member-group .member-names {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
#page-about .member-group .member-names.member-names-column {
  flex-direction: column;
  gap: 0;
}
@media (max-width: 767px) {
  #page-about .member-group .member-names {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}
#page-about .member-group .member-names .member-list {
  width: 400px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  #page-about .member-group .member-names .member-list {
    width: 100%;
  }
}
#page-about .member-group .member-names .member-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #page-about .member-group .member-names .member-list li {
    line-height: 2;
  }
}
#page-about .member-group .member-names .member-list li a {
  color: #0C438A;
  text-decoration: none;
}
#page-about .member-group .member-names .member-list li a:hover {
  text-decoration: underline;
}
#page-about .member-group .member-names .note {
  color: #333;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0.04em;
  margin: 0;
}
#page-about #ogc-spirit .column-content {
  max-width: 960px;
  margin: 0 auto;
}
#page-about #ogc-spirit .column-content .column-text p {
  line-height: 1.8;
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 767px) {
  #page-about #ogc-spirit .column-content .column-text p {
    margin-bottom: 40px;
    font-size: 16px;
    text-align: left;
  }
}
#page-about #ogc-spirit .column-content .video-area {
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
#page-about #ogc-spirit .column-content .video-area iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}
@media (max-width: 767px) {
  #page-about #ogc-spirit .column-content .video-area {
    margin-bottom: 40px;
  }
}

#page-privacy {
  padding-top: 120px;
}
@media (max-width: 1440px) {
  #page-privacy {
    padding-top: 8.3333333333vw;
  }
}
@media (max-width: 767px) {
  #page-privacy {
    padding-top: 72px;
  }
}
#page-privacy .privacy-content {
  padding: 60px 0 100px;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1440px) {
  #page-privacy .privacy-content {
    padding: 4.1666666667vw 0 6.9444444444vw;
    max-width: 66.6666666667vw;
  }
}
@media (max-width: 767px) {
  #page-privacy .privacy-content {
    padding: 40px 20px;
    max-width: 100%;
  }
}
#page-privacy .privacy-text-block.privacy-intro {
  margin-bottom: 60px;
}
#page-privacy .privacy-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
}
#page-privacy .privacy-text a {
  color: #0C438A;
  text-decoration: underline;
}
@media (max-width: 767px) {
  #page-privacy .privacy-text {
    font-size: 14px;
  }
}
#page-privacy .privacy-section {
  margin-bottom: 60px;
}
#page-privacy .privacy-section ul {
  list-style: none;
  padding-left: 0;
}
#page-privacy .privacy-section ul li {
  position: relative;
  padding-left: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
}
@media (max-width: 767px) {
  #page-privacy .privacy-section ul li {
    font-size: 14px;
  }
}
#page-privacy .privacy-section ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
#page-privacy .privacy-section ol {
  list-style: none;
  padding-left: 0;
  counter-reset: privacy-ol-counter;
}
#page-privacy .privacy-section ol li {
  position: relative;
  padding-left: 1.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
  counter-increment: privacy-ol-counter;
}
@media (max-width: 767px) {
  #page-privacy .privacy-section ol li {
    font-size: 14px;
  }
}
#page-privacy .privacy-section ol li::before {
  content: counter(privacy-ol-counter) ".";
  position: absolute;
  left: 0;
}
#page-privacy .privacy-section ol.alpha-list {
  counter-reset: privacy-alpha-counter;
}
#page-privacy .privacy-section ol.alpha-list li {
  counter-increment: privacy-alpha-counter;
}
#page-privacy .privacy-section ol.alpha-list li::before {
  content: counter(privacy-alpha-counter, lower-alpha) ".";
}
#page-privacy .privacy-section-title {
  padding-bottom: 12px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #CCCCCC;
}
#page-privacy .privacy-section-title .title-line {
  width: 60px;
  height: 4px;
  background-color: #C8000D;
  display: block;
}
#page-privacy .privacy-section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}
@media (max-width: 1440px) {
  #page-privacy .privacy-section-title h2 {
    font-size: 1.9444444444vw;
  }
}
@media (max-width: 767px) {
  #page-privacy .privacy-section-title h2 {
    font-size: 24px;
  }
}
#page-privacy .privacy-date {
  text-align: left;
  font-size: 16px;
}

#page-admission-form, #page-admission-special, #page-contact {
  padding-top: 120px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  #page-admission-form, #page-admission-special, #page-contact {
    padding-top: 72px;
  }
}
#page-admission-form .form-section, #page-admission-special .form-section, #page-contact .form-section {
  padding: 60px 0 100px;
}
@media (max-width: 767px) {
  #page-admission-form .form-section, #page-admission-special .form-section, #page-contact .form-section {
    padding: 60px 20px 100px;
  }
}
#page-admission-form .form-container, #page-admission-special .form-container, #page-contact .form-container {
  max-width: 960px;
  margin: 0 auto;
}
#page-admission-form .form-description, #page-admission-special .form-description, #page-contact .form-description {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  #page-admission-form .form-description, #page-admission-special .form-description, #page-contact .form-description {
    text-align: left;
    font-size: 14px;
    margin-bottom: 40px;
  }
}
#page-admission-form .admission-form, #page-admission-special .admission-form, #page-contact .admission-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  #page-admission-form .admission-form, #page-admission-special .admission-form, #page-contact .admission-form {
    gap: 40px;
  }
}
#page-admission-form .form-group, #page-admission-special .form-group, #page-contact .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#page-admission-form .form-group:has(.input-textarea), #page-admission-special .form-group:has(.input-textarea), #page-contact .form-group:has(.input-textarea) {
  margin-bottom: 0;
}
#page-admission-form .form-label, #page-admission-special .form-label, #page-contact .form-label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
#page-admission-form .form-label label, #page-admission-special .form-label label, #page-contact .form-label label {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
@media (max-width: 767px) {
  #page-admission-form .form-label label, #page-admission-special .form-label label, #page-contact .form-label label {
    font-size: 16px;
  }
}
#page-admission-form .form-label .badge-required, #page-admission-special .form-label .badge-required, #page-contact .form-label .badge-required {
  background: #C8000D;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  line-height: 1;
}
@media (max-width: 767px) {
  #page-admission-form .form-label .badge-required, #page-admission-special .form-label .badge-required, #page-contact .form-label .badge-required {
    font-size: 14px;
    padding: 4px 10px;
  }
}
@media (max-width: 767px) {
  #page-admission-form .form-label, #page-admission-special .form-label, #page-contact .form-label {
    align-items: flex-start;
    flex-direction: row;
  }
  #page-admission-form .form-label label, #page-admission-special .form-label label, #page-contact .form-label label {
    width: auto;
    flex: 0 1 auto;
  }
  #page-admission-form .form-label .badge-required, #page-admission-special .form-label .badge-required, #page-contact .form-label .badge-required {
    flex-shrink: 0;
    margin-top: 2px;
    margin-left: 10px;
  }
}
#page-admission-form .form-input, #page-admission-special .form-input, #page-contact .form-input {
  width: 100%;
}
#page-admission-form .input-text, #page-admission-special .input-text, #page-contact .input-text {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid #CCC;
  border-radius: 0;
  font-size: 16px;
  background: #FFF;
  box-sizing: border-box;
  appearance: none;
}
#page-admission-form .input-text::placeholder, #page-admission-special .input-text::placeholder, #page-contact .input-text::placeholder {
  color: #999;
}
#page-admission-form .input-text:focus, #page-admission-special .input-text:focus, #page-contact .input-text:focus {
  outline: 1px solid #0C438A;
}
@media (max-width: 767px) {
  #page-admission-form .input-text, #page-admission-special .input-text, #page-contact .input-text {
    height: 48px;
    font-size: 14px;
  }
}
#page-admission-form .input-textarea, #page-admission-special .input-textarea, #page-contact .input-textarea {
  width: 100%;
  height: 160px;
  padding: 16px;
  border: 1px solid #CCC;
  font-size: 16px;
  box-sizing: border-box;
  resize: vertical;
}
#page-admission-form .input-textarea::placeholder, #page-admission-special .input-textarea::placeholder, #page-contact .input-textarea::placeholder {
  color: #999;
}
#page-admission-form .date-input-group, #page-admission-special .date-input-group, #page-contact .date-input-group {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  #page-admission-form .date-input-group, #page-admission-special .date-input-group, #page-contact .date-input-group {
    gap: 8px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
#page-admission-form .date-input-wrapper, #page-admission-special .date-input-wrapper, #page-contact .date-input-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex: 1;
}
#page-admission-form .date-input-wrapper input, #page-admission-special .date-input-wrapper input, #page-contact .date-input-wrapper input {
  width: 100%;
  height: 53px;
  text-align: left;
}
#page-admission-form .date-input-wrapper span, #page-admission-special .date-input-wrapper span, #page-contact .date-input-wrapper span {
  font-size: 16px;
  flex-shrink: 0;
  padding-bottom: 5px;
  line-height: 1;
}
#page-admission-form .radio-group, #page-admission-special .radio-group, #page-contact .radio-group {
  display: flex;
  flex-direction: row;
  gap: 40px;
  background: transparent;
  padding-top: 10px;
}
@media (max-width: 767px) {
  #page-admission-form .radio-group, #page-admission-special .radio-group, #page-contact .radio-group {
    flex-direction: column;
    gap: 16px;
  }
}
#page-admission-form .radio-label, #page-admission-special .radio-label, #page-contact .radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
}
#page-admission-form .radio-label input[type=radio], #page-admission-special .radio-label input[type=radio], #page-contact .radio-label input[type=radio] {
  width: 24px;
  height: 24px;
  accent-color: #0C438A;
  margin: 0;
}
#page-admission-form .member-type-info, #page-admission-special .member-type-info, #page-contact .member-type-info {
  background: #EFEFEF;
  padding: 20px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
#page-admission-form .form-section-header, #page-admission-special .form-section-header, #page-contact .form-section-header {
  border-bottom: 1px solid #CCC;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
}
#page-admission-form .form-section-header h2, #page-admission-special .form-section-header h2, #page-contact .form-section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}
#page-admission-form .form-section-header::before, #page-admission-special .form-section-header::before, #page-contact .form-section-header::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #C8000D;
}
@media (max-width: 767px) {
  #page-admission-form .form-section-header h2, #page-admission-special .form-section-header h2, #page-contact .form-section-header h2 {
    font-size: 24px;
  }
}
#page-admission-form .name-input-group, #page-admission-special .name-input-group, #page-contact .name-input-group {
  display: flex;
  gap: 40px;
}
#page-admission-form .name-input-group input, #page-admission-special .name-input-group input, #page-contact .name-input-group input {
  width: 100%;
}
@media (max-width: 767px) {
  #page-admission-form .name-input-group, #page-admission-special .name-input-group, #page-contact .name-input-group {
    gap: 20px;
    flex-direction: row;
  }
}
#page-admission-form .form-note, #page-admission-special .form-note, #page-contact .form-note {
  font-size: 16px;
  color: #333;
  margin-top: -20px;
}
#page-admission-form .privacy-check, #page-admission-special .privacy-check, #page-contact .privacy-check {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  #page-admission-form .privacy-check, #page-admission-special .privacy-check, #page-contact .privacy-check {
    gap: 30px;
    margin-top: 0;
    padding: 0 10px;
  }
}
#page-admission-form .privacy-check .privacy-text, #page-admission-special .privacy-check .privacy-text, #page-contact .privacy-check .privacy-text {
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  #page-admission-form .privacy-check .privacy-text, #page-admission-special .privacy-check .privacy-text, #page-contact .privacy-check .privacy-text {
    font-size: 16px;
    text-align: left;
  }
}
#page-admission-form .privacy-check .checkbox-label, #page-admission-special .privacy-check .checkbox-label, #page-contact .privacy-check .checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
#page-admission-form .privacy-check .checkbox-label input[type=checkbox], #page-admission-special .privacy-check .checkbox-label input[type=checkbox], #page-contact .privacy-check .checkbox-label input[type=checkbox] {
  width: 24px;
  height: 24px;
  accent-color: #0C438A;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  #page-admission-form .privacy-check .checkbox-label, #page-admission-special .privacy-check .checkbox-label, #page-contact .privacy-check .checkbox-label {
    font-size: 16px;
    align-items: flex-start;
    text-align: left;
  }
}
#page-admission-form .submit-area, #page-admission-special .submit-area, #page-contact .submit-area {
  display: flex;
  justify-content: center;
}
#page-admission-form .btn-submit, #page-admission-special .btn-submit, #page-contact .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 240px;
  height: 64px;
  background: #C8000D;
  color: #FFF;
  border: none;
  border-radius: 52px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}
#page-admission-form .btn-submit:hover, #page-admission-special .btn-submit:hover, #page-contact .btn-submit:hover {
  opacity: 0.8;
}
#page-admission-form .btn-submit svg, #page-admission-special .btn-submit svg, #page-contact .btn-submit svg {
  width: 24px;
  height: 24px;
  fill: #FFF;
}
#page-admission-form .link-privacy, #page-admission-special .special-member-note a, #page-admission-special .link-privacy, #page-contact .link-privacy {
  color: #0C438A;
  text-decoration: underline;
  transition: opacity 0.3s;
}
#page-admission-form .link-privacy:hover, #page-admission-special .special-member-note a:hover, #page-admission-special .link-privacy:hover, #page-contact .link-privacy:hover {
  opacity: 0.8;
  text-decoration: none;
}
#page-admission-form .member-type-title, #page-admission-special .member-type-title, #page-contact .member-type-title {
  font-weight: 700;
}
#page-admission-form .link-privacy, #page-admission-special .link-privacy, #page-contact .link-privacy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (max-width: 767px) {
  #page-admission-form .link-privacy, #page-admission-special .link-privacy, #page-contact .link-privacy {
    font-size: 14px;
  }
}

#page-admission-special .special-member-info {
  max-width: 920px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#page-admission-special .special-member-note {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
#page-admission-special .special-member-details {
  background-color: #EFEFEF;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#page-admission-special .detail-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#page-admission-special .detail-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}
@media (max-width: 767px) {
  #page-admission-special .detail-block h3 {
    font-size: 18px;
  }
}
#page-admission-special .detail-block p, #page-admission-special .detail-block .benefit-list li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
#page-admission-special .detail-block .benefit-list {
  list-style: none;
  padding-left: 0;
}
#page-admission-special .detail-block .benefit-list li {
  position: relative;
  padding-left: 1em;
}
#page-admission-special .detail-block .benefit-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
#page-admission-special .special-member-desc {
  margin-top: 40px;
}
#page-admission-special .special-member-desc p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  color: #333;
}
@media (max-width: 767px) {
  #page-admission-special .special-member-desc p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-align: left;
  }
}

@media (max-width: 767px) {
  #page-contact .form-input.name-input-group {
    flex-direction: row;
    gap: 40px;
  }
}

#page-proposal, #page-proposal-single {
  background-color: #FFFFFF;
  width: 100%;
  padding-top: 120px;
}
@media (max-width: 1440px) {
  #page-proposal, #page-proposal-single {
    padding-top: 8.3333333333vw;
  }
}
@media (max-width: 767px) {
  #page-proposal, #page-proposal-single {
    padding-top: 72px;
  }
}

#proposal-contents {
  background-color: #FFFFFF;
  box-sizing: border-box;
  padding: 60px 100px 100px;
  width: 100%;
}
@media (max-width: 1440px) {
  #proposal-contents {
    padding: 4.1666666667vw 6.9444444444vw 6.9444444444vw;
  }
}
@media (max-width: 767px) {
  #proposal-contents {
    padding: 40px 20px 40px;
  }
}
#proposal-contents .proposal-contents-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 1440px) {
  #proposal-contents .proposal-contents-wrapper {
    max-width: 100vw;
    gap: 4.1666666667vw;
  }
}
@media (max-width: 767px) {
  #proposal-contents .proposal-contents-wrapper {
    max-width: 100%;
    gap: 40px;
  }
}
#proposal-contents .proposal-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  letter-spacing: 0.72px;
  text-align: center;
  margin: 0;
}
@media (max-width: 767px) {
  #proposal-contents .proposal-description {
    font-size: 16px;
    letter-spacing: 0.64px;
    line-height: 1.6;
    text-align: left;
  }
}
#proposal-contents .proposal-description p {
  margin: 0;
}
@media (max-width: 767px) {
  #proposal-contents .proposal-description p {
    margin-bottom: 8px;
  }
  #proposal-contents .proposal-description p:last-child {
    margin-bottom: 0;
  }
}
#proposal-contents .proposal-category-filter {
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 767px) {
  #proposal-contents .proposal-category-filter {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  #proposal-contents .proposal-category-filter::-webkit-scrollbar {
    display: none;
  }
}
#proposal-contents .toggles .toggle {
  display: none;
}
#proposal-contents .toggles .toggle.active {
  display: block;
}
#proposal-contents .proposal-filter-item {
  border: none;
  border-bottom: 1px solid #CCCCCC;
  background: transparent;
  padding: 20px 28px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  letter-spacing: 0.72px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  #proposal-contents .proposal-filter-item {
    padding: 20px 5px;
    font-size: 13px;
    letter-spacing: 0.52px;
    line-height: 1.6;
  }
}
#proposal-contents .proposal-filter-item:hover {
  color: #C8000D;
}
#proposal-contents .proposal-filter-item.active {
  border-bottom: 4px solid #C8000D;
  color: #C8000D;
}
#proposal-contents .proposal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}
@media (max-width: 1440px) {
  #proposal-contents .proposal-list {
    gap: 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #proposal-contents .proposal-list {
    flex-direction: column;
    gap: 20px;
  }
}
#proposal-contents .proposal-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 600px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  #proposal-contents .proposal-item {
    width: 41.6666666667vw;
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #proposal-contents .proposal-item {
    width: 100%;
    gap: 12px;
  }
}
#proposal-contents .proposal-item:hover .proposal-item-title {
  text-decoration: underline;
  opacity: 0.8;
}
#proposal-contents .proposal-item-image {
  position: relative;
  width: 160px;
  height: 120px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #D9D9D9;
}
@media (max-width: 1440px) {
  #proposal-contents .proposal-item-image {
    width: 11.1111111111vw;
    height: 8.3333333333vw;
  }
}
@media (max-width: 767px) {
  #proposal-contents .proposal-item-image {
    width: 100px;
    height: 75px;
  }
}
#proposal-contents .proposal-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
#proposal-contents .proposal-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}
@media (max-width: 1440px) {
  #proposal-contents .proposal-item-content {
    gap: 0.8333333333vw;
  }
}
@media (max-width: 767px) {
  #proposal-contents .proposal-item-content {
    gap: 8px;
  }
}
#proposal-contents .proposal-item-labels {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1440px) {
  #proposal-contents .proposal-item-labels {
    gap: 0.8333333333vw;
  }
}
@media (max-width: 767px) {
  #proposal-contents .proposal-item-labels {
    gap: 8px;
  }
}
#proposal-contents .proposal-item-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background-color: #C8000D;
  border-radius: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #proposal-contents .proposal-item-badge {
    font-size: 11px;
    padding: 3px 6px;
  }
}
#proposal-contents .proposal-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.8px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 56px;
  width: 100%;
}
@media (max-width: 767px) {
  #proposal-contents .proposal-item-title {
    font-size: 16px;
    letter-spacing: 0.64px;
    -webkit-line-clamp: 3;
    max-height: 72px;
  }
}
#proposal-contents .proposal-item-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.64px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 44px;
  width: 100%;
}
@media (max-width: 767px) {
  #proposal-contents .proposal-item-description {
    font-size: 14px;
    letter-spacing: 0.56px;
    -webkit-line-clamp: 3;
    max-height: 60px;
  }
}
#proposal-contents #pagination {
  background-color: transparent;
  padding: 40px 0 0;
}
@media (max-width: 1440px) {
  #proposal-contents #pagination {
    padding: 2.7777777778vw 0 0;
  }
}
@media (max-width: 767px) {
  #proposal-contents #pagination {
    padding: 40px 0 0;
  }
}

.proposal-item-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.56px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .proposal-item-label {
    font-size: 12px;
    letter-spacing: 0.48px;
    padding: 2px 6px;
  }
}
.proposal-item-label.bg-blue {
  background-color: #0C438A;
}
.proposal-item-label.bg-red {
  background-color: #C8000D;
}

#page-proposal-single {
  background-color: #FFFFFF;
  width: 100%;
}
#page-proposal-single #article-content .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

#proposal-others {
  background-color: #FFFFFF;
  box-sizing: border-box;
  padding: 0 100px 100px;
  width: 100%;
}
@media (max-width: 1440px) {
  #proposal-others {
    padding: 0 6.9444444444vw 6.9444444444vw;
  }
}
@media (max-width: 767px) {
  #proposal-others {
    padding: 0 20px 40px;
  }
}
#proposal-others .proposal-others-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-others-content {
    max-width: 100vw;
    gap: 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-others-content {
    max-width: 100%;
    gap: 20px;
  }
}
#proposal-others .proposal-others-header {
  border-top: 1px solid #CCCCCC;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 40px;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-others-header {
    padding-top: 2.7777777778vw;
    gap: 0.8333333333vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-others-header {
    padding-top: 20px;
    gap: 8px;
  }
}
#proposal-others .proposal-others-line {
  width: 60px;
  height: 4px;
  background-color: #C8000D;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-others-line {
    width: 4.1666666667vw;
    height: 0.2777777778vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-others-line {
    width: 40px;
    height: 3px;
  }
}
#proposal-others .proposal-others-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  color: #333333;
  letter-spacing: 1.12px;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-others-title {
    font-size: 1.9444444444vw;
    letter-spacing: 0.0777777778vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-others-title {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}
#proposal-others .proposal-others-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-others-list {
    gap: 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-others-list {
    flex-direction: column;
    gap: 20px;
  }
}
#proposal-others .proposal-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 600px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-item {
    width: 41.6666666667vw;
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-item {
    width: 100%;
    gap: 12px;
  }
}
#proposal-others .proposal-item:hover .proposal-item-title {
  text-decoration: underline;
  opacity: 0.8;
}
#proposal-others .proposal-item-image {
  position: relative;
  width: 160px;
  height: 120px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #D9D9D9;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-item-image {
    width: 11.1111111111vw;
    height: 8.3333333333vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-item-image {
    width: 100px;
    height: 75px;
  }
}
#proposal-others .proposal-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
#proposal-others .proposal-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-item-content {
    gap: 0.8333333333vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-item-content {
    gap: 8px;
  }
}
#proposal-others .proposal-item-labels {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-item-labels {
    gap: 0.8333333333vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-item-labels {
    gap: 8px;
  }
}
#proposal-others .proposal-item-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background-color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.56px;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-item-label {
    font-size: 0.9722222222vw;
    letter-spacing: 0.0388888889vw;
    padding: 0.1388888889vw 0.5555555556vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-item-label {
    font-size: 12px;
    letter-spacing: 0.48px;
    padding: 2px 6px;
  }
}
#proposal-others .proposal-item-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background-color: #C8000D;
  border-radius: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-item-badge {
    padding: 0.2777777778vw 0.5555555556vw;
    font-size: 0.9027777778vw;
    border-radius: 1.7361111111vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-item-badge {
    font-size: 11px;
    padding: 3px 6px;
  }
}
#proposal-others .proposal-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.8px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 56px;
  width: 100%;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-item-title {
    font-size: 1.3888888889vw;
    letter-spacing: 0.0555555556vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-item-title {
    font-size: 16px;
    letter-spacing: 0.64px;
    -webkit-line-clamp: 3;
    max-height: 72px;
  }
}
#proposal-others .proposal-item-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.64px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 44px;
  width: 100%;
}
@media (max-width: 1440px) {
  #proposal-others .proposal-item-description {
    font-size: 1.1111111111vw;
    letter-spacing: 0.0444444444vw;
  }
}
@media (max-width: 767px) {
  #proposal-others .proposal-item-description {
    font-size: 14px;
    letter-spacing: 0.56px;
    -webkit-line-clamp: 3;
    max-height: 60px;
  }
}

#page-events {
  background-color: #FFFFFF;
  width: 100%;
  padding-top: 120px;
}
@media (max-width: 1440px) {
  #page-events {
    padding-top: 8.3333333333vw;
  }
}
@media (max-width: 767px) {
  #page-events {
    padding-top: 72px;
  }
}

#event-contents {
  background-color: #FFFFFF;
  box-sizing: border-box;
  padding: 60px 100px 100px;
  width: 100%;
}
@media (max-width: 1440px) {
  #event-contents {
    padding: 4.1666666667vw 6.9444444444vw 6.9444444444vw;
  }
}
@media (max-width: 767px) {
  #event-contents {
    padding: 40px 20px 40px;
  }
}
#event-contents .event-contents-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 1440px) {
  #event-contents .event-contents-wrapper {
    max-width: 100vw;
    gap: 4.1666666667vw;
  }
}
@media (max-width: 767px) {
  #event-contents .event-contents-wrapper {
    max-width: 100%;
    gap: 40px;
  }
}
#event-contents .event-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  letter-spacing: 0.72px;
  text-align: center;
  margin: 0;
}
@media (max-width: 767px) {
  #event-contents .event-description {
    font-size: 16px;
    letter-spacing: 0.64px;
    line-height: 1.6;
    text-align: left;
  }
}
#event-contents .event-description p {
  margin: 0;
}
@media (max-width: 767px) {
  #event-contents .event-description p {
    margin-bottom: 8px;
  }
  #event-contents .event-description p:last-child {
    margin-bottom: 0;
  }
}
#event-contents .event-category-filter {
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 767px) {
  #event-contents .event-category-filter {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  #event-contents .event-category-filter::-webkit-scrollbar {
    display: none;
  }
}
#event-contents .event-filter-item {
  border: none;
  border-bottom: 1px solid #CCCCCC;
  background: transparent;
  padding: 20px 28px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  letter-spacing: 0.72px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  #event-contents .event-filter-item {
    padding: 20px 7px;
    font-size: 13px;
    letter-spacing: 0.52px;
    line-height: 1.6;
  }
}
#event-contents .event-filter-item:hover {
  color: #C8000D;
}
#event-contents .event-filter-item.active {
  border-bottom: 4px solid #C8000D;
  color: #C8000D;
}
#event-contents .toggles .toggle {
  display: none;
}
#event-contents .toggles .toggle.active {
  display: block;
}
#event-contents .event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
@media (max-width: 1440px) {
  #event-contents .event-list {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #event-contents .event-list {
    flex-direction: column;
    gap: 20px;
  }
}
#event-contents .event-item {
  flex-shrink: 0;
  min-width: 0;
  max-width: calc((100% - 60px) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  #event-contents .event-item {
    max-width: calc(25% - 1.0416666667vw);
  }
}
@media (max-width: 767px) {
  #event-contents .event-item {
    max-width: 100%;
    width: 100%;
  }
}
#event-contents .event-item:hover .event-item-title {
  text-decoration: underline;
  opacity: 0.8;
}
#event-contents .event-item:hover .event-item-date {
  text-decoration: underline;
  opacity: 0.8;
}
#event-contents .event-item:hover .event-item-description {
  text-decoration: underline;
  opacity: 0.8;
}
#event-contents .event-item:hover .event-item-image::after {
  opacity: 1;
}
#event-contents .event-item-image {
  position: relative;
  width: 100%;
  height: 221px;
  overflow: hidden;
  background-color: #D9D9D9;
}
@media (max-width: 1440px) {
  #event-contents .event-item-image {
    height: 15.3472222222vw;
  }
}
@media (max-width: 767px) {
  #event-contents .event-item-image {
    height: 200px;
  }
}
#event-contents .event-item-image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
#event-contents .event-item-image .event-item-image-placeholder {
  position: absolute;
  inset: 0;
  background-color: #D9D9D9;
  z-index: 1;
}
#event-contents .event-item-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 2;
}
#event-contents .event-item-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 3;
  pointer-events: none;
}
#event-contents .event-item-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #C8000D;
  border-radius: 25px;
  padding: 4px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
  z-index: 4;
}
@media (max-width: 1440px) {
  #event-contents .event-item-badge {
    font-size: 0.9027777778vw;
    padding: 0.2777777778vw 0.5555555556vw;
    border-radius: 1.7361111111vw;
    top: 0.5555555556vw;
    right: 0.5555555556vw;
  }
}
@media (max-width: 767px) {
  #event-contents .event-item-badge {
    font-size: 11px;
    padding: 3px 6px;
    top: 8px;
    right: 8px;
  }
}
#event-contents .event-item-detail {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 1440px) {
  #event-contents .event-item-detail {
    padding: 1.3888888889vw 0;
    gap: 0.8333333333vw;
  }
}
@media (max-width: 767px) {
  #event-contents .event-item-detail {
    padding: 12px 0;
    gap: 12px;
  }
}
#event-contents .event-item-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background-color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.56px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #event-contents .event-item-label {
    font-size: 12px;
    letter-spacing: 0.48px;
    padding: 2px 6px;
  }
}
#event-contents .event-item-label.bg-green {
  background-color: #2BB757;
}
#event-contents .event-item-label.bg-red {
  background-color: #C8000D;
}
#event-contents .event-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.8px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 84px;
  width: 100%;
}
@media (max-width: 767px) {
  #event-contents .event-item-title {
    font-size: 18px;
    letter-spacing: 0.72px;
    -webkit-line-clamp: 3;
    max-height: 76px;
  }
}
#event-contents .event-item-date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.64px;
  margin: 0;
}
@media (max-width: 767px) {
  #event-contents .event-item-date {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#event-contents .event-item-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.64px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 66px;
  width: 100%;
}
@media (max-width: 767px) {
  #event-contents .event-item-description {
    font-size: 14px;
    letter-spacing: 0.56px;
    -webkit-line-clamp: 2;
    max-height: 40px;
  }
}
#event-contents #pagination {
  background-color: transparent;
  padding: 40px 0 0;
}
@media (max-width: 1440px) {
  #event-contents #pagination {
    padding: 2.7777777778vw 0 0;
  }
}
@media (max-width: 767px) {
  #event-contents #pagination {
    padding: 40px 0 0;
  }
}

#page-event-single {
  background-color: #FFFFFF;
  width: 100%;
  padding-top: 120px;
}
@media (max-width: 1440px) {
  #page-event-single {
    padding-top: 8.3333333333vw;
  }
}
@media (max-width: 767px) {
  #page-event-single {
    padding-top: 72px;
  }
}
#page-event-single #article-content .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
#page-event-single #article-content .article-event-date {
  padding-bottom: 20px;
}
@media (max-width: 1440px) {
  #page-event-single #article-content .article-event-date {
    padding-bottom: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #page-event-single #article-content .article-event-date {
    padding-bottom: 20px;
  }
}
#page-event-single #article-content .article-event-date p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  letter-spacing: 0.64px;
  margin: 0;
}
@media (max-width: 767px) {
  #page-event-single #article-content .article-event-date p {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
#page-event-single #article-content .article-meta .event-item-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background-color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.56px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #page-event-single #article-content .article-meta .event-item-label {
    font-size: 12px;
    letter-spacing: 0.48px;
    padding: 2px 6px;
  }
}
#page-event-single #article-content .article-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  #page-event-single #article-content .article-table {
    margin-bottom: 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #page-event-single #article-content .article-table {
    margin-bottom: 40px;
  }
}
#page-event-single #article-content .article-table-row {
  display: flex;
}
#page-event-single #article-content .article-table-th {
  border-bottom: 1px solid #CCCCCC;
  padding: 12px;
  background-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  letter-spacing: 0.64px;
  width: 200px;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  #page-event-single #article-content .article-table-th {
    width: 13.8888888889vw;
    padding: 0.8333333333vw;
  }
}
@media (max-width: 767px) {
  #page-event-single #article-content .article-table-th {
    width: 27%;
    padding: 16px 4px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#page-event-single #article-content .article-table-td {
  border-bottom: 1px solid #CCCCCC;
  padding: 12px;
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  letter-spacing: 0.64px;
}
@media (max-width: 767px) {
  #page-event-single #article-content .article-table-td {
    padding: 16px 4px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#page-event-single #article-content .article-table-td p {
  margin: 0;
}
@media (max-width: 767px) {
  #page-event-single #article-content .article-table-td p {
    margin-bottom: 8px;
  }
  #page-event-single #article-content .article-table-td p:last-child {
    margin-bottom: 0;
  }
}

#event-others {
  background-color: #FFFFFF;
  box-sizing: border-box;
  padding: 0 100px 100px;
  width: 100%;
}
@media (max-width: 1440px) {
  #event-others {
    padding: 0 6.9444444444vw 6.9444444444vw;
  }
}
@media (max-width: 767px) {
  #event-others {
    padding: 0 20px 40px;
  }
}
#event-others .event-others-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
}
@media (max-width: 1440px) {
  #event-others .event-others-content {
    padding-top: 2.7777777778vw;
    max-width: 100vw;
    gap: 2.7777777778vw;
  }
}
@media (max-width: 767px) {
  #event-others .event-others-content {
    padding-top: 20px;
    max-width: 100%;
    gap: 20px;
  }
}
#event-others .event-others-header {
  border-top: 1px solid #CCCCCC;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1440px) {
  #event-others .event-others-header {
    gap: 0.8333333333vw;
  }
}
@media (max-width: 767px) {
  #event-others .event-others-header {
    gap: 8px;
  }
}
#event-others .event-others-line {
  width: 60px;
  height: 4px;
  background-color: #C8000D;
}
@media (max-width: 1440px) {
  #event-others .event-others-line {
    width: 4.1666666667vw;
    height: 0.2777777778vw;
  }
}
@media (max-width: 767px) {
  #event-others .event-others-line {
    width: 40px;
    height: 3px;
  }
}
#event-others .event-others-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  color: #333333;
  letter-spacing: 1.12px;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #event-others .event-others-title {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}
#event-others .event-others-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
@media (max-width: 1440px) {
  #event-others .event-others-list {
    gap: 1.3888888889vw;
  }
}
@media (max-width: 767px) {
  #event-others .event-others-list {
    flex-direction: column;
    gap: 20px;
  }
}
#event-others .event-item {
  flex: 1;
  min-width: 0;
  max-width: calc((100% - 60px) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1440px) {
  #event-others .event-item {
    max-width: calc((100% - 4.1666666667vw) / 4);
  }
}
@media (max-width: 1279px) {
  #event-others .event-item {
    max-width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 767px) {
  #event-others .event-item {
    max-width: 100%;
    width: 100%;
  }
}
#event-others .event-item:hover .event-item-title {
  text-decoration: underline;
  opacity: 0.8;
}
#event-others .event-item:hover .event-item-date {
  text-decoration: underline;
  opacity: 0.8;
}
#event-others .event-item:hover .event-item-description {
  text-decoration: underline;
  opacity: 0.8;
}
#event-others .event-item:hover .event-item-image::after {
  opacity: 1;
}
#event-others .event-item-image {
  position: relative;
  width: 100%;
  height: 221px;
  overflow: hidden;
  background-color: #D9D9D9;
}
@media (max-width: 1440px) {
  #event-others .event-item-image {
    height: 15.3472222222vw;
  }
}
@media (max-width: 767px) {
  #event-others .event-item-image {
    height: 200px;
  }
}
#event-others .event-item-image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
#event-others .event-item-image .event-item-image-placeholder {
  position: absolute;
  inset: 0;
  background-color: #D9D9D9;
  z-index: 1;
}
#event-others .event-item-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 2;
}
#event-others .event-item-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 3;
  pointer-events: none;
}
#event-others .event-item-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #C8000D;
  border-radius: 25px;
  padding: 4px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
  z-index: 4;
}
@media (max-width: 1440px) {
  #event-others .event-item-badge {
    font-size: 0.9027777778vw;
    padding: 0.2777777778vw 0.5555555556vw;
    border-radius: 1.7361111111vw;
    top: 0.5555555556vw;
    right: 0.5555555556vw;
  }
}
@media (max-width: 767px) {
  #event-others .event-item-badge {
    font-size: 11px;
    padding: 3px 6px;
    top: 8px;
    right: 8px;
  }
}
#event-others .event-item-detail {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 1440px) {
  #event-others .event-item-detail {
    padding: 1.3888888889vw 0;
    gap: 0.8333333333vw;
  }
}
@media (max-width: 767px) {
  #event-others .event-item-detail {
    padding: 12px 0;
    gap: 12px;
  }
}
#event-others .event-item-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background-color: #C8000D;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFF;
  letter-spacing: 0.56px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #event-others .event-item-label {
    font-size: 12px;
    letter-spacing: 0.48px;
    padding: 2px 6px;
  }
}
#event-others .event-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.8px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 84px;
  width: 100%;
}
@media (max-width: 767px) {
  #event-others .event-item-title {
    font-size: 18px;
    letter-spacing: 0.72px;
    -webkit-line-clamp: 3;
    max-height: 76px;
  }
}
#event-others .event-item-date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.64px;
  margin: 0;
}
@media (max-width: 767px) {
  #event-others .event-item-date {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
#event-others .event-item-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.64px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 66px;
  width: 100%;
}
@media (max-width: 767px) {
  #event-others .event-item-description {
    font-size: 14px;
    letter-spacing: 0.56px;
    -webkit-line-clamp: 2;
    max-height: 40px;
  }
}

#working-groups .working-group-list {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1240px;
  margin-bottom: 60px;
}
#working-groups .working-group-list .item {
  background-color: #F1F3F5;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}
#working-groups .working-group-list .item .title {
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: bold;
}
#working-groups .working-group-list .item .description {
  margin-bottom: 28px;
  text-align: left;
}
@media (max-width: 767px) {
  #working-groups .working-group-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  #working-groups .working-group-list .item {
    padding: 20px;
  }
  #working-groups .working-group-list .item .title {
    margin-bottom: 20px;
    font-size: 18px;
  }
  #working-groups .working-group-list .item .description {
    margin-bottom: 20px;
    font-size: 14px;
  }
}

#working-groups-archive {
  padding-top: 0;
}
#working-groups-archive .working-group-archive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
@media (max-width: 767px) {
  #working-groups-archive .working-group-archive-list {
    gap: 24px 8px;
  }
  #working-groups-archive .working-group-archive-list li {
    width: calc((100% - 16px) / 3);
  }
  #working-groups-archive .working-group-archive-list .btn-arrow-white {
    width: calc(100% - 4px);
    padding: 14px 0;
  }
}

#working-groups .btn-workgroup-join,
#working-groups-single .btn-workgroup-join {
  text-align: center;
}
#working-groups .note,
#working-groups-single .note {
  padding-top: 8px;
  font-size: 14px;
  font-weight: normal;
}
@media (max-width: 767px) {
  #working-groups .note,
  #working-groups-single .note {
    text-align: center;
  }
}
#working-groups .btn-to-latest,
#working-groups-single .btn-to-latest {
  text-align: center;
}

#working-groups-single h1 {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 767px) {
  #working-groups-single h1 {
    font-size: 20px;
  }
}
#working-groups-single .contents-area h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  #working-groups-single .contents-area h2 {
    margin-bottom: 12px;
    font-size: 20px;
  }
}
#working-groups-single .contents-area p, #working-groups-single .contents-area img {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  #working-groups-single .contents-area p, #working-groups-single .contents-area img {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
#working-groups-single .contents-area img {
  width: 100%;
}
#working-groups-single .contents-area a {
  color: #0C438A;
  text-decoration: underline;
}
#working-groups-single .btn-workgroup-join {
  margin-bottom: 80px;
}

.form-section .form-section-inner {
  padding-bottom: 40px;
}
.form-section .form-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}
.form-section .form-label .required {
  display: inline-block;
  width: 48px;
  line-height: 1;
  margin-left: 8px;
  padding: 4px 0;
  background-color: #C8000D;
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
}
.form-section .form-caption {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .form-section .form-caption {
    margin-bottom: 20px;
  }
}
.form-section .form-sub-caption {
  margin-bottom: 20px;
}
.form-section .form-row {
  margin-bottom: 32px;
}
.form-section .input-text,
.form-section textarea {
  width: 100%;
  border: 1px solid #CCCCCC;
  padding: 16px 12px;
  font-size: 16px;
  box-sizing: border-box;
}
.form-section .textarea {
  min-height: 120px;
}
.form-section .form-cols {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .form-section .form-cols {
    gap: 20px;
  }
}
.form-section .form-col {
  flex: 1;
}
.form-section label.checkbox-item {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.form-section .form-subgroup {
  margin: 24px 0 24px 20px;
  padding-left: 20px;
  border-left: 2px solid #CCCCCC;
}
.form-section .form-privacy {
  margin-bottom: 60px;
  text-align: center;
}
.form-section .form-privacy p {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .form-section .form-privacy p {
    text-align: left;
  }
}
.form-section .form-privacy a {
  color: #0C438A;
  text-decoration: underline;
}
.form-section .form-privacy .privacy-item {
  font-size: 18px;
  font-weight: bold;
}
.form-section .form-submit {
  text-align: center;
}
/* ==================================================
   Contact Form 7 調整用スタイル
   ================================================== */

/* CF7が自動挿入する不要な改行や余白をリセット */
.wpcf7 p {
    margin-bottom: 0;
}
.wpcf7 br {
    display: none;
}

/* フォーム全体のラッパー */
.admission-form {
    width: 100%;
}

/* ラジオボタンの並び（横並びにする） */
.wpcf7-list-item {
    margin: 0 20px 0 0 !important;
    display: inline-block;
}
.wpcf7-list-item-label {
    font-weight: 500;
}

/* 名前入力欄（姓・名）を横並びにする */
.name-input-group {
    display: flex;
    gap: 20px;
}
.name-input-group .wpcf7-form-control-wrap {
    flex: 1;
}
.name-input-group input {
    width: 100%;
}

/* 日付入力欄（年・月・日） */
.date-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.date-input-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}
.date-input-wrapper .wpcf7-form-control-wrap {
    width: auto;
}
.date-input-wrapper input {
    width: 80px; /* 年号などの幅調整 */
    text-align: center;
}

/* 同意チェックボックス */
.privacy-check .wpcf7-list-item {
    margin: 0 !important;
}
.privacy-check input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 5px;
}

/* 送信ボタンの見た目調整（元のボタンデザインを維持） */
.btn-submit {
    /* 必要に応じて微調整 */
    border: none;
    cursor: pointer;
}
.wpcf7-spinner {
    position: absolute; /* レイアウト崩れ防止 */
}

/* スマホ対応（レスポンシブ） */
@media screen and (max-width: 768px) {
    .name-input-group {
        flex-direction: column;
        gap: 10px;
    }
    .date-input-group {
        flex-wrap: wrap;
    }
    .date-input-wrapper input {
        width: 60px;
    }
}
/* ==================================================
   旧サイトフォーム互換スタイル (Tableレイアウト)
   ================================================== */

table.inquiry {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    border-top: 1px solid #ccc;
}

table.inquiry th,
table.inquiry td {
    padding: 15px;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
    font-size: 14px;
}

table.inquiry th {
    background-color: #f9f9f9;
    width: 25%;
    font-weight: bold;
    text-align: left;
}

table.inquiry td {
    background-color: #fff;
    width: 75%;
}

/* 必須・任意バッジ */
span.haveto {
    background-color: #ff0000;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 11px;
    margin-right: 5px;
    vertical-align: middle;
}

span.any {
    background-color: #999;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 11px;
    margin-right: 5px;
    vertical-align: middle;
}

/* 入力フィールドの幅調整 */
table.inquiry input[type="text"],
table.inquiry input[type="email"],
table.inquiry input[type="tel"],
table.inquiry input[type="url"] {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

table.inquiry textarea {
    width: 100%;
    height: 150px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* 日付選択の並び */
.float_date {
    display: inline-block;
    margin-right: 10px;
}
.float_date select {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* ラジオボタン */
.wpcf7-list-item {
    margin: 0 10px 0 0;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    table.inquiry th,
    table.inquiry td {
        display: block;
        width: 100%;
    }
    table.inquiry th {
        background-color: #eee;
    }
}
/* 分科会・研究会一覧ページのアイコン画像修正 */
/* カテゴリが「分科会(bunkakai)」のページにのみ適用 */
body.category-bunkakai img,
body.category-bunkakai .post-thumbnail img,
body.category-bunkakai .entry-media img {
    object-fit: contain !important; /* 切り抜かずに全体を表示 */
    background-color: transparent;  /* 余白部分は透明に */
    width: 100% !important;         /* 横幅は枠に合わせる */
    height: auto !important;        /* 高さは自動調整 */
    max-height: 300px;              /* 必要に応じて高さの上限を設定 */
}
/* ▼▼▼ 長いカテゴリ名の見切れ・はみ出し防止対策 ▼▼▼ */

/* 1. ページ上部のタイトルエリア（青い帯の部分） */
.page-title-ja {
    word-wrap: break-word !important;      /* 長い単語も折り返す */
    overflow-wrap: break-word !important;
    white-space: normal !important;        /* 強制的な改行禁止を解除 */
    line-height: 1.3 !important;           /* 複数行になった時の行間を調整 */
    padding: 0 10px;                       /* 画面端に張り付かないように余白 */
}

/* 2. 記事詳細の日付横にあるカテゴリバッジ */
.news-category,
.article-category {  /* ← これを追加 */
    white-space: normal !important;        /* 折り返しを許可 */
    height: auto !important;               /* 文字数に合わせて縦に伸ばす */
    min-height: 30px;                      /* 最低限の高さを確保 */
    line-height: 1.4 !important;           /* 行間を読みやすく */
    width: auto !important;                /* 幅の固定を解除 */
    max-width: 100% !important;            /* 画面幅を超えないように */
    padding: 5px 10px !important;          /* 内側の余白を調整 */
    box-sizing: border-box !important;     /* 枠線を含めたサイズ計算に */
}

/* もしFlexboxで横並びになっていて潰れている場合の対策 */
@media screen and (max-width: 768px) {
    .news-meta {
        flex-wrap: wrap !important;        /* 日付とカテゴリが横に並びきらない場合は縦積みに */
        gap: 10px !important;              /* 間隔をあける */
    }
}