body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
  background: #fff;
  color: #1C1C1C;
  font-weight: 500;
}
.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
  height: 111px;
  padding-top: 22px;
}
.nav-top-row {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 12px;
}
.nav-buttons {
  display: flex;
  gap: 12px;
}
.custom-btn {
  display: flex;
  align-items: center;
  width: 156px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid #1C1C1C;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 0 12px;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
  gap: 8px;
}
.custom-btn .btn-icon {
  height: 18.95px;
  width: 17.69px;
  margin-right: 6px;
}
.jizen-btn {
  background: #009D87;
}
.jizen-btn:hover {
  background: #26CBB4;
}
.jizen-btn:active {
  background: #51F7E0;
}
.raijo-btn {
  background: #E6172D;
}
.raijo-btn:hover {
  background: #FA707F;
}
.raijo-btn:active {
  background: #FFACB4;
}
.shutten-btn {
  background: #007DC9;
}
.shutten-btn:hover {
  background: #4DB3F0;
}
.shutten-btn:active {
  background: #9AD9FF;
}
.menu {
  display: flex;
  flex-wrap: nowrap; /* 追加: 改行防止 */
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 0;
  list-style: none;
  color: #1C1C1C;
  width: 1200px; /* 追加: 幅を固定 */
  max-width: 100%; /* 画面が狭い場合ははみ出さない */
}
.menu li {
  border: #C3C3C3 1px solid;
  border-radius: 16px;
  line-height: 28px;
  height: 28px;
  min-width: 120px;
  text-align: center;
  cursor: pointer;
}
.menu li:hover,
.footer-menu li:hover{
  background-color: #EFEFEF;
}
.menu li:active,
.footer-menu li:active{
  background: #DEDDDD;
}

.menu_exhibitorsearch{
  min-width: 225px !important;
}
.menu_contact{
  min-width: 122px !important;
}
.menu a {
  text-decoration: none;
  color: #1C1C1C;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.2s;
  white-space: nowrap;

}
.top-image {
  margin-top: 133px !important;
  text-align: center;
  background: #fff;
  padding: 2em 0 1em 0;
}
.top-image img {
  width: 100vw;
  max-width: none;
  display: block;
  margin: 0 auto;
}
section {
  max-width: 900px;
  margin: 2em auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2em;
}
section:not(.summary):not(.about):not(.special-lecture):not(.reservation):not(.like-vote) {
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
section h2 {
  margin-top: 0;
  color: #0078d7;
}
.footer {
  background: #FFE8ED;
  color: #1C1C1C;
  height: 188px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  margin: 27px auto;
  width: 100%;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.footer-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.footer-menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  color: #1C1C1C;
  width: 1200px;
  max-width: 100%;
}
.footer-menu li {
  border: #C3C3C3 1px solid;
  border-radius: 16px;
  line-height: 28px;
  height: 28px;
  min-width: 120px;
  text-align: center;
  background-color: #FFFFFF;
  cursor: pointer;
}
.footer-menu_exhibitorsearch{
  min-width: 225px !important;
}
.footer-menu_contact{
  min-width: 122px !important;
}
.footer-menu a {
  text-decoration: none;
  color: #1C1C1C;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.2s;
  white-space: nowrap;

}
.footer-copyright {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #1C1C1C;
  width: 100%;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}
.logo-link {
  display: inline-block;
  vertical-align: middle;
}
.logo {
  width: 391px;
  height: 61px;
  display: block;
}
.floating-header nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.header-inner {
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .nav-buttons{
    gap: 2px
  }
  .nav-buttons .custom-btn{
    font-size: 12px;
    width: 130px !important;
  }
}

@media (max-width: 800px) {
  .header-inner {
    padding: 0 20px;
  }
}
.main-content-area {
  padding: 0 360px;
}
@media (max-width: 1440px) {
  .main-content-area {
    padding: 0 40px;
  }
}
@media (max-width: 800px) {
  .main-content-area {
    padding: 0 20px;
  }
}
@media (max-width: 800px) {
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 9px;
  }
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 56px;
    right: 0;
    width: 200px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border-radius: 0 0 8px 8px;
    padding: 0.5em 0;
    z-index: 1050;
  }
  .menu.open {
    display: flex;
  }
  .menu li {
    border: none;
    text-align: left;
    font-size: 25px;
  }
  section {
    padding: 1em;
  }
  .nav-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }
  .footer{
    height: 378px;
    padding: 0 20px;
  }
  .footer-content {
    flex-direction: column;
    margin: 20px auto;
    align-items: center;
  }
  .footer-left{
    width: auto;
  }
  .footer-menu {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    margin-top: 19px !important;
  }
  .footer-menu .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .footer-buttons {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
  }
  .footer-menu .menu {
    flex-direction: row; /* スマホでも横並びに */
    flex-wrap: nowrap; /* 改行防止 */
    align-items: center;
    gap: 8px;
    justify-content: center;
  }
  .footer-copyright{
    font-size: 12px;
    margin-bottom: 43px;
  }
  .nav-buttons {
    display: none !important;
  }
}
.pseudo-menu{
  display: none;
}
@media (max-width: 800px) {
  .footer-menu {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 0 25px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    justify-items: start;
    align-items: center;
    padding: 0;
    text-align: left;
  }
  .footer-menu li {
    margin: 0 0 7.5px 0 !important;
    list-style: none;
  }
  .footer-menu a {
    display: inline-block;
    width: 100%;
    padding: 4px 0;
    white-space: nowrap;
  }
  .pseudo-menu{
    display: inline;
    border: none !important;
    background-color: #FFE8ED !important;
    width: 0px !important;
    min-width: none !important;
  }
}
@media (max-width: 800px) {
  .floating-header {
    height: 69px !important;
    min-height: 69px !important;
    padding-top: 0 !important;
  }
}
.jizen-lead-section {
  width: 100%;
  background: #fff;
  margin: 0;
  padding-top: 68px !important;
  background: #FFE8ED;
  margin-top: 37px !important;
}
.jizen-lead-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.jizen-lead-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 0;
  max-width: 35%;
}
.jizen-lead-title {
  font-size: 44px;
  font-weight: bold;
  color: #1C1C1C;
  margin-bottom: 15px;
  line-height: 1.3;
  text-align: center;
}
.jizen-lead-desc {
  font-size: 20px;
  font-weight: bold;
  color: #1C1C1C;
  text-align: center;
}
.jizen-lead-btn-container{
  margin-top: 119px;
}
.jizen-lead-banzai {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #1C1C1C;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 32px;
  position: relative;
  box-shadow: none;
  gap: 12px;
  margin-left: 0;
}
.banzai-icon {
  width: 13.98px;
  height: 24.85px;
  display: inline-block;
}
.jizen-lead-btn {
  margin-bottom: 0;
  margin-top: 0;
  min-width: 336px;
  width: 336px;
  height: 61px;
  justify-content: center;
  font-size: 20px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 30px;
  border: #000000 2px solid;
  margin-left: auto;
  margin-right: auto;
}
.btn-arrow {
  width: 21px;
  height: 22px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.jizen-lead-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 65%;
}
.jizen-lead-image {
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 800px) {
  .jizen-lead-section {
    margin-top: 0px !important;
    padding-top: 17px !important;
  }
  .jizen-lead-title {
    font-size: 26px !important;
    margin-bottom: 11px !important;
    text-align: left;
  }
  .jizen-lead-desc {
    font-size: 16px !important;
    text-align: left;
  }
  .jizen-lead-banzai {
    font-size: 14px !important;
  }
}
@media (max-width: 1000px) {
  .jizen-lead-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin: 0 20px;
  }
  .jizen-lead-left, .jizen-lead-right {
    max-width: 100%;
    width: 100%;
  }
  .jizen-lead-right {
    justify-content: center;
  }
  .jizen-lead-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .jizen-lead-section {
    padding: 32px 0 0 0;
  }
  .jizen-lead-title {
    font-size: 22px;
  }
  .jizen-lead-desc {
    font-size: 15px;
  }
  .jizen-lead-banzai {
    font-size: 15px;
    gap: 6px;
  }
  .banzai-icon {
    width: 13.98px;
    height: 24.85px;
  }
  .jizen-lead-btn {
    min-width: 180px;
    width: 180px;
    height: 40px;
    font-size: 14px;
    border: #000000 2px solid;
    margin-left: auto;
    margin-right: auto;
  }
  .btn-arrow {
    width: 21px;
    height: 22px;
    right: 8px;
  }
  .jizen-lead-image {
    max-width: 100%;
  }
}
.jizen-benefit-section {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 129px 0 152px 0 !important;
  background: #FFE8ED;
}
@media (max-width: 800px) {
  .jizen-benefit-section {
    padding: 59px 0 144px 0 !important;
  }
  .jizen-lead-btn-container{
    margin-top: 69px;
  }
}
.jizen-benefits {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  gap: 32px;
  justify-items: center;
  align-items: start;
}
@media (max-width: 1200px) {
  .jizen-benefits {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
  }
}
.jizen-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.benefit-img {
  width: 278px;
  height: 278px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}
.benefit-text {
  font-size: 20px;
  color: #1C1C1C;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .jizen-benefits {
    max-width: 100%;
    gap: 20px 8px;
  }
  .benefit-img {
    width: 40vw;
    height: auto;
    max-width: 278px;
  }
}
@media (max-width: 700px) {
  .jizen-benefits {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 16px;
  }
  .benefit-img {
    width: 156px;
    height: 156px;
    max-width: 156px;
  }
}
.kigyo-anniv-section {
  width: 100%;
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.kigyo-anniv-bg {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kigyo-bg-img {
  height: auto;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
.kigyo-anniv-content {
  position: absolute;
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .kigyo-anniv-content {
    padding: 0 40px;
    top: 0px;
  }
  .kigyo-bg-img{
    max-height: 641px !important;
  }
}
@media (max-width: 800px) {
  .kigyo-anniv-content {
    margin-top: 50px !important;
    display: block !important;
  }
}
@media (max-width: 800px) {
  .kigyo-anniv-content {
    height: auto !important;
  }
}
.kigyo-anniv-left {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  max-width: 50%;
  color: #1C1C1C;
  z-index: 2;
}
.kigyo-anniv-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(255,255,255,0.7);
}
.kigyo-anniv-desc {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 0;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.kigyo-anniv-right {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.kigyo-10th-img {
  width: 394px;
  height: auto;
  display: block;
}
@media (max-width: 800px) {
  .kigyo-anniv-right{
    margin-top: 40px;
    width: 100% !important;
  }
  .kigyo-10th-img {
    width: 262px !important;
    height: 262px !important;
  }
}
.about-section {
  width: 100%;
  background: #FFE8ED;
  padding: 91px 0 56px 0 !important;
}
@media (max-width: 800px) {
  .about-section {
    padding: 50px 0 63px 0 !important;
  }
}
.about-inner {
  display: flex;  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 auto;
  padding: 0 0 0 18.75%;
  box-sizing: border-box;
}
.about-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  max-width: 35%;
}
.about-title {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #1C1C1C;
}
.about-lead {
  font-size: 44px;
  font-weight: bold;
  color: #1C1C1C;
  margin-bottom: 18px;
}
.about-desc {
  font-size: 20px;
  font-weight: bold;
  color: #1C1C1C;
  line-height: 1.7;
}
.about-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  padding-left: 30px;
  min-width: 0;
  max-width: 65%;
}
.about-carousel {
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.carousel-track {
  display: flex;
  align-items: center;
  animation: carousel-scroll 80s linear infinite;
}
.carousel-img {
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 0;
}
@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-6152px); }
}
.about-benefits {
  width: 100%;
  margin: 48px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 59px;
  justify-items: center;
  align-items: start;
  box-sizing: border-box;
  max-width: 1200px;
}
.about-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.about-benefit-img {
  width: 278px;
  height: 278px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}
.about-benefit-text {
  font-size: 20px;
  color: #1C1C1C;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
}
.about-benefit-note {
  font-size: 14px;
  color: #1C1C1C;
  text-align: center;
  font-weight: bold;
  margin-top: 8px;
  line-height: 1.5;
}
.about-title-center {
  text-align: center;
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .about-inner, .about-benefits {
    padding: 0 40px;
  }

  .about-benefits{
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
  }

  @keyframes carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-960px); }
  }
}
@media (max-width: 800px) {
  .about-inner, .about-benefits {
    padding: 0 12px;
  }
  .about-inner {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .about-left, .about-right {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-left: 0;
  }
  .about-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .about-benefits .about-benefit:nth-child(n+3) {
    grid-column: span 2;
    justify-self: center;
  }
}
@media (max-width: 800px) {
  .about-title {
    font-size: 22px;
  }
  .about-lead {
    font-size: 26px;
    margin-bottom: 11px;
  }
  .about-desc {
    font-size: 16px;
  }
  .about-carousel {
    min-width: 0;
    min-height: 0;
    margin-left: -12px;
    margin-right: -12px;
  }
  .carousel-track {
    animation: carousel-scroll 60s linear infinite;
  }
  @keyframes carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-6152px); }
  }
    
  .about-benefits {
    gap: 12px;
    margin: 30px auto 0 auto !important;
  }
  .about-benefit-img {
    width: 80vw;
    height: auto;
    max-width: 156px;
  }
} 
/* --- 特別講演セクション --- */
.special-lecture-section {
  max-width: 900px;
  margin: 2em auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2em;
  margin: 100px 0 !important;

}
.special-lecture-title {
  font-size: 44px;
  font-weight: bold;
  color: #1C1C1C;
  text-align: center;
}
.special-lecture-title.special{
  padding-top: 229px;
}
.special-lecture-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin: 5px 0;
}
.special-lecture-capacity {
  background: #E6172D;
  color: #fff;
  font-weight: bold;
  width: 152px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  border-radius: 33px;
  font-size: 18px;
  display: inline-block;
}
.special-lecture-note {
  font-weight: bold;
  font-size: 24px;
  display: inline-block;
  width: 152px;
}
.special-lecture-desc {
  text-align: center;
  color: #1C1C1C;
  font-size: 14px;
  font-weight: bold;
  width: 364px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.special-lecture-speakers {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.special-lecture-speaker {
  flex: 1 1 0;
  min-width: 260px;
  max-width: 48%;
  padding: 1.5em 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1em;
}
.special-lecture-img {
  width: 475px;
  height: 450px;
  object-fit: contain;
  margin-bottom: 1em;
  background: #fff;
}
.special-lecture-img.special{
  width: 482.09px;
  height: 456.22px;
  margin: 0;

}
.special-lecture-role {
  font-size: 24px;
  font-weight: bold;
  color: #2A7674;
  text-align: left;
  align-self: flex-start;
  padding-left: 40px;
}
.special-lecture-name {
  font-size: 44px;
  font-weight: bold;
  color: #2A7674;
  text-align: left;
  align-self: flex-start;
  padding-left: 40px;
}
.special-lecture-suffix {
  font-size: 24px;
  font-weight: bold;
  color: #2A7674;
}
.special-lecture-time {
  font-size: 24px;
  font-weight: bold;
  color: #2A7674;
  text-align: left;
  align-self: flex-start;
  padding-left: 40px;
}
.special-lecture-theme {
  font-size: 1.1em;
  font-weight: bold;
  color: #2A7674;
  margin-top: 19px;
  text-align: left;
  line-height: 1.5;
  align-self: flex-start;
  padding-left: 40px;
  display: flex;
  align-items: center;
}
.special-lecture-role.special,
.special-lecture-name.special,
.special-lecture-time.special,
.special-lecture-theme.special{
  padding-left: 0;
}
.special-lecture-theme.special{
  margin-bottom: 23px;
}
.special-lecture-theme-bracket {
  width: 25px;
  height: 64px;
  object-fit: contain;
}
.special-lecture-theme-text {
  display: inline-block;
  font-size: 29px;
  font-weight: bold;
  color: #9E2133;
  line-height: 1.2;
  text-align: left;
}
.special-lecture-profile{
  text-align: left;
  font-size: 16px;
}
.special-lecture-theme-text.okada{
  color: #155BA8;
}
.special-lecture-theme-text.sub{
  color: #155BA8;
  font-size: 20px;
  white-space: nowrap;
}
.special-lecture-theme-sub {
  display: block;
  font-size: 17px;
  color: #155BA8;
  font-weight: bold;
  margin-top: 4px;
  text-align: left;
  line-height: 1.4;
}
.special-lecture-buttons {
  display: flex;
  gap: 40px;
  margin-top: 100px;
  margin-bottom: 8px;
  justify-content: center;
}
.special-lecture-buttons.special{
  margin-top: 28px;
  margin-bottom: 290px;
}
.special-lecture-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  padding: 0 24px 0 24px;
  width: 336px;
  height: 61px;
  min-width: 336px;
  max-width: 336px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: #000000 2px solid;
}
.special-lecture-btn-text {
  width: 100%;
  text-align: center;
  z-index: 1;
}
.special-lecture-btn-arrow {
  width: 21px;
  height: 22px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.reserve-btn {
  background: #009D87;
  color: #fff;
}
.reserve-btn:hover {
  background: #26CBB4;
  color: #fff;
}
.reserve-btn:active {
  background: #51F7E0;
  color: #fff;
}
.detail-btn {
  background: #FDD000;
  color: #1C1C1C;
}
.detail-btn:hover {
  background: #FFEA8B;
  color: #1C1C1C;
}
.detail-btn:active {
  background: #FFF4C3;
  color: #1C1C1C;
}
@media (max-width: 800px) {
  .special-lecture-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 5.6px;
  }
  .special-lecture-btn {
    min-width: 0;
    width: 100%;
    max-width: 336px;
    font-size: 16px;
    height: 44px;
    padding: 0 16px 0 12px;
    border: #000000 2px solid;

  }
  .special-lecture-btn-arrow {
    width: 20px;
    height: 20px;
    right: 12px;
  }
  .special-lecture-theme-sub{
    font-size: 12px;
  }
  .special-lecture-desc {
    width: auto;
    margin: 0 20px;
  }
} 
/* --- 商談予約についてセクション --- */
.reservation-section {
  background: #FFE8ED;
  padding: 100px 0 !important;
  width: 100%;
}
.reservation-title {
  font-size: 44px;
  font-weight: bold;
  color: #1C1C1C;
  text-align: center;
  margin-bottom: 10px;
}
.reservation-subtitle {
  font-size: 20px;
  color: #1C1C1C;
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}
.reservation-desc {
  font-size: 14px;
  color: #1C1C1C;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}
.reservation-flow-title {
  font-size: 24px;
  color: #1C1C1C;
  text-align: center;
  font-weight: bold;
  margin-bottom: 32px;
}
.reservation-steps {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.reservation-step {
  width: 283px;
  height: 500px;
  background: #fff;
  border-radius: 16px;
  border-color: #707070;
  box-shadow: 0 2px 8px rgba(0,0,0,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 16px 16px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
.reservation-step-title {
  font-size: 20px;
  font-weight: bold;
  color: #1C1C1C;
}
.reservation-step-icon {
  width: 196px;
  height: 196px;
  object-fit: contain;
}
.reservation-step-label {
  font-size: 20px;
  font-weight: bold;
  color: #1C1C1C;
}
.reservation-step-desc {
  font-size: 14px;
  font-weight: bold;
  color: #1C1C1C;
  margin-bottom: 16px;
  width: 226px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.step-margin{
  margin-top: 10px;
  margin-bottom: 0px;
}
@media (max-width: 800px) {
  .reservation-step-desc {
    margin-bottom: 13px;
    flex: none;
  }
}
.reservation-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  border-radius: 30px;
  padding: 0 24px 0 24px;
  width: 200px;
  height: 48px;
  min-width: 200px;
  max-width: 200px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: #000000 2px solid;
}
.reservation-btn-text {
  width: 100%;
  text-align: center;
  z-index: 1;
}
.reservation-btn-arrow {
  width: 15px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.jizen-btn {
  background: #009D87;
  color: #fff;
}
.jizen-btn:hover {
  background: #26CBB4;
  color: #fff;
}
.jizen-btn:active {
  background: #51F7E0;
  color: #fff;
}
.search-btn {
  background: #FDD000;
  color: #1C1C1C;
}
.search-btn:hover {
  background: #FFEA8B;
  color: #1C1C1C;
}
.search-btn:active {
  background: #FFF4C3;
  color: #1C1C1C;
}
.business-btn {
  background: #FFFFFF;
  color: #1C1C1C;
}
.business-btn:hover {
  background: #EFEFEF;
  color: #1C1C1C;
}
.business-btn:active {
  background: #DEDDDD;
  color: #1C1C1C;
}
@media (max-width: 1200px) {
  .reservation-steps {
    gap: 16px;
    align-items: center;
  }
}
@media (max-width: 900px) {
  .reservation-steps {
    flex-wrap: wrap;
    gap: 12px;
  }
  .reservation-step {
    min-width: 220px;
    max-width: 100%;
    padding: 24px 8px 8px 8px;
  }
}
@media (max-width: 700px) {
  .reservation-section {
    padding: 50px 0 95px 0 !important;
  }
  .reservation-steps {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .reservation-step {
    width: 90vw;
    min-width: 0;
    height: auto;
    padding: 20px 4px 4px 4px;
  }
  .reservation-btn {
    width: 100%;
    min-width: 0;
    max-width: 200px;
    font-size: 14px;
    height: 40px;
    padding: 0 12px 0 12px;
    border: #000000 2px solid;
  }
  .reservation-btn-arrow {
    width: 15px;
    height: 16px;
    right: 8px;
  }
  .kigyo-bg-img{
    width: 100%;
  }
} 
/* --- イイネ！投票についてセクション --- */
.like-vote-section {
  background: #fff;
  padding: 111px 0 91px 0 !important;
  width: 100%;
}
.like-vote-title {
  font-size: 44px;
  font-weight: bold;
  color: #1C1C1C;
  text-align: center;
  margin-bottom: 16px;
}
.like-vote-subtitle {
  font-size: 20px;
  color: #1C1C1C;
  text-align: center;
  font-weight: bold;
  margin-bottom: 12px;
}
.like-vote-desc {
  font-size: 14px;
  color: #1C1C1C;
  text-align: center;
  margin-bottom: 32px;
  font-weight: bold;
}
.like-vote-btn-area {
  display: flex;
  justify-content: center;
  margin-bottom: 54px;
}
.like-vote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  border-radius: 30px;
  padding: 0 24px 0 24px;
  width: 237px;
  height: 43px;
  min-width: 200px;
  max-width: 200px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  background: #fff;
  color: #1C1C1C;
  border: 2px solid #000000;
}
.like-vote-btn:hover {
  background: #FFEA8B;
  color: #1C1C1C;
}
.like-vote-btn:active {
  background: #FFF4C3;
  color: #1C1C1C;
}
.like-vote-btn-text {
  width: 100%;
  text-align: center;
  z-index: 1;
}
.like-vote-btn-arrow {
  width: 15px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.like-vote-flow-title {
  font-size: 24px;
  color: #1C1C1C;
  text-align: center;
  font-weight: bold;
  margin-bottom: 22px;
}
.like-vote-steps {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.like-vote-step {
  width: 283px;
  height: 349px;
  background: #fff;
  border-color: #707070;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 16px 16px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
.like-vote-step-title {
  font-size: 18px;
  font-weight: bold;
  color: #1C1C1C;
  margin-bottom: 8px;
}
.like-vote-step-icon {
  width: 166px;
  height: 166px;
  object-fit: contain;
  margin-bottom: 12px;
}
.like-vote-step-desc {
  font-size: 14px;
  font-weight: bold;
  color: #1C1C1C;
  margin-bottom: 16px;
  flex: 1 1 auto;
  width: 205px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .like-vote-steps {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .like-vote-steps {
    flex-wrap: wrap;
    gap: 12px;
  }
  .like-vote-step {
    width: 48vw;
    min-width: 220px;
    max-width: 100%;
    height: auto;
    padding: 24px 8px 8px 8px;
  }
}
@media (max-width: 800px) {
  .like-vote-section {
    padding: 62px 0 50px 0 !important;
  }
  .like-vote-btn-area {
    margin-bottom: 24px;
  }
  .like-vote-steps {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .like-vote-step {
    width: 90vw;
    min-width: 0;
    height: auto;
    padding: 20px 4px 4px 4px;
  }
  .like-vote-btn {
    width: 100%;
    min-width: 0;
    max-width: 200px;
    font-size: 14px;
    height: 40px;
    padding: 0 12px 0 12px;
  }
  .like-vote-btn-arrow {
    width: 15px;
    height: 16px;
    right: 8px;
  }
  .like-vote-step-desc {
    width: 100%;
    max-width: 100%;
  }
} 
.fair-message-area {
  width: 100%;
  height: 112px;
  background: #FFE8ED;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.fair-message-text {
  font-size: 20px;
  color: #1C1C1C;
  text-align: center;
  font-weight: bold;
} 
.three-column-section {
  width: 100%;
  background: #fff;
  padding: 80px 0 107px 0 !important;
}
.three-column-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.three-column-block {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 133px;
  justify-content: space-between;
}
.three-column-title {
  font-size: 18px;
  color: #1C1C1C;
  font-weight: bold;
  text-align: center;
  margin-bottom: 14px;
  margin-top: auto;
}
.three-column-btn, .three-column-btns .three-column-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 36px;
  width: 336px;
  height: 61px;
  min-width: 0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
  margin: 0 auto 0 auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  color: #fff;
  border: none;
  margin-bottom: 0;
  border: #000000 2px solid;
}
.three-column-btn-text {
  width: 100%;
  text-align: center;
  z-index: 1;
  color: #fff;
  font-size: 20px;
}
.faq-btn {
  background: #33A3CC;
}
.faq-btn:hover {
  background: #5BC8F0;
}
.faq-btn:active {
  background: #91E0FD;
}
.contact-btn {
  background: #45B266;
}
.contact-btn:hover {
  background: #26CBB4;
}
.contact-btn:active {
  background: #51F7E0;
}
.contact-faq-btn {
  width: 174px !important;
  margin-bottom: 40px !important;
}
.three-column-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
}
.report2024-btn {
  background: #C43FBA;
  width: 274px;
}
.report2024-btn:hover {
  background: #DB72D3;
}
.report2024-btn:active {
  background: #F4A2ED;
}
.report2023-btn {
  background: #6D4FBE;
  width: 274px;
}
.report2023-btn:hover {
  background: #9880DB;
}
.report2023-btn:active {
  background: #BBA3FC;
}
.three-column-btn-arrow {
  width: 21px;
  height: 22px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
@media (max-width: 1100px) {
  .three-column-inner {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .three-column-block {
    width: 100%;
    max-width: 500px;
  }
  .three-column-btn, .three-column-btns .three-column-btn {
    width: 100%;
    max-width: 336px;
  }
  .report2024-btn, .report2023-btn {
    max-width: 274px;
  }
  .three-column-btns {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .menu li{
    min-width: 0 !important;
    padding: 0 20px !important;
  }
  .footer-menu li{
    min-width: 0 !important;
    padding: 0 20px !important;
  }
  .org-logo {
    width: 418px !important;
  }
  .org-logo.nankai {
    width: 293px !important;
  }
  li#navi-menu a{
    padding: 0 5px !important;
  }
}
@media (max-width: 1100px) {
  .menu li{
    min-width: 0 !important;
    padding: 0 10px !important;
  }
  .footer-menu li{
    min-width: 0 !important;
    padding: 0 10px !important;
  }
}
@media (max-width: 800px) {
  .three-column-title {
    font-size: 14px;
    margin-bottom: 12px;
    margin-top: 0 !important;
  }
  .three-column-block{
    min-height: auto;
  }
  .three-column-btns{
    flex-direction: row;
    width: 242px !important;
  }
  .three-column-btn, .three-column-btns .three-column-btn {
    font-size: 16px;
    height: 44px;
    width: 242px !important;
    max-width: 100%;
  }
  .three-column-btns .three-column-btn {
    width: 115px !important;
  }
  .three-column-btn-text {
    font-size: 14px !important;
  }
  .report2024-btn, .report2023-btn {
    height: 44px;
    max-width: 100%;
  }
  .three-column-btn-arrow {
    width: 15.11px;
    height: 16.29px;
    right: 10px;
  }
  .contact-faq-btn{
    width: 115px !important;
  }
} 
.org-section {
  width: 100%;
  background: #fff;
  padding: 64px 0 64px 0;
  box-sizing: border-box;
  margin-left: 360px;
  margin-right: 360px;
}
@media (max-width: 1200px) {
  .org-section {
    margin-left: 30px !important;
    margin-right: 30px !important;
    width: auto;
  }
}
@media (max-width: 700px) {
  .org-section {
    margin-left: 0;
    margin-right: 0;
  }
}
.org-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 0 auto;
}
.org-block {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  box-sizing: border-box;
  width: 577px;
  max-width: 577px;
}
@media (max-width: 1200px) {
  .org-block {
    width: 100%;
    max-width: 100%;
  }
}
.org-title {
  font-size: 20px;
  color: #1C1C1C;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-bottom: 9px;
}
.org-divider {
  width: 100%;
  height: 1px;
  background: #707070;
  margin-bottom: 40px;
}
.org-divider.nankai{
  margin-bottom: 32px;
}
.org-logo-area {
  margin-bottom: 32px;
  width: 40px;
  display: block;
}
.org-logo-area.nankai {
  margin-bottom: 27px;
}
.org-company {
  font-size: 14px;
  color: #1C1C1C;
  font-weight: bold;
  text-align: left;
  margin-bottom: 4px;
}
.org-info {
  font-size: 14px;
  font-weight: 400;
  color: #1C1C1C;
  text-align: left;
  line-height: 1.7;
}
.org-logo {
  display: block;
  margin: 0 0 0 0;
  width: 518px;
}
.org-logo.nankai {
  width: 393px;
}
@media (max-width: 900px) {
  .org-inner {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .org-block {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 800px) {
  .org-inner{
    gap: 50px;
  }
  .org-section {
    padding: 20px 0 20px 0;
  }
  .org-title {
    font-size: 16px;
  }
  .org-divider{
    margin-bottom: 30px;
  }
  .org-company {
    font-size: 12px;
  }
  .org-logo{
    width: 318px !important;
  }
  .org-info {
    font-size: 12px;
  }
} 
.logo-vertical-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 66px;
  margin: 66px 0 86px 0;
}
.logo-vertical {
  display: block;
  height: auto;
  max-width: 100%;
} 
.menu-overlay {
  position: fixed;
  top: 69px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-close {
  display: none;
  position: absolute;
  top: 9px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
  padding: 0;
}

.menu-overlay-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  text-align: left;
  margin-top: 36px;
}

.menu-overlay-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: static;
  align-items: flex-start;
  box-shadow: none;
}

.menu-overlay-list li {
  padding: 0;
}
.menu-overlay-list li a {
  color: #1C1C1C;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.2s;
  font-size: 15px !important;
}

@media (min-width: 801px) {
  .menu-overlay {
    display: none !important;
  }
  .menu-toggle {
    display: none !important;
  }
}

/* 404エラーセクション */
.error-404-section {
  max-width: 900px;
  margin: 2em auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 3em 2em;
  text-align: center;
}

.error-404-inner {
  max-width: 600px;
  margin: 0 auto;
}

.error-404-title {
  font-size: 4rem;
  font-weight: bold;
  color: #E6172D;
  margin-bottom: 1rem;
  line-height: 1;
}

.error-404-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1C1C1C;
  margin-bottom: 1.5rem;
}

.error-404-desc {
  font-size: 2rem;
  color: #1C1C1C;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.error-404-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.error-404-btn {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s;
  gap: 0.5rem;
}

.error-404-btn-text {
  color: #fff;
}

.error-404-btn-arrow {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.home-btn {
  background: #009D87;
}

.home-btn:hover {
  background: #26CBB4;
}

.overview-btn {
  background: #007DC9;
}

.overview-btn:hover {
  background: #4DB3F0;
}

@media (max-width: 700px) {
  .error-404-section {
    margin: 1em;
    padding: 2em 1em;
  }
  
  .error-404-title {
    font-size: 3rem;
  }
  
  .error-404-subtitle {
    font-size: 1.25rem;
  }
  
  .error-404-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .error-404-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
} 
@media (max-width: 800px) {
  .top-image {
    margin-top: 69px !important;
  }
} 
@media (max-width: 800px) {
  .banzai-icon {
    width: 9.38px !important;
    height: 16.67px !important;
  }
} 
@media (max-width: 800px) {
  .jizen-lead-banzai {
    margin-bottom: 13.4px !important;
    margin: 0 auto !important;
  }
} 
@media (max-width: 800px) {
  .jizen-lead-btn {
    width: 242px !important;
    height: 44px !important;
    font-size: 14px !important;
    margin: 0 auto;
  }
} 
@media (max-width: 800px) {
  .btn-arrow {
    width: 15.11px !important;
    height: 16.29px !important;
  }
} 
@media (max-width: 800px) {
  .jizen-lead-inner {
    gap: 20px !important;
  }
} 
@media (max-width: 800px) {
  .benefit-text {
    font-size: 16px !important;
  }
} 
@media (max-width: 800px) {
  .kigyo-anniv-bg {
    display: block !important;
  }
} 
@media (max-width: 800px) {
  .kigyo-anniv-title {
    font-size: 26px !important;
    margin-bottom: 11px !important;
    width: 100%;
  }
} 
@media (max-width: 800px) {
  .kigyo-anniv-left {
    width: 100% !important;
    max-width: 100% !important;
  }
} 
@media (max-width: 800px) {
  .kigyo-anniv-desc {
    font-size: 16px !important;
  }
} 
@media (max-width: 800px) {
  .about-title.about-title-center {
    font-size: 26px !important;
    margin-bottom: 45px !important;
  }
} 
@media (max-width: 800px) {
  .about-left {
    text-align: left !important;
  }
  .about-left > * {
    text-align: left !important;
  }
} 
@media (max-width: 800px) {
  .about-benefit-text {
    font-size: 16px !important;
  }
  .about-benefit-note {
    font-size: 12px !important;
  }
} 
@media (max-width: 800px) {
  .special-lecture-section {
    margin: 73px 0 108px 0 !important;
  }
} 
@media (max-width: 800px) {
  .special-lecture-title {
    font-size: 26px !important;
  }
} 
@media (max-width: 800px) {
  .special-lecture-note {
    font-size: 20px !important;
    width: auto;
  }
  .special-lecture-capacity {
    font-size: 15px !important;
    width: 129px !important;
    height: 28px !important;
    line-height: 28px !important;
    display: inline-block;
  }
} 
@media (max-width: 1000px) {
  .special-lecture-img {
    width: 100% !important;
    height: auto;
  }
} 
@media (max-width: 800px) {
  .special-lecture-speakers {
    margin-left: 20px !important;
    margin-right: 20px !important;
    padding: 0 !important;
    margin-top: 23px;
  }

  .special-lecture-speaker {
    min-width: 100%;
    padding: 0 !important;
    margin-bottom: 29.5px;
  }
} 
@media (max-width: 800px) {
  .special-lecture-role {
    font-size: 15px !important;
    padding-left: 0 !important;
  }
  .special-lecture-name {
    font-size: 29px !important;
    padding-left: 0 !important;
  }
  .special-lecture-suffix {
    font-size: 16px !important;
  }
  .special-lecture-time {
    font-size: 15px !important;
    padding-left: 0 !important;
  }
} 
@media (max-width: 800px) {
  .special-lecture-theme {
    padding-left: 0 !important;
  }
  .special-lecture-theme-text {
    font-size: 19px !important;
    white-space: nowrap;
  }
  .special-lecture-theme-text.sub{
    font-size: 12px !important;
  }
} 
@media (max-width: 800px) {
  .special-lecture-btn {
    width: 242px !important;
  }
  .special-lecture-btn-arrow {
    width: 15.11px !important;
    height: 16.29px !important;
  }
} 
@media (max-width: 900px) {
  .special-lecture-btn {
    width: 242px !important;
    min-width: 242px !important;
  }
} 
@media (max-width: 800px) {
  .special-lecture-btn-text {
    font-size: 14px !important;
  }
} 
@media (max-width: 800px) {
  .reservation-title {
    font-size: 26px !important;
  }
  .reservation-subtitle {
    font-size: 16px !important;
    margin-bottom: 13px !important;
  }
  .reservation-desc {
    margin-bottom: 47px !important;
  }
  .reservation-flow-title {
    font-size: 20px !important;
    margin-bottom: 28px !important;
  }
} 
@media (max-width: 800px) {
  .reservation-desc {
    width: 300px !important;
    margin: 0 auto;
  }
} 
@media (max-width: 800px) {
  .reservation-step {
    width: 283px !important;
    height: 500px !important;
  }
} 
@media (max-width: 800px) {
  .like-vote-title {
    font-size: 26px !important;
    margin-bottom: 10px !important;
  }
  .like-vote-subtitle {
    font-size: 16px !important;
    width: 334px !important;
    margin: 0 auto !important;
    margin-bottom: 10px !important;
  }
  .like-vote-desc {
    width: 300px !important;
    margin: 0 auto !important;
    margin-bottom: 21px !important;
  }
} 
@media (max-width: 800px) {
  .like-vote-step {
    width: 283px !important;
    height: 349px !important;
  }
} 
@media (max-width: 800px) {
  .fair-message-area {
    height: 114px !important;
    padding: 0 20px !important;
    width: auto;
  }
  .fair-message-text {
    font-size: 16px !important;
  }
} 
@media (max-width: 800px) {
  .three-column-section {
    padding: 48px 0 80px 0 !important;
  }
} 
@media (max-width: 800px) {
  .logo-vertical-section {
    margin: 30px 0 59px 0 !important;
    gap: 30px !important;
  }
  .logo-vertical-section .logo-vertical:first-child {
    width: 112px !important;
    height: 66px !important;
  }
  .logo-vertical-section .logo-vertical:last-child {
    width: 340px !important;
    height: 54px !important;
  }
} 
@media (max-width: 800px) {
  .logo {
    width: 233px !important;
    height: 37px !important;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin-top: 15px;
  }
} 
@media (max-width: 800px) {
  .menu-overlay {
    display: flex;
  }
  .menu-overlay.open {
    display: flex;
  }
  .menu-toggle img {
    width: 50px !important;
    height: 50px !important;
    display: block;
    margin: 0 auto;
  }
  .menu-overlay-buttons {
    gap: 20px;
  }
  .menu-overlay-list {
    gap: 15px;
  }
  .menu-overlay-list li a {
    font-size: 20px;
  }
  .menu-overlay-buttons .custom-btn {
    width: 100% !important;
    justify-content: center;
    text-align: center;
  }
  .menu-overlay-list li:hover{
    background-color: #FFFFFF;
  }
  .menu-overlay-list li:active{
    background: #FFFFFF;
  }
} 
/* --- 開催概要ページ --- */
.overview-section, .special-lecture-page-section {
  margin-top: 133px !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 32px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

@media (max-width: 1300px) {
  .overview-section, .kyosan-section, .special-lecture-page-section {
    width: auto;
    padding: 0 20px !important;
  }
  .overview-row{
    height: auto !important;
    padding: 24.5px 0;
  }
  .special-lecture-detail-section{
    width: auto;
    padding: 0 20px !important;
  }
  .map-section{
    width: auto;
    padding: 0 20px !important;
  }
  .faq-section{
    width: auto;
    padding: 0 20px !important;
  }
  .contact-section{
    width: auto;
    padding: 0 20px !important;
  }
}

@media (max-width: 800px) {
  .overview-section {
    margin-top: 69px !important;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 4vw;
  }
}
.overview-title {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  padding-top: 96px;
  padding-bottom: 35.5px;
  letter-spacing: 0.08em;
  margin: 0;
}
.overview-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.overview-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-top: 1px solid #707070;
  height: 76px;
}
.overview-row:last-child {
  border-bottom: 1px solid #707070;
}
.overview-row.kyosan{
  height: auto;
  align-items: start;
  padding: 26.5px 0 35.5px 0;
}
.overview-value.kyosan{
  display: contents;
}

.overview-label {
  min-width: 161px;
  font-weight: bold;
  font-size: 16px;
  color: #1C1C1C;
  margin-left: 14px;
  flex-shrink: 0;
}
.overview-value {
  font-size: 16px;
  color: #1C1C1C;
  flex: 1;
}
.overview-value.kyoryoku {
  word-break: keep-all;
  overflow-wrap: break-word;
}
.overview-value.kyoryoku.sp{
  font-size: 13px;
  display: none;
}
.no-break {
  white-space: nowrap;
}
@media (max-width: 800px) {
  .overview-row {
    padding: 16px 0;
    align-items: start;
  }
  .overview-label {
    min-width: 70px !important;
    margin-right: 0;
    margin-bottom: 6px;
    margin-left: 0;
    font-size: 14px;
  }
  .overview-value {
    font-size: 14px;
  }
  .overview-value.kyoryoku {
    font-size: 13px;
    display: none;
  }
  .overview-value.kyoryoku.sp{
    display: block;
  }
  .overview-title{
    font-size: 26px;
    padding-top: 20px !important;
    padding-bottom: 18.5px !important;
  }
  .overview-title.kyosan{
    padding-top: 0px !important;
  }
  .overview-value.kyosan{
    display: block;

  }
} 
/* --- 協賛・協力機関一覧 --- */
.kyosan-section {
  max-width: 1200px !important;
  margin: 0 auto 0 auto !important;
  padding: 32px 16px 48px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 193px !important;
}
.kyosan-table {
  flex: 1 1 0;
  min-width: 200px;
  max-width: 400px;
  margin-right: 50px;
}
.kyosan-table.kinki{
  min-width: 200px;
  max-width: 0px;
}
.kyosan-table.chusyo{
  min-width: 200px;
  max-width: 300px;
  margin-right: 0px;
}
.kyosan-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kyosan-list li {
  font-size: 16px;
  color: #1C1C1C;
}
@media (max-width: 800px) {
  .kyosan-section {
    max-width: 100%;
    margin-top: 32px;
    padding: 16px 4vw 32px 4vw;
    margin-top: 61px !important;
    margin-bottom: 75px !important;
  }
  .kyosan-title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .kyosan-table-area {
    flex-direction: column;
    gap: 24px;
  }
  .kyosan-table {
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }
  .kyosan-table.kinki,
  .kyosan-table.chusyo {
    margin-top: 21px;
  }
  .kyosan-table-head {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .kyosan-list li {
    font-size: 14px;
    padding: 4px 0;
  }
  .long-kyosan{
    font-size: 12px !important;
  }
  .long-kyoryoku{
    font-size: 13px !important;
  }
} 
.kyosan-orbit-desc {
  max-width: 1200px;
  margin: 45px 0 36px 0;
  padding: 33.5px 50px;
}
.kyosan-orbit-title {
  font-size: 20px;
  font-weight: bold;
  color: #1C1C1C;
  margin-bottom: 11px;
}
.kyosan-orbit-text {
  font-size: 16px;
  color: #1C1C1C;
  line-height: 1.8;
  padding-left: 25px;
}
@media (max-width: 800px) {
  .kyosan-orbit-desc {
    max-width: 100%;
    padding: 18px 4vw;
    margin: 28px 0 30px 0;
  }
  .kyosan-orbit-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .kyosan-orbit-text {
    font-size: 14px;
    padding-left: 20px;
  }
} 
/* 特別講演ページ専用レイアウト（デザインは共通） */
.special-lecture-detail-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 16px 60px 16px;
  text-align: center;
}
.special-lecture-speakers-detail {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 81px 0 32px 0;
  align-items: center;
}
.special-lecture-speakers-detail.special{
  margin-bottom: 124.7px;
  gap: 130.8px;
}
.special-lecture-speaker-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 38.6px;
  max-width: 1200px;
  width: 100%;
  justify-content: center;
}
.special-lecture-speaker-detail.special{
  align-items: start;
}
.special-lecture-info-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.special-lecture-info-detail.special{
  gap: 0;
}
.special-lecture-speaker-info{
  align-self: flex-start;
}
@media (max-width: 800px) {
  .special-lecture-speaker-detail {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 8px;
    max-width: 100%;
  }
  .special-lecture-info-detail {
    align-items: center;
    text-align: center;
    align-self: center;
  }
  .special-lecture-title.special{
    padding-top: 89px;
  }
  .special-lecture-speakers-detail.special{
    margin-top: 41.1px;
    margin-bottom: 66px;
  }
  .special-lecture-speaker-detail.special{
    padding: 0;
  }
  .special-lecture-img.special{
    width: auto;
    height: 317.29px !important;
  }
  .special-lecture-speakers-detail.special{
    gap: 121.5px;
  }
  .special-lecture-buttons.special{
    margin-bottom: 100px;
  }
} 

/* --- 会場MAPページ --- */
/* --- FAQページ --- */
.map-section, .faq-section, .contact-section{
  margin-top: 229px !important;
  margin-bottom: 200px !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.map-section{
  margin-bottom: 21px !important;
}

.map-title, .faq-title, .contact-title{
  text-align:center;
  margin-bottom: 13px;
  font-size: 44px;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.map-desc, .faq-desc, .contact-desc{
  text-align:center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 64.5px;
}
.map-desc{
  margin-bottom: 50px !important;
}
.contact-desc{
  margin-bottom: 50px !important;
}

.map-img{
  max-width:100%;
  height:auto;
}

.map-img.map-img-2f{
  margin-top: 96px;
  margin-bottom: 199px;
}

@media (max-width: 800px) {
  .map-section, .faq-section, .contact-section{
    margin-top: 89px !important;
    margin-bottom: 71.3px !important;
    width: auto;
    padding: 0 20px !important;
  }
  .map-title, .faq-title, .contact-title{
    font-size: 26px !important;
    margin-bottom: 10px !important;
  }
  .map-desc, .faq-desc, .contact-desc{
    font-size: 14px !important;
    margin-bottom: 28px !important;
  }
  .faq-desc{
    margin-bottom: 70.8px !important;
  }
  .map-img.map-img-2f{
    margin-top: 29px !important;
    margin-bottom: 66px !important;
  }
}

/* FAQ Accordion Styles */
.faq-list {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
}
.faq-item {
  background: #fff;
  border-top: 1px solid #DDD;
  border-bottom: none;
  padding: 0;
}
.faq-item:first-child {
  border-top: 1px solid #DDD;
}
.faq-item:last-child {
  border-bottom: 1px solid #DDD;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  outline: none;
  font-size: 20px;
  font-weight: bold;
  padding: 36px 14px;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}
.faq-toggle-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 18px;
  color: #1C1C1C;
  background: #fff;
  margin-bottom: 32px;
}
@media (max-width: 800px) {
  .faq-list {
    max-width: 98vw;
  }
  .faq-question, .faq-answer {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 16px !important;
  }
  .faq-answer{
    font-size: 14px !important;
  }
  .faq-toggle-icon {
    width: 31px;
    height: 31px;
  }
}

.footer-menu-responsive {
  display: none;
}
@media (max-width: 800px) {
  .footer-menu {
    display: none !important;
  }
  .footer-menu-responsive {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    margin-top: 19px;
  }
  .footer-menu-row {
    display: flex;
    gap: 12px;
    width: 100%;
  }
  .footer-menu-link {
    border: #C3C3C3 1px solid;
    border-radius: 16px;
    line-height: 25px;
    height: 28px;
    text-align: center;
    background-color: #FFFFFF;
    color: #1C1C1C;
    text-decoration: none;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .footer-menu-link {
    padding: 0 15px;
  }
}

li#navi-menu a {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 16px;
}

/* --- 会場MAPピン --- */
.map-floor-text{
  font-size: 44px;
  font-weight: bold;
  color: #1C1C1C;
  margin-bottom: 7px;
}

.map-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 96px;
}
.map-image-wrapper-2f{
  margin-bottom: 0px !important;
}
.map-image-wrapper .map-img {
  width: 100%;
  height: auto;
  display: block;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  background: #009D87;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  width: 61px;
  height: 61px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  user-select: none;
  transition: background 0.2s ease;
}

.map-pin:hover {
  background: #26CBB4;
}

.map-pin:active {
  background: #51F7E0;
}

.map-pin .pin-text {
  font-size: 10px;
  line-height: 1;
  margin-bottom: 2px;
}

.map-pin .pin-number {
  font-size: 24px;
  line-height: 1;
}

/* マップピン02用のスタイル */
.map-pin.pin-02 {
  background: #33A3CC;
}

.map-pin.pin-02:hover {
  background: #5BC8F0;
}

.map-pin.pin-02:active {
  background: #91E0FD;
}

/* マップピン03用のスタイル */
.map-pin.pin-03 {
  background: #EB5666;
}

.map-pin.pin-03:hover {
  background: #FC8693;
}

.map-pin.pin-03:active {
  background: #FFB4BC;
}

/* マップピン04用のスタイル */
.map-pin.pin-04 {
  background: #AB4ED5;
}

.map-pin.pin-04:hover {
  background: #DB72D3;
}

.map-pin.pin-04:active {
  background: #F4A2ED;
}

/* マップピン05用のスタイル */
.map-pin.pin-05 {
  background: #E69617;
}

.map-pin.pin-05:hover {
  background: #FCB23D;
}

.map-pin.pin-05:active {
  background: #FFC467;
}

/* マップピン06用のスタイル */
.map-pin.pin-06 {
  background: #E64F17;
}

.map-pin.pin-06:hover {
  background: #F57647;
}

.map-pin.pin-06:active {
  background: #F79672;
}
.map-pin.active::after {
  content: attr(data-desc);
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translate(-50%, -100%);
  background: #fff;
  color: #1C1C1C;
  border: 1px solid #E6172D;
  border-radius: 8px;
  padding: 8px 16px;
  white-space: nowrap;
  z-index: 10;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  pointer-events: none;
}
@media (max-width: 800px) {
  .map-image-wrapper {
    max-width: 100%;
  }
  .map-pin {
    width: 31px;
    height: 31px;
  }
  .map-pin .pin-text {
    font-size: 5px;
  }
  .map-pin .pin-number {
    font-size: 14px;
  }
  .map-pin.active::after {
    font-size: 12px;
    padding: 6px 10px;
  }
}
.here-link{
  color: #1C1C1C;
  font-weight: bold;
  font-size: 14px;
  text-decoration: underline;
}

/* === MAPモーダル === */
.map-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.map-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 90vw;
  width: 914px;
  max-height: 85vh;
  padding: 35px 51px 32px 51px;
  box-shadow: 0 0px 10px rgba(0,0,0,0.2);
  position: relative;
  text-align: center;
}
.map-modal-header {
  margin-bottom: 18px;
}

.map-modal-title {
  width: 914px;
  height: 61px;
  background: #009D87;
  border-radius: 31px;
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  gap: 25px;
  margin: 0;
}

.map-modal-title .title-text,
.map-modal-title .desc-text {
  display: flex;
  align-items: flex-end;
}

.map-modal-title .title-text {
  font-size: 30px;
}

.map-modal-title .desc-text {
  font-size: 20px;
}

/* 業種情報のスタイル */
.map-modal-industries {
  margin-top: 20px;
}

.industry-floor {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.industry-floor:last-child {
  margin-bottom: 0;
}

.floor-label {
  color: #007DC9;
  font-size: 18px;
  font-weight: 400;
  margin-right: 15px;
  flex-shrink: 0;
  min-width: 40px;
}

.industry-text {
  color: #1C1C1C;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

/* POINTボタンのスタイル */
.point-section {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 14px;
}

.point-button {
  width: 152px;
  height: 33px;
  background: #FDD000;
  border-radius: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-button span {
  font-size: 18px;
  font-weight: bold;
  color: #1C1C1C;
}

.point-text {
  color: #007DC9;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

/* モーダル画像のスタイル */
.modal-image {
  margin-top: 20px;
  text-align: center;
}

.modal-image img {
  max-width: 100%;
  height: auto;
}

.image-caption {
  font-size: 14px;
  font-weight: 400;
  color: #1C1C1C;
  margin-top: 8px;
  text-align: center;
}

.modal-description {
  font-size: 16px;
  font-weight: 400;
  color: #1C1C1C;
  margin-top: 10px;
  line-height: 1.6;
  text-align: left;
}

/* モーダルボタンのスタイル */
.modal-button {
  margin-top: 29px;
  text-align: center;
}

.modal-01-reservation-btn {
  display: inline-block;
  background: #FDD000;
  color: #1C1C1C;
  border-radius: 58px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.2s ease;
  cursor: pointer;
  width: 390px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 2px solid #000000;
}

.modal-01-reservation-btn:hover {
  background: #FFEA8B;
}

.modal-01-reservation-btn:active {
  background: #FFF4C3;
}

.button-arrow {
  width: 21px;
  height: 20px;
  position: absolute;
  left: calc(50% + 160px);
}

.modal-note {
  font-size: 14px;
  font-weight: 400;
  color: #1C1C1C;
  margin-top: 21px;
  text-align: center;
}
.map-modal-desc {
  font-size: 20px;
  color: #333;
  margin-bottom: 8px;
}
.map-modal-close {
  position: absolute;
  top: -44.5px;
  right: -44.5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 89px;
  height: 89px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.map-modal-close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.map-modal-close:hover {
  color: #E6172D;
}
.image-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.image-item {
  flex: 0 0 auto;
}

.image-item img {
  max-width: 100%;
  height: auto;
}

/* 03のモーダル用スタイル */
.map-modal-title-03 {
  background: #EB5666 !important;
}

.map-modal-content-03 {
  height: auto !important;
  overflow-y: visible !important;
}

.map-modal-close-03 {
  position: absolute;
  top: -40px;
  right: -40px;
}

/* 03のモーダル用スタイル */
.map-modal-title-03 {
  background: #EB5666 !important;
}

.map-modal-content-03 {
  height: auto !important;
  overflow-y: visible !important;
}

/* 03のモーダル内の特別講演スタイル調整 */
.map-modal-content-03 .special-lecture-sub {
  margin: 24px 0 10px 0;
}

.map-modal-content-03 .special-lecture-sub .special-lecture-note{
  font-size: 20px;
}
.map-modal-content-03 .special-lecture-sub .special-lecture-capacity{
  font-size: 15px;
}

.map-modal-content-03 .special-lecture-desc-text {
  font-size: 16px;
  text-align: left;
  font-weight: 400;
  width: auto;
  margin-top: 10px;
}

.map-modal-content-03 .special-lecture-speakers {
  margin: 20px 0 0 0;
  padding: 0px;
}

.map-modal-content-03 .special-lecture-speaker {
  padding: 0px;
  margin-bottom: 0px;
}

.map-modal-content-03 .special-lecture-img {
  width: 338.23px;
  height: 320.44px;
  margin-bottom: 15px;
}

.map-modal-content-03 .special-lecture-speaker-info{
  margin-left: 51px;
}

.map-modal-content-03 .special-lecture-role {
  font-size: 20px;
  padding-left: 0;
}

.map-modal-content-03 .special-lecture-name {
  font-size: 38px;
  padding-left: 0;
}
.map-modal-content-03 .special-lecture-suffix{
  font-size: 21px !important;
}

.map-modal-content-03 .special-lecture-time {
  font-size: 20px;
  padding-left: 0;
  margin-bottom: 15px;
}

.map-modal-content-03 .special-lecture-theme {
  padding-left: 0;
  margin-top: 0px;
  margin-left: 51px;
}

.map-modal-content-03 .special-lecture-theme-text {
  font-size: 18px;
  line-height: 1.3;
}

.map-modal-content-03 .special-lecture-theme-text.sub {
  font-size: 14px;
}

.map-modal-content-03 .special-lecture-buttons {
  margin-top: 20px;
  margin-bottom: 10px;
}

.map-modal-content-03 .special-lecture-btn {
  width: 280px;
  height: 50px;
  font-size: 16px;
  min-width: 280px;
  max-width: 280px;
}

.map-modal-content-03 .special-lecture-img {
  width: 302.18px !important;
  height: 286.21px !important;
}

.map-modal-content-03 .modal-note {
  margin-top: 10px;
}

/* 04のモーダル用スタイル */
.map-modal-title-04 {
  background: #AB4ED5 !important;
}

.map-modal-content-04 {
  height: auto !important;
  overflow-y: visible !important;
}

.map-modal-close-04 {
  position: absolute;
  top: -40px;
  right: -40px;
}

.map-modal-content-04 .modal-description {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

/* 05のモーダル用スタイル */
.map-modal-title-05 {
  background: #E69617 !important;
}

.map-modal-content-05 {
  height: auto !important;
  overflow-y: visible !important;
}

.map-modal-close-05 {
  position: absolute;
  top: -40px;
  right: -40px;
}

.map-modal-content-05 .modal-description {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

/* 06のモーダル用スタイル */
.map-modal-title-06 {
  background: #E64F17 !important;
}

.map-modal-content-06 {
  height: auto !important;
  overflow-y: visible !important;
}

.map-modal-close-06 {
  position: absolute;
  top: -40px;
  right: -40px;
}


.map-modal-content-06 .video-lecture-title {
  font-size: 44px;
  font-weight: bold;
  color: #1C1C1C;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.map-modal-content-06 .video-lecture-section {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-modal-content-06 .video-lecture-header {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 15px;
  align-self: flex-start;
  margin-left: 50px;
}

.map-modal-content-06 .video-lecture-number {
  font-size: 36px;
  font-weight: bold;
  color: #009D87;
}

.map-modal-content-06 .video-lecture-subtitle {
  font-size: 20px;
  font-weight: bold;
  color: #1C1C1C;
}

.map-modal-content-06 .video-lecture-tiles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-modal-content-06 .video-lecture-tile {
  width: 801px;
  height: 57px;
  background: #FFFFFF;
  border: 1px solid rgb(0, 0, 0, 0.16);
  border-radius: 11px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}

.map-modal-content-06 .video-lecture-tile-title {
  font-size: 18px;
  font-weight: bold;
  color: #1C1C1C;
}

.map-modal-content-06-main {
  height: 85vh;
  width: 945px;
  overflow-y: auto;
  overflow-x: hidden;
}
.video-lecture-human-title{
  font-size: 18px;
  font-weight: bold;
  color: #1C1C1C;
  margin-top: 27px;
  text-align: left;
}

.map-modal-content-06 .video-lecture-note {
  font-size: 14px;
  font-weight: normal;
  color: #1C1C1C;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.map-modal-title-02 {
  background: #33A3CC !important;
}
.map-modal-content-03-main{
  height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
}

@media (max-width: 800px) {
  .map-modal-content {
    width: 335px;
    height: 85vh;
    padding: 18px 11px 37px 11px;
  }
  .map-modal-content-01-main, .map-modal-content-03-main {
    height: 88vh;
    overflow-y: auto;
  }
  .map-modal-title {
    width: 100%;
    height: 66px;
    font-size: 1.2em;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .map-modal-title .title-text {
    font-size: 18px;
  }
  .map-modal-title .desc-text {
    font-size: 12px;
  }
  .map-modal-close {
    width: 55px;
    height: 55px;
    position: absolute;
    top: -20px;
    right: 0px;
    z-index: 10000;
  }
  .industry-floor {
    flex-direction: row;
    align-items: flex-start;
  }
  .floor-label {
    margin-right: 0;
    margin-bottom: 8px;
    min-width: auto;
    font-size: 14px;
  }
  .industry-text {
    padding-left: 15px;
    font-size: 14px;
    text-align: left;
  }
  .point-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }
  .point-button {
    width: 80px;
    height: 25px;
  }
  .point-button span {
    font-size: 13px;
  }
  .point-text {
    font-size: 16px;
    text-align: left;
  }
  .modal-image{
    margin-top: 13px !important;
  }
  .modal-image img {
    height: 168px !important;
  }
  .image-caption {
    font-size: 12px !important;
  }
  .modal-description {
    font-size: 14px !important;
  }
  .modal-01-reservation-btn{
    width: 318px;
  }
  .modal-note {
    font-size: 12px;
  }
  .button-arrow {
    left: calc(50% + 130px);
  }

  /* 02のモーダル用スタイル */
  .modal-images-02 {
    margin-top: 20px;
    text-align: center;
  }
  
  .image-row {
    gap: 5px;
  }
  
  .image-item img {
    width: 149px !important;
    height: auto !important;
  }

  .map-modal-content-02 {
    height: auto !important;
    overflow-y: visible !important;
  }

  .map-modal-close-02 {
    position: absolute;
    top: -27.5px;
    right: -0px;
  }

  .map-modal-content-03 .special-lecture-role{
    font-size: 12px !important;
  }
  .map-modal-content-03 .special-lecture-name{
    font-size: 26px !important;
  }
  .map-modal-content-03 .special-lecture-suffix{
    font-size: 14px !important;
  }
  .map-modal-content-03 .special-lecture-time{
    font-size: 12px !important;
  }
  .map-modal-content-03 .special-lecture-theme-text{
    font-size: 17px !important;
  } 
  .map-modal-content-03 .special-lecture-desc-text{
    font-size: 14px;
  }
  .map-modal-content-03 .special-lecture-speakers{
    gap: 33.5px !important;
  }
  .map-modal-content-03 .special-lecture-theme-text.sub{
    font-size: 10px !important;
  }
  .map-modal-content-03 .special-lecture-speaker-info{
    margin-left: 0px;
  }

  .map-modal-content-03 .special-lecture-theme{
    margin-left: 0px;
  }
  .video-lecture-human-title{
    font-size: 12px;
    margin-top: 10px;
  }
  
  .map-modal-content-06-main{
    width: auto;
  }

  .map-modal-content-06 .video-lecture-note {
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .map-modal-content-06 .modal-description {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
  }
  
  .map-modal-content-06 .video-lecture-title {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  
  .map-modal-content-06 .video-lecture-section {
    margin-top: 20px;
    align-items: center;
  }
  
  .map-modal-content-06 .video-lecture-header {
    gap: 10px;
    margin-bottom: 10px;
    align-self: flex-start;
    margin-left: 0px;
  }
  
  .map-modal-content-06 .video-lecture-number {
    font-size: 26px;
  }
  
  .map-modal-content-06 .video-lecture-subtitle {
    font-size: 12px;
  }
  
  .map-modal-content-06 .video-lecture-tiles {
    gap: 8px;
  }
  
  .map-modal-content-06 .video-lecture-tile {
    width: 296px;
    height: 42px;
    padding: 0 15px;
  }
  
  .map-modal-content-06 .video-lecture-tile-title {
    font-size: 12px;
  }
}
  
